/* ==========================================================================
   Kilimanjaro Safari Experience — landing page (modern rebuild)
   Pure HTML/CSS/JS. Same content & structure as the original index.php,
   refreshed visual identity. Images pulled from /assets/images/.
   ========================================================================== */

:root {
  /* palette — savanna & acacia */
  --sand:        #F7F3EA;
  --sand-soft:   #FBF8F1;
  --paper:       #FFFFFF;
  --forest:      #163A2B;   /* deep safari green */
  --forest-deep: #0E2A1F;
  --moss:        #2F5D46;
  --ink:         #1C231D;
  --ink-soft:    #4C554A;
  --muted-text:  #6E766A;
  --gold:        #E0A43B;   /* savanna sun */
  --gold-deep:   #C6862A;
  --clay:        #B4552E;   /* sparingly */
  --line:        #E6E0D2;
  --line-dark:   rgba(255,255,255,.14);

  --shadow-sm: 0 1px 2px rgba(20,28,20,.06), 0 3px 10px -4px rgba(20,28,20,.10);
  --shadow-md: 0 4px 14px -6px rgba(20,28,20,.14), 0 18px 40px -22px rgba(20,28,20,.28);
  --shadow-lg: 0 10px 30px -10px rgba(20,28,20,.22), 0 40px 80px -40px rgba(14,42,31,.45);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 56px);

  --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --header-h: 84px;
}

/* ------------------------------ reset ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--ff-display); font-weight: 500; line-height: 1.12; letter-spacing: -.01em; text-wrap: balance; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--forest); color: #fff; padding: 12px 18px; border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

/* ------------------------------ layout helpers -------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 112px); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }
.section--sand { background: var(--sand); }
.section--paper { background: var(--paper); }
.section--forest { background: var(--forest); color: #F3EFE3; }
.section--forest h2, .section--forest h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--ff-body); font-weight: 600; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep);
}
.section--forest .eyebrow { color: var(--gold); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; opacity: .7; }

.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  margin-top: .5rem;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin: .8rem 0 0; }
.section--forest .section-head p { color: #D8E0D3; }

/* ------------------------------ buttons -------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 15px 28px; border-radius: 999px;
  font-family: var(--ff-body); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--gold { background: var(--gold); color: #26200F; box-shadow: 0 10px 24px -12px rgba(224,164,59,.8); }
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn--forest { background: var(--forest); color: #fff; }
.btn--forest:hover { background: var(--forest-deep); transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid currentColor; color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: #fff; border-color: var(--forest); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(6px); border: 1.5px solid rgba(255,255,255,.5); }
.btn--light:hover { background: #fff; color: var(--forest); transform: translateY(-2px); }
.btn--sm { padding: 11px 20px; font-size: .86rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; color: var(--forest);
  border-bottom: 2px solid var(--gold); padding-bottom: 3px;
  transition: gap .18s ease;
}
.link-arrow:hover { gap: .9em; }
.section--forest .link-arrow { color: #fff; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .3s ease, box-shadow .3s ease, height .3s ease;
}
.site-header::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(247,243,234,.86);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid rgba(230,224,210,.6);
  transition: background-color .3s ease;
}
.site-header.is-stuck { height: 68px; box-shadow: var(--shadow-sm); }
.site-header.is-stuck::before { background: var(--sand-soft); border-bottom-color: var(--line); }

.header-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1320px; margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 40px);
  display: flex; align-items: center; gap: 14px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 42px; width: auto; transition: height .3s ease; }
.site-header.is-stuck .brand img { height: 34px; }

.primary-nav { margin-left: auto; }
.primary-nav > ul { display: flex; align-items: center; gap: 0; }
.primary-nav a { display: block; }

.nav-item { position: relative; }
.nav-item > a, .nav-toplink {
  padding: 9px 11px; border-radius: 9px; white-space: nowrap;
  font-weight: 500; font-size: .9rem; color: var(--ink);
  display: flex; align-items: center; gap: .3em;
  transition: color .15s ease, background-color .15s ease;
}
@media (max-width: 1200px) {
  .nav-item > a, .nav-toplink { padding: 8px 8px; font-size: .86rem; }
}
.nav-item.has-menu > a::after {
  content: ""; width: 6px; height: 6px; margin-top: -2px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform .2s ease; opacity: .55;
}
.nav-item > a:hover, .nav-item:focus-within > a { color: var(--forest); background: rgba(22,58,43,.07); }
.nav-item.has-menu:hover > a::after, .nav-item.has-menu:focus-within > a::after { transform: rotate(-135deg); }

/* dropdown panels */
.nav-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 244px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; padding: 10px;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-menu.nav-menu--wide { min-width: 320px; }
.nav-item:hover > .nav-menu,
.nav-item:focus-within > .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu li > a {
  padding: 9px 12px; border-radius: 9px;
  font-size: .9rem; color: var(--ink-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: background-color .14s ease, color .14s ease;
}
.nav-menu li > a:hover { background: var(--sand); color: var(--forest); }
.nav-menu .nav-item.has-menu > a::after {
  content: ""; width: 5px; height: 5px; border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor; transform: rotate(-45deg); opacity: .5; flex-shrink: 0;
}
.nav-menu .nav-menu { top: -11px; left: calc(100% + 8px); }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ---------- language switcher ---------- */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 10px; border-radius: 9px;
  font-family: var(--ff-body); font-weight: 600; font-size: .82rem; letter-spacing: .03em;
  color: var(--ink); border: 1px solid var(--line); background: var(--paper);
  transition: background-color .15s ease, border-color .15s ease;
}
.lang-btn:hover { border-color: var(--moss); color: var(--forest); }
.lang-btn svg.globe { width: 15px; height: 15px; opacity: .7; }
.lang-btn .caret { width: 5px; height: 5px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-left: 1px; opacity: .6; transition: transform .2s ease; }
.lang-btn[aria-expanded="true"] .caret { transform: rotate(-135deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 178px; max-height: 320px; overflow-y: auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 8px;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.lang-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 12px; border-radius: 9px; font-size: .9rem; color: var(--ink-soft); text-align: left;
  transition: background-color .13s ease, color .13s ease;
}
.lang-menu button:hover { background: var(--sand); color: var(--forest); }
.lang-menu button[aria-current="true"] { color: var(--forest); font-weight: 600; }
.lang-menu button[aria-current="true"]::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
/* keep Google Translate's injected chrome out of the way */
.skiptranslate,
.goog-te-banner-frame,
.goog-te-gadget-icon,
#goog-gt-tt, .goog-tooltip, .goog-tooltip * { display: none !important; }
.goog-te-spinner-pos { display: none !important; }
html, body { top: 0 !important; position: static !important; min-height: 0; }
#google_translate_element { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
/* Google wraps translated text nodes in <font> — keep them transparent to styling */
font { font: inherit !important; color: inherit !important; background: none !important; }

/* ------------------------- reusable tour pages ------------------------- */
.tour-page { background: var(--paper); color: var(--ink); }
.tour-header { min-height: 76px; padding: 14px clamp(20px, 5vw, 72px); display: flex; gap: clamp(18px, 3vw, 42px); align-items: center; background: var(--sand-soft); border-bottom: 1px solid var(--line); position: relative; z-index: 2; }
.tour-brand { font-family: var(--ff-display); font-size: 1.18rem; color: var(--forest); line-height: 1; white-space: nowrap; }
.tour-brand span { display: block; font-family: var(--ff-body); font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-top: 4px; }
.tour-header nav { display: flex; gap: clamp(14px, 2vw, 28px); margin-left: auto; font-size: .84rem; font-weight: 600; }
.tour-header nav a:hover, .tour-email:hover { color: var(--gold-deep); }
.tour-hero { min-height: min(620px, 76vh); display: flex; align-items: end; padding: clamp(44px, 8vw, 112px) clamp(20px, 8vw, 10vw); background-size: cover; background-position: center; color: #fff; }
.tour-hero__content { max-width: 760px; }
.tour-hero .eyebrow { color: var(--gold); }
.tour-hero h1 { color: #fff; font-size: clamp(2.65rem, 6vw, 5.2rem); margin: .55rem 0 1rem; }
.tour-hero p:not(.eyebrow) { max-width: 660px; font-size: clamp(1.03rem, 1.7vw, 1.2rem); line-height: 1.72; color: rgba(255,255,255,.9); }
.tour-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.tour-content { max-width: 1240px; margin: auto; display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(38px, 8vw, 100px); }
.tour-content__main > h2, .tour-itinerary h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--forest); margin: .4rem 0 1.2rem; }
.tour-content__main > p { color: var(--ink-soft); font-size: 1.04rem; line-height: 1.8; max-width: 780px; }
.tour-itinerary { border-top: 1px solid var(--line); margin-top: 48px; padding-top: 42px; }
.tour-itinerary article { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.tour-itinerary article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--sand); color: var(--forest); font-size: .76rem; font-weight: 700; }
.tour-itinerary h3 { color: var(--forest); font-size: 1.28rem; margin-bottom: .5rem; }
.tour-itinerary p { color: var(--ink-soft); line-height: 1.72; margin: 0; }
.tour-card { align-self: start; position: sticky; top: 24px; background: var(--forest); color: #fff; padding: 30px; box-shadow: var(--shadow-lg); }
.tour-card .eyebrow { color: var(--gold); }.tour-card h2 { color: #fff; font-size: 2rem; margin: .4rem 0 .8rem; }.tour-card p { color: #dce5dd; line-height: 1.65; }.tour-card .btn { width: 100%; justify-content: center; margin-top: 10px; }.tour-email { color: #fff; display: block; text-align: center; margin-top: 16px; font-size: .86rem; }.tour-card hr { border: 0; border-top: 1px solid rgba(255,255,255,.18); margin: 28px 0; }.tour-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 14px; }.tour-card li { display: flex; gap: 8px; color: #dce5dd; font-size: .9rem; line-height: 1.55; margin: 9px 0; }.tour-card li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.tour-footer { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 32px clamp(20px, 5vw, 72px); background: #102c21; color: #dce5dd; font-size: .84rem; }.tour-footer p { margin: 0; }.tour-footer a { color: #fff; }
@media (max-width: 800px) { .tour-header { flex-wrap: wrap; }.tour-header nav { order: 3; width: 100%; margin-left: 0; overflow-x: auto; padding-top: 5px; }.tour-header .btn { margin-left: auto; }.tour-content { grid-template-columns: 1fr; }.tour-card { position: static; }.tour-hero { min-height: 540px; } }
@media (max-width: 480px) { .tour-header { gap: 12px; }.tour-header .btn { padding: 9px 11px; font-size: .74rem; }.tour-header nav { gap: 16px; }.tour-hero { padding-inline: 20px; }.tour-itinerary article { grid-template-columns: 34px 1fr; gap: 13px; } }

/* -------------------------- global footer CTA -------------------------- */
.site-footer-cta { min-height: 360px; display: grid; grid-template-columns: minmax(220px, .85fr) minmax(0, 1.15fr); background: var(--forest); color: #fff; overflow: hidden; }
.site-footer-cta__image { background: linear-gradient(90deg, rgba(14,46,33,.1), rgba(14,46,33,.55)), url('../images/banner/safari1.jpg') center / cover; min-height: 280px; }
.site-footer-cta__content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(48px, 7vw, 92px); }
.site-footer-cta .eyebrow { color: var(--gold); }.site-footer-cta h2 { color: #fff; max-width: 640px; font-size: clamp(2.25rem, 4vw, 4rem); margin: .5rem 0 1rem; }.site-footer-cta p:not(.eyebrow) { max-width: 590px; color: #dce5dd; font-size: 1.06rem; line-height: 1.72; margin: 0; }.site-footer-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
@media (max-width: 760px) { .site-footer-cta { grid-template-columns: 1fr; }.site-footer-cta__image { min-height: 220px; }.site-footer-cta__content { padding: 48px 24px; } }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--forest); color: #fff;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(14,42,31,.5); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 120;
  width: min(400px, 88vw);
  background: var(--sand-soft);
  transform: translateX(102%);
  transition: transform .34s cubic-bezier(.4,.01,.2,1);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
}
.drawer-top img { height: 34px; width: auto; }
.drawer-close { width: 42px; height: 42px; border-radius: 10px; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; font-size: 1.2rem; color: var(--forest); }
.drawer-scroll { overflow-y: auto; padding: 12px 14px 28px; flex: 1; -webkit-overflow-scrolling: touch; }

.m-nav > li { border-bottom: 1px solid var(--line); }
.m-nav a, .m-nav .m-acc-btn {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 15px 10px; font-size: 1.02rem; font-weight: 500; color: var(--ink); text-align: left;
}
.m-nav .m-sub a { font-size: .95rem; font-weight: 400; color: var(--ink-soft); padding: 11px 10px 11px 22px; }
.m-nav .m-sub .m-sub a { padding-left: 36px; }
.m-acc-btn .chev { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .22s ease; opacity: .6; }
.m-acc-btn[aria-expanded="true"] .chev { transform: rotate(-135deg); }
.m-sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.m-sub > div { overflow: hidden; }
.m-sub.is-open { grid-template-rows: 1fr; }

.drawer-contact { margin-top: 22px; padding: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.drawer-contact h4 { font-family: var(--ff-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-text); margin-bottom: 10px; }
.drawer-contact li { padding: 4px 0; font-size: .85rem; color: var(--ink-soft); overflow-wrap: break-word; }
.drawer-social { display: flex; gap: 10px; margin-top: 16px; }
.drawer-social a { width: 40px; height: 40px; border-radius: 10px; background: var(--sand); display: grid; place-items: center; color: var(--forest); }
.drawer-social svg { width: 18px; height: 18px; }
.drawer .btn { width: 100%; margin-top: 18px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,42,31,.28) 0%, rgba(14,42,31,.12) 38%, rgba(12,30,22,.72) 82%, rgba(12,30,22,.92) 100%),
    linear-gradient(75deg, rgba(12,30,22,.55) 0%, rgba(12,30,22,0) 55%);
}
.hero-slide-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
}
.hero-slide.is-active .hero-slide-img { animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.14); } }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity .01s; }
  .hero-slide.is-active .hero-slide-img { animation: none; transform: scale(1.06); }
}

.hero-inner {
  position: relative; z-index: 2; width: 100%;
  padding-top: calc(var(--header-h) + clamp(28px, 6vh, 64px));
  padding-bottom: clamp(48px, 9vh, 110px);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6em;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(6px);
  padding: 8px 16px; border-radius: 999px;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  margin-bottom: 22px;
}
.hero-badge svg { width: 15px; height: 15px; color: var(--gold); }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 400; max-width: 15ch;
  margin-bottom: .35em;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lead { font-size: clamp(1.05rem, 2.3vw, 1.35rem); max-width: 44ch; color: #EDEAE0; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-controls {
  position: absolute; z-index: 3; right: var(--gutter); bottom: clamp(56px, 10vw, 120px);
  display: flex; align-items: center; gap: 14px;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dots button { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.4); transition: width .25s ease, background-color .25s ease; }
.hero-dots button.is-active { width: 30px; background: var(--gold); }
.hero-arrows { display: flex; gap: 8px; }
.hero-arrows button {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.4);
  display: grid; place-items: center; color: #fff;
  transition: background-color .18s ease, border-color .18s;
}
.hero-arrows button:hover { background: rgba(255,255,255,.16); border-color: #fff; }
.hero-arrows svg { width: 18px; height: 18px; }

@media (max-width: 760px) { .hero-controls { left: var(--gutter); right: auto; bottom: 26px; } .hero-arrows { display: none; } }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about-media { position: relative; }
.about-media .img-main {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; object-fit: cover; width: 100%;
}
.about-media .img-float {
  position: absolute; right: -6%; bottom: -12%;
  width: 46%; border-radius: var(--radius); border: 6px solid var(--sand);
  box-shadow: var(--shadow-md); aspect-ratio: 1; object-fit: cover;
}
.about-media .badge-years {
  position: absolute; left: -6%; top: 8%;
  background: var(--gold); color: #26200F;
  border-radius: 50%; width: 116px; height: 116px;
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md); font-family: var(--ff-display);
  line-height: 1;
}
.badge-years b { font-size: 2rem; display: block; }
.badge-years span { font-size: .7rem; font-family: var(--ff-body); letter-spacing: .06em; text-transform: uppercase; }

.about-body h2 { font-size: clamp(2rem, 4.4vw, 3rem); margin: .5rem 0 1rem; }
.about-body p { color: var(--ink-soft); font-size: 1.06rem; }
.about-actions { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; }

.featured-on {
  margin-top: clamp(32px, 4vw, 48px); padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
}
.fo-rating { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .95rem; color: var(--ink); }
.fo-stars { display: inline-flex; gap: 2px; color: var(--gold); }
.fo-stars svg { width: 16px; height: 16px; }
.fo-links { font-size: .95rem; color: var(--muted-text); }
.fo-links a { color: var(--forest); font-weight: 600; border-bottom: 1px solid var(--line); }
.fo-links a:hover { border-color: var(--gold); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin: 0 auto 40px; }
  .about-media .img-float { width: 42%; }
}

/* ==========================================================================
   FEATURE CARDS  (Why travel with us)
   ========================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-ico {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(150deg, var(--moss), var(--forest));
  color: var(--gold); display: grid; place-items: center; margin-bottom: 18px;
}
.feature-ico svg { width: 26px; height: 26px; }
.feature-card h4 { font-family: var(--ff-body); font-weight: 700; font-size: 1rem; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 8px; }
.feature-card p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid--2 { grid-template-columns: repeat(2, 1fr); }
.feature-card p a { overflow-wrap: anywhere; }
/* compact cards used inside a content column (smaller icon tile) */
.legal-section .feature-grid { margin-top: 1.4em; }
.legal-section .feature-card { padding: 22px 22px; }
.legal-section .feature-ico { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px; }
.legal-section .feature-ico svg { width: 21px; height: 21px; }
@media (max-width: 940px) { .feature-grid, .feature-grid--3, .feature-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid, .feature-grid--3, .feature-grid--2 { grid-template-columns: 1fr; } }

/* ==========================================================================
   TOUR / OFFER CARDS
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card-grid--treks { grid-template-columns: repeat(3, 1fr); }

.tcard {
  position: relative; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tcard-media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.tcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tcard:hover .tcard-media img { transform: scale(1.07); }
.tcard-price {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255,255,255,.94); color: var(--forest);
  font-weight: 700; font-size: .82rem; padding: 6px 13px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.tcard-price small { font-weight: 500; color: var(--muted-text); }
.tcard-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tcard-body h3 { font-size: 1.24rem; font-weight: 500; }
.tcard-body h3 a { transition: color .15s ease; }
.tcard-body h3 a:hover { color: var(--gold-deep); }
.tcard-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.tcard-tag {
  font-size: .76rem; color: var(--ink-soft);
  background: var(--sand); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: .4em;
}
.tcard-tag svg { width: 12px; height: 12px; opacity: .6; }
.tcard-link {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 600; font-size: .9rem; color: var(--forest); margin-top: 4px;
}
.tcard-link svg { width: 14px; height: 14px; transition: transform .18s ease; }
.tcard:hover .tcard-link svg { transform: translateX(4px); }

.section-foot { margin-top: clamp(34px, 5vw, 52px); text-align: center; }

/* description paragraph inside a tour/destination card */
.tcard-body > p { font-size: .93rem; color: var(--ink-soft); line-height: 1.62; margin: 0; }

/* stacked circuit blocks (destinations page) */
.circuit + .circuit { margin-top: clamp(52px, 8vw, 96px); }
.circuit .section-head { max-width: 720px; }
.kse-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.kse-list li { position: relative; padding-left: 22px; color: var(--ink-soft); line-height: 1.55; }
.kse-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }
.kse-map { overflow: hidden; border-radius: 18px; aspect-ratio: 16 / 9; box-shadow: var(--shadow-md); background: var(--sand); }
.kse-map iframe { width: 100%; height: 100%; border: 0; }
.kse-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.kse-gallery figure { margin: 0; overflow: hidden; border-radius: 14px; background: var(--sand); }
.kse-gallery img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.kse-gallery figure:hover img { transform: scale(1.04); }
.kse-gallery figcaption { padding: 11px 13px; color: var(--ink-soft); font-size: .9rem; }
.kse-comparison { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.kse-comparison .feature-card { text-align: left; }
.kse-comparison-price { color: var(--gold-deep) !important; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.kse-faq { max-width: 920px; display: grid; gap: 10px; }
.kse-faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 0 20px; }
.kse-faq summary { cursor: pointer; list-style: none; padding: 19px 28px 19px 0; font-weight: 600; position: relative; }
.kse-faq summary::after { content: '+'; position: absolute; right: 0; color: var(--gold-deep); font-size: 1.4rem; line-height: .8; }
.kse-faq details[open] summary::after { content: '–'; }
.kse-faq details > div { color: var(--ink-soft); padding: 0 0 18px; line-height: 1.7; }
@media (max-width: 720px) { .kse-gallery, .kse-comparison { grid-template-columns: 1fr; } }

@media (max-width: 980px) { .card-grid, .card-grid--treks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid, .card-grid--treks { grid-template-columns: 1fr; } }

/* ==========================================================================
   CTA BANDS
   ========================================================================== */
.cta-band {
  position: relative; color: #fff; text-align: center;
  padding-block: clamp(70px, 12vw, 150px); overflow: hidden;
}
.cta-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,30,22,.55), rgba(12,30,22,.78)); z-index: 1; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 400; color: #fff; margin-bottom: .4em; }
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p { font-size: 1.12rem; color: #E9E5DA; max-width: 46ch; margin: 0 auto 1.8rem; }

/* ==========================================================================
   HORIZONTAL SCROLLERS  (packages, testimonials, destinations)
   ========================================================================== */
.scroller-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(28px, 4vw, 44px); }
.scroller-nav { display: flex; gap: 10px; flex-shrink: 0; }
.scroller-nav button {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--paper); color: var(--forest);
  display: grid; place-items: center; transition: background-color .16s ease, border-color .16s, transform .16s;
}
.scroller-nav button:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.scroller-nav button:disabled { opacity: .35; cursor: default; }
.scroller-nav button:disabled:hover { background: var(--paper); color: var(--forest); border-color: var(--line); }
.section--forest .scroller-nav button { background: transparent; color: #fff; border-color: var(--line-dark); }
.section--forest .scroller-nav button:hover { background: #fff; color: var(--forest); }
.scroller-nav svg { width: 18px; height: 18px; }

.scroller {
  display: grid; grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 10px; margin-bottom: -10px;
  scrollbar-width: none;
}
.scroller::-webkit-scrollbar { display: none; }
.scroller > * { scroll-snap-align: start; }
.scroller--pkg { grid-auto-columns: min(360px, 82vw); }
.scroller--quote { grid-auto-columns: min(400px, 85vw); }
.scroller--dest { grid-auto-columns: min(320px, 78vw); }

/* package card */
.pkg-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.section--forest .pkg-card { background: #12332627; border-color: var(--line-dark); color: #EFECE1; }
.pkg-card img { aspect-ratio: 16/11; object-fit: cover; }
.pkg-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pkg-body h3 { font-size: 1.2rem; font-weight: 500; }
.section--forest .pkg-body h3 { color: #fff; }
.pkg-price { font-weight: 700; color: var(--gold-deep); }
.section--forest .pkg-price { color: var(--gold); }
.pkg-body p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.section--forest .pkg-body p { color: #C9D2C6; }
.pkg-body .btn { margin-top: auto; align-self: flex-start; }

/* quote card */
.quote-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.quote-stars { display: flex; gap: 3px; color: var(--gold); }
.quote-stars svg { width: 17px; height: 17px; }
.quote-card blockquote { margin: 0; font-size: 1rem; color: var(--ink-soft); line-height: 1.6; }
.quote-card .quote-by { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(150deg, var(--gold), var(--clay));
  color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--ff-display);
}
.quote-by b { display: block; font-family: var(--ff-body); font-weight: 700; font-size: .95rem; }
.quote-by span { font-size: .84rem; color: var(--muted-text); }

/* destination tile */
.dest-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-sm); display: block;
}
.dest-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest-tile:hover img { transform: scale(1.08); }
.dest-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,30,22,0) 40%, rgba(12,30,22,.82)); }
.dest-tile figcaption {
  position: absolute; left: 20px; bottom: 18px; z-index: 1; color: #fff;
  display: flex; align-items: center; gap: .5em;
  font-family: var(--ff-display); font-size: 1.5rem;
}
.dest-tile figcaption svg { width: 18px; height: 18px; color: var(--gold); }

/* ==========================================================================
   DAY TRIPS
   ========================================================================== */
.daytrip-layout { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.daytrip-intro { grid-column: span 1; align-self: center; padding-right: 10px; }
.daytrip-intro h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: .5rem 0 1rem; }
.daytrip-intro p { color: var(--ink-soft); }
.daytrip-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; box-shadow: var(--shadow-sm); display: block;
}
.daytrip-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.daytrip-tile:hover img { transform: scale(1.07); }
.daytrip-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,30,22,0) 45%, rgba(12,30,22,.8)); }
.daytrip-tile h3 {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1;
  color: #fff; font-size: 1.2rem; font-weight: 500;
}
@media (max-width: 900px) { .daytrip-layout { grid-template-columns: 1fr 1fr; } .daytrip-intro { grid-column: 1 / -1; } }
@media (max-width: 540px) { .daytrip-layout { grid-template-columns: 1fr 1fr; gap: 14px; } }

/* ==========================================================================
   BOOKING FORM
   ========================================================================== */
.booking-wrap { background: var(--forest); }
.booking-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.booking-card {
  background: var(--sand-soft); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-lg);
}
.booking-card h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); text-align: center; margin-bottom: 6px; }
.booking-card > p { text-align: center; color: var(--ink-soft); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .02em; margin-bottom: 6px; color: var(--ink-soft); }
.field label .req { color: var(--clay); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: .95rem;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px;
  color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--moss); box-shadow: 0 0 0 4px rgba(47,93,70,.14);
}
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: var(--clay); }
.form-note { font-size: .82rem; color: var(--muted-text); margin: 4px 0 18px; }
.booking-card .btn { width: 100%; }
.form-status { text-align: center; font-size: .92rem; margin-top: 14px; min-height: 1.2em; }
.form-status.ok { color: var(--forest); font-weight: 600; }
.form-status.err { color: var(--clay); font-weight: 600; }

.booking-side { color: #EEEADE; text-align: center; }
.booking-side img { border-radius: var(--radius); margin: 0 auto 20px; box-shadow: var(--shadow-md); max-width: 260px; }
.booking-side h3 { color: #fff; font-size: 1.7rem; margin-bottom: 10px; }
.booking-side p { color: #CFd8CC; }
.booking-side ul { margin: 22px 0; display: grid; gap: 12px; text-align: left; }
.booking-side li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.booking-side li svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.booking-side li a { color: #fff; overflow-wrap: anywhere; }

/* contact page: let the side image fill its column */
.booking-side.booking-side--wide img {
  max-width: 100%; width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
}
.side-social { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.side-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.1); display: grid; place-items: center; color: #fff;
  transition: background-color .15s ease, color .15s ease;
}
.side-social a:hover { background: var(--gold); color: #26200F; }
.side-social svg { width: 17px; height: 17px; }

@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   CONTENT + STICKY SIDEBAR LAYOUT  (why-book, tour pages…)
   ========================================================================== */
.page-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 336px;
  gap: clamp(32px, 5vw, 68px); align-items: start;
}
.page-aside { display: grid; gap: 20px; position: sticky; top: 96px; }
@media (max-width: 960px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-aside { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .page-aside { grid-template-columns: 1fr; } }

.aside-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm);
}
.aside-card h3 { font-family: var(--ff-body); font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-text); margin-bottom: 14px; }
.checklist li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 9px 0; font-size: .92rem; color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.checklist li:last-child { border-bottom: 0; padding-bottom: 0; }
.checklist svg { width: 16px; height: 16px; color: var(--good); flex-shrink: 0; margin-top: 3px; }
.checklist li b { color: var(--ink); font-weight: 600; }
/* checklist used inline in a content column (not a sidebar card) */
.legal-section .checklist { max-width: 68ch; }
.legal-section .checklist li { padding: 12px 0; font-size: 1rem; }

.help-card {
  background: var(--forest); color: #E9E4D8;
  border-radius: var(--radius); padding: 26px 24px; text-align: center;
}
.help-card img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; box-shadow: var(--shadow-md); }
.help-card h3 { color: #fff; font-family: var(--ff-display); font-weight: 500; font-size: 1.25rem; margin-bottom: 6px; }
.help-card p { font-size: .88rem; color: #CFD8CC; margin-bottom: 8px; }
.help-card .help-line { font-size: .9rem; color: #fff; margin: 2px 0; }
.help-card .help-line a { color: #fff; overflow-wrap: anywhere; }
.help-card .btn { width: 100%; margin-top: 14px; }

/* ==========================================================================
   LEGAL / POLICY PAGE  (booking terms, privacy…)
   ========================================================================== */
.legal-toc {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px; margin-bottom: clamp(32px, 5vw, 52px);
  box-shadow: var(--shadow-sm);
}
.legal-toc h2 {
  font-family: var(--ff-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted-text);
  margin-bottom: 12px;
}
.legal-toc ol {
  margin: 0; padding: 0; list-style: none;
  counter-reset: toc;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 24px;
}
.legal-toc li { counter-increment: toc; }
.legal-toc a {
  display: flex; gap: 10px; padding: 7px 0;
  font-size: .95rem; color: var(--ink-soft);
  transition: color .14s ease;
}
.legal-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-weight: 700; font-size: .78rem; color: var(--gold-deep);
  padding-top: .2em; flex-shrink: 0;
}
.legal-toc a:hover { color: var(--forest); }
@media (max-width: 620px) { .legal-toc ol { grid-template-columns: 1fr; } }

.legal-section { scroll-margin-top: 100px; margin-top: clamp(38px, 6vw, 60px); }
.legal-section:first-of-type { margin-top: 0; }
.legal-section > h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px;
}
.legal-section > h2 .sec-n {
  font-family: var(--ff-body); font-weight: 700; font-size: .95rem;
  color: var(--gold-deep); flex-shrink: 0;
}
.legal-section p { margin: 0 0 1em; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; max-width: 70ch; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ol[type="i"] { margin: 0 0 1em; padding-left: 1.5em; color: var(--ink-soft); max-width: 68ch; }
.legal-section ol[type="i"] li { margin: .4em 0; line-height: 1.6; }
.legal-note {
  border-left: 3px solid var(--gold); background: var(--surface-2);
  padding: 14px 18px; border-radius: 0 10px 10px 0; margin: 1.2em 0;
  font-size: .96rem; color: var(--ink); max-width: 70ch;
}

.terms-table { width: 100%; border-collapse: collapse; margin: 1.2em 0; max-width: 560px; font-size: .96rem; }
.terms-table th, .terms-table td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); }
.terms-table thead th {
  font-family: var(--ff-body); font-size: .74rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted-text); font-weight: 600;
  border-bottom: 2px solid var(--line);
}
.terms-table tbody td:last-child { font-weight: 600; color: var(--forest); font-variant-numeric: tabular-nums; }
.terms-table tbody tr:last-child td { border-bottom: 0; }

.temp-badge {
  display: inline-flex; align-items: center; gap: .4em;
  font-family: var(--ff-body); font-weight: 700; font-size: .82rem;
  color: var(--gold-deep); background: color-mix(in srgb, var(--gold) 16%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--gold) 36%, var(--line));
  padding: 4px 11px; border-radius: 999px; margin-bottom: 10px;
}
.temp-badge svg { width: 13px; height: 13px; }

.aside-card .aside-prose { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }
.aside-card .aside-prose p { margin: 0 0 .8em; }
.aside-card .aside-prose p:last-child { margin: 0; }

/* ==========================================================================
   ACCORDION  (why-book, FAQ pages…)
   ========================================================================== */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  display: flex; width: 100%; align-items: center; gap: 16px;
  padding: 22px 2px; text-align: left;
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.3; color: var(--ink);
  transition: color .15s ease;
}
.acc-trigger:hover { color: var(--forest); }
.acc-num {
  font-family: var(--ff-body); font-weight: 700; font-size: .78rem;
  color: var(--gold-deep); letter-spacing: .06em; flex-shrink: 0;
  width: 2ch; padding-top: .25em;
}
.acc-sign {
  margin-left: auto; flex-shrink: 0; position: relative;
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--line);
}
.acc-sign::before, .acc-sign::after {
  content: ""; position: absolute; inset: 50% 4px auto 4px; height: 2px;
  background: var(--gold-deep); transform: translateY(-50%); transition: transform .25s ease;
}
.acc-sign::after { transform: translateY(-50%) rotate(90deg); }
.acc-item.is-open .acc-sign::after { transform: translateY(-50%) rotate(0); }
.acc-item.is-open .acc-sign { border-color: var(--gold); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.acc-panel > div { overflow: hidden; }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel .acc-body { padding: 0 2px 26px calc(2ch + 16px); max-width: 70ch; }
.acc-panel p, .acc-panel li {
  color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7;
}
.acc-panel p { margin: 0 0 .9em; }
.acc-panel p:last-child { margin-bottom: 0; }
.acc-panel ul { margin: .4em 0 .9em; padding-left: 1.3em; }
.acc-panel li { margin: .35em 0; }
.acc-panel a { color: var(--accent-ink); text-underline-offset: 2px; }
@media (max-width: 560px) { .acc-panel .acc-body { padding-left: 2px; } }

/* ==========================================================================
   MAP FRAME  (contact page)
   ========================================================================== */
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  background: var(--surface-2);
}
.map-frame iframe {
  display: block; width: 100%; height: clamp(320px, 46vh, 460px); border: 0;
  filter: grayscale(.2);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--forest-deep); color: #C7D0C6; }
.footer-top { padding-block: clamp(56px, 8vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-col h4 {
  font-family: var(--ff-body); font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { font-size: .95rem; max-width: 34ch; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; padding: 5px 0; font-size: .94rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.footer-links li a { display: block; padding: 5px 0; font-size: .94rem; transition: color .15s ease, padding-left .15s ease; }
.footer-links li a:hover { color: #fff; padding-left: 5px; }
.footer-partners { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer-partners img { height: 34px; width: auto; background: #fff; border-radius: 8px; padding: 5px 8px; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background-color .15s ease; }
.footer-social a:hover { background: var(--gold); color: #26200F; }
.footer-social svg { width: 17px; height: 17px; }
.footer-map { border: 0; width: 100%; height: 150px; border-radius: var(--radius-sm); margin-top: 14px; filter: grayscale(.3); }

.footer-bottom {
  border-top: 1px solid var(--line-dark); padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; justify-content: space-between;
  font-size: .86rem;
}
.footer-bottom a:hover { color: #fff; }

@media (max-width: 940px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FLOATING ACTIONS
   ========================================================================== */
.fab-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #05391b;
  padding: 13px 20px 13px 16px; border-radius: 999px;
  font-weight: 700; font-size: .9rem;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,.6);
  transition: transform .2s ease;
}
.fab-wa:hover { transform: translateY(-3px); }
.fab-wa svg { width: 22px; height: 22px; }
.fab-wa .fab-label { }

.scroll-top {
  position: fixed; right: 22px; bottom: 92px; z-index: 89;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest); color: #fff; display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  box-shadow: var(--shadow-md);
}
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top svg { width: 18px; height: 18px; }

@media (max-width: 600px) {
  .fab-wa .fab-label { display: none; }
  .fab-wa { padding: 14px; }
  .scroll-top { bottom: 84px; }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   RESPONSIVE HEADER SWITCH
   ========================================================================== */
@media (max-width: 1080px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { margin-left: auto; }        /* push controls to the far right */
  .header-cta .btn--pay { display: none; }
}
@media (max-width: 1080px) {
  .lang-btn { padding: 8px 9px; font-size: .8rem; }
}
@media (max-width: 359px) {
  .lang-btn { padding: 8px; }
  .lang-btn .lang-label { display: none; }  /* globe + caret only on very small screens */
}
@media (min-width: 1081px) {
  .drawer, .drawer-backdrop { display: none; }
}

body.nav-open { overflow: hidden; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

/* ==========================================================================
   INNER PAGE HERO  (about, contact, tour pages…)
   ========================================================================== */
.page-hero {
  position: relative; color: #fff; overflow: hidden;
  min-height: clamp(420px, 62vh, 600px);
  display: flex; align-items: flex-end;
}
.page-hero > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,42,31,.30) 0%, rgba(12,30,22,.32) 45%, rgba(12,30,22,.82) 100%),
    linear-gradient(75deg, rgba(12,30,22,.5) 0%, rgba(12,30,22,0) 60%);
}
.page-hero-inner {
  position: relative; z-index: 2; width: 100%;
  padding-top: calc(var(--header-h) + clamp(28px, 6vh, 56px));
  padding-bottom: clamp(40px, 8vh, 84px);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 400;
  max-width: 16ch; margin: .3em 0 .35em;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .page-hero-lead {
  font-size: clamp(1.02rem, 2.2vw, 1.28rem); color: #ECE8DE; max-width: 52ch; margin: 0;
}

.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-family: var(--ff-body); font-size: .8rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.72);
}
.breadcrumb a { color: rgba(255,255,255,.72); transition: color .15s ease; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: "/"; opacity: .5; }
.breadcrumb [aria-current] { color: var(--gold); }

/* ==========================================================================
   PROSE  (long-form body copy)
   ========================================================================== */
.prose { max-width: 66ch; }
.prose > p { margin: 0 0 1.15em; color: var(--ink-soft); font-size: 1.06rem; line-height: 1.75; }
.prose > p:first-of-type { font-size: 1.16rem; color: var(--ink); }
.prose > p:last-child { margin-bottom: 0; }
.section--forest .prose > p { color: #D6DDD2; }
.section--forest .prose > p:first-of-type { color: #fff; }

.stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: clamp(28px, 4vw, 44px);
}
.stat-strip .stat {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.stat b {
  display: block; font-family: var(--ff-display); font-weight: 500;
  font-size: 1.9rem; line-height: 1; color: var(--forest);
}
.stat span { font-size: .84rem; color: var(--muted-text); font-weight: 600; letter-spacing: .02em; }
@media (max-width: 620px) { .stat-strip { grid-template-columns: 1fr; } }

/* ==========================================================================
   PERSON / DIRECTOR PROFILE
   ========================================================================== */
.profile-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 68px); align-items: start;
}
.profile-media { position: relative; }
.profile-media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 20%;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.profile-media .profile-chip {
  position: absolute; left: 18px; bottom: -16px;
  background: var(--gold); color: #26200F;
  font-weight: 700; font-size: .8rem; letter-spacing: .02em;
  padding: 9px 16px; border-radius: 999px; box-shadow: var(--shadow-md);
}
.profile-body .role {
  font-family: var(--ff-body); font-weight: 600;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep);
  margin: .5rem 0 1rem;
}
.profile-body h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.profile-body .prose { max-width: 62ch; margin-top: 1rem; }
.pull-quote {
  margin: clamp(24px, 4vw, 36px) 0 0; padding: 4px 0 4px 20px;
  border-left: 3px solid var(--gold);
  font-family: var(--ff-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem); line-height: 1.45; color: var(--ink);
}
.expertise { display: flex; flex-wrap: wrap; gap: 8px; margin-top: clamp(22px, 3vw, 32px); }
.expertise span {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .82rem; font-weight: 600; color: var(--forest);
  background: var(--sand); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px;
}
.expertise svg { width: 13px; height: 13px; color: var(--gold-deep); }

@media (max-width: 900px) {
  .profile-grid { grid-template-columns: 1fr; }
  .profile-media { max-width: 460px; }
  .profile-media .profile-chip { left: 14px; }
}
