/* ============================================================
   DESTINATION: TBD — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ivory:        #F4EFE6;
  --ivory-dark:   #EDE6D9;
  --ivory-mid:    #E8E0D0;
  --stone:        #C8BFA8;
  --stone-light:  #DDD6C6;
  --charcoal:     #1C1C28;
  --charcoal-soft:#2A2A38;
  --gold:         #A8916A;
  --gold-light:   #BFA882;
  --sage:         #7A8B7C;
  --muted:        #6B6B7A;
  --off-white:    #FAF9F6;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w:        1240px;
  --max-w-narrow: 760px;
  --max-w-text:   580px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background-color: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.08;
}

/* ============================================================
   UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow { max-width: var(--max-w-narrow); }
.container--text   { max-width: var(--max-w-text); }

.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.section-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.28s; }
.reveal-d4 { transition-delay: 0.38s; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.28s ease;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--charcoal);
  color: var(--ivory);
}
.btn--primary:hover { background-color: var(--charcoal-soft); }

.btn--outline {
  background-color: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(28,28,40,0.28);
}
.btn--outline:hover { border-color: var(--charcoal); }

.btn--outline-light {
  background-color: transparent;
  color: var(--ivory);
  border: 1px solid rgba(244,239,230,0.3);
}
.btn--outline-light:hover { border-color: var(--ivory); }

.btn--gold {
  background-color: var(--gold);
  color: var(--off-white);
}
.btn--gold:hover { background-color: var(--gold-light); }

.btn svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  background-color: rgba(244, 239, 230, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color 0.35s ease, padding 0.35s ease,
              box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.nav.scrolled {
  background-color: rgba(244, 239, 230, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 2.5rem;
  box-shadow: 0 1px 0 rgba(200,191,168,0.4);
}

.nav__brand {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__brand-accent { color: var(--gold); }

.nav__logo-icon { flex-shrink: 0; }

.nav__center {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  list-style: none;
}

.nav__center a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.75;
  transition: opacity 0.2s;
}

.nav__center a:hover { opacity: 1; }

.nav__cta .btn { padding: 0.6rem 1.5rem; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 70% at center,
    rgba(244, 239, 230, 0.93) 0%,
    rgba(244, 239, 230, 0.87) 55%,
    rgba(244, 239, 230, 0.80) 100%
  );
  z-index: 0;
}

.hero__bg-mark {
  position: absolute;
  font-family: var(--font-serif);
  font-size: 40vw;
  font-weight: 300;
  color: rgba(28,28,40,0.055);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.02em;
  z-index: 1;
}

.hero__inner {
  max-width: 860px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background-color: var(--gold);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--charcoal);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

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

.hero__sub {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.72;
  color: var(--charcoal-soft);
  max-width: 500px;
  margin: 0 auto 3rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}

.hero__footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  opacity: 0.6;
}

/* ============================================================
   PROMISE (3 PILLARS)
   ============================================================ */

.promise {
  background-color: var(--charcoal);
  padding: 5.5rem 0;
}

.promise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.promise__item {
  padding: 3rem 3.5rem;
  border-right: 1px solid rgba(244,239,230,0.08);
}

.promise__item:last-child { border-right: none; }

.promise__num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.promise__title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.promise__title em { font-style: italic; }

.promise__text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(244,239,230,0.55);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how {
  padding: 8rem 0;
  background-color: var(--ivory);
}

.how__header {
  margin-bottom: 5.5rem;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: steps;
}

.step {
  padding-top: 2rem;
  border-top: 1px solid var(--stone-light);
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--gold);
}

.step__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--stone-light);
  line-height: 1;
  margin-bottom: 1.25rem;
  user-select: none;
}

.step__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
}

.step__body {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* ============================================================
   INCLUDED
   ============================================================ */

.included {
  padding: 8rem 0;
  background-color: var(--off-white);
}

.included__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.included__col-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--charcoal);
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--stone-light);
}

.included__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.included__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--charcoal);
  align-items: baseline;
}

.included__list li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.875rem;
}

.included__list--no li { color: var(--muted); opacity: 0.7; }
.included__list--no li::before { color: var(--stone); }

.included__note {
  margin-top: 2rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--stone);
}

/* ============================================================
   VIBES
   ============================================================ */

.vibes {
  padding: 8rem 0;
  background-color: var(--ivory);
}

.vibes__intro {
  margin-bottom: 4rem;
  max-width: 540px;
}

.vibes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.vibe-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem 1.875rem;
  cursor: default;
  aspect-ratio: 4/5;
}


.vibe-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease-out);
}

.vibe-card:hover .vibe-card__bg { transform: scale(1.04); }

.vibe-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,20,0.35) 0%, rgba(12,12,20,0.05) 40%, transparent 100%);
}

.vibe-card__content {
  position: relative;
  z-index: 1;
  background: rgba(12, 12, 20, 0.46);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem 1.375rem;
  border-top: 1px solid rgba(244,239,230,0.1);
}

.vibe-card__tag {
  display: inline-block;
  font-size: 0.6125rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.65);
  margin-bottom: 0.4rem;
}

.vibe-card__name {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.vibe-card__desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(244,239,230,0.8);
  line-height: 1.6;
  max-width: 280px;
}

.vibe-card--coastal .vibe-card__bg {
  background-image: url('../images/coastal.png');
  background-size: cover;
  background-position: center;
}

.vibe-card--desert .vibe-card__bg {
  background-image: url('../images/desert.png');
  background-size: cover;
  background-position: center;
}

.vibe-card--culture .vibe-card__bg {
  background-image: url('../images/culture.png');
  background-size: cover;
  background-position: center top;
}

.vibe-card--mountain .vibe-card__bg {
  background-image: url('../images/mountain.png');
  background-size: cover;
  background-position: center;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing {
  padding: 9rem 0;
  background-color: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing__watermark {
  position: absolute;
  font-family: var(--font-serif);
  font-size: 28vw;
  font-weight: 300;
  color: rgba(244,239,230,0.028);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  line-height: 1;
}

.pricing__eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.pricing__amount {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing__qualifier {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(244,239,230,0.4);
  margin-bottom: 3rem;
}

.pricing__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 3.5rem;
}

.pricing__item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(244,239,230,0.6);
}

.pricing__item::before {
  content: '';
  width: 18px;
  height: 1px;
  background-color: var(--gold);
  flex-shrink: 0;
}

.pricing__footnote {
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(244,239,230,0.28);
  margin-top: 2.5rem;
}

/* ============================================================
   WHY THIS WORKS
   ============================================================ */

.why {
  padding: 8rem 0;
  background-color: var(--ivory-dark);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.why__visual {
  position: relative;
}

.why__photo {
  aspect-ratio: 3/4;
  background-image: url('../images/couple.png');
  background-size: cover;
  background-position: center top;
}

.why__pullquote {
  position: absolute;
  bottom: -1.75rem;
  right: -1.75rem;
  background-color: var(--charcoal);
  color: var(--ivory);
  padding: 1.5rem 2rem;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-style: italic;
  font-weight: 300;
  max-width: 210px;
  line-height: 1.55;
}

.why__content { padding-right: 1rem; }

.why__points {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  margin-top: 3rem;
}

.why__point-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.why__point-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* ============================================================
   FOUNDER NOTE
   ============================================================ */

.founder {
  padding: 7.5rem 0;
  background-color: var(--off-white);
}

.founder__inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.founder__rule {
  width: 36px;
  height: 1px;
  background-color: var(--gold);
  margin: 0 auto 2.75rem;
}

.founder__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 3rem;
}

.founder__byline { display: flex; flex-direction: column; gap: 0.375rem; }
.founder__name { font-size: 0.875rem; font-weight: 400; letter-spacing: 0.04em; }
.founder__role { font-size: 0.8125rem; font-weight: 300; color: var(--muted); font-style: italic; }

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: 8rem 0;
  background-color: var(--ivory);
}

.faq__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.faq__sticky {
  position: sticky;
  top: 6rem;
}

.faq__list { display: flex; flex-direction: column; }

.faq__item { border-bottom: 1px solid var(--stone-light); }
.faq__item:first-child { border-top: 1px solid var(--stone-light); }

.faq__trigger {
  width: 100%;
  padding: 1.375rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: color 0.2s;
}

.faq__trigger:hover { color: var(--gold); }

.faq__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__icon::before { width: 1px; height: 100%; left: 50%; top: 0; }
.faq__icon::after  { width: 100%; height: 1px; top: 50%; left: 0; }

.faq__item.open .faq__icon::before { transform: scaleY(0); opacity: 0; }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}

.faq__item.open .faq__answer { max-height: 400px; }

.faq__answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  padding: 10rem 0;
  background-color: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta__bg-text {
  position: absolute;
  font-family: var(--font-serif);
  font-size: 26vw;
  font-weight: 300;
  color: rgba(244,239,230,0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.final-cta__eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.final-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.final-cta__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(244,239,230,0.5);
  margin-bottom: 3.5rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__note {
  margin-top: 2rem;
  font-size: 0.8125rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(244,239,230,0.3);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  padding: 7rem 0;
  background-color: var(--ivory);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.contact__header .section-title { margin-top: 0.5rem; }
.contact__header .section-body  { margin-top: 1rem; }

.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }

.contact__footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.contact__error {
  font-size: 0.875rem;
  color: rgba(180, 80, 80, 0.85);
  line-height: 1.5;
}

.contact__success {
  display: none;
  padding: 2rem 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background-color: var(--charcoal);
  border-top: 1px solid rgba(244,239,230,0.08);
  padding: 2.25rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  color: rgba(244,239,230,0.5);
}

.footer__copy {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(244,239,230,0.3);
}

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__links a {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(244,239,230,0.35);
  transition: color 0.2s;
}

.footer__links a:hover { color: rgba(244,239,230,0.7); }

/* ============================================================
   APPLICATION FLOW
   ============================================================ */

.apply-page {
  min-height: 100svh;
  background-color: var(--ivory);
}

.apply-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background-color: rgba(244,239,230,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,191,168,0.3);
  gap: 2rem;
}

.apply-nav__brand {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--charcoal);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.apply-nav__brand span { color: var(--gold); }

.apply-progress {
  flex: 1;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.apply-progress__bar {
  width: 100%;
  height: 1px;
  background-color: var(--stone-light);
  position: relative;
}

.apply-progress__fill {
  position: absolute;
  inset: 0 auto 0 0;
  background-color: var(--gold);
  transition: width 0.55s var(--ease-out);
}

.apply-progress__label {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.apply-close {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  flex-shrink: 0;
}

.apply-close:hover { color: var(--charcoal); }

/* Steps area */
.apply-body {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem 6rem;
}

.apply-step {
  width: 100%;
  max-width: 620px;
  display: none;
}

.apply-step.active {
  display: block;
  animation: fadeUp 0.5s var(--ease-out) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.apply-step__eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.apply-step__title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.apply-step__sub {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 2.75rem;
}

/* Option cards (radio/checkbox styled) */
.option-grid {
  display: grid;
  gap: 0.875rem;
}

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

.option-card { position: relative; }

.option-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-card__face {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.375rem 1.5rem;
  border: 1px solid var(--stone-light);
  background-color: var(--off-white);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
  user-select: none;
}

.option-card__face:hover { border-color: var(--charcoal); }

.option-card input:checked ~ .option-card__face {
  border-color: var(--charcoal);
  background-color: var(--charcoal);
  color: var(--ivory);
}

.option-card__title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
}

.option-card__desc {
  font-size: 0.8rem;
  font-weight: 300;
  opacity: 0.6;
  line-height: 1.5;
}

/* Form fields */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.field:last-child { margin-bottom: 0; }

.field__label {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  padding: 0.9375rem 1.125rem;
  border: 1px solid var(--stone-light);
  background-color: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}

.field__input:focus,
.field__select:focus,
.field__textarea:focus { border-color: var(--charcoal); }

.field__input::placeholder,
.field__textarea::placeholder { color: var(--stone); }

.field__textarea { resize: vertical; min-height: 90px; }

.field__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5.5 5.5L10 1' stroke='%231C1C28' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
}

.field__hint {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  font-style: italic;
}

/* Budget step special */
.budget-note {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--ivory-mid);
  border-left: 2px solid var(--gold);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* Apply footer nav */
.apply-footer {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background-color: rgba(244,239,230,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200,191,168,0.3);
}

.apply-back {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  visibility: hidden;
}

.apply-back.visible { visibility: visible; }
.apply-back:hover { color: var(--charcoal); }

.apply-next {
  margin-left: auto;
}

/* Confirmation */
.apply-confirm {
  text-align: center;
  max-width: 520px;
}

.apply-confirm__circle {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
}

.apply-confirm__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.apply-confirm__body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.apply-confirm__detail {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--muted);
}

.apply-confirm__curation {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ============================================================
   AIRPORT SELECTOR
   ============================================================ */

.airport-selector {
  position: relative;
}

.airport-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--ivory);
  border: 1px solid rgba(28, 28, 40, 0.15);
  border-top: none;
  border-radius: 0 0 4px 4px;
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  max-height: 240px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(28, 28, 40, 0.08);
}

.airport-dropdown.open {
  display: block;
}

.airport-dropdown--up {
  top: auto;
  bottom: 100%;
  border-top: 1px solid rgba(28, 28, 40, 0.15);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}

.airport-dropdown__item {
  padding: 0.65rem 1rem;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  cursor: pointer;
  line-height: 1.4;
}

.airport-dropdown__item:hover {
  background: rgba(28, 28, 40, 0.04);
}

/* ============================================================
   PREFERENCE COUNTER + DISABLED STATE
   ============================================================ */

.pref-counter {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--muted);
  text-align: right;
  margin-top: 0.75rem;
  min-height: 1.25em;
  transition: color 0.2s;
}

.pref-counter.at-max {
  color: var(--gold);
}

.option-card--disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ============================================================
   TOAST
   ============================================================ */

.toast {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(-100% - 2rem));
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0.875rem 1rem 0.875rem 1.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  white-space: nowrap;
  z-index: 9999;
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 8px 32px rgba(28, 28, 40, 0.18);
}

.toast--visible {
  transform: translateX(-50%) translateY(0);
}

.toast__close {
  background: none;
  border: none;
  color: rgba(244, 239, 230, 0.5);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.125rem 0.25rem;
  transition: color 0.15s;
}

.toast__close:hover { color: var(--ivory); }

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

@media (max-width: 1024px) {
  .how__steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }

  .faq__layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq__sticky { position: static; }

  .why__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .why__photo { max-height: 380px; aspect-ratio: 4/3; }
  .why__pullquote { display: none; }
  .why__content { padding-right: 0; }

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

@media (max-width: 768px) {
  section { padding: 5rem 0; }

  .nav__center { display: none; }
  .hero { padding: 6rem 1.5rem 4rem; }

  .nav { padding: 1.25rem 1.5rem; }
  .nav.scrolled { padding: 1rem 1.5rem; }

  .promise__grid { grid-template-columns: 1fr; }
  .promise__item { border-right: none; border-bottom: 1px solid rgba(244,239,230,0.08); }
  .promise__item:last-child { border-bottom: none; }

  .how__steps { grid-template-columns: 1fr; }

  .included__grid { grid-template-columns: 1fr; gap: 3rem; }

  .vibes__grid { grid-template-columns: 1fr; }

  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer__inner { flex-direction: column; text-align: center; gap: 1rem; }
  .footer__links { flex-wrap: wrap; justify-content: center; }

  .apply-nav { padding: 1rem 1.5rem; gap: 1rem; }
  .apply-footer { padding: 1rem 1.5rem; }
  .option-grid--3cols { grid-template-columns: 1fr; }
  .option-grid--2cols { grid-template-columns: 1fr; }

  .hero__left { padding: 7rem 1.5rem 3rem; }
}
