/* ============================================================
   Old Kodai Camping — styles
   Mood: a quiet descent. Cool mist at the top, warm fire at the
   bottom. Editorial, photo-first, unhurried.
   ============================================================ */

:root {
  --navy:   #1F3A68;
  --navy-deep: #14233f;
  --ink:    #101b30;
  --gold:   #C9A961;
  --gold-soft: #d9bd7e;
  --paper:  #F7F5F0;
  --mist:   #ECE8DF;
  --line:   #ddd6c8;
  --text:   #2a2a28;
  --text-soft: #5b5b54;
  --white:  #ffffff;

  --maxw: 1120px;
  --maxw-narrow: 760px;

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

  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.wrap--narrow { max-width: var(--maxw-narrow); }
.section { padding-top: clamp(64px, 9vw, 132px); padding-bottom: clamp(64px, 9vw, 132px); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
}
.eyebrow--light { color: var(--gold-soft); }

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -.01em;
  color: var(--navy);
  margin: 0 0 1.4rem;
}
.h2--light { color: var(--white); }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
  margin: 0 0 1.5rem;
}
.lead--wide { max-width: 720px; }
.lead--light { color: rgba(255,255,255,.92); }
.lead em, .body em { font-style: italic; color: var(--navy); }
.lead--light em { color: var(--gold-soft); }

.body {
  font-size: 1.06rem;
  color: var(--text-soft);
  max-width: 660px;
  margin: 0 0 1.2rem;
}
.body--light { color: rgba(255,255,255,.78); max-width: 640px; }
.body--light em { color: var(--gold-soft); font-style: italic; }

/* ---------- bands ---------- */
.band { position: relative; }
.band--paper { background: var(--paper); }
.band--mist  { background: var(--mist); }
.band--ink   { background: var(--ink); color: #fff; overflow: hidden; }
.band--ember { background: var(--ink); color: #fff; position: relative; overflow: hidden; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.brand-mark { border-radius: 50%; width: 44px; height: 44px; }
.brand-text {
  font-family: var(--serif); font-size: 1.32rem; font-weight: 600; line-height: 1;
  color: #fff; display: flex; flex-direction: column; gap: 2px;
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
}
.brand-sub {
  font-family: var(--sans); font-size: .58rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft);
}
.site-header.scrolled { background: rgba(20,35,63,.96); box-shadow: 0 1px 0 rgba(255,255,255,.06); }
.site-header.scrolled .brand-text { text-shadow: none; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  text-decoration: none; color: rgba(255,255,255,.92); font-size: .9rem; font-weight: 500;
  letter-spacing: .01em; text-shadow: 0 1px 10px rgba(0,0,0,.4);
  transition: color .2s;
}
.nav a:hover { color: var(--gold-soft); }
.nav-cta {
  border: 1px solid rgba(201,169,97,.7); border-radius: 999px;
  padding: 8px 20px; color: var(--gold-soft) !important; text-shadow: none;
}
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; border-color: var(--gold); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  background: rgba(16,27,48,.98); backdrop-filter: blur(6px);
  max-height: 0; overflow: hidden; transition: max-height .4s var(--ease);
}
.mobile-nav.open { max-height: 420px; }
.mobile-nav a {
  color: #fff; text-decoration: none; padding: 16px 28px;
  border-top: 1px solid rgba(255,255,255,.08); font-size: 1rem;
}
.mobile-nav a:active { background: rgba(255,255,255,.05); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(16,27,48,.55) 0%, rgba(16,27,48,.12) 32%, rgba(16,27,48,.18) 60%, rgba(16,27,48,.82) 100%),
    linear-gradient(to right, rgba(16,27,48,.5) 0%, rgba(16,27,48,0) 55%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  padding: 120px 24px 140px;
  color: #fff;
}
.hero-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.6rem, 8vw, 5rem); line-height: .98; letter-spacing: -.01em;
  margin: 0 0 .35em; text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero-line {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 4.2vw, 2.6rem); line-height: 1.1;
  color: var(--gold-soft); margin: 0 0 .7em; text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem); max-width: 30ch;
  color: rgba(255,255,255,.92); margin: 0 0 2.2em; text-shadow: 0 1px 16px rgba(0,0,0,.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none; color: rgba(255,255,255,.85);
}
.hero-scroll-label { font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 46px; background: linear-gradient(to bottom, var(--gold-soft), transparent); animation: descend 2.4s var(--ease) infinite; }
@keyframes descend { 0% { transform: scaleY(.3); transform-origin: top; opacity: 0; } 40% { opacity: 1; } 100% { transform: scaleY(1); transform-origin: top; opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero-scroll-line { animation: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-align: center;
  font-family: var(--sans); font-size: .98rem; font-weight: 600;
  padding: 14px 26px; border-radius: 999px; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-soft); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(3px); }
.btn--ghost:hover { background: rgba(255,255,255,.16); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }
.wa-icon { width: 20px; height: 20px; fill: currentColor; flex: none; }

/* ============================================================
   STORY
   ============================================================ */
.facts {
  list-style: none; margin: clamp(40px,6vw,72px) auto 0; padding: 0;
  max-width: var(--maxw); padding-left: 24px; padding-right: 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.facts li { border-top: 1px solid var(--line); padding-top: 18px; }
.facts-num { display: block; font-family: var(--serif); font-size: clamp(2.4rem,5vw,3.4rem); line-height: 1; color: var(--gold); }
.facts-label { display: block; margin-top: 8px; font-size: .9rem; color: var(--text-soft); }

/* ---------- full-bleed figure ---------- */
.band--full { background: var(--ink); }
.full-figure { margin: 0; position: relative; }
.full-figure img, .full-figure video { width: 100%; height: clamp(320px, 56vw, 620px); object-fit: cover; object-position: center 42%; display: block; }
.full-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 24px 24px;
  font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem,2.4vw,1.5rem); color: #fff;
  background: linear-gradient(to top, rgba(16,27,48,.8), transparent);
  text-align: center;
}

/* ============================================================
   JOURNEY
   ============================================================ */
.journey-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,64px);
  align-items: center; margin-top: clamp(36px,5vw,56px);
}
.descent { list-style: none; margin: 0; padding: 0; position: relative; }
.descent::before {
  content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 1px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--navy) 100%);
}
.descent li { position: relative; padding: 0 0 26px 36px; }
.descent li:last-child { padding-bottom: 0; }
.descent li::before {
  content: ""; position: absolute; left: 1px; top: 4px; width: 13px; height: 13px;
  border-radius: 50%; background: var(--paper); border: 2px solid var(--navy);
}
.descent li:first-child::before { border-color: var(--gold); background: var(--gold); }
.descent-place { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--navy); line-height: 1.1; }
.descent-note { display: block; font-size: .92rem; color: var(--text-soft); margin-top: 2px; }

.journey-feature { margin: 0; }
.journey-feature img { width: 100%; border-radius: 4px; box-shadow: 0 24px 50px -28px rgba(16,27,48,.55); }
.journey-feature figcaption { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--text-soft); margin-top: 12px; text-align: center; }

/* gallery */
.gallery {
  margin-top: clamp(40px,6vw,72px);
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
  max-width: var(--maxw); margin-left: auto; margin-right: auto; padding: 0 24px;
}
.gallery-item { margin: 0; overflow: hidden; border-radius: 4px; grid-column: span 3; }
.gallery-item--wide { grid-column: span 3; }
.gallery-item img { width: 100%; height: clamp(220px, 30vw, 340px); object-fit: cover; transition: transform .8s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }

/* ============================================================
   STAY / INCLUDED
   ============================================================ */
.included-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px,5vw,64px); align-items: start; margin-top: clamp(36px,5vw,56px); }
.included { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 30px 36px; }
.included li { border-top: 1px solid var(--line); padding-top: 16px; }
.included h3 { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--navy); margin: 0 0 .35em; }
.included p { margin: 0; font-size: .98rem; color: var(--text-soft); }
.included-figure { margin: 0; }
.included-figure img { width: 100%; border-radius: 4px; height: clamp(360px, 50vw, 560px); object-fit: cover; box-shadow: 0 24px 50px -30px rgba(16,27,48,.5); }

/* ============================================================
   FOREST
   ============================================================ */
.band--ink .forest-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 90% at 80% 0%, rgba(31,58,104,.55) 0%, transparent 60%),
              radial-gradient(100% 80% at 0% 100%, rgba(31,58,104,.4) 0%, transparent 55%);
}
.band--ink .wrap { position: relative; z-index: 1; }
.permit-note {
  display: flex; gap: 14px; align-items: flex-start;
  margin: 2.4rem 0 0; padding: 20px 22px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,169,97,.3); border-radius: 6px;
  font-size: .96rem; color: rgba(255,255,255,.85); max-width: 620px;
}
.permit-icon { width: 26px; height: 26px; fill: var(--gold-soft); flex: none; margin-top: 1px; }

/* ============================================================
   TRUST
   ============================================================ */
.trust-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px,5vw,64px); align-items: center; margin-top: clamp(32px,4vw,48px); }
.stats { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; }
.stats li { border-top: 1px solid var(--line); padding-top: 14px; }
.stats-num { display: block; font-family: var(--serif); font-size: clamp(2.2rem,4.5vw,3rem); line-height: 1; color: var(--navy); }
.stats-label { display: block; margin-top: 6px; font-size: .88rem; color: var(--text-soft); }
.trust-figure { margin: 0; }
.trust-figure img { width: 100%; border-radius: 4px; height: clamp(280px, 38vw, 420px); object-fit: cover; }
.trust-figure figcaption { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--text-soft); margin-top: 10px; }
.quote {
  margin: clamp(48px,7vw,80px) auto 0; max-width: 720px; padding: 0 24px; text-align: center;
}
.quote p { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem,3.2vw,2rem); line-height: 1.4; color: var(--navy); margin: 0 0 1rem; }
.quote cite { font-style: normal; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }

/* ============================================================
   BOOK / EMBER
   ============================================================ */
.band--ember .book-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("images/sunrise-deck.jpg") center 40% / cover no-repeat;
}
.band--ember .book-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(16,27,48,.86), rgba(40,28,18,.78) 60%, rgba(16,27,48,.92));
}
.book-inner { position: relative; z-index: 2; max-width: 640px; text-align: center; }
.book-inner .eyebrow { }
.book-lead { margin-bottom: 2rem; }
.book-or { margin: 1.6rem 0 1.2rem; font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); }

.enquiry { text-align: left; background: rgba(247,245,240,.97); border-radius: 10px; padding: clamp(22px,4vw,34px); box-shadow: 0 30px 70px -34px rgba(0,0,0,.6); }
.field { margin-bottom: 16px; }
.field--row { display: flex; gap: 16px; }
.field-col { flex: 1; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: .02em; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--text);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; background: #fff;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(201,169,97,.25); }
.field textarea { resize: vertical; }
.form-fineprint { margin: 12px 0 0; font-size: .82rem; color: var(--text-soft); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding-top: clamp(56px,7vw,84px); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { border-radius: 50%; }
.footer-line { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--gold-soft); margin: 16px 0 0; max-width: 14ch; line-height: 1.2; }
.footer-col h3 { font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.footer-col p { margin: 0 0 10px; font-size: .95rem; line-height: 1.6; }
.footer-col a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-note { font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-base {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; padding-bottom: 28px;
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.footer-credit { letter-spacing: .04em; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-legal a { color: rgba(255,255,255,.62); text-decoration: none; }
.footer-legal a:hover { color: var(--gold-soft); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 0;
  height: 58px; padding: 0; border-radius: 999px;
  background: #25D366; color: #fff; text-decoration: none;
  box-shadow: 0 10px 26px -6px rgba(0,0,0,.4);
  overflow: hidden; transition: transform .2s var(--ease), padding .3s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; flex: none; margin: 0 14px; }
.wa-float-label {
  max-width: 0; opacity: 0; white-space: nowrap; font-weight: 600; font-size: .95rem;
  transition: max-width .35s var(--ease), opacity .25s var(--ease), margin .35s var(--ease);
  margin-right: 0;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float:hover .wa-float-label { max-width: 160px; opacity: 1; margin-right: 20px; }
/* attention pulse ring */
.wa-float::after {
  content: ""; position: absolute; left: 14px; top: 9px; width: 40px; height: 40px;
  border-radius: 50%; background: #25D366; z-index: -1;
  animation: wapulse 2.6s var(--ease) infinite;
}
@keyframes wapulse { 0% { transform: scale(.9); opacity: .55; } 70% { transform: scale(2.1); opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-float::after { animation: none; display: none; } }
@media (max-width: 560px) {
  .wa-float { right: 16px; bottom: 16px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; margin: 0 13px; }
  .wa-float-label { display: none; } /* icon-only on phones to save space */
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-feature { order: -1; }
  .included-layout { grid-template-columns: 1fr; }
  .included-figure { position: static; order: -1; }
  .trust-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .facts { grid-template-columns: 1fr; gap: 0; }
  .facts li { padding: 16px 0; }
  .facts li + li { border-top: 1px solid var(--line); }
  .included { grid-template-columns: 1fr; gap: 22px; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item, .gallery-item--wide { grid-column: span 1; }
  .gallery-item img { height: 180px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 20px 18px; }
  .field--row { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-content { padding: 100px 24px 120px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.header-inner { gap: 14px; }
.header-inner .brand { margin-right: auto; }
.lang-switch { display: inline-flex; align-items: center; gap: 2px; }
.lang-switch button {
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  color: rgba(255,255,255,.82); padding: 5px 9px; border-radius: 999px; line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,.4); transition: color .2s, background .2s;
}
.lang-switch button:hover { color: #fff; }
.lang-switch button.active { color: var(--ink); background: var(--gold-soft); text-shadow: none; }
.lang-switch .sep { color: rgba(255,255,255,.32); font-size: .8rem; }
.site-header.scrolled .lang-switch button { text-shadow: none; }
.site-header.scrolled .lang-switch button:not(.active) { color: rgba(255,255,255,.78); }

@media (max-width: 860px) {
  .lang-switch button { padding: 5px 7px; font-size: .8rem; }
}
@media (max-width: 400px) {
  .header-inner { gap: 8px; }
  .lang-switch .sep { display: none; }
  .lang-switch button { padding: 4px 5px; font-size: .76rem; }
}

/* Tamil typography: when Tamil is active, swap to Tamil-capable fonts
   (loaded on demand by the language switcher, only when chosen). */
html[lang="ta"] { --serif: "Noto Serif Tamil", "Cormorant Garamond", serif;
                  --sans: "Noto Sans Tamil", "Inter", system-ui, sans-serif; }
html[lang="ta"] .hero-line, html[lang="ta"] .footer-line { font-style: normal; }
html[lang="ta"] .lead, html[lang="ta"] .body { line-height: 1.75; }
html[lang="ta"] .eyebrow, html[lang="ta"] .hero-scroll-label,
html[lang="ta"] .footer-col h3, html[lang="ta"] .stats-label,
html[lang="ta"] .facts-label, html[lang="ta"] .quote cite,
html[lang="ta"] .book-or { letter-spacing: normal; text-transform: none; }

/* Phone header: keep the brand subtitle but make it compact so the
   language switch has room and nothing overlaps */
@media (max-width: 560px) {
  .brand-text { font-size: 1.15rem; min-width: 0; line-height: 1.08; }
  .brand-sub { font-size: .5rem; letter-spacing: .12em; }
  .brand-mark { width: 40px; height: 40px; }
  .brand { min-width: 0; gap: 9px; }
  .header-inner { gap: 8px; padding-left: 16px; padding-right: 16px; }
  .lang-switch { flex-shrink: 0; white-space: nowrap; }
  .lang-switch button { padding: 4px 6px; font-size: .76rem; }
}
@media (max-width: 480px) {
  .lang-switch .sep { display: none; }
  .lang-switch button { padding: 4px 5px; font-size: .74rem; }
}

/* ============================================================
   THE PLAN / ITINERARY
   ============================================================ */
.plan-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px,5vw,56px); align-items: start; margin-top: clamp(36px,5vw,56px); }
.plan-days { display: grid; gap: 36px; }
.day-label { font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 0 0 .3rem; }
.day-title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.5rem,3vw,2rem); color: var(--navy); margin: 0 0 1.1rem; line-height: 1.05; }
.day-steps { list-style: none; margin: 0; padding: 0; position: relative; }
.day-steps::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(to bottom, var(--gold), var(--line)); }
.day-steps li { position: relative; padding: 0 0 18px 30px; display: flex; flex-direction: column; gap: 2px; }
.day-steps li:last-child { padding-bottom: 0; }
.day-steps li::before { content: ""; position: absolute; left: 1px; top: 5px; width: 11px; height: 11px; border-radius: 50%; background: var(--paper); border: 2px solid var(--navy); }
.day-time { font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--gold); text-transform: uppercase; }
.day-text { font-size: 1rem; color: var(--text-soft); }

.price-card { background: var(--navy); color: #fff; border-radius: 10px; padding: clamp(24px,3vw,32px); position: sticky; top: 88px; box-shadow: 0 26px 56px -30px rgba(16,27,48,.6); }
.price-kicker { font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 .6rem; }
.price-amount { font-family: var(--serif); font-size: clamp(2.6rem,6vw,3.4rem); line-height: 1; margin: 0; color: #fff; }
.price-per { font-size: .92rem; color: rgba(255,255,255,.78); margin: .5rem 0 0; line-height: 1.5; }
.price-total { color: var(--gold-soft); font-weight: 600; }
.price-incl { list-style: none; margin: 1.4rem 0; padding: 1.4rem 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); display: grid; gap: 10px; }
.price-incl li { position: relative; padding-left: 26px; font-size: .96rem; color: rgba(255,255,255,.9); }
.price-incl li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 8px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.price-card .btn { margin-top: .2rem; }

@media (max-width: 860px) {
  .plan-layout { grid-template-columns: 1fr; }
  .price-card { position: static; }
}

/* ============================================================
   MALAYALAM TYPOGRAPHY (loaded on demand)
   ============================================================ */
html[lang="ml"] { --serif: "Noto Serif Malayalam", "Cormorant Garamond", serif;
                  --sans: "Noto Sans Malayalam", "Inter", system-ui, sans-serif; }
html[lang="ml"] .hero-line, html[lang="ml"] .footer-line { font-style: normal; }
html[lang="ml"] .lead, html[lang="ml"] .body { line-height: 1.75; }
html[lang="ml"] .eyebrow, html[lang="ml"] .hero-scroll-label,
html[lang="ml"] .footer-col h3, html[lang="ml"] .stats-label,
html[lang="ml"] .facts-label, html[lang="ml"] .quote cite,
html[lang="ml"] .book-or, html[lang="ml"] .day-label, html[lang="ml"] .day-time,
html[lang="ml"] .price-kicker { letter-spacing: normal; text-transform: none; }

/* keep Tamil itinerary labels clean too */
html[lang="ta"] .day-label, html[lang="ta"] .day-time,
html[lang="ta"] .price-kicker { letter-spacing: normal; text-transform: none; }

/* 4-language switch: a touch tighter so four fit on phones */
@media (max-width: 480px) {
  .lang-switch button { padding: 4px 4px; font-size: .72rem; }
}
