/* ============================================================
   Subhajyoti Tours & Travels — Design System
   Identity: "Auspicious light over the Himalayas"
   Palette: ink-pine, marigold/saffron, snow, mist
   Type: Fraunces (editorial serif) + Outfit (geometric sans)
   Mobile-first.
   ============================================================ */

:root {
  --ink: #0c2421;          /* deep pine-ink */
  --ink-soft: #1a3833;
  --marigold: #f2a516;     /* saffron light */
  --marigold-deep: #d98c0a;
  --snow: #fdfbf6;         /* warm white */
  --mist: #eef1ec;         /* pale mist green */
  --rose: #e26d5a;
  --teal: #2e8c83;
  --txt: #25332f;
  --txt-soft: #5c6b66;
  --txt-light: rgba(253, 251, 246, 0.82);
  --line: rgba(12, 36, 33, 0.12);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 14px 40px -12px rgba(12, 36, 33, 0.22);
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--sans);
  color: var(--txt);
  background: var(--snow);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
fieldset { border: none; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 460; line-height: 1.12; letter-spacing: -0.01em; }

h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); color: var(--ink); }
h2 em, h1 em { font-style: italic; color: var(--marigold-deep); font-weight: 400; }

.section--dark h2 { color: var(--snow); }
.section--dark h2 em { color: var(--marigold); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--marigold-deep);
  margin-bottom: 0.9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--marigold); border-radius: 2px; }
.eyebrow--light { color: var(--marigold); }

.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--dark { background: var(--ink); color: var(--txt-light); }
.section--mist { background: var(--mist); }

.section__head { max-width: 640px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section__lede { color: var(--txt-soft); margin-top: 0.9rem; font-size: 1.04rem; }
.section--dark .section__lede { color: rgba(253, 251, 246, 0.65); }

.section__head--split { max-width: none; display: grid; gap: 1rem; }
@media (min-width: 900px) {
  .section__head--split { grid-template-columns: 1fr 380px; align-items: end; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s;
  will-change: transform;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--marigold), var(--marigold-deep));
  color: var(--ink); box-shadow: 0 10px 26px -8px rgba(217, 140, 10, 0.55);
}
.btn--primary:hover { box-shadow: 0 16px 32px -8px rgba(217, 140, 10, 0.65); }

.btn--dark { background: var(--ink); color: var(--snow); }
.btn--ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn--ghostlight { border: 1.5px solid rgba(253, 251, 246, 0.3); color: var(--snow); }
.btn--glass {
  background: rgba(253, 251, 246, 0.14); color: var(--snow);
  border: 1px solid rgba(253, 251, 246, 0.35); backdrop-filter: blur(8px);
}
.btn--whatsapp { background: #25d366; color: #07301c; }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.88rem; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.02rem; }

/* ---------- Topbar ---------- */
.topbar {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  background: var(--ink); color: var(--txt-light);
  font-size: 0.8rem; padding: 0.45rem 1rem; text-align: center;
}
.topbar a { color: var(--marigold); font-weight: 600; white-space: nowrap; }
.topbar__pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--marigold); margin-right: 0.45rem;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242, 165, 22, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(242, 165, 22, 0); }
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 251, 246, 0.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px -18px rgba(12, 36, 33, 0.35); }

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.8rem 0;
}

.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand__mark { width: 40px; height: 40px; }
.brand__sun { fill: var(--marigold); }
.brand__peak { fill: var(--ink); }
.brand__text {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 560;
  color: var(--ink); line-height: 1;
}
.brand__text em {
  display: block; font-family: var(--sans); font-style: normal;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--marigold-deep); margin-top: 3px;
}

.nav { display: none; }
.header__actions { display: flex; align-items: center; gap: 0.6rem; }
.header__actions .btn--ghost { display: none; }

.hamburger { display: inline-flex; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1000px) {
  .nav { display: flex; gap: 1.7rem; font-size: 0.93rem; font-weight: 500; }
  .nav a { position: relative; padding: 0.3rem 0; color: var(--txt); }
  .nav a::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 0; height: 2px; background: var(--marigold);
    transition: width 0.3s var(--ease);
  }
  .nav a:hover::after { width: 100%; }
  .hamburger { display: none; }
  .header__actions .btn--ghost { display: inline-flex; }
}

/* Mobile nav drawer */
@media (max-width: 999px) {
  .nav {
    position: fixed; inset: 0; top: 0; z-index: 99;
    background: var(--ink);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 1.6rem; font-size: 1.5rem; font-family: var(--serif);
    opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
  }
  .nav.open { opacity: 1; pointer-events: auto; }
  .nav a { color: var(--snow); }
  .nav .nav__contact { color: var(--marigold); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--snow);
  padding: clamp(6rem, 12vh, 9rem) 0 clamp(3rem, 6vh, 4.5rem);
}
.hero__media, .hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media img { animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,36,33,0.45) 0%, rgba(12,36,33,0.1) 35%, rgba(12,36,33,0.78) 100%);
}

.hero__content { position: relative; z-index: 2; }

.hero__kicker {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--marigold);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.6rem, 7.5vw, 5.2rem);
  font-weight: 420; color: var(--snow);
}
.hero__title span { display: block; }

.hero__sub {
  max-width: 560px; margin-top: 1.2rem;
  font-size: clamp(0.98rem, 2.4vw, 1.1rem);
  color: rgba(253, 251, 246, 0.85);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }

/* Quote bar */
.quotebar {
  margin-top: 2rem;
  background: rgba(253, 251, 246, 0.97);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: grid; gap: 0.8rem;
  box-shadow: var(--shadow);
}
.quotebar__field { display: flex; flex-direction: column; gap: 0.15rem; padding: 0 0.4rem; }
.quotebar__field label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--txt-soft);
}
.quotebar__field select {
  border: none; background: transparent; font: 600 1rem var(--sans);
  color: var(--ink); padding: 0.2rem 0; outline: none;
}
.quotebar__submit { width: 100%; }

@media (min-width: 860px) {
  .quotebar {
    grid-template-columns: 1.3fr 1fr 1fr auto;
    align-items: center; padding: 0.7rem 0.7rem 0.7rem 1.4rem;
    max-width: 880px;
  }
  .quotebar__field + .quotebar__field { border-left: 1px solid var(--line); padding-left: 1.2rem; }
  .quotebar__submit { width: auto; }
}

/* Trust strip */
.truststrip {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 2rem; margin-top: 2.2rem; max-width: 680px;
}
.truststrip li { display: flex; flex-direction: column; }
.truststrip strong { font-family: var(--serif); font-size: 1.7rem; color: var(--marigold); line-height: 1.1; }
.truststrip span { font-size: 0.82rem; color: rgba(253, 251, 246, 0.7); letter-spacing: 0.04em; }
@media (min-width: 700px) { .truststrip { grid-template-columns: repeat(4, 1fr); } }

.hero__scrollcue {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(253,251,246,0.5);
  border-radius: 999px; z-index: 2; display: none;
}
.hero__scrollcue span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  background: var(--marigold); border-radius: 4px; transform: translateX(-50%);
  animation: cue 1.8s infinite var(--ease);
}
@keyframes cue { 0% { top: 8px; opacity: 1; } 70% { top: 22px; opacity: 0; } 100% { top: 8px; opacity: 0; } }
@media (min-width: 700px) { .hero__scrollcue { display: block; } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--marigold); color: var(--ink);
  overflow: hidden; padding: 0.7rem 0;
  font-family: var(--serif); font-style: italic; font-size: 1.02rem;
  white-space: nowrap;
}
.marquee__track { display: inline-flex; animation: marquee 38s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Destinations ---------- */
.destgrid {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .destgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .destgrid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; }
  .destcard--tall { grid-row: span 2; }
}

.destcard {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius-lg); min-height: 300px;
  background: var(--ink);
}
.destcard img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.92;
  transition: transform 0.9s var(--ease), opacity 0.4s;
}
.destcard:hover img { transform: scale(1.07); opacity: 1; }
.destcard::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(185deg, rgba(12,36,33,0) 30%, rgba(12,36,33,0.88) 100%);
}
.destcard__body {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 1.4rem 1.5rem; color: var(--snow);
}
.destcard__num {
  position: absolute; top: -2.4rem; left: 1.5rem;
  font-family: var(--serif); font-style: italic; font-size: 1rem;
  color: var(--marigold);
}
.destcard h3 { font-size: 1.45rem; color: var(--snow); }
.destcard p {
  font-size: 0.9rem; color: rgba(253,251,246,0.78); margin-top: 0.3rem;
  max-width: 34ch;
}
.destcard__link {
  display: inline-block; margin-top: 0.7rem;
  font-size: 0.85rem; font-weight: 600; color: var(--marigold);
  transform: translateY(6px); opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s;
}
.destcard:hover .destcard__link { transform: translateY(0); opacity: 1; }
@media (hover: none) { .destcard__link { transform: none; opacity: 1; } }

/* ---------- Packages ---------- */
.pkgrow {
  display: grid; gap: 1.2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .pkgrow { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pkgrow { grid-template-columns: repeat(4, 1fr); } }

.pkgcard {
  background: var(--snow); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.pkgcard:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -18px rgba(0,0,0,0.5); }

.pkgcard__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.pkgcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.pkgcard:hover .pkgcard__media img { transform: scale(1.06); }

.pkgcard__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--marigold); color: var(--ink);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 999px;
}
.pkgcard__badge--alt { background: var(--ink); color: var(--marigold); }
.pkgcard__badge--rose { background: var(--rose); color: var(--snow); }
.pkgcard__badge--teal { background: var(--teal); color: var(--snow); }

.pkgcard__body { padding: 1.3rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.pkgcard__meta {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--marigold-deep);
}
.pkgcard h3 { font-size: 1.35rem; color: var(--ink); margin: 0.35rem 0 0.7rem; }
.pkgcard__inc { display: grid; gap: 0.35rem; margin-bottom: 1.1rem; }
.pkgcard__inc li {
  font-size: 0.88rem; color: var(--txt-soft);
  padding-left: 1.2rem; position: relative;
}
.pkgcard__inc li::before { content: "✦"; position: absolute; left: 0; color: var(--marigold); font-size: 0.7rem; top: 3px; }

.pkgcard__foot {
  margin-top: auto; display: flex; align-items: center;
  justify-content: space-between; gap: 0.6rem;
  border-top: 1px dashed var(--line); padding-top: 1rem;
}
.pkgcard__price { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); line-height: 1.1; }
.pkgcard__price small { display: block; font: 600 0.65rem var(--sans); letter-spacing: 0.12em; text-transform: uppercase; color: var(--txt-soft); }
.pkgcard__price span { font: 500 0.75rem var(--sans); color: var(--txt-soft); }

.packages__note { margin-top: 2.2rem; text-align: center; color: rgba(253,251,246,0.7); }
.packages__note a { color: var(--marigold); font-weight: 600; border-bottom: 1px solid currentColor; }

/* ---------- Why us ---------- */
.why__grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 980px) { .why__grid { grid-template-columns: 1fr 1.1fr; gap: 4.5rem; } }

.why__media { position: relative; }
.why__media > img {
  border-radius: var(--radius-lg); aspect-ratio: 4 / 5;
  object-fit: cover; width: 100%; box-shadow: var(--shadow);
}
.why__floatcard {
  position: absolute; right: -8px; bottom: 26px;
  background: var(--snow); border-radius: var(--radius);
  padding: 1rem 1.2rem; max-width: 240px;
  box-shadow: var(--shadow); font-size: 0.85rem; color: var(--txt-soft);
  border-left: 4px solid var(--marigold);
}
.why__floatcard strong { display: block; color: var(--ink); font-size: 0.95rem; margin-bottom: 0.2rem; }

.whylist { counter-reset: why; margin-top: 1.8rem; display: grid; gap: 1.5rem; }
.whylist li {
  counter-increment: why;
  position: relative; padding-left: 3.4rem;
}
.whylist li::before {
  content: "0" counter(why);
  position: absolute; left: 0; top: 0.1rem;
  font-family: var(--serif); font-style: italic; font-size: 1.5rem;
  color: var(--marigold-deep); opacity: 0.85;
}
.whylist h3 { font-size: 1.18rem; color: var(--ink); margin-bottom: 0.25rem; }
.whylist p { font-size: 0.95rem; color: var(--txt-soft); max-width: 52ch; }

.why__cta { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem; margin-top: 2.2rem; }
.why__call { font-size: 0.95rem; color: var(--txt-soft); }
.why__call strong { color: var(--ink); }

/* ---------- Reviews ---------- */
.slider { overflow: hidden; }
.slider__track {
  display: flex; transition: transform 0.6s var(--ease);
}
.review {
  flex: 0 0 100%;
  background: var(--snow); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 10px 30px -18px rgba(12,36,33,0.25);
  margin-right: 1.2rem;
}
.review blockquote {
  font-family: var(--serif); font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  font-weight: 420; color: var(--ink); line-height: 1.45;
}
.review figcaption {
  display: flex; align-items: center; gap: 0.9rem; margin-top: 1.5rem; flex-wrap: wrap;
}
.review figcaption img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review figcaption strong { display: block; color: var(--ink); }
.review figcaption span:not(.review__stars) { font-size: 0.82rem; color: var(--txt-soft); }
.review__stars { margin-left: auto; color: var(--marigold-deep); letter-spacing: 0.15em; }

.slider__nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.6rem; }
.slider__nav button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--line); color: var(--ink); font-size: 1.1rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.slider__nav button:hover { background: var(--ink); color: var(--snow); border-color: var(--ink); }
.slider__dots { display: flex; gap: 0.45rem; }
.slider__dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(12,36,33,0.2); padding: 0; border: none;
  transition: background 0.25s, transform 0.25s;
}
.slider__dots button.active { background: var(--marigold-deep); transform: scale(1.25); }

.badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem 1rem;
  margin-top: 2.6rem;
}
.badges li {
  font-size: 0.84rem; font-weight: 600; color: var(--ink-soft);
  background: var(--snow); border: 1px solid var(--line);
  padding: 0.5rem 1rem; border-radius: 999px;
}

/* ---------- Planner ---------- */
.planner { position: relative; overflow: hidden; }
.planner::before {
  content: ""; position: absolute; right: -180px; top: -180px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,165,22,0.18), transparent 65%);
}
.planner__grid { display: grid; gap: 2.6rem; position: relative; }
@media (min-width: 980px) { .planner__grid { grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: center; } }

.planner__perks { display: grid; gap: 0.5rem; margin-top: 1.6rem; }
.planner__perks li { padding-left: 1.6rem; position: relative; color: rgba(253,251,246,0.8); }
.planner__perks li::before { content: "✦"; position: absolute; left: 0; color: var(--marigold); }

.planform {
  background: var(--snow); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: 0 30px 70px -25px rgba(0,0,0,0.6);
  color: var(--txt);
}

.planform__progress {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.6rem;
}
.planform__progress span {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.82rem; font-weight: 700;
  background: var(--mist); color: var(--txt-soft);
  transition: background 0.3s, color 0.3s;
}
.planform__progress span.active { background: var(--marigold); color: var(--ink); }
.planform__progress span.done { background: var(--ink); color: var(--snow); }
.planform__progress i { flex: 1; height: 2px; background: var(--line); }

.planform__step { display: none; }
.planform__step.active { display: block; animation: stepIn 0.45s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.planform legend {
  font-family: var(--serif); font-size: 1.35rem; color: var(--ink);
  margin-bottom: 1.1rem;
}

.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.4rem; }
.chip {
  padding: 0.55rem 1.1rem; border-radius: 999px;
  border: 1.5px solid var(--line); font-size: 0.9rem; font-weight: 500;
  color: var(--txt); background: var(--snow);
  transition: all 0.25s var(--ease);
}
.chip:hover { border-color: var(--marigold-deep); }
.chip.selected {
  background: var(--ink); color: var(--snow); border-color: var(--ink);
}
.chip.selected::after { content: " ✓"; color: var(--marigold); }

.planform__row { display: grid; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 560px) { .planform__row { grid-template-columns: 1fr 1fr; } }
.planform label {
  display: flex; flex-direction: column; gap: 0.35rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--txt-soft);
}
.planform select, .planform input {
  font: 500 1rem var(--sans); color: var(--ink);
  padding: 0.75rem 0.9rem; border-radius: 12px;
  border: 1.5px solid var(--line); background: #fff; outline: none;
  transition: border-color 0.25s;
}
.planform select:focus, .planform input:focus { border-color: var(--marigold-deep); }
.planform__full { margin-bottom: 1.2rem; }
.planform__nav { display: flex; justify-content: space-between; gap: 0.8rem; flex-wrap: wrap; }
.planform__nav .btn--ghostlight { border-color: var(--line); color: var(--txt); }
.planform__fine { font-size: 0.74rem; color: var(--txt-soft); margin-top: 1rem; }

.planform__done { text-align: center; padding: 1.5rem 0.5rem; }
.planform__doneicon {
  width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.6rem;
  background: var(--marigold); color: var(--ink);
  animation: pop 0.5s var(--ease);
}
@keyframes pop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.planform__done h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.4rem; }
.planform__done p { color: var(--txt-soft); margin-bottom: 1.2rem; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; gap: 2.5rem; }
@media (min-width: 980px) {
  .faq__grid { grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: start; }
  .faq__head { position: sticky; top: 110px; }
}
.faq__head a { color: var(--marigold-deep); font-weight: 600; }

.accordion { display: grid; gap: 0.7rem; }
.accordion__item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow 0.3s;
}
.accordion__item[open] { box-shadow: var(--shadow); border-color: transparent; }
.accordion__item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-family: var(--serif); font-size: 1.08rem; font-weight: 500; color: var(--ink);
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary::after {
  content: "+"; font-family: var(--sans); font-size: 1.3rem; font-weight: 400;
  color: var(--marigold-deep); transition: transform 0.3s var(--ease); flex-shrink: 0;
}
.accordion__item[open] summary::after { transform: rotate(45deg); }
.accordion__item p { padding: 0 1.3rem 1.2rem; color: var(--txt-soft); font-size: 0.95rem; }

/* ---------- Final CTA ---------- */
.finalcta {
  position: relative; padding: clamp(5rem, 12vw, 9rem) 0;
  text-align: center; color: var(--snow); overflow: hidden;
}
.finalcta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.finalcta__scrim { position: absolute; inset: 0; background: rgba(12, 36, 33, 0.78); }
.finalcta__content { position: relative; z-index: 2; max-width: 760px; }
.finalcta h2 { color: var(--snow); font-size: clamp(2.1rem, 5.5vw, 3.6rem); }
.finalcta h2 em { color: var(--marigold); }
.finalcta p { margin-top: 1rem; color: rgba(253,251,246,0.8); }
.finalcta__btns {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.9rem; margin-top: 2.2rem;
}

/* ---------- Footer ---------- */
.footer { background: #081a17; color: rgba(253,251,246,0.66); font-size: 0.92rem; }
.footer__grid {
  display: grid; gap: 2.4rem;
  padding: clamp(3rem, 7vw, 5rem) 0 2.5rem;
}
@media (min-width: 860px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }

.brand--footer .brand__text { color: var(--snow); }
.brand--footer .brand__peak { fill: var(--snow); }
.footer__brand p { margin-top: 1rem; max-width: 34ch; }
.footer__phone {
  display: inline-block; margin-top: 1rem;
  font-family: var(--serif); font-size: 1.3rem; color: var(--marigold);
}
.footer h3 {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--snow); margin-bottom: 1rem;
}
.footer nav { display: flex; flex-direction: column; }
.footer nav a { padding: 0.3rem 0; transition: color 0.2s; }
.footer nav a:hover { color: var(--marigold); }
.footer__hours { margin-bottom: 1.4rem; }
.footer__legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
  border-top: 1px solid rgba(253,251,246,0.1);
  padding: 1.3rem 0; font-size: 0.8rem;
}

/* ---------- Floating WhatsApp ---------- */
.floatwa {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s var(--ease);
}
.floatwa:hover { transform: scale(1.08); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; }
.reveal.d6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
