/* ==========================================================================
   STYLE — sections and components, in document order
   Manoshakti Retreat
   Depends on base.css (tokens, reset, shared components)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HEADER
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 251, 247, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-navy);
}

.site-header__inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand lockup */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(14, 42, 90, 0.18);
  flex-shrink: 0;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__text {
  line-height: 1;
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.brand__sub {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--muted);
  transition: color var(--dur) var(--ease);
}

.nav-link:hover {
  color: var(--navy);
}

.nav-link.is-active {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn--gold {
  display: none;
}

/* Hamburger */
.menu-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid rgba(14, 42, 90, 0.1);
}

.menu-toggle__bars {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--navy);
  box-shadow: 0 5px 0 var(--navy), 0 -5px 0 var(--navy);
}

/* Mobile drawer */
.nav-mobile {
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line-black);
  padding: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile__list {
  display: grid;
  gap: 4px;
}

.nav-mobile__link {
  text-align: left;
  padding-block: 12px;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-mobile__link:last-of-type {
  border-bottom: 0;
}

.nav-mobile__cta {
  margin-top: 16px;
  width: 100%;
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   2. HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__blob--navy {
  top: -20%;
  left: -10%;
  width: 90%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(18, 54, 125, 0.14),
    transparent 70%
  );
}

.hero__blob--gold {
  top: 5%;
  right: -5%;
  width: 70%;
  height: 80%;
  background: radial-gradient(
    circle at center,
    rgba(199, 168, 111, 0.22),
    transparent 70%
  );
}

.hero__fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, var(--sand), transparent);
}

.hero__inner {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
  padding-block: 64px;
}

.hero__date {
  margin-top: 8px;
  font-size: 48px;
  font-weight: 600;
}

.hero__title {
  margin-top: 28px;
  font-size: 48px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.hero__title-line {
  display: block;
  margin-top: 4px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 44px;
}

.hero__author {
  margin-top: 16px;
}

.hero__lede {
  margin-top: 20px;
}

.hero__desc {
  margin-top: 24px;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero media column */
.hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__photo {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-organic);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-hero);
}

.hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 42, 90, 0.35),
    transparent 50%
  );
}

.hero__card {
  position: absolute;
  bottom: 6%;
  left: -6px;
  width: 300px;
  padding: 20px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--white);
  box-shadow: var(--sh-float);
}

.hero__card .eyebrow {
  letter-spacing: 0.18em;
}

.hero__mantra {
  margin-top: 4px;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.1;
  color: var(--navy);
}

.hero__stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero__glow {
  position: absolute;
  top: -24px;
  right: 24px;
  width: 120px;
  height: 120px;
  border-radius: var(--r-pill);
  background: rgba(199, 168, 111, 0.3);
  filter: blur(42px);
  pointer-events: none;
}

/* Wave divider */
.hero__wave {
  position: relative;
  height: 80px;
  margin-bottom: -1px;
}

.hero__wave svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------
   3. INTRODUCTION
   -------------------------------------------------------------------------- */

.intro {
  position: relative;
  text-align: center;
}

.intro__quote {
  margin-top: 32px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
}

.intro__quote em {
  font-style: italic;
  color: var(--gold);
}

.intro__photo {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.intro__copy {
  margin-top: 40px;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--muted);
  text-align: left;
}

.intro__copy p + p {
  margin-top: 20px;
}

.intro__panel {
  margin-top: 32px;
  text-align: left;
}

.intro__panel-title {
  margin-top: 20px;
}

.intro__list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.intro__prompt {
  margin-top: 24px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

.intro__verdict {
  margin-top: 16px;
  padding-bottom: 48px;
  font-size: 32px;
}

.intro__rule {
  margin-top: 48px;
}

/* --------------------------------------------------------------------------
   4. EXPERIENCE
   -------------------------------------------------------------------------- */

.experience {
  position: relative;
  overflow: hidden;
}

.experience__blob {
  left: -120px;
  top: 20%;
  width: 360px;
  height: 360px;
  background: rgba(14, 42, 90, 0.06);
  filter: blur(30px);
}

.experience__head {
  position: relative;
  margin-bottom: 40px;
}

.experience__statement {
  margin-top: 16px;
  font-size: 32px;
}

.experience__grid {
  position: relative;
  display: grid;
  gap: 20px;
}

.feature-card {
  border-radius: var(--r-xl);
  background: var(--cream);
  border: 1px solid var(--line-navy);
  padding: 28px;
  box-shadow: var(--sh-card-sm);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.feature-card:hover {
  box-shadow: var(--sh-card-hover);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  background: linear-gradient(to bottom right, var(--gold), var(--gold-bright));
  color: var(--white);
  font-size: 16px;
  box-shadow: 0 8px 18px rgba(199, 168, 111, 0.4);
}

.feature-card__icon svg {
  width: 20px;
  height: 20px;
}

.feature-card__title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

.feature-card__desc {
  margin-top: 8px;
  font-size: 13.8px;
  line-height: 1.65;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   5. ABOUT
   -------------------------------------------------------------------------- */

.about__photo {
  margin-top: 32px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.about__stats {
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 400px;
}

.about__body {
  width: 100%;
  max-width: 760px;
  text-align: center;
}

.about__tags {
  margin-top: 28px;
}

.about__quote {
  margin-top: 32px;
}

.about__quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--navy);
}

.about__quote-by {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   6. REASONS (timeline)
   -------------------------------------------------------------------------- */

.reasons__photo {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.reasons__head {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.reasons__title {
  font-size: 36px;
  line-height: 1.05;
  color: var(--navy);
}

.reasons__intro {
  margin-top: 24px;
  font-size: 15px;
  color: var(--muted);
}

.timeline {
  position: relative;
  margin-top: 56px;
  width: 100%;
}

.timeline__spine {
  display: none;
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(199, 168, 111, 0),
    rgba(199, 168, 111, 0.5),
    rgba(199, 168, 111, 0)
  );
}

.timeline__items {
  display: grid;
  gap: 40px;
}

.timeline__item {
  position: relative;
  display: grid;
  gap: 24px;
  align-items: center;
}

.timeline__dot {
  display: none;
  position: absolute;
  left: 12px;
  top: 12px;
  width: 13px;
  height: 13px;
  border-radius: var(--r-pill);
  background: var(--cream);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px var(--cream);
}

.timeline__body {
  display: flex;
  gap: 20px;
}

.timeline__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline__num {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1;
  color: rgba(199, 168, 111, 0.8);
}

.timeline__dash {
  display: none;
  height: 1px;
  width: 40px;
  background: rgba(199, 168, 111, 0.3);
}

.timeline__title {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

.timeline__desc {
  margin-top: 8px;
  max-width: 38ch;
  font-size: 13.8px;
  line-height: 1.65;
  color: var(--muted);
}

.timeline__spacer {
  display: none;
}

.reasons__tags {
  margin-top: 56px;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   7. VENUE
   -------------------------------------------------------------------------- */

.venue {
  overflow: hidden;
}

/* Intro copy sits above the collage, full width */
.venue__intro {
  max-width: 720px;
}

.venue__title {
  margin-top: 12px;
  font-size: 38px;
  line-height: 0.95;
  color: var(--navy);
}

.venue__desc {
  margin-top: 20px;
  max-width: 52ch;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
}

.venue__note {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--navy);
}

.venue__note::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* --- Collage -------------------------------------------------------------

   A masonry column layout. Photos keep their natural aspect ratio and are
   never cropped, so any mix of portrait / landscape / square works and the
   layout stays intact at every screen width.

   1 column on phones, 2 from 640px up — never more than 2 across.
   Add photos in index.html; no CSS change is needed.
   ------------------------------------------------------------------------ */

.collage {
  margin-top: 48px;
  columns: 1;
  column-gap: 20px;
}

.collage__item {
  position: relative;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;   /* Safari */
  margin-bottom: 20px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line-black);
  box-shadow: var(--sh-media-sm);
}

/* height:auto is what prevents cropping — the box follows the image */
.collage__item img {
  display: block;
  width: 100%;
  height: auto;
}

.collage__caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 12px;
  font-size: 11px;
  color: var(--navy);
}


/* --------------------------------------------------------------------------
   8. PLANS
   -------------------------------------------------------------------------- */

.plans__head {
  max-width: 640px;
}

.plans__offer {
  margin-top: 16px;
}

.plans__note {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.plans__grid {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-2xl);
  background: var(--white);
  border: 1px solid var(--line-black);
  padding: 24px;
  box-shadow: var(--sh-card);
}

.plan-card.is-featured {
  border-color: var(--gold);
  box-shadow: var(--sh-card), 0 0 0 1.5px rgba(199, 168, 111, 0.3);
}

.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  height: 24px;
  padding-inline: 12px;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.plan-card__photo {
  border-radius: var(--r-sm);
  overflow: hidden;
}

.plan-card__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.plan-card__head {
  margin-top: 20px;
}

.plan-card__name {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan-card__room {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

.plan-card__pricing {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}

.plan-card__price {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--navy);
}

.plan-card__was {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--muted-soft);
}

/* NOTE: original markup set this to 1px (see NOTES.md #2) — it inherited
   16px because no such utility was generated. Kept at the rendered size. */
.plan-card__flag {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding-inline: 8px;
  border-radius: var(--r-pill);
  background: rgba(199, 168, 111, 0.15);
  color: var(--gold-deep);
  font-size: 16px;
}

.plan-card__per {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-soft);
}

.plan-card__features {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.plan-card__feature {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.plan-card .btn--plan {
  margin-top: 20px;
}

.plans__tax {
  margin-top: 32px;
  text-align: center;
  font-size: 20px;
  color: var(--muted-cool);
}

/* --------------------------------------------------------------------------
   9. FAQS
   -------------------------------------------------------------------------- */

.faqs__title {
  text-align: center;
  font-size: 36px;
  color: var(--navy);
}

.faqs__list {
  margin-top: 40px;
  border-radius: var(--r-xl);
  background: var(--white);
  border: 1px solid var(--line-black);
  box-shadow: 0 12px 32px rgba(14, 42, 90, 0.06);
  overflow: hidden;
}

.faq + .faq {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  text-align: left;
}

.faq__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}

.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  color: var(--navy);
  transition: transform var(--dur) var(--ease);
}

.faq__q[aria-expanded="true"] .faq__icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}

.faq__a {
  padding: 0 24px 24px;
  margin-top: -4px;
  max-width: 68ch;
  font-size: 13.8px;
  line-height: 1.7;
  color: var(--muted);
}

.faq__a[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   10. REGISTER
   -------------------------------------------------------------------------- */

.register {
  position: relative;
  overflow: hidden;
}

.register__blob {
  right: -100px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: rgba(199, 168, 111, 0.2);
  filter: blur(30px);
}

.register__grid {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: start;
}

.register__title {
  margin-top: 12px;
  font-size: 38px;
  line-height: 0.95;
  color: var(--navy);
}

.register__desc {
  margin-top: 16px;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.register__offer {
  margin-top: 16px;
}

.register__panel {
  border-radius: var(--r-2xl);
  background: var(--white);
  border: 1px solid var(--line-black);
  box-shadow: var(--sh-panel);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.register__body {
  padding: 28px;
}

.register__head {
  margin-bottom: 32px;
  text-align: center;
}

.register__head h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--navy);
}

.register__head p {
  font-size: 15px;
  color: var(--muted);
}

/* Form */
.form {
  display: grid;
  gap: 20px;
}

.field__label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.field__optional {
  color: var(--muted-soft);
  font-weight: 400;
}

.field__control {
  width: 100%;
  height: 48px;
  padding-inline: 16px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(14, 42, 90, 0.15);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

textarea.field__control {
  height: 120px;
  padding-block: 12px;
  resize: none;
}

select.field__control {
  cursor: pointer;
}

.field__control::placeholder {
  color: var(--muted-soft);
}

.field__control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(199, 168, 111, 0.2);
}

.form__submit {
  width: 100%;
  height: 56px;
  margin-top: 12px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s var(--ease);
}

.form__submit:hover:not(:disabled) {
  background: var(--navy-deep);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(14, 42, 90, 0.22);
}

.form__submit:disabled {
  cursor: default;
  opacity: 0.9;
}

.register__foot {
  padding: 12px 24px;
  background: var(--cream);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 11px;
  color: var(--muted-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 12px;
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--on-dark);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(199, 168, 111, 0.5),
    transparent
  );
}

.site-footer__inner {
  position: relative;
  display: grid;
  gap: 40px;
  padding-block: 56px;
}

.site-footer .brand__mark {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.site-footer .brand__mark img {
  opacity: 0.9;
}

.site-footer .brand__name {
  font-weight: 400;
  letter-spacing: 0.025em;
  color: var(--on-dark);
}

.site-footer .brand__sub {
  font-weight: 400;
  letter-spacing: 0.4em;
}

.site-footer__about {
  margin-top: 20px;
  max-width: 36ch;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__list {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__list li:last-child {
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__essence {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__divider {
  margin-top: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.site-footer__legal {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   12. TOAST
   -------------------------------------------------------------------------- */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  max-width: 92%;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding-inline: 24px;
  border-radius: var(--r-pill);
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  box-shadow: var(--sh-toast);
}

.toast[hidden] {
  display: none;
}

.toast__icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: var(--navy);
  flex-shrink: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (min-width: 640px) {
  .header-actions .btn--gold {
    display: inline-flex;
  }

  .hero__title { font-size: 64px; }
  .hero__title-line { font-size: 56px; }

  .experience__grid { grid-template-columns: repeat(2, 1fr); }

  .timeline__spine,
  .timeline__dot { display: block; }

  .collage {
    columns: 2;
    column-gap: 24px;
  }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    padding-block: 92px;
  }

  .hero__title { font-size: 84px; }
  .hero__title-line { font-size: 72px; }
  .hero__media { height: 640px; }
  .hero__card { left: 0; }

  /* Introduction */
  .intro__copy { text-align: center; }

  /* Experience */
  .experience__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* Reasons timeline — alternating two-column layout */
  .timeline__spine {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline__dot {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline__item {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline__spacer { display: block; }

  /* Applied to every row in the original build — see NOTES.md #4 */
  .timeline__meta { justify-content: flex-end; }
  .timeline__desc { margin-left: auto; }

  /* Odd rows (1st, 3rd, 5th): text right-aligned in the left column */
  .timeline__item:nth-child(odd) .timeline__body {
    justify-content: flex-end;
    text-align: right;
  }

  .timeline__item:nth-child(odd) .timeline__spacer { order: 2; }

  /* Even rows (2nd, 4th): text moves to the right column */
  .timeline__item:nth-child(even) > *:first-child { order: 2; }

  .timeline__dash { display: block; }

  /* Venue */
  .venue__title { font-size: 50px; }
  .collage {
    margin-top: 56px;
    column-gap: 28px;
  }
  .collage__item { margin-bottom: 28px; }

  /* Plans */
  .plans__grid { grid-template-columns: repeat(3, 1fr); }
  .plan-card { padding: 28px; }

  /* FAQs */
  .faqs__title { font-size: 44px; }
  .faq__q { padding-inline: 32px; }
  .faq__a { padding-inline: 32px; }

  /* Register */
  .register__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }

  .register__aside {
    position: sticky;
    top: 96px;
  }

  .register__title { font-size: 50px; }
  .register__body { padding: 40px; }

  /* Reasons / sections */
  .reasons__title { font-size: 46px; }
  .intro__verdict { font-size: 64px; }
  .experience__statement { font-size: 64px; }

  /* Footer */
  .site-footer__inner {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    padding-block: 64px;
  }
}
