/* Structured hero layout overrides */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  z-index: 5;
  pointer-events: none;
}

.hero-text-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  width: 100%;
  height: 100%;
  padding: clamp(2rem, 6vw, 4.5rem);
  z-index: 2;
  pointer-events: none;
}

.hero-text-overlay .hero-structure__actions {
  pointer-events: auto;
}

.hero-text-overlay__subtitle {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.hero-bottom-gradient {
  z-index: 1;
  pointer-events: none;
}

.hero-structure {
  min-height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(5rem, 8vw, 8rem) 1.5rem clamp(4rem, 6vw, 6rem);
}

.hero-structure__container {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.hero-structure--minimal {
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px); /* keep content centered below fixed navbar */
}

.hero-structure--minimal .hero-structure__container--center {
  min-height: 100%;
  justify-content: center;
}

.hero-structure__container--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(960px, 100%);
  gap: clamp(1rem, 2vw, 2.25rem);
}

@media (min-width: 960px) {
  .hero-structure__container {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: stretch;
  }
}

.hero-structure__content,
.hero-structure__side {
  background: rgba(0, 26, 61, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: clamp(1.75rem, 3vw, 3rem);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.35);
}

.hero-structure__content {
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero-structure__content--center {
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  max-width: 720px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-structure__content--center .hero-structure__title,
.hero-structure__content--center .hero-structure__lede {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-structure__content--center .hero-structure__actions {
  width: 100%;
  justify-content: center;
}

.hero-structure--minimal .hero-structure__content--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-structure__content--center::after {
  display: none;
}

.hero-structure__content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 45%);
  pointer-events: none;
}

.hero-structure__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1DB954;
  margin-bottom: 1rem;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 600;
}

.hero-structure__title {
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  line-height: 1.05;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-structure__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 46ch;
  margin-bottom: 1.75rem;
}

.hero-structure__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.85rem;
}

.hero-structure__bullets li {
  display: flex;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-structure__bullets li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1DB954;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.hero-structure__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-structure__actions--center {
  justify-content: center;
}

.hero-structure__lede--short {
  margin: 0 auto 2rem;
  max-width: 32ch;
}

.hero-structure__secondary {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-structure__secondary::after {
  content: "→";
  font-size: 1.1rem;
  line-height: 1;
}

.hero-structure__secondary:hover {
  color: #1DB954;
  border-bottom-color: rgba(29, 185, 84, 0.7);
}

.hero-structure__side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.hero-side-card {
  border-radius: 26px;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(0, 43, 91, 0.85), rgba(0, 24, 52, 0.75));
  border: 1px solid rgba(29, 185, 84, 0.3);
  box-shadow: 0 40px 55px rgba(0, 0, 0, 0.35);
}

.hero-side-card--hours {
  background: linear-gradient(135deg, rgba(0, 43, 91, 0.95), rgba(0, 24, 52, 0.8));
  border-color: rgba(29, 185, 84, 0.5);
}

.hero-side-card__label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.hero-side-card__value {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}

.hero-side-card__meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-side-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.hero-side-mini {
  border-radius: 22px;
  padding: 1.25rem 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-side-mini p {
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
}

.hero-side-mini span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.hero-text-overlay button {
  min-width: 220px;
}

@media (max-width: 768px) {
  .hero-text-overlay {
    gap: 0.5rem;
    padding: clamp(1.5rem, 8vw, 3rem);
  }

  .hero-text-overlay .hero-structure__title {
    font-size: clamp(2.2rem, 11vw, 3.8rem);
  }

  .hero-text-overlay .hero-structure__lede {
    font-size: clamp(0.95rem, 4.5vw, 1.1rem);
  }
}

.hero-scroller {
  color: rgba(255, 255, 255, 0.75);
}

.hero-scroller svg {
  width: 2.4rem;
  height: 2.4rem;
}

@media (max-width: 640px) {
  .hero-structure__content,
  .hero-structure__side {
    border-radius: 24px;
  }

  .hero-structure__bullets li {
    font-size: 0.9rem;
  }

  .hero-side-grid {
    grid-template-columns: 1fr;
  }
}
