/* ============================================================
   FitEscape — styles.css
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink: #0B0F0D;
  --ink-2: #10160F;
  --ink-3: #161D15;
  --cream: #F5F2EA;
  --cream-2: #ECE6D8;
  --lime: #C9F24A;
  --lime-deep: #A9DC2E;
  --coral: #FF6A45;
  --sand: #E3C9A0;
  --line: rgba(11, 15, 13, 0.12);
  --line-light: rgba(245, 242, 234, 0.16);
  --muted-dark: rgba(245, 242, 234, 0.66);
  --muted-ink: rgba(11, 15, 13, 0.62);

  --maxw: 1240px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 22px;
  --radius-sm: 14px;

  --ff-display: "Bricolage Grotesque", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
  --ff-serif: "Instrument Serif", Georgia, serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--lime); color: var(--ink); }

.sr-only, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
  background: var(--ink); color: var(--cream); padding: 10px 16px; border-radius: 10px; z-index: 999;
}
:focus-visible { outline: 2px solid var(--lime-deep); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4.5rem, 9vw, 9rem); position: relative; }
.section--dark { background: var(--ink); color: var(--cream); }
.section--cream { background: var(--cream-2); }

/* ---------- Grain + progress ---------- */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.4; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0%; background: var(--lime); box-shadow: 0 0 12px rgba(201,242,74,0.6); }

/* ---------- Buttons ---------- */
.btn {
  --btnbg: var(--ink); --btnfg: var(--cream);
  display: inline-flex; align-items: center; gap: 0.55em;
  background: var(--btnbg); color: var(--btnfg);
  padding: 0.9em 1.5em; border-radius: 100px; font-family: var(--ff-display);
  font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, color 0.25s;
  will-change: transform; white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(11,15,13,0.25); }
.btn:active { transform: translateY(-1px); }
.btn--lime { --btnbg: var(--lime); --btnfg: var(--ink); }
.btn--lime:hover { box-shadow: 0 16px 34px rgba(201,242,74,0.4); }
.btn--dark { --btnbg: var(--ink); --btnfg: var(--cream); }
.btn--ghost { --btnbg: transparent; --btnfg: var(--cream); border: 1.5px solid var(--line-light); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(245,242,234,0.1); }
.btn--outline { --btnbg: transparent; --btnfg: var(--cream); border: 1.5px solid var(--line-light); }
.btn--outline:hover { background: var(--cream); color: var(--ink); }
.btn--sm { padding: 0.62em 1.1em; font-size: 0.9rem; }
.btn--lg { padding: 1.05em 1.9em; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--ff-display); font-weight: 500; font-size: 0.86rem;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--cream);
  background: rgba(245,242,234,0.08); border: 1px solid var(--line-light);
  padding: 0.5em 1em; border-radius: 100px;
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(201,242,74,0.25); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(201,242,74,0.25); } 50% { box-shadow: 0 0 0 7px rgba(201,242,74,0); } }

.section__head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__kicker {
  font-family: var(--ff-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.82rem; color: var(--coral); margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.6em;
}
.section__kicker::before { content: ""; width: 26px; height: 1.5px; background: currentColor; }
.section__kicker--lime { color: var(--lime-deep); }
.section__title {
  font-family: var(--ff-display); font-weight: 700; letter-spacing: -0.03em; line-height: 1.02;
  font-size: clamp(2.1rem, 5.2vw, 4rem);
}
.section__intro { margin-top: 1.25rem; font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted-ink); max-width: 60ch; }
.section--dark .section__intro { color: var(--muted-dark); }

em { font-family: var(--ff-serif); font-style: italic; font-weight: 400; }
.hl { position: relative; white-space: nowrap; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 74px; }
.nav.is-scrolled {
  background: rgba(11,15,13,0.72); backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line-light); box-shadow: 0 8px 30px rgba(0,0,0,0.16);
}

.brand { display: inline-flex; align-items: center; gap: 0.6em; color: var(--cream); font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em; }
.brand__mark { display: grid; place-items: center; color: var(--lime); transition: transform 0.5s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.08); }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { color: var(--cream); font-size: 0.95rem; font-weight: 500; opacity: 0.85; position: relative; padding: 4px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--lime); transition: width 0.3s var(--ease); }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }

.nav__toggle { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-light); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__toggle span { width: 18px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav__toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; gap: 0.35rem; padding: 1rem var(--pad) 1.75rem; background: rgba(11,15,13,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-light); }
.nav__mobile a { color: var(--cream); padding: 0.85rem 0; font-family: var(--ff-display); font-weight: 500; font-size: 1.1rem; border-bottom: 1px solid var(--line-light); }
.nav__mobile a.btn { justify-content: center; border-bottom: none; margin-top: 0.75rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--cream); overflow: hidden; padding-top: 74px; }
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(120deg, rgba(11,15,13,0.55), rgba(11,15,13,0.15)),
    radial-gradient(120% 90% at 80% 10%, rgba(201,242,74,0.14), transparent 55%),
    var(--ink);
  background-size: cover; background-position: center;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1502680390469-be75c86b636f?auto=format&fit=crop&w=1920&q=80");
  background-size: cover; background-position: center;
  opacity: 0.95;
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.14); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(96deg, rgba(11,15,13,0.9) 0%, rgba(11,15,13,0.6) 38%, rgba(11,15,13,0.15) 72%, rgba(11,15,13,0) 100%),
    linear-gradient(180deg, rgba(11,15,13,0.35) 0%, rgba(11,15,13,0) 30%, rgba(11,15,13,0.2) 55%, rgba(11,15,13,0.92) 100%);
}
.hero__content { position: relative; z-index: 2; padding-bottom: clamp(3rem, 8vh, 6rem); padding-top: 2rem; }

.hero__title {
  font-family: var(--ff-display); font-weight: 700; letter-spacing: -0.035em;
  line-height: 0.98; font-size: clamp(2.9rem, 8.5vw, 7.2rem); margin: 1.5rem 0;
  text-wrap: balance;
}
.hero__title em { color: var(--lime); }
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; transform: translateY(110%); transition: transform 0.9s var(--ease); }
.reveal-line > span.is-in { transform: translateY(0); }
.hero__title .reveal-line:nth-child(2) > span { transition-delay: 0.08s; }
.hero__title .reveal-line:nth-child(3) > span { transition-delay: 0.16s; }

.hero__sub { max-width: 54ch; font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: rgba(245,242,234,0.88); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 4rem); margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line-light); }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.03em; line-height: 1; color: var(--cream); }
.hero__stats span { font-size: 0.9rem; color: var(--muted-dark); margin-top: 0.4rem; }

.hero__scroll { position: absolute; right: var(--pad); bottom: clamp(2rem, 6vh, 4rem); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-dark); }
.hero__scroll-line { width: 1.5px; height: 46px; background: linear-gradient(var(--lime), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--cream); animation: scrollDown 2s var(--ease) infinite; }
@keyframes scrollDown { to { top: 100%; } }
@media (max-width: 640px) { .hero__scroll { display: none; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--lime); color: var(--ink); overflow: hidden; padding: 0.9rem 0; border-block: 2px solid var(--ink); }
.marquee__track { display: inline-flex; align-items: center; gap: 1.5rem; white-space: nowrap; font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.1rem, 2.2vw, 1.6rem); letter-spacing: -0.01em; animation: marquee 32s linear infinite; }
.marquee__track .dot { opacity: 0.5; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   PROMISE
   ============================================================ */
.promise { background: var(--cream); text-align: center; }
.promise .container { max-width: 1000px; }
.promise__headline { font-family: var(--ff-display); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; font-size: clamp(1.9rem, 4.6vw, 3.6rem); margin: 1.2rem auto; text-wrap: balance; }
.promise__headline .hl { color: var(--ink); background: linear-gradient(transparent 62%, rgba(201,242,74,0.7) 62%); padding: 0 0.06em; }
.promise__lede { max-width: 68ch; margin: 2rem auto 0; font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted-ink); }

/* ============================================================
   HOW / STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step { padding: 2rem 1.5rem; border: 1px solid var(--line-light); border-radius: var(--radius); background: rgba(245,242,234,0.02); transition: transform 0.4s var(--ease), background 0.4s, border-color 0.4s; }
.step:hover { transform: translateY(-6px); background: rgba(245,242,234,0.05); border-color: rgba(201,242,74,0.35); }
.step__num { font-family: var(--ff-display); font-weight: 700; font-size: 2.4rem; color: var(--lime); letter-spacing: -0.04em; display: block; }
.step__title { font-family: var(--ff-display); font-weight: 600; font-size: 1.3rem; margin: 1rem 0 0.6rem; letter-spacing: -0.01em; }
.step p { color: var(--muted-dark); font-size: 0.98rem; }

/* ============================================================
   BENTO / INCLUDED
   ============================================================ */
.included { background: var(--cream); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.bento__card { position: relative; padding: 2.2rem; border-radius: var(--radius); background: var(--ink); color: var(--cream); overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.bento__card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 100% at 100% 0%, rgba(201,242,74,0.16), transparent 55%); opacity: 0; transition: opacity 0.5s; }
.bento__card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(11,15,13,0.2); }
.bento__card:hover::before { opacity: 1; }
.bento__card--wide { grid-column: span 2; }
.bento__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(201,242,74,0.14); color: var(--lime); margin-bottom: 1.4rem; }
.bento__card h3 { font-family: var(--ff-display); font-weight: 600; font-size: 1.45rem; letter-spacing: -0.02em; margin-bottom: 0.6rem; position: relative; }
.bento__card p { color: var(--muted-dark); position: relative; max-width: 46ch; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.dest__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dest__card { border-radius: var(--radius); overflow: hidden; background: var(--ink-3); border: 1px solid var(--line-light); transition: transform 0.5s var(--ease), box-shadow 0.5s; }
.dest__card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.35); }
.dest__img { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.dest__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.dest__card:hover .dest__img img { transform: scale(1.08); }
.ph { background: linear-gradient(135deg, #1c2a1e, #2a3d2b); }
.ph[data-grad="beach"] { background: linear-gradient(150deg, #2b4a5e, #7fb4c4); }
.ph[data-grad="mountain"] { background: linear-gradient(150deg, #3a4256, #8a93ab); }
.ph[data-grad="jungle"] { background: linear-gradient(150deg, #1f3a24, #4f7a43); }
.dest__body { padding: 1.6rem 1.6rem 1.9rem; }
.dest__tag { display: inline-block; font-family: var(--ff-display); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); background: var(--lime); padding: 0.35em 0.85em; border-radius: 100px; margin-bottom: 1rem; }
.dest__body h3 { font-family: var(--ff-display); font-weight: 600; font-size: 1.5rem; letter-spacing: -0.02em; color: var(--cream); }
.dest__body p { color: var(--muted-dark); margin-top: 0.5rem; font-size: 0.96rem; }

/* Coming-soon destination card */
.dest__card--soon { display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(160deg, var(--ink-3), var(--ink)); border: 1px dashed var(--line-light); }
.dest__card--soon:hover { border-color: rgba(201,242,74,0.4); }
.dest__soon-inner { padding: 2.5rem 1.8rem; }
.dest__soon-inner .dest__tag { background: transparent; color: var(--lime); border: 1px solid var(--lime); }
.dest__soon-inner h3 { font-family: var(--ff-display); font-weight: 600; font-size: 1.6rem; letter-spacing: -0.02em; color: var(--cream); margin: 0.2rem 0 0.6rem; }
.dest__soon-inner p { color: var(--muted-dark); margin-bottom: 1.5rem; font-size: 0.96rem; }
.dest__soon-link { display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--ff-display); font-weight: 600; color: var(--lime); }
.dest__soon-link:hover { gap: 0.75em; }

/* ============================================================
   A DAY / TIMELINE
   ============================================================ */
.day { background: var(--cream); }
.day__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.day__intro { position: sticky; top: 100px; }
.day__intro .btn { margin-top: 2rem; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--lime-deep), var(--line)); }
.timeline__item { position: relative; display: grid; grid-template-columns: 66px 1fr; gap: 1.2rem; padding: 1.1rem 0; align-items: baseline; }
.timeline__item::before { content: ""; position: absolute; left: -2.42rem; top: 1.55rem; width: 12px; height: 12px; border-radius: 50%; background: var(--cream); border: 2.5px solid var(--lime-deep); }
.timeline__time { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); letter-spacing: -0.02em; }
.timeline__item h3 { font-family: var(--ff-display); font-weight: 600; font-size: 1.2rem; letter-spacing: -0.01em; }
.timeline__item p { color: var(--muted-ink); font-size: 0.96rem; margin-top: 0.15rem; }

/* ============================================================
   QUOTES
   ============================================================ */
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; gap: 1.75rem; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.quote:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(11,15,13,0.12); }
.quote blockquote { font-family: var(--ff-display); font-weight: 500; font-size: 1.18rem; line-height: 1.4; letter-spacing: -0.01em; }
.quote figcaption { display: flex; flex-direction: column; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.quote figcaption strong { font-family: var(--ff-display); font-weight: 600; }
.quote figcaption span { font-size: 0.88rem; color: var(--muted-ink); }

/* ============================================================
   PRICING
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; padding: 2.2rem; border-radius: var(--radius); border: 1px solid var(--line-light); background: rgba(245,242,234,0.03); transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s; }
.plan:hover { transform: translateY(-6px); border-color: rgba(201,242,74,0.3); }
.plan--featured { background: var(--cream); color: var(--ink); border-color: var(--lime); box-shadow: 0 30px 70px rgba(0,0,0,0.35); }
.plan--featured .plan__head p, .plan--featured .plan__list li { color: var(--muted-ink); }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--lime); color: var(--ink); font-family: var(--ff-display); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.4em 1em; border-radius: 100px; }
.plan__badge--soon { background: transparent; color: var(--lime); border: 1px solid var(--lime); }
.plan--soon { border-style: dashed; }
.plan--soon:hover { border-color: rgba(201,242,74,0.5); }
.plan__head h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.6rem; letter-spacing: -0.02em; }
.plan__head p { color: var(--muted-dark); margin-top: 0.5rem; font-size: 0.96rem; min-height: 2.8em; }
.plan__price { font-family: var(--ff-display); font-weight: 700; font-size: 2.6rem; letter-spacing: -0.03em; margin: 1.5rem 0; line-height: 1; }
.plan__from { display: block; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 0.35rem; }
.plan--featured .plan__from { color: var(--muted-ink); }
.plan__per { font-size: 1rem; font-weight: 500; color: var(--muted-dark); }
.plan--featured .plan__per { color: var(--muted-ink); }
.plan__list { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; flex: 1; }
.plan__list li { position: relative; padding-left: 1.8rem; color: var(--muted-dark); font-size: 0.98rem; }
.plan__list li::before { content: ""; position: absolute; left: 0; top: 0.35em; width: 16px; height: 10px; border-left: 2px solid var(--lime-deep); border-bottom: 2px solid var(--lime-deep); transform: rotate(-45deg); }
.plan--featured .plan__list li::before { border-color: var(--lime-deep); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.faq__head { position: sticky; top: 100px; }
.faq__head a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--lime-deep); text-underline-offset: 4px; text-decoration-thickness: 2px; }
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.acc { border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,0.5); overflow: hidden; transition: border-color 0.3s, background 0.3s; }
.acc[open] { border-color: rgba(11,15,13,0.28); background: #fff; }
.acc summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 1.6rem; font-family: var(--ff-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.01em; }
.acc summary::-webkit-details-marker { display: none; }
.acc__icon { position: relative; flex: 0 0 auto; width: 20px; height: 20px; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease); }
.acc__icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.acc__icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
.acc[open] .acc__icon::after { transform: rotate(90deg); opacity: 0; }
.acc__body { padding: 0 1.6rem 1.5rem; }
.acc__body p { color: var(--muted-ink); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta { position: relative; color: var(--cream); overflow: hidden; text-align: center; padding-block: clamp(5rem, 11vw, 10rem); }
.cta__media { position: absolute; inset: 0; z-index: 0; background: var(--ink); }
.cta__media::after { content: ""; position: absolute; inset: 0; background-image: url("https://images.unsplash.com/photo-1471922694854-ff1b63b20054?auto=format&fit=crop&w=1920&q=80"); background-size: cover; background-position: center; opacity: 0.55; }
.cta__scrim { position: absolute; inset: 0; z-index: 1; background: radial-gradient(90% 90% at 50% 40%, rgba(11,15,13,0.55), rgba(11,15,13,0.9)); }
.cta__inner { position: relative; z-index: 2; max-width: 780px; }
.cta__title { font-family: var(--ff-display); font-weight: 700; letter-spacing: -0.035em; line-height: 1; font-size: clamp(2.4rem, 7vw, 5.5rem); }
.cta__title em { color: var(--lime); }
.cta__sub { margin: 1.5rem auto 0; font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: rgba(245,242,234,0.85); max-width: 54ch; }
.cta__form { display: flex; gap: 0.6rem; max-width: 480px; margin: 2.5rem auto 0; flex-wrap: wrap; }
.cta__form input { flex: 1; min-width: 220px; padding: 1.05em 1.4em; border-radius: 100px; border: 1.5px solid var(--line-light); background: rgba(245,242,234,0.08); color: var(--cream); font-size: 1rem; backdrop-filter: blur(8px); }
.cta__form input::placeholder { color: rgba(245,242,234,0.55); }
.cta__form input:focus-visible { outline: none; border-color: var(--lime); background: rgba(245,242,234,0.12); }
.cta__note { margin-top: 1.1rem; font-size: 0.88rem; color: var(--muted-dark); }
.cta__note.is-success { color: var(--lime); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.brand--footer { margin-bottom: 1.1rem; }
.footer__brand p { color: var(--muted-dark); max-width: 34ch; font-size: 0.96rem; }
.footer__col h4 { font-family: var(--ff-display); font-weight: 600; font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-dark); margin-bottom: 1.1rem; }
.footer__col a { display: block; padding: 0.4rem 0; color: var(--cream); opacity: 0.82; transition: opacity 0.25s, transform 0.25s var(--ease); }
.footer__col a:hover { opacity: 1; transform: translateX(4px); }
.footer__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.75rem; border-top: 1px solid var(--line-light); flex-wrap: wrap; }
.footer__bar p { color: var(--muted-dark); font-size: 0.88rem; }
.footer__legal a:hover { color: var(--lime); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal, [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal]:nth-child(2) { transition-delay: 0.06s; }
[data-reveal]:nth-child(3) { transition-delay: 0.12s; }
[data-reveal]:nth-child(4) { transition-delay: 0.18s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile:not([hidden]) { display: flex; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card--wide { grid-column: span 2; }
  .dest__grid, .quotes__grid, .plans { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }
  .day__grid, .faq__grid { grid-template-columns: 1fr; }
  .day__intro, .faq__head { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: span 1; }
  .hero__stats { gap: 1.5rem 2rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .cta__form { flex-direction: column; }
  .cta__form .btn { justify-content: center; }
}
