/* ============================================================
   Ranthambore Safari — Design System
   ============================================================ */

:root {
  /* Palette — deep forest, tiger ochre, sandstone cream, gold */
  --forest-950: #0b1210;
  --forest-900: #12211b;
  --forest-800: #1a3028;
  --forest-700: #24443a;
  --forest-600: #33604f;
  --ochre-600:  #b8541f;
  --ochre-500:  #d3691f;
  --ochre-400:  #e28a3d;
  --ochre-100:  #f6dcb8;
  --cream-50:   #faf6ef;
  --cream-100:  #f2ead9;
  --cream-200:  #e8dcc2;
  --stone-500:  #7a6a54;
  --stone-700:  #4a3f2f;
  --gold:       #c9a24a;
  --white:      #ffffff;
  --black:      #000000;

  /* Semantic */
  --bg:         var(--cream-50);
  --bg-alt:     var(--cream-100);
  --ink:        var(--forest-950);
  --ink-soft:   #3d4a44;
  --muted:      #6d7873;
  --line:       rgba(11,18,16,0.09);
  --accent:     var(--ochre-500);
  --accent-ink: var(--forest-900);

  /* Typography */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Rhythm */
  --container: 1240px;
  --gutter:    clamp(20px, 4vw, 40px);
  --section-y: clamp(64px, 9vw, 120px);
  --radius:    6px;
  --radius-lg: 14px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   Reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* Typography scale */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft); line-height: 1.7; }

/* Kicker (small uppercase label above headings) */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre-600);
  margin-bottom: 20px;
}
.kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--ochre-500);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-y) 0; }
.section--dark {
  background: var(--forest-950);
  color: var(--cream-50);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream-50); }
.section--dark p { color: rgba(250,246,239,0.75); }
.section--dark .kicker { color: var(--ochre-400); }
.section--dark .kicker::before { background: var(--ochre-400); }
.section--alt { background: var(--bg-alt); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ochre-500);
  color: var(--white);
  box-shadow: 0 6px 22px -8px rgba(211,105,31,0.55);
}
.btn--primary:hover { background: var(--ochre-600); transform: translateY(-2px); box-shadow: 0 10px 28px -8px rgba(211,105,31,0.7); }
.btn--ghost {
  background: transparent;
  color: currentColor;
  border: 1px solid currentColor;
}
.btn--ghost:hover { background: var(--ink); color: var(--cream-50); border-color: var(--ink); }
.section--dark .btn--ghost:hover { background: var(--cream-50); color: var(--forest-950); border-color: var(--cream-50); }
.btn--dark { background: var(--forest-900); color: var(--cream-50); }
.btn--dark:hover { background: var(--forest-800); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }
.btn__arrow { transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  transition: opacity .35s var(--ease);
  flex-shrink: 0;
}
.nav__brand:hover { opacity: 0.85; }
.nav__brand-img {
  height: 52px;
  width: auto;
  display: block;
  transition: filter .35s var(--ease);
}
/* On transparent nav (over hero) the logo is on a dark bg — no filter needed since logo has its own colors.
   On solid nav (light bg), the logo needs no change either since it's already legible.
   But if we want a light-mode variant later, we can filter or swap here. */
@media (max-width: 700px) {
  .nav__brand-img { height: 40px; }
}
@media (max-width: 480px) {
  .nav__brand-img { height: 34px; }
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav__link {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream-50);
  padding: 8px 0;
  position: relative;
  transition: color .3s var(--ease);
}
.nav__link:hover { color: var(--ochre-400); }
.nav__item { position: relative; }
.nav__item--has-menu > .nav__link::after {
  content: '▾';
  margin-left: 6px;
  font-size: 0.7em;
  opacity: 0.7;
}
.nav__submenu {
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 240px;
  padding: 12px;
  background: var(--cream-50);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s;
}
.nav__item--has-menu:hover .nav__submenu,
.nav__item--has-menu:focus-within .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s 0s;
}
.nav__submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--forest-900);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__submenu a:hover { background: var(--cream-100); color: var(--ochre-600); }

.nav__cta { margin-left: 8px; }
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: var(--cream-50);
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top:  7px; }

/* Solid nav (scrolled or forced) */
.nav.is-solid {
  background: rgba(250,246,239,0.96);
  backdrop-filter: saturate(1.4) blur(10px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-solid .nav__brand,
.nav.is-solid .nav__link,
.nav.is-solid .nav__toggle { color: var(--forest-900); }
.nav.is-solid .nav__link:hover { color: var(--ochre-600); }

/* Force solid on non-hero pages */
.nav--solid {
  background: rgba(250,246,239,0.96);
  backdrop-filter: saturate(1.4) blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.nav--solid .nav__brand,
.nav--solid .nav__link,
.nav--solid .nav__toggle { color: var(--forest-900); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 88vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 100px 32px 40px;
    background: var(--forest-950);
    color: var(--cream-50);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__link { color: var(--cream-50) !important; padding: 16px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1rem; }
  .nav__submenu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 12px 12px;
    min-width: 0;
  }
  .nav__submenu a { color: rgba(250,246,239,0.75); padding: 8px 0; }
  .nav__submenu a:hover { background: transparent; color: var(--ochre-400); }
  .nav__cta { margin-top: 20px; }
  body.menu-open { overflow: hidden; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: var(--cream-50);
  overflow: hidden;
  padding: 120px 0 90px;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img,
.hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,18,16,0.35) 0%, rgba(11,18,16,0.25) 45%, rgba(11,18,16,0.9) 100%),
    linear-gradient(90deg, rgba(11,18,16,0.5) 0%, transparent 60%);
  z-index: -1;
}
.hero__content { max-width: 780px; }
.hero__kicker { color: var(--ochre-400); }
.hero__kicker::before { background: var(--ochre-400); }
.hero__title {
  color: var(--cream-50);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--ochre-400);
  font-weight: 400;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(250,246,239,0.85);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 4vw, 48px);
  margin-top: clamp(48px, 8vw, 80px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--cream-50);
  line-height: 1;
  margin-bottom: 8px;
}
.hero__stat span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250,246,239,0.65);
}
.hero__scroll {
  position: absolute;
  bottom: 30px; right: var(--gutter);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 60px;
  background: currentColor;
  animation: scroll-cue 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scroll-cue { 0%{transform:scaleY(0);opacity:0} 40%{transform:scaleY(1);opacity:1} 100%{transform:scaleY(0);opacity:0;transform-origin:bottom} }
@media (max-width: 700px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__scroll { display: none; }
}

/* Compact hero for interior pages */
.hero--compact { min-height: 62vh; padding: 140px 0 60px; }
.hero--compact .hero__title { font-size: clamp(2.2rem, 5vw, 3.6rem); }

/* ============================================================
   Cards (safari zones, tigers, blog, packages)
   ============================================================ */
.grid {
  display: grid;
  gap: 28px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) {
  .grid--4, .grid--5 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  border: 1px solid var(--line);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.25);
}
.card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-200);
  position: relative;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 24px 26px 28px; }
.card__eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre-600);
  margin-bottom: 10px;
  font-weight: 600;
}
.card__title { font-size: 1.35rem; margin-bottom: 10px; }
.card__excerpt { font-size: 0.94rem; color: var(--muted); margin-bottom: 16px; }
.card__more {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ochre-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card__more::after {
  content: '→';
  transition: transform .3s var(--ease);
}
.card:hover .card__more::after { transform: translateX(4px); }

/* Zone card variant */
.zone-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--forest-800);
  color: var(--cream-50);
}
.zone-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.zone-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,18,16,0.1) 30%, rgba(11,18,16,0.9) 100%);
}
.zone-card:hover img { transform: scale(1.08); }
.zone-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 22px;
  z-index: 1;
}
.zone-card__num {
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--ochre-400);
  margin-bottom: 6px;
  font-weight: 500;
}
.zone-card__name { font-size: 1.15rem; margin-bottom: 4px; color: var(--cream-50); font-family: var(--serif); }
.zone-card__meta { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,246,239,0.75); }

/* ============================================================
   Packages tabs (homepage main conversion widget)
   ============================================================ */
.packages {
  background: var(--forest-950);
  color: var(--cream-50);
}
.packages h1, .packages h2, .packages h3, .packages h4 { color: var(--cream-50); }
.packages p { color: rgba(250,246,239,0.75); }
.packages .kicker { color: var(--ochre-400); }
.packages .kicker::before { background: var(--ochre-400); }
.packages__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}
.packages__intro p { color: rgba(250,246,239,0.75); max-width: 520px; }
@media (max-width: 800px) { .packages__intro { grid-template-columns: 1fr; gap: 24px; } }

.tabs {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--forest-900);
  border: 1px solid rgba(255,255,255,0.08);
}
.tabs__nav {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tabs__nav::-webkit-scrollbar { display: none; }
.tabs__tab {
  flex: 1;
  min-width: 180px;
  padding: 22px 24px;
  text-align: left;
  color: rgba(250,246,239,0.6);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background .3s var(--ease), color .3s var(--ease);
  position: relative;
}
.tabs__tab:last-child { border-right: 0; }
.tabs__tab:hover { color: var(--cream-50); background: rgba(255,255,255,0.03); }
.tabs__tab.is-active {
  color: var(--cream-50);
  background: rgba(211,105,31,0.08);
}
.tabs__tab.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--ochre-500);
}
.tabs__tab-small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 4px;
}
.tabs__panel {
  display: none;
  padding: clamp(28px, 4vw, 56px);
}
.tabs__panel.is-active { display: block; animation: fadeIn .5s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.package {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 900px) { .package { grid-template-columns: 1fr; } }
.package__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--forest-800);
}
.package__media img { width: 100%; height: 100%; object-fit: cover; }
.package__title { color: var(--cream-50); margin-bottom: 12px; }
.package__price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 0.85rem;
  color: rgba(250,246,239,0.85);
}
.package__price b { font-family: var(--serif); font-size: 1.3rem; color: var(--ochre-400); }
.package__desc { color: rgba(250,246,239,0.75); margin-bottom: 24px; }
.package__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}
@media (max-width: 640px) { .package__lists { grid-template-columns: 1fr; } }
.package__list h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre-400);
  margin-bottom: 12px;
  font-weight: 600;
}
.package__list ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.package__list li {
  font-size: 0.88rem;
  color: rgba(250,246,239,0.8);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.package__list--incl li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--ochre-400);
  border-bottom: 2px solid var(--ochre-400);
  transform: rotate(-45deg);
}
.package__list--excl li::before {
  content: '×';
  position: absolute; left: 4px; top: -2px;
  color: rgba(250,246,239,0.4);
  font-size: 1.1rem;
  font-weight: 300;
}
.package__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   Enquiry form
   ============================================================ */
.booking {
  position: relative;
  isolation: isolate;
}
.booking__inner {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: 0 30px 90px -40px rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) { .booking__inner { grid-template-columns: 1fr; } }
.booking__intro h2 { color: var(--forest-950); }
.booking__intro p { color: var(--muted); }
.booking__intro ul {
  list-style: none;
  padding: 0; margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking__intro li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.booking__intro li::before {
  content: '';
  flex: 0 0 20px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--ochre-100);
  color: var(--ochre-600);
  display: grid; place-items: center;
  font-weight: 700;
  margin-top: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 6l3 3 5-6' fill='none' stroke='%23b8541f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.form { display: grid; gap: 16px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 500px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-500);
  font-weight: 600;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--muted); opacity: 1; }
.form__select { color: var(--ink); }
.form__textarea { resize: vertical; min-height: 90px; }
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--ochre-500);
  box-shadow: 0 0 0 4px rgba(211,105,31,0.12);
}
.form__radios { display: flex; gap: 12px; flex-wrap: wrap; }
.form__radio {
  flex: 1;
  min-width: 120px;
  position: relative;
}
.form__radio input { position: absolute; opacity: 0; }
.form__radio label {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  cursor: pointer;
  transition: all .2s var(--ease);
  font-size: 0.9rem;
  font-weight: 500;
}
.form__radio input:checked + label {
  background: var(--forest-950);
  color: var(--cream-50);
  border-color: var(--forest-950);
}
.form__submit { margin-top: 8px; }
.form__note { font-size: 0.78rem; color: var(--muted); margin-top: 8px; }
.form__status {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  display: none;
}
.form__status.is-error { display: block; background: #fdecea; color: #8a2a1c; }
.form__status.is-loading { display: block; background: var(--cream-100); color: var(--stone-700); }
.form__status.is-success { display: block; background: #e6f4ea; color: #1b5e20; border: 1px solid #b7dfbf; }

/* ============================================================
   About / split section
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) { .split--reverse .split__media { order: 0; } }
.split__media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-200);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Stats strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
@media (max-width: 700px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-strip b {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--forest-950);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 500;
}
.stat-strip span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* ============================================================
   Season strip (best time to visit)
   ============================================================ */
.season-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 800px) { .season-strip { grid-template-columns: 1fr; } }
.season {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  color: var(--cream-50);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.season--peak    { background: linear-gradient(135deg, #24443a, #33604f); }
.season--summer  { background: linear-gradient(135deg, #b8541f, #d3691f); }
.season--closed  { background: linear-gradient(135deg, #4a3f2f, #7a6a54); }
.season__months { font-family: var(--serif); font-size: 2rem; margin: 0; color: var(--cream-50); }
.season__label  { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0.8; margin-bottom: 10px; }
.season p { color: rgba(250,246,239,0.85); margin-bottom: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest-950);
  cursor: pointer;
}
.faq__q::after {
  content: '';
  flex: 0 0 22px;
  width: 22px; height: 22px;
  background:
    linear-gradient(currentColor, currentColor) center/12px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center/2px 12px no-repeat;
  color: var(--ochre-500);
  transition: transform .3s var(--ease);
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease);
}
.faq__a p { padding: 0 0 24px; color: var(--ink-soft); }
.faq__item.is-open .faq__a { max-height: 500px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--forest-950);
  color: var(--cream-50);
  padding: 80px 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } }
.footer__brand { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 12px; color: var(--cream-50); }
.footer p, .footer a { color: rgba(250,246,239,0.7); }
.footer a:hover { color: var(--ochre-400); }
.footer h5 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-50);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.9rem; }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.8rem;
  color: rgba(250,246,239,0.5);
  flex-wrap: wrap;
}

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6);
  z-index: 90;
  transition: transform .3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ============================================================
   Utility
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head.left { margin: 0 0 60px; text-align: left; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--dark .section-head p { color: rgba(250,246,239,0.7); }

/* CTA banner (used between sections) */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(48px, 6vw, 80px);
  color: var(--cream-50);
  isolation: isolate;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--forest-800), var(--forest-950));
  z-index: -1;
}
.cta-banner h2 { color: var(--cream-50); max-width: 640px; margin: 0 auto 18px; }
.cta-banner p { color: rgba(250,246,239,0.8); max-width: 560px; margin: 0 auto 28px; }

/* Breadcrumb */
.crumb {
  padding: 100px 0 20px;
  font-size: 0.85rem;
  color: var(--muted);
}
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--ochre-600); }
.crumb__sep { margin: 0 8px; opacity: 0.5; }

/* Blog editorial layout */
.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .article { grid-template-columns: 1fr; } }
.article__body h2 { margin-top: 2em; }
.article__body h3 { margin-top: 1.6em; font-size: 1.4rem; }
.article__body p { font-size: 1.05rem; line-height: 1.75; }
.article__body img { border-radius: var(--radius); margin: 2em 0; }
.article__body ul, .article__body ol { margin: 0 0 1.4em; padding-left: 1.4em; }
.article__body ul li, .article__body ol li { font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 8px; }
.article__body ul li::marker { color: var(--ochre-500); }
.article__body ul li b, .article__body ol li b { color: var(--forest-900); font-weight: 600; }
.article__body p b, .article__body p strong { color: var(--forest-900); font-weight: 600; }
.article__body .table-wrap { overflow-x: auto; margin: 1.8em 0 2em; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.article__body table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}
.article__body table th,
.article__body table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.55;
}
.article__body table th {
  background: var(--forest-950);
  color: var(--cream-50);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article__body table tr:last-child td { border-bottom: 0; }
.article__body table tr:nth-child(even) td { background: var(--cream-50); }
.article__body table td:first-child { font-weight: 600; color: var(--forest-900); width: 34%; }
.article__body table.table--split td { width: 50%; font-weight: 400; color: var(--ink-soft); }
.article__body table.table--split th { text-align: left; }
.article__body blockquote,
.article__body .tip {
  margin: 1.6em 0;
  padding: 18px 22px;
  background: var(--cream-100);
  border-left: 3px solid var(--ochre-500);
  border-radius: 4px;
  font-style: italic;
  color: var(--forest-900);
}
.article__body .tip::before {
  content: 'Tip · ';
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ochre-600);
  display: block;
  margin-bottom: 4px;
}
.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.article__meta b { color: var(--forest-900); font-weight: 600; }
.article__hero {
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  background: var(--cream-200);
}
.article__hero img { width: 100%; height: 100%; object-fit: cover; }

.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.sidebar__card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
}
.sidebar__card--dark { background: var(--forest-950); color: var(--cream-50); border-color: var(--forest-800); }
.sidebar__card--dark h4 { color: var(--cream-50); }
.sidebar__card--dark p  { color: rgba(250,246,239,0.75); }
.sidebar__card h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-500);
  margin-bottom: 16px;
  font-weight: 600;
}
.sidebar__card--dark h4 { color: var(--ochre-400); }
.toc { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.toc a { font-size: 0.9rem; color: var(--ink-soft); border-left: 2px solid transparent; padding-left: 12px; transition: all .2s var(--ease); display: block; }
.toc a:hover, .toc a.is-active { color: var(--ochre-600); border-color: var(--ochre-500); }

.related-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.related-list a { font-size: 0.92rem; color: var(--ink-soft); display: block; line-height: 1.4; }
.related-list a:hover { color: var(--ochre-600); }

/* Screen-reader only */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
