/* ==================================================================
   Suburban Travels — v2 design system
   Crimson / saffron on a light theme. Playfair Display + Jost.
   Mobile-first. Covers the new homepage plus every inner page
   (journeys, journey detail, destinations, about, stories,
   journal, post, contact, 404).
   ================================================================== */

:root {
  --green: #22222A;        /* primary charcoal (text/dark)  */
  --green-2: #2C2C36;      /* lighter charcoal (gradients)  */
  --green-deep: #1B1B22;   /* darkest charcoal (footer)     */
  --green-hover: #2A2A34;  /* hover tile on dark            */
  --gold: #F77F00;         /* saffron accent                */
  --gold-dark: #D62828;    /* crimson primary               */
  --cream: #FFFFFF;        /* page background               */
  --cream-2: #FBF7F2;      /* warm off-white sections       */
  --ink: #22222A;          /* body text                     */
  --ink-soft: #2A2A33;     /* serif body text               */
  --muted: #6B6B76;        /* muted text                    */
  --rule: rgba(34, 34, 42, 0.22);
  --rule-soft: rgba(34, 34, 42, 0.10);
  --cream-70: rgba(255, 255, 255, 0.7);
  --cream-55: rgba(255, 255, 255, 0.55);
  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --body: 'Jost', system-ui, -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --radius: 14px;
  --pad-x: clamp(20px, 5vw, 64px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--green); }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--green);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); line-height: 1.05; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); margin-bottom: 0.5em; }
h3 { font-size: 1.35rem; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 var(--pad-x); }
.wrap.narrow { max-width: 800px; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green); color: var(--cream); padding: 10px 18px; z-index: 300;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ------------------------------------------------------------------
   Keyframes (arrival keyframes are duplicated inline for first paint)
   ------------------------------------------------------------------ */
@keyframes lumLogoIn { 0% { opacity: 0; transform: scale(0.9); } 60% { opacity: 1; } 100% { opacity: 1; transform: scale(1); } }
@keyframes lumRing   { 0% { opacity: 0; transform: scale(0.4); } 40% { opacity: 0.7; } 100% { opacity: 0; transform: scale(2.1); } }
@keyframes lumFadeUp { 0% { opacity: 0; transform: translateY(22px); } 100% { opacity: 1; transform: none; } }
@keyframes lumCross  { 0%, 44% { opacity: 0; } 56%, 100% { opacity: 1; } }
@keyframes lumKen    { 0% { transform: scale(1); } 100% { transform: scale(1.12); } }
@keyframes lumWa     { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); } 70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* ------------------------------------------------------------------
   Reveal-on-scroll (JS adds .in; without JS everything stays visible)
   ------------------------------------------------------------------ */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
html.js .reveal.in { opacity: 1; transform: none; }

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

/* ------------------------------------------------------------------
   Eyebrows, links, buttons
   ------------------------------------------------------------------ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body);
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold-dark); flex: none;
}
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.on-dark::before { background: var(--gold); }

.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--green); font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid rgba(34, 34, 42, 0.3); padding-bottom: 5px;
  transition: gap 0.3s ease, border-color 0.3s ease;
}
.text-link:hover { gap: 16px; text-decoration: none; border-bottom-color: var(--gold-dark); }

.head-link {
  color: var(--green); font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid rgba(34, 34, 42, 0.3); padding-bottom: 5px;
  white-space: nowrap;
  transition: border-color 0.3s ease;
}
.head-link:hover { text-decoration: none; border-bottom-color: var(--gold-dark); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--gold-dark); color: #fff;
  padding: 15px 34px; border: 1px solid var(--gold-dark); border-radius: 100px;
  font: 500 15px var(--body); letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  background: var(--gold); border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(247, 127, 0, 0.35);
}
.btn.ghost { background: transparent; color: var(--green); border-color: var(--rule); box-shadow: none; }
.btn.ghost:hover { border-color: var(--gold-dark); color: var(--gold-dark); transform: translateY(-2px); }
.btn.whatsapp { background: #25D366; border-color: #25D366; color: #fff; }
.btn.whatsapp:hover { background: #1FBD5A; border-color: #1FBD5A; box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35); }

/* ------------------------------------------------------------------
   Header / nav — transparent over home hero, solid green elsewhere
   ------------------------------------------------------------------ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(34, 34, 42, 0.08);
  box-shadow: 0 2px 16px rgba(34, 34, 42, 0.07);
  transition: background 0.4s ease, border-color 0.4s ease,
              box-shadow 0.4s ease, padding 0.4s ease;
  padding: 20px var(--pad-x);
}
.site-header.solid,
.site-header.scrolled {
  /* No backdrop-filter here: it creates a containing block that traps
     the fixed-position mobile menu inside the header bar. */
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(34, 34, 42, 0.10);
  box-shadow: 0 12px 34px rgba(34, 34, 42, 0.12);
  padding-top: 13px; padding-bottom: 13px;
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { height: 34px; width: auto; display: block; }
.brand-word {
  display: none;
  font-family: var(--display);
  font-size: 1.4rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-dark); padding-left: 0.3em;
}
.brand.nologo .brand-word { display: inline; }

.nav-menu { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); list-style: none; }
.nav-menu a {
  color: rgba(34, 34, 42, 0.85);
  font-size: 14px; letter-spacing: 0.03em; font-weight: 400;
  transition: color 0.3s ease;
}
.nav-menu a:hover { color: var(--gold); text-decoration: none; }
.nav-menu a[aria-current="page"] {
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark); padding-bottom: 3px;
}

.nav-menu .btn-enquire {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 100px;
  background: var(--gold); color: #fff !important;
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  border-bottom: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-menu .btn-enquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(247, 127, 0, 0.4);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; color: var(--ink);
  cursor: pointer; padding: 8px;
  /* Must stack above the .nav-menu overlay (z-index 90) so the burger
     stays clickable as a close (X) button while the menu is open. */
  position: relative; z-index: 95;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: currentColor; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: fixed; inset: 0; z-index: 90;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    font-family: var(--display);
    font-size: 34px; color: var(--ink); padding: 8px;
    letter-spacing: 0.01em;
  }
  .nav-menu a[aria-current="page"] { border-bottom-color: rgba(214, 40, 40, 0.6); }
  .nav-menu .nav-enquire { margin-top: 22px; }
  .nav-menu .btn-enquire {
    font-family: var(--body);
    font-size: 15px; padding: 14px 34px; letter-spacing: 0.05em;
  }
}

/* ------------------------------------------------------------------
   Hero (home) — crossfading Ken Burns imagery, chips
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(120deg, var(--green-2), var(--green));
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  animation: lumKen 16s ease-out infinite alternate;
}
.hero-img-b {
  opacity: 0;
  animation: lumCross 18s ease-in-out infinite, lumKen 16s ease-out infinite alternate;
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 26, 0.55) 0%, rgba(20, 20, 26, 0.3) 40%, rgba(15, 15, 20, 0.92) 100%);
}
.hero-inner {
  position: relative;
  width: 100%; max-width: 1240px; margin: 0 auto;
  padding: 140px var(--pad-x) clamp(52px, 8vh, 96px);
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.9rem, 7.4vw, 6.4rem);
  line-height: 1.02; letter-spacing: -0.01em;
  margin: 0 0 30px; max-width: 15ch;
}
.hero .eyebrow { margin-bottom: 26px; letter-spacing: 0.34em; }
.hero .lede {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.7;
  margin: 0 0 34px; font-weight: 300;
}

/* Staggered entrance */
.hero-up { animation: lumFadeUp 1.1s both; }
.hero-up-1 { animation-duration: 1s; animation-delay: 0.2s; }
.hero-up-2 { animation-delay: 0.35s; }
.hero-up-3 { animation-delay: 0.5s; }
.hero-up-4 { animation-delay: 0.65s; }

.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px 11px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font-size: 14px; font-weight: 400; letter-spacing: 0.02em;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.chip:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(247, 127, 0, 0.7);
  transform: translateY(-2px);
  text-decoration: none;
}
.chip-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }

.hero-scroll {
  position: absolute; bottom: 26px; right: var(--pad-x);
  display: flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
}
.hero-scroll span {
  width: 1px; height: 34px;
  background: linear-gradient(rgba(247, 127, 0, 0.8), transparent);
}
@media (max-width: 640px) { .hero-scroll { display: none; } }

/* ------------------------------------------------------------------
   Sections (shared rhythm)
   ------------------------------------------------------------------ */
.section { padding: clamp(80px, 12vh, 140px) 0; }
.section.alt, .section.team, .section.journal { background: var(--cream-2); }

.section-head { margin-bottom: clamp(38px, 5vw, 58px); }
.section-head h2 { margin-bottom: 0; }
.section-head.split {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 24px;
}
.section-head.split > div { max-width: 560px; }
.section-head.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }

.lede {
  font-size: 1.1rem; color: var(--muted);
  max-width: 620px; margin-top: 18px; font-weight: 300;
}

.prose { font-size: 1.02rem; color: var(--ink-soft); font-weight: 300; }
.prose p { margin-bottom: 1.2em; }
.prose p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------
   Manifesto (home)
   ------------------------------------------------------------------ */
.manifesto { background: var(--cream); }
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: 1180px;
}
.manifesto h2 { margin-bottom: 8px; }
.manifesto-media { margin-top: 30px; border-radius: var(--radius); overflow: hidden; }
.manifesto-lead {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.1vw, 1.9rem); line-height: 1.5;
  color: var(--ink-soft); margin: 0 0 26px; font-weight: 400;
}
.manifesto-body {
  font-size: 16px; line-height: 1.85; color: var(--muted);
  margin: 0 0 30px; font-weight: 300; max-width: 52ch;
}

/* ------------------------------------------------------------------
   Why Suburban (home) — dark value grid
   ------------------------------------------------------------------ */
.why {
  background: radial-gradient(130% 100% at 80% 0%, var(--green-2) 0%, var(--green) 55%, #141419 100%);
  color: var(--cream);
}
.why-head { max-width: 640px; margin-bottom: clamp(44px, 6vw, 70px); }
.why h2 { color: var(--cream); margin-bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.value-card {
  background: var(--green);
  padding: 34px 26px 40px;
  transition: background 0.4s ease;
}
.value-card:hover { background: var(--green-hover); }
.value-no {
  font-family: var(--display);
  font-size: 34px; color: var(--gold); margin-bottom: 20px; line-height: 1;
}
.value-card h3 {
  font-family: var(--body); font-weight: 500;
  font-size: 17px; letter-spacing: 0.01em;
  margin: 0 0 10px; color: var(--cream);
}
.value-card p { font-size: 14px; line-height: 1.65; color: rgba(255, 255, 255, 0.62); font-weight: 300; }

/* ------------------------------------------------------------------
   Media blocks — green/gold gradient + title fallback
   ------------------------------------------------------------------ */
.media {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.media.wide { aspect-ratio: 21 / 9; }
.media.portrait { aspect-ratio: 4 / 5; border-radius: 12px; }
.media.landscape { aspect-ratio: 16 / 10; }
.media.ratio-75 { aspect-ratio: 7 / 5; }
.media.round { aspect-ratio: 1; border-radius: 50%; width: 46px; flex: none; }
.media img {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%; object-fit: cover;
}
.media-fallback {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 1.3rem; font-style: italic;
  color: rgba(255, 255, 255, 0.85); text-align: center; padding: 16px;
}
.media.round .media-fallback { font-size: 1.1rem; font-style: normal; padding: 0; }

/* ------------------------------------------------------------------
   Journey / journal cards (home) — white rounded cards
   ------------------------------------------------------------------ */
.jgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(18px, 2vw, 28px);
}
.jcard {
  display: block;
  color: inherit;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(34, 34, 42, 0.06);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
}
a.jcard:hover, .jcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(34, 34, 42, 0.18);
  text-decoration: none;
}
.jcard > a { display: block; color: inherit; }
.jcard > a:hover { text-decoration: none; }
.jcard-media { position: relative; overflow: hidden; }
.jcard-media .media { border-radius: 0; }
.jcard-media .media img { transition: transform 1.2s var(--ease-out); }
.jcard:hover .jcard-media .media img { transform: scale(1.07); }
.cat-pill {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  padding: 6px 13px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}
.jcard-body { padding: 24px 24px 28px; }
.jcard-body h3 { font-size: 24px; line-height: 1.15; margin: 0 0 8px; }
.jcard-body time {
  display: block;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 12px;
}
.feeling { font-size: 14.5px; line-height: 1.6; color: var(--muted); font-weight: 300; font-style: italic; }
.feeling.upright { font-style: normal; line-height: 1.65; }

/* ------------------------------------------------------------------
   Team
   ------------------------------------------------------------------ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.team-card .media { margin-bottom: 16px; }
.team-card .media img { filter: saturate(0.92); }
.team-card h3 { font-size: 21px; margin: 0 0 3px; }
.team-card .role {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dark); margin: 0 0 9px;
}
.team-card .bio { font-size: 14px; line-height: 1.6; color: var(--muted); font-weight: 300; }

/* ------------------------------------------------------------------
   Guest stories (home grid + stories page)
   ------------------------------------------------------------------ */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(18px, 2vw, 26px);
}
.story-card {
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: 0 1px 3px rgba(34, 34, 42, 0.06);
  display: flex; flex-direction: column;
}
.stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--gold); letter-spacing: 0.2em; }
.story-card .quote, .story-full .quote {
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem); line-height: 1.45;
  color: var(--ink-soft); margin: 0 0 24px; flex: 1;
}
.story-card figcaption, .story-card footer { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.guest, cite { font-style: normal; font-weight: 500; font-size: 15px; color: var(--green); display: block; }
.loc { font-size: 12px; letter-spacing: 0.06em; color: var(--gold-dark); text-transform: uppercase; }
.more-link { margin-top: clamp(32px, 4vw, 48px); }

/* Stories page (full list) */
.stories-list { margin-top: 24px; }
.story-full {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 40px 0; border-top: 1px solid var(--rule-soft);
}
.story-full:first-child { border-top: 0; }
.story-full .media.round { width: 110px; }
.story-text footer { margin-top: 18px; }
@media (max-width: 620px) { .story-full { flex-direction: column; } }

/* Legacy carousel hooks (harmless if unused) */
.carousel { position: relative; margin-top: 36px; }
.stories-track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: min(440px, 86%);
  gap: 24px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding-bottom: 12px;
  scrollbar-width: thin;
}
.stories-track > * { scroll-snap-align: start; }
.carousel-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 14px; }
.carousel-nav button {
  background: none; border: 1px solid var(--rule); border-radius: 50%;
  width: 42px; height: 42px; font-size: 1rem; color: var(--green); cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.carousel-nav button:hover { border-color: var(--gold-dark); color: var(--gold-dark); }

/* ------------------------------------------------------------------
   Generic cards (inner pages: journeys index, destinations, journal)
   ------------------------------------------------------------------ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(18px, 2vw, 28px); margin: 40px 0;
}
.cards-grid.three { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.card {
  background: #fff;
  border: none; border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(34, 34, 42, 0.06);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px rgba(34, 34, 42, 0.18); }
.card > a { display: block; color: inherit; }
.card > a:hover { text-decoration: none; }
.card .media img { transition: transform 1.2s var(--ease-out); }
.card:hover .media img { transform: scale(1.07); }

.card-body { padding: 24px 24px 28px; }
.card-body .eyebrow { margin-bottom: 8px; font-size: 11px; letter-spacing: 0.12em; }
.card-body .eyebrow::before { display: none; }
.card-body h3, .card-title { margin-bottom: 10px; font-size: 1.4rem; line-height: 1.15; }
.card-excerpt { font-size: 14.5px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.card time {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-dark); display: block; margin-bottom: 10px;
}
.card .text-link { font-size: 12px; }

/* ------------------------------------------------------------------
   Page heads (inner pages) & breadcrumbs
   ------------------------------------------------------------------ */
.page-head { padding: 160px 0 36px; }
.page-head.tight { padding-top: 44px; }
.page-head.tall { padding: 200px 0 130px; }

.breadcrumbs { font-size: 0.8rem; color: var(--muted); margin-bottom: 22px; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--gold-dark); }
.breadcrumbs span[aria-current] { color: var(--ink-soft); }

/* Journey detail */
.journey-hero { padding-top: 68px; background: var(--green); }
.journey-hero .media { border-radius: 0; }

.highlights { list-style: none; margin-top: 24px; }
.highlights li {
  padding: 16px 0 16px 34px;
  border-top: 1px solid var(--rule-soft);
  position: relative;
  font-size: 1.02rem;
}
.highlights li::before {
  content: "—";
  position: absolute; left: 0; color: var(--gold-dark);
}

.muted-note { color: var(--muted); font-size: 0.95rem; max-width: 560px; }

.rhythm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 32px; margin-top: 36px;
}
.rhythm-num {
  font-family: var(--display); font-size: 2.4rem;
  color: var(--gold-dark); display: block; line-height: 1;
}
.rhythm-step h3 { margin: 10px 0 8px; font-size: 1.15rem; }
.rhythm-step p { font-size: 0.92rem; color: var(--muted); }

.faqs { margin-top: 20px; }
.faqs details { border-top: 1px solid var(--rule); }
.faqs details:last-child { border-bottom: 1px solid var(--rule); }
.faqs summary {
  cursor: pointer; list-style: none;
  font-family: var(--display); font-size: 1.25rem; color: var(--green);
  padding: 20px 36px 20px 0; position: relative;
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after {
  content: "+"; position: absolute; right: 4px; top: 18px;
  color: var(--gold-dark); font-size: 1.4rem;
  font-family: var(--body); font-weight: 300;
  transition: transform 0.3s ease;
}
.faqs details[open] summary::after { transform: rotate(45deg); }
.faqs details p { padding: 0 0 22px; color: var(--muted); max-width: 640px; }

/* ------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.form-row { margin-bottom: 22px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row.two { grid-template-columns: 1fr; } }

label {
  display: block;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--green); margin-bottom: 8px;
}
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--rule); border-radius: 10px;
  padding: 13px 15px;
  font: 300 0.96rem var(--body); color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 1px solid var(--gold-dark); border-color: var(--gold-dark);
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.notice {
  border: 1px solid var(--green-2); border-radius: var(--radius);
  padding: 26px 30px; margin-bottom: 28px; background: #fff;
}
.notice h2 { font-size: 1.5rem; }
.notice.err { border-color: #8d3a2f; color: #8d3a2f; }

.contact-side h2 { font-size: 1.6rem; }
.contact-side h3 { margin-top: 30px; margin-bottom: 8px; font-size: 1.15rem; }
.contact-list { list-style: none; }
.contact-list li { padding: 6px 0; font-size: 0.95rem; }
.contact-list li span {
  display: inline-block; min-width: 60px;
  color: var(--gold-dark); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.contact-side address, address { font-style: normal; color: var(--muted); font-size: 0.95rem; }
.small-note { font-size: 0.9rem; color: var(--muted); }

/* ------------------------------------------------------------------
   Closing CTA band (shared, in footer partial)
   ------------------------------------------------------------------ */
.cta-band {
  position: relative;
  padding: clamp(90px, 14vh, 170px) var(--pad-x);
  background: radial-gradient(130% 120% at 50% 0%, var(--green-2) 0%, var(--green) 50%, var(--green-deep) 100%);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.cta-ring {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 520px; height: 520px; border-radius: 50%;
  border: 1px solid rgba(247, 127, 0, 0.12);
}
.cta-inner { position: relative; max-width: 820px; margin: 0 auto; }
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5.2vw, 4.4rem); line-height: 1.05;
  margin: 0 0 22px;
}
.cta-band .eyebrow { margin-bottom: 24px; color: var(--gold); }
.cta-band .eyebrow::before { background: var(--gold); }
.cta-lede {
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.7;
  color: rgba(255, 255, 255, 0.75); margin: 0 0 40px; font-weight: 300;
}
.cta-wa { padding: 17px 38px; font-size: 16px; }
.cta-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(247, 127, 0, 0.4); }
.cta-contacts {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 34px; margin-top: 36px;
  font-size: 14px; color: var(--cream-70);
}
.cta-contacts a { color: rgba(255, 255, 255, 0.8); }
.cta-contacts a:hover { color: var(--gold); text-decoration: none; }
.cta-contacts .dot { opacity: 0.3; }
.cta-alt { margin-top: 26px; font-size: 13px; }
.cta-alt a { color: var(--cream-55); border-bottom: 1px solid rgba(255, 255, 255, 0.25); padding-bottom: 3px; }
.cta-alt a:hover { color: var(--gold); text-decoration: none; border-bottom-color: var(--gold); }

/* ------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------ */
.site-footer {
  background: var(--green-deep);
  color: var(--cream-70);
  padding: clamp(56px, 7vw, 84px) var(--pad-x) 36px;
}
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(34px, 4vw, 60px);
}
.footer-brand-col { grid-column: 1 / -1; max-width: 340px; }
.footer-brand-col .brand img { height: 38px; margin-bottom: 20px; }
.footer-brand-col .brand-word { color: var(--cream); font-size: 1.6rem; }
.footer-tag {
  font-size: 14px; line-height: 1.7; color: var(--cream-55);
  margin: 0 0 22px; font-weight: 300;
}
.site-footer h3 {
  font-family: var(--body);
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.site-footer ul a { color: var(--cream-70); font-size: 14px; font-weight: 300; }
.site-footer ul a:hover { color: var(--gold); text-decoration: none; }
.site-footer address { color: var(--cream-55); font-size: 14px; font-weight: 300; }

.social-list { display: flex; gap: 12px; }
.social-list a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-70);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.social-list a:hover {
  background: var(--gold); color: var(--green); border-color: var(--gold);
  text-decoration: none;
}
.social-letter { font-size: 13px; font-weight: 500; }

.footer-base {
  max-width: 1240px; margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 12px; color: rgba(255, 255, 255, 0.4); letter-spacing: 0.02em;
}
.footer-base a { color: rgba(255, 255, 255, 0.6); }
.footer-base a:hover { color: var(--gold); }

/* Legacy footer hooks (kept for safety) */
.footer-brand {
  font-family: var(--display); font-size: 1.8rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--cream);
}

/* ------------------------------------------------------------------
   Floating WhatsApp
   ------------------------------------------------------------------ */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(34, 34, 42, 0.35);
  animation: lumWa 2.6s ease-out infinite;
  transition: transform 0.3s ease;
}
.wa-float:hover { transform: scale(1.08); text-decoration: none; }

/* ------------------------------------------------------------------
   Misc / legacy hooks
   ------------------------------------------------------------------ */
.editorial .prose { max-width: 62ch; }
.post-end { margin-top: 40px; }
.dest-card .card-body h3 { font-size: 1.4rem; }

/* ------------------------------------------------------------------
   Small-screen rhythm
   ------------------------------------------------------------------ */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .page-head { padding-top: 130px; }
  .page-head.tall { padding: 150px 0 90px; }
  .hero-inner { padding-top: 120px; }
  .cta-band { padding-top: 90px; padding-bottom: 90px; }
}
/* ==================================================================
   Suburban Travels — v3 additions
   Kerala packages (listing + detail), Build-a-Trip wizard,
   home packages teaser, journey cross-sell.
   Appended to the v2 design system; same tokens throughout.
   ================================================================== */

/* Elements the wizard/filters reveal keep display rules, so respect
   the hidden attribute explicitly. */
.wiz-stepper[hidden], .wiz-nav[hidden], .wiz-step-btn[hidden],
.wiz-summary[hidden], .pkg-slot[hidden], .pkg-group[hidden],
.pkg-empty[hidden], .pkg-clear[hidden] { display: none !important; }

/* ------------------------------------------------------------------
   Buttons (variants used on dark surfaces)
   ------------------------------------------------------------------ */
.btn.gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn.gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: 0 14px 32px rgba(214, 40, 40, 0.3); }
.btn.ghost-light {
  background: transparent; color: var(--cream);
  border-color: rgba(255, 255, 255, 0.25); box-shadow: none;
}
.btn.ghost-light:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn.block { display: flex; width: 100%; justify-content: center; align-items: center; gap: 10px; }
.btn.block + .btn.block { margin-top: 10px; }
.text-link.gold { color: var(--gold); border-bottom-color: rgba(247, 127, 0, 0.4); }
.text-link.gold:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ------------------------------------------------------------------
   Dark page heads (packages / build)
   ------------------------------------------------------------------ */
.pkg-head {
  position: relative;
  padding: clamp(150px, 20vh, 220px) 0 clamp(56px, 8vh, 100px);
  background: radial-gradient(130% 120% at 72% 0%, var(--green-2) 0%, var(--green) 55%, var(--green-deep) 100%);
  color: var(--cream);
  overflow: hidden;
}
.pkg-head::after {
  content: ""; position: absolute; top: -140px; right: -80px;
  width: 520px; height: 520px; border-radius: 50%;
  border: 1px solid rgba(247, 127, 0, 0.1);
}
.pkg-head .wrap { position: relative; z-index: 1; }
.pkg-head h1 { color: var(--cream); max-width: 17ch; }
.lede.on-dark { color: rgba(255, 255, 255, 0.78); }
.breadcrumbs.on-dark,
.breadcrumbs.on-dark a { color: rgba(255, 255, 255, 0.6); }
.breadcrumbs.on-dark a:hover { color: var(--gold); }
.breadcrumbs.on-dark span[aria-current] { color: rgba(255, 255, 255, 0.85); }
.build-head { padding-bottom: clamp(90px, 12vw, 130px); }

/* ------------------------------------------------------------------
   Packages listing — duration tree + region chips + grouped grid
   ------------------------------------------------------------------ */
.pkg-listing { padding-top: clamp(40px, 5vw, 64px); }
.pkg-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
.pkg-aside { position: sticky; top: 96px; }
@media (max-width: 900px) {
  .pkg-layout { grid-template-columns: 1fr; }
  .pkg-aside { position: static; }
}

.pkg-filter-title {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 16px;
}
.pkg-filter-title.gap-top { margin-top: 26px; }

.pkg-tree { display: flex; flex-direction: column; gap: 4px; }
.pkg-node {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 15px; border-radius: 11px;
  border: 1px solid var(--rule-soft); background: #fff;
  color: var(--green); font-size: 14px; text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.pkg-node:hover { border-color: var(--green); text-decoration: none; }
.pkg-node.active { background: var(--green); border-color: var(--green); color: var(--cream); font-weight: 500; }
.pkg-node-col { display: flex; flex-direction: column; gap: 2px; }
.pkg-node-label { display: flex; align-items: center; gap: 10px; }
.pkg-node-note { font-size: 11px; opacity: 0.55; }
.pkg-node-count { font-size: 12px; opacity: 0.6; }
.pkg-node-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }

.pkg-region-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pkg-chip {
  padding: 8px 15px; border-radius: 100px;
  border: 1px solid rgba(34, 34, 42, 0.16); background: #fff;
  color: var(--green); font-size: 13px; text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.pkg-chip:hover { border-color: var(--green); text-decoration: none; }
.pkg-chip.active { background: var(--green); border-color: var(--green); color: var(--cream); font-weight: 500; }

.pkg-aside-card {
  margin-top: 26px; padding: 22px 20px; border-radius: var(--radius);
  background: var(--green); color: var(--cream);
}
.pkg-aside-card-title { font-family: var(--display); font-size: 20px; line-height: 1.25; margin-bottom: 10px; }
.pkg-aside-card p { font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, 0.65); margin: 0 0 16px; }

.pkg-results { min-width: 0; }
.pkg-results-bar {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: 12px; margin-bottom: 24px;
}
.pkg-count { font-size: 14px; color: var(--muted); }
.pkg-count strong { color: var(--green); font-weight: 500; }
.pkg-clear { font-size: 13px; color: var(--gold-dark); letter-spacing: 0.03em; }
.pkg-clear:hover { color: var(--green); text-decoration: none; }

.pkg-group { margin-bottom: clamp(40px, 5vw, 60px); }
.pkg-group-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.pkg-group-head h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1; margin: 0; }
.pkg-group-note {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dark); margin-top: 6px;
}
.pkg-group-rule { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(214, 40, 40, 0.4), transparent); }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.pkg-grid.three { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.pkg-slot { display: contents; }
.pkg-slot[hidden] { display: none; }

.pkg-empty {
  padding: clamp(40px, 6vw, 70px) 24px; text-align: center;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(34, 34, 42, 0.06);
}
.pkg-empty h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 10px; }
.pkg-empty p { color: var(--muted); margin-bottom: 22px; }

/* ------------------------------------------------------------------
   Package card (listing, teasers, related rails)
   ------------------------------------------------------------------ */
.pkg-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden;
  background: #fff; color: var(--ink); text-decoration: none;
  box-shadow: 0 1px 3px rgba(34, 34, 42, 0.06);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(34, 34, 42, 0.18);
  text-decoration: none;
}
.pkg-card-media { position: relative; overflow: hidden; }
.pkg-card-media .media { border-radius: 0; }
.pkg-card-media .media img { transition: transform 1.2s var(--ease-out); }
.pkg-card:hover .pkg-card-media .media img { transform: scale(1.07); }

.pkg-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(34, 34, 42, 0.82); color: var(--cream);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}
.pkg-badge.gold { background: var(--gold); color: var(--green); font-weight: 600; position: static; }
.pkg-cat {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}
.pkg-hero-badges .pkg-cat { position: static; }

.pkg-card-body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 24px; }
.pkg-card-body h3 { font-size: 22px; line-height: 1.14; margin-bottom: 6px; }
.pkg-card-body .feeling { margin-bottom: 14px; }
.pkg-places { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.pkg-places.big { gap: 8px; margin-bottom: 44px; }
.pkg-place {
  font-size: 11px; padding: 4px 10px; border-radius: 100px;
  background: var(--cream-2); color: var(--muted); letter-spacing: 0.02em;
}
.pkg-places.big .pkg-place { font-size: 12px; padding: 6px 13px; letter-spacing: 0.03em; }
.pkg-card-foot {
  margin-top: auto; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 10px;
  padding-top: 14px; border-top: 1px solid rgba(34, 34, 42, 0.08);
}
.pkg-price-label { display: block; font-size: 11px; color: #8A8A94; letter-spacing: 0.04em; }
.pkg-price-value { font-family: var(--display); font-size: 22px; color: var(--green); }
.pkg-view { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-dark); }

/* ------------------------------------------------------------------
   Packages closing CTA band
   ------------------------------------------------------------------ */
.pkg-cta {
  padding: clamp(60px, 9vh, 110px) var(--pad-x);
  background: radial-gradient(130% 120% at 50% 0%, var(--green-2) 0%, var(--green) 55%, var(--green-deep) 100%);
  color: var(--cream); text-align: center;
}
.pkg-cta h2 { color: var(--cream); font-size: clamp(2rem, 3.8vw, 3rem); line-height: 1.1; margin-bottom: 16px; }
.pkg-cta .lede { margin-bottom: 30px; }
.pkg-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ------------------------------------------------------------------
   Home packages teaser + journey cross-sell
   ------------------------------------------------------------------ */
.pkg-teaser { background: var(--cream-2); }
.pkg-crosssell-links { list-style: none; margin: 0 0 clamp(26px, 3vw, 38px); padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pkg-crosssell-links .text-link { font-size: 15px; }

/* ------------------------------------------------------------------
   Package detail — hero
   ------------------------------------------------------------------ */
.pkg-hero {
  position: relative; min-height: 74vh;
  display: flex; align-items: flex-end;
  background: var(--green); overflow: hidden;
}
.pkg-hero-media { position: absolute; inset: 0; }
.pkg-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.pkg-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 26, 0.4) 0%, rgba(20, 20, 26, 0.25) 40%, rgba(15, 15, 20, 0.9) 100%);
}
.pkg-hero-inner {
  position: relative; width: 100%; max-width: 1240px;
  margin: 0 auto; padding: 160px var(--pad-x) clamp(40px, 6vh, 72px);
  color: var(--cream);
}
.pkg-hero-inner .breadcrumbs { margin-bottom: 20px; }
.pkg-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.pkg-hero-inner h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5.6vw, 4.8rem); line-height: 1.02;
  margin-bottom: 14px; max-width: 16ch;
}
.pkg-hero-excerpt {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.86); max-width: 44ch;
}

/* ------------------------------------------------------------------
   Package detail — body + sticky rail
   ------------------------------------------------------------------ */
.pkg-detail { padding-top: clamp(50px, 7vw, 90px); }
.pkg-detail-layout {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 360px);
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.pkg-detail-main { min-width: 0; }
.pkg-rail { position: sticky; top: 96px; }
@media (max-width: 940px) {
  .pkg-detail-layout { grid-template-columns: 1fr; }
  .pkg-rail { position: static; order: -1; }
}

.pkg-overview {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.1vw, 1.9rem); line-height: 1.5;
  color: var(--ink-soft); margin: 0 0 20px;
}
.pkg-h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.1; margin-bottom: 22px; }
.pkg-sub { font-size: 14px; color: var(--muted); margin: -14px 0 26px; }

.pkg-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-bottom: 52px;
}
.pkg-highlight {
  background: #fff; border-radius: var(--radius);
  padding: 24px 22px; box-shadow: 0 1px 3px rgba(34, 34, 42, 0.06);
}
.pkg-highlight-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.pkg-highlight-mark span { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.pkg-highlight h3 { font-family: var(--body); font-weight: 500; font-size: 16px; margin-bottom: 7px; }
.pkg-highlight p { font-size: 14px; line-height: 1.6; color: var(--muted); }

.pkg-timeline { position: relative; margin-bottom: 52px; }
.pkg-timeline::before {
  content: ""; position: absolute; left: 19px; top: 10px; bottom: 10px;
  width: 1px; background: linear-gradient(var(--gold), rgba(214, 40, 40, 0.2));
}
.pkg-day { position: relative; padding: 0 0 26px 56px; }
.pkg-day:last-child { padding-bottom: 0; }
.pkg-day-num {
  position: absolute; left: 6px; top: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px rgba(34, 34, 42, 0.15);
}
.pkg-day-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 5px;
}
.pkg-day h3 { font-size: 21px; margin-bottom: 6px; }
.pkg-day p { font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 60ch; }

.pkg-incl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-bottom: 52px;
}
.pkg-incl-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 26px; box-shadow: 0 1px 3px rgba(34, 34, 42, 0.06);
}
.pkg-incl-card h3 { font-size: 20px; margin-bottom: 16px; }
.pkg-incl, .pkg-excl { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.pkg-incl li, .pkg-excl li { display: flex; gap: 11px; font-size: 14px; line-height: 1.5; }
.pkg-incl li { color: #33333C; }
.pkg-incl li svg { flex-shrink: 0; margin-top: 1px; }
.pkg-excl li { color: var(--muted); }
.pkg-excl li span { flex-shrink: 0; margin-top: 1px; color: #C08A8A; font-size: 16px; line-height: 1; }

.pkg-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px; margin-bottom: 52px;
}
.pkg-gallery-item {
  aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.pkg-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.pkg-gallery-item:hover img { transform: scale(1.06); }

.pkg-faqs { margin-bottom: 44px; }
.pkg-journey-link {
  padding: 20px 22px; border-radius: 12px;
  background: var(--cream-2); font-size: 15px; line-height: 1.7;
  color: var(--ink-soft);
}

.pkg-rail-card {
  background: var(--green); color: var(--cream);
  border-radius: 18px; padding: 30px 28px;
  box-shadow: 0 20px 50px rgba(34, 34, 42, 0.18);
}
.pkg-rail-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.pkg-rail-price { font-family: var(--display); font-size: 44px; line-height: 1; margin-bottom: 4px; }
.pkg-rail-note { font-size: 12px; color: var(--cream-55); margin-bottom: 22px; }
.pkg-rail-facts {
  display: flex; flex-direction: column; gap: 14px;
  margin: 0 0 24px; padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.pkg-rail-facts div { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
.pkg-rail-facts dt { color: rgba(255, 255, 255, 0.6); }
.pkg-rail-facts dd { margin: 0; text-align: right; }
.pkg-rail-contacts { display: flex; gap: 16px; justify-content: center; margin-top: 20px; font-size: 12px; }
.pkg-rail-contacts a { color: rgba(255, 255, 255, 0.75); }
.pkg-rail-contacts a:hover { color: var(--gold); text-decoration: none; }
.pkg-rail-fine { font-size: 12px; color: #8A8A94; text-align: center; margin: 14px 0 0; line-height: 1.5; }

/* ------------------------------------------------------------------
   Build a trip — workspace + wizard
   ------------------------------------------------------------------ */
.build-workspace { padding-top: 0; }
.build-layout {
  max-width: 1240px; margin: -70px auto 0;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 36px); align-items: start;
  position: relative; z-index: 2;
}
html.js .build-layout.enhanced { grid-template-columns: 1fr minmax(300px, 340px); }
@media (max-width: 940px) {
  html.js .build-layout.enhanced { grid-template-columns: 1fr; }
}

.wiz-panel {
  background: #fff; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(34, 34, 42, 0.12);
  overflow: hidden; min-width: 0;
}

.wiz-stepper {
  display: flex; align-items: stretch; gap: 8px;
  padding: 22px clamp(20px, 3vw, 34px);
  border-bottom: 1px solid rgba(34, 34, 42, 0.08);
}
.wiz-stepper-btn {
  flex: 1; display: flex; flex-direction: column; gap: 7px;
  background: none; border: none; cursor: pointer;
  text-align: left; padding: 0; font-family: var(--body);
}
.wiz-stepper-bar { height: 4px; border-radius: 100px; background: rgba(34, 34, 42, 0.12); transition: background 0.3s ease; }
.wiz-stepper-btn.done .wiz-stepper-bar, .wiz-stepper-btn.active .wiz-stepper-bar { background: var(--green); }
.wiz-stepper-label { font-size: 11px; letter-spacing: 0.04em; color: #8A8A94; }
.wiz-stepper-btn.active .wiz-stepper-label { color: var(--green); font-weight: 500; }
@media (max-width: 560px) { .wiz-stepper-label { font-size: 10px; } }

.wiz-form { padding: clamp(24px, 3.4vw, 40px); }
.wiz-step { border: none; margin: 0 0 34px; padding: 0; min-width: 0; }
.wiz-form.wiz-on .wiz-step { display: none; margin-bottom: 0; }
.wiz-form.wiz-on .wiz-step.active { display: block; }

.wiz-h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.15;
  color: var(--green); margin-bottom: 6px; padding: 0;
}
.wiz-sub { font-size: 14px; color: var(--muted); margin: 0 0 22px; }
.wiz-h3 { font-size: 14px; letter-spacing: 0.02em; color: var(--green); font-weight: 500; margin: 28px 0 14px; font-family: var(--body); }
.wiz-optional { color: #8A8A94; font-weight: 300; }

/* choice chips / cards (radio + checkbox labels) */
.wiz-choice { display: block; cursor: pointer; }
.wiz-choice input { position: absolute; opacity: 0; pointer-events: none; }
.wiz-choice-face {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 15px; border-radius: 12px;
  border: 1px solid rgba(34, 34, 42, 0.14); background: #fff;
  color: var(--green); font-size: 14px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.wiz-choice:hover .wiz-choice-face { border-color: var(--green); }
.wiz-choice input:checked + .wiz-choice-face {
  background: var(--green); border-color: var(--green);
  color: var(--cream); font-weight: 500;
}
.wiz-choice input:focus-visible + .wiz-choice-face { outline: 2px solid var(--gold); outline-offset: 2px; }
.wiz-dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.wiz-choice.pill .wiz-choice-face { display: inline-flex; border-radius: 100px; padding: 10px 18px; font-size: 13px; }
.wiz-choice.card .wiz-choice-face { flex-direction: column; align-items: flex-start; gap: 3px; padding: 15px 16px; }
.wiz-card-label { font-size: 15px; font-weight: 500; }
.wiz-card-note { font-size: 12px; opacity: 0.7; }
.wiz-choice.card input:checked + .wiz-choice-face .wiz-card-note { opacity: 0.75; }

.wiz-occasions { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.wiz-months { display: flex; flex-wrap: wrap; gap: 8px; }
.wiz-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-bottom: 28px; }

/* counters (nights / adults / children) */
.wiz-counters { display: flex; flex-wrap: wrap; gap: 14px; }
.wiz-counter {
  flex: 1; min-width: 170px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 18px; border: 1px solid rgba(34, 34, 42, 0.14); border-radius: 12px;
}
.wiz-counter-name { display: block; font-size: 15px; color: var(--green); }
.wiz-counter-note { font-size: 12px; color: #8A8A94; }
.wiz-counter-ctrl { display: flex; align-items: center; gap: 10px; }
.wiz-step-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(34, 34, 42, 0.2); background: #fff;
  color: var(--green); font-size: 18px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--body);
}
.wiz-step-btn:hover { border-color: var(--green); }
.wiz-num {
  width: 58px; padding: 8px 4px; text-align: center;
  border: 1px solid rgba(34, 34, 42, 0.16); border-radius: 10px;
  font-family: var(--body); font-size: 16px; color: var(--green);
  background: #FBF7F2;
}
.wiz-form.wiz-on .wiz-num {
  border: none; background: none; width: 34px; padding: 0;
  font-size: 17px; -moz-appearance: textfield; appearance: textfield;
}
.wiz-form.wiz-on .wiz-num::-webkit-outer-spin-button,
.wiz-form.wiz-on .wiz-num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* destination pickers */
.wiz-dests { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.wiz-dest { display: block; cursor: pointer; padding: 10px; border-radius: var(--radius); border: 1px solid rgba(34, 34, 42, 0.1); background: #fff; transition: border-color 0.25s ease, background 0.25s ease; }
.wiz-dest input { position: absolute; opacity: 0; pointer-events: none; }
.wiz-dest-media {
  position: relative; display: block; aspect-ratio: 16 / 10;
  border-radius: 11px; overflow: hidden;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  margin-bottom: 10px;
}
.wiz-dest-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.62; transition: opacity 0.3s ease; }
.wiz-dest-check {
  position: absolute; top: 8px; right: 8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(34, 34, 42, 0.5); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; line-height: 1;
}
.wiz-dest-check::before { content: "+"; }
.wiz-dest-name { display: block; font-size: 15px; font-weight: 500; color: var(--green); }
.wiz-dest-tag { display: block; font-size: 12px; color: #8A8A94; }
.wiz-dest:hover { border-color: var(--green); }
.wiz-dest input:checked ~ .wiz-dest-media img { opacity: 1; }
.wiz-dest input:checked ~ .wiz-dest-media .wiz-dest-check { background: #2F6E52; }
.wiz-dest input:checked ~ .wiz-dest-media .wiz-dest-check::before { content: "\2713"; }
/* :has() where available; .selected is toggled by main.js as a fallback */
.wiz-dest:has(input:checked), .wiz-dest.selected { border-color: var(--green); background: var(--cream); }
.wiz-dest:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }

.wiz-submit { margin-top: 6px; }
.wiz-fine { font-size: 12px; color: #8A8A94; text-align: center; margin: 12px 0 0; }

.wiz-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px clamp(20px, 3vw, 34px);
  border-top: 1px solid rgba(34, 34, 42, 0.08);
  background: #FBF7F2;
  margin: 0 calc(-1 * clamp(24px, 3.4vw, 40px)) calc(-1 * clamp(24px, 3.4vw, 40px));
}
.wiz-back.gone { visibility: hidden; }

/* thank-you */
.wiz-done { text-align: center; padding: clamp(40px, 6vw, 70px) clamp(24px, 4vw, 48px); }
.wiz-done-mark {
  width: 64px; height: 64px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.wiz-done h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 12px; }
.wiz-done p { color: var(--muted); max-width: 48ch; margin: 0 auto 24px; }
.wiz-done-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }

/* live summary rail */
.wiz-summary { position: sticky; top: 96px; }
@media (max-width: 940px) { .wiz-summary { position: static; order: -1; } }
.wiz-summary-card {
  background: var(--green); color: var(--cream);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(34, 34, 42, 0.18);
}
.wiz-summary-head { padding: 22px 24px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.wiz-summary-eyebrow { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.wiz-summary-title { font-family: var(--display); font-size: 26px; line-height: 1.1; }
.wiz-summary-facts { display: flex; flex-direction: column; gap: 15px; padding: 20px 24px; margin: 0; }
.wiz-summary-facts div { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; align-items: flex-start; }
.wiz-summary-facts dt { color: rgba(255, 255, 255, 0.6); flex-shrink: 0; }
.wiz-summary-facts dd { margin: 0; text-align: right; }
.wiz-summary-note {
  padding: 16px 24px 22px; border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px; color: rgba(255, 255, 255, 0.5); line-height: 1.55;
}
.wiz-summary-fine { font-size: 12px; color: #8A8A94; text-align: center; margin: 14px 6px 0; line-height: 1.5; }

.build-alt .lede a { color: var(--gold-dark); }

/* ------------------------------------------------------------------
   v3: the primary nav gained Packages + Build a Trip — collapse to
   the overlay menu a little earlier so nothing wraps.
   ------------------------------------------------------------------ */
@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: fixed; inset: 0; z-index: 90;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    font-family: var(--display);
    font-size: 32px; color: var(--ink); padding: 7px;
    letter-spacing: 0.01em;
  }
  .nav-menu a[aria-current="page"] { border-bottom-color: rgba(214, 40, 40, 0.6); }
  .nav-menu .nav-enquire { margin-top: 22px; }
  .nav-menu .btn-enquire {
    font-family: var(--body);
    font-size: 15px; padding: 14px 34px; letter-spacing: 0.05em;
  }
}

/* ==================================================================
   v4: legacy category listing pages + "Ask for best price" states
   ================================================================== */

/* Category listing (/kerala-tour, /international-tours, ...) */
.cat-listing { padding-top: clamp(40px, 5vw, 64px); }
.cat-listing .pkg-results-bar { margin-bottom: clamp(24px, 3vw, 34px); }

/* Cross-links to sibling category pages (SEO interlinking) */
.cat-crosslinks {
  margin-top: clamp(44px, 6vw, 72px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--rule-soft);
}
.cat-crosslinks-list { display: flex; flex-wrap: wrap; gap: 8px; }

/* Price-on-request: the phrase is text, not a figure — size it down
   so the rail and card feet keep their rhythm. */
.pkg-rail-price.pkg-rail-price-ask { font-size: clamp(1.4rem, 2.2vw, 1.7rem); line-height: 1.15; }
.pkg-price-value.pkg-price-ask { font-size: 16px; line-height: 1.3; }

/* ==================================================================
   v7 — dynamic menus ("More" dropdown) + service landing pages
   (/visa, /taxi, /bus): hero, booking form, success panel.
   ================================================================== */

/* ------------------------------------------------------------------
   Header: "More" dropdown (desktop) / flat overflow items (mobile).
   The <details> is native — JS only adds hover-open on fine pointers.
   ------------------------------------------------------------------ */
.nav-more { position: relative; }
.nav-more summary {
  list-style: none;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
  color: rgba(34, 34, 42, 0.85);
  font-size: 14px; letter-spacing: 0.03em; font-weight: 400;
  transition: color 0.3s ease;
  -webkit-user-select: none; user-select: none;
}
.nav-more summary::-webkit-details-marker { display: none; }
.nav-more summary svg { transition: transform 0.25s ease; }
.nav-more summary:hover,
.nav-more details[open] summary { color: var(--gold); }
.nav-more details[open] summary svg { transform: rotate(180deg); }
.nav-more-list {
  position: absolute; top: calc(100% + 16px); right: -14px;
  min-width: 210px;
  margin: 0; padding: 10px 0;
  list-style: none;
  background: #FFFFFF;
  border: 1px solid rgba(34, 34, 42, 0.10);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(34, 34, 42, 0.14);
  z-index: 120;
}
/* Invisible bridge so the pointer can travel from summary to panel
   without the hover state collapsing. */
.nav-more-list::before {
  content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px;
}
.nav-more-list li a {
  display: block;
  padding: 9px 22px;
  border-bottom: none !important;
}
.nav-more-list li a:hover { background: var(--cream-2); }
.nav-more-list li a[aria-current="page"] { color: var(--gold-dark); padding-bottom: 9px; }
.nav-more-list li a.btn-enquire { margin: 6px 18px; padding: 9px 18px; display: inline-flex; }
.nav-overflow { display: none; }

@media (max-width: 860px) {
  /* Mobile overlay lists everything flat — hide the dropdown, show
     the duplicated overflow items. */
  .nav-more { display: none; }
  .nav-overflow { display: block; }
  .nav-menu .nav-overflow a.btn-enquire {
    font-family: var(--display);
    font-size: 34px; padding: 8px;
    background: transparent; color: var(--gold) !important;
    border-radius: 0;
  }
}

/* ------------------------------------------------------------------
   Service landing page — hero
   ------------------------------------------------------------------ */
.svc-hero {
  position: relative;
  padding: clamp(150px, 22vh, 220px) var(--pad-x) clamp(56px, 9vh, 96px);
  background: radial-gradient(120% 130% at 20% 0%, var(--green-2) 0%, var(--green) 48%, var(--green-deep) 100%);
  overflow: hidden;
}
.svc-hero-media { position: absolute; inset: 0; }
.svc-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 20, 0.55) 0%, rgba(15, 15, 20, 0.78) 100%);
}
/* Shade renders only when a hero image exists (see service.php). */
.svc-hero-inner { position: relative; max-width: 1240px; margin: 0 auto; }
.svc-hero-inner h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  max-width: 16ch;
}
.svc-hero-tagline {
  color: var(--cream-70);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 560px;
  margin-top: 14px;
}
.svc-hero-cta { margin-top: 28px; }

/* ------------------------------------------------------------------
   Service landing page — layout, body copy, form card
   ------------------------------------------------------------------ */
.svc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 980px) {
  .svc-layout { grid-template-columns: 1fr; }
}

.svc-body { max-width: 660px; }
.svc-body h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 34px 0 14px;
}
.svc-body h2:first-child { margin-top: 0; }
.svc-body p { margin: 0 0 18px; color: var(--ink-soft); }
.svc-body ul { margin: 0 0 18px 20px; color: var(--ink-soft); }
.svc-body li { margin-bottom: 8px; }

.svc-faqs { max-width: 660px; }

.svc-rail { position: sticky; top: 96px; }
@media (max-width: 980px) { .svc-rail { position: static; } }

.svc-form-card {
  background: #fff;
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 24px 60px rgba(34, 34, 42, 0.1);
}
.svc-form-title { font-size: 1.6rem; margin-bottom: 6px; }
.svc-form-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.svc-form .form-row { margin-bottom: 18px; }
.svc-req { color: var(--gold-dark); }
.svc-form input[type="number"],
.svc-form input[type="date"],
.svc-form input[type="time"] {
  width: 100%;
  background: #fff;
  border: 1px solid var(--rule); border-radius: 10px;
  padding: 13px 15px;
  font: 300 0.96rem var(--body); color: var(--ink);
}
.svc-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.95rem; font-weight: 300; color: var(--ink);
  letter-spacing: 0; cursor: pointer;
}
.svc-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold-dark); flex: none; }
.svc-submit { width: 100%; margin-top: 6px; }
.svc-form-fine { font-size: 0.82rem; color: var(--muted); margin-top: 14px; text-align: center; }
.svc-rail-contacts {
  margin-top: 18px; text-align: center;
  font-size: 0.92rem; color: var(--muted);
}

/* ------------------------------------------------------------------
   Service landing page — success panel (?sent=SBT-XXXXX)
   ------------------------------------------------------------------ */
.svc-success {
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  box-shadow: 0 24px 60px rgba(34, 34, 42, 0.28);
}
.svc-success h2 { color: var(--cream); font-size: 1.9rem; margin-bottom: 6px; }
.svc-success p { color: var(--cream-70); font-size: 0.95rem; }
.svc-success-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; margin-bottom: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(247, 127, 0, 0.6);
  color: var(--gold);
}
.svc-success-ref {
  font-size: 1.05rem !important; color: var(--cream) !important;
  margin-bottom: 12px;
}
.svc-success-ref strong { color: var(--gold); letter-spacing: 0.06em; }
.svc-success-wa { margin-top: 18px; }
.svc-success-alt { margin-top: 16px; }
.svc-success-alt a { color: var(--gold); }

/* Related packages strip shares .section.alt + .pkg-grid styles. */

/* ------------------------------------------------------------------
   v8 — footer small-print policy row (pages table)
   ------------------------------------------------------------------ */
.footer-policies {
  max-width: 1240px; margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-wrap: wrap; gap: 6px 12px;
  font-size: 12px; color: rgba(255, 255, 255, 0.4); letter-spacing: 0.02em;
}
.footer-policies a { color: rgba(255, 255, 255, 0.6); }
.footer-policies a:hover { color: var(--gold); }
.footer-policies .dot { margin: 0 2px; }
.footer-policies + .footer-base { margin-top: 14px; padding-top: 0; border-top: 0; }
