/* ==========================================================================
   ZIWANI TRAILS — Design System
   Brand idea: "Ziwani" = Swahili for "place of water." The great lakes that
   connect Kenya, Tanzania, Uganda and Rwanda are the visual thesis: a deep
   lake-teal (not the expected safari terracotta) carries the brand, a thin
   waterline motif physically connects sections, and brass/gold stands in
   for East African sunlight on water. Editorial magazine layout, generous
   photography, restrained motion.
   ========================================================================== */

:root {
  /* Color */
  --ink:        #16211D;   /* near-black, green-cast — primary text */
  --lake:       #1F4B4A;   /* deep lake teal — primary brand color */
  --lake-deep:  #142F30;   /* darker teal — footer, dark sections */
  --lake-light: #5A9490;   /* mid teal — links, icons, secondary accents */
  --sand:       #F1E9D8;   /* warm parchment — page background */
  --sand-deep:  #E4D3AC;   /* deeper sand — card backgrounds, dividers */
  --gold:       #B98A3D;   /* brass / sunlight-on-water — accents, CTAs */
  --gold-light: #D9B876;
  --clay:       #9C5030;   /* muted clay — used sparingly, hover states */
  --white:      #FFFDF8;
  --line:       rgba(22, 33, 29, 0.12);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;      /* Main headings (h1, h2) */
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif; /* Body text, secondary headings, buttons, stats */
  --font-quote: 'Cormorant Garamond', Georgia, serif;        /* Quotes / signatures */
  --font-label: 'IBM Plex Mono', 'Courier New', monospace;   /* Eyebrows & small tracked labels only */

  --step-eyebrow: 0.78rem;
  --step-body: 1.05rem;
  --step-h3: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
  --step-h2: clamp(2.1rem, 1.7rem + 1.8vw, 3.2rem);
  --step-h1: clamp(2.6rem, 1.9rem + 3.2vw, 4.6rem);

  --container: 1240px;
  --radius: 2px;

  /* Subtle contour-line texture for dark sections — extends the site's
     existing "waterline" motif into a very faint repeating background,
     rather than literal safari iconography. ~4% area coverage, discreet. */
  --texture-contour: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27500%27%20height%3D%27260%27%20viewBox%3D%270%200%20500%20260%27%3E%20%3Cpath%20d%3D%27M-20%2C30%20C60%2C5%20120%2C55%20200%2C30%20C280%2C5%20340%2C55%20420%2C30%20C460%2C15%20490%2C25%20520%2C20%27%20stroke%3D%27rgba%28255%2C255%2C253%2C0.05%29%27%20stroke-width%3D%271%27%20fill%3D%27none%27/%3E%20%3Cpath%20d%3D%27M-20%2C80%20C60%2C55%20120%2C105%20200%2C80%20C280%2C55%20340%2C105%20420%2C80%20C460%2C65%20490%2C75%20520%2C70%27%20stroke%3D%27rgba%28255%2C255%2C253%2C0.04%29%27%20stroke-width%3D%271%27%20fill%3D%27none%27/%3E%20%3Cpath%20d%3D%27M-20%2C130%20C60%2C105%20120%2C155%20200%2C130%20C280%2C105%20340%2C155%20420%2C130%20C460%2C115%20490%2C125%20520%2C120%27%20stroke%3D%27rgba%28255%2C255%2C253%2C0.05%29%27%20stroke-width%3D%271%27%20fill%3D%27none%27/%3E%20%3Cpath%20d%3D%27M-20%2C180%20C60%2C155%20120%2C205%20200%2C180%20C280%2C155%20340%2C205%20420%2C180%20C460%2C165%20490%2C175%20520%2C170%27%20stroke%3D%27rgba%28255%2C255%2C253%2C0.04%29%27%20stroke-width%3D%271%27%20fill%3D%27none%27/%3E%20%3Cpath%20d%3D%27M-20%2C230%20C60%2C205%20120%2C255%20200%2C230%20C280%2C205%20340%2C255%20420%2C230%20C460%2C215%20490%2C225%20520%2C220%27%20stroke%3D%27rgba%28255%2C255%2C253%2C0.05%29%27%20stroke-width%3D%271%27%20fill%3D%27none%27/%3E%20%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 0.4em;
  color: var(--ink);
}
h3, h4 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.4em;
  color: var(--ink);
}
h1 { font-size: var(--step-h1); letter-spacing: -0.01em; }
h2 { font-size: var(--step-h2); letter-spacing: -0.01em; }
h3 { font-size: var(--step-h3); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-label);
  font-size: var(--step-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}

.lede { font-size: 1.2rem; color: rgba(22,33,29,0.78); max-width: 60ch; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--clay); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }
.btn-arrow::after { content: '→'; transition: transform 0.2s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }
.btn-sm { padding: 11px 22px; font-size: 0.76rem; }

/* --- Site header / nav ---------------------------------------------------*/
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-solid {
  background: var(--lake-deep);
  padding: 14px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); letter-spacing: 0.01em; display: flex; align-items: center; gap: 12px; }
.brand img { display: block; width: 40px; height: 40px; transition: width 0.3s ease, height 0.3s ease; }
.site-header.is-solid .brand img { width: 32px; height: 32px; }
.brand span { color: var(--gold-light); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav > ul { display: flex; align-items: center; gap: 30px; }
.main-nav a.nav-link {
  color: var(--white); font-size: 0.92rem; letter-spacing: 0.02em;
  position: relative; padding: 6px 0;
}
.main-nav a.nav-link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--gold-light); transition: right 0.25s ease;
}
.main-nav a.nav-link:hover::after,
.main-nav li.has-mega:hover a.nav-link::after { right: 0; }

.has-mega { position: relative; }
.mega-panel-wrap {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 22px; /* invisible gap — keeps the hoverable area continuous so
                         the dropdown doesn't close while the cursor crosses it */
  opacity: 0; visibility: hidden; translate: 0 8px;
  transition: opacity 0.2s ease, translate 0.2s ease, visibility 0.2s;
}
.has-mega:hover .mega-panel-wrap { opacity: 1; visibility: visible; translate: 0 0; }
.mega-panel {
  background: var(--white); border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  padding: 26px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  min-width: 560px;
}
.mega-panel a { display: block; color: var(--ink); font-size: 0.88rem; padding: 6px 0; border-bottom: 1px solid var(--line); }
.mega-panel a:hover { color: var(--lake); }
.mega-col-label { font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }

.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 900px) {
  .main-nav { position: fixed; inset: 0; background: var(--lake-deep); flex-direction: column; justify-content: center; transform: translateX(100%); transition: transform 0.35s ease; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; gap: 26px; text-align: center; }
  .mega-panel-wrap { position: static; transform: none; padding-top: 0; opacity: 1; visibility: visible; translate: none; }
  .mega-panel { grid-template-columns: 1fr; box-shadow: none; background: transparent; min-width: 0; margin-top: 10px; padding: 0; display: none; }
  .has-mega.is-open .mega-panel { display: grid; }
  .mega-panel a { color: var(--white); border-color: rgba(255,255,255,0.15); text-align: center; }
  .nav-toggle { display: block; z-index: 110; }
  .main-nav .btn-outline { border-color: var(--white); }
}

/* --- Hero ---------------------------------------------------------------*/
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  background: linear-gradient(180deg, rgba(20,47,48,0.35) 0%, rgba(20,47,48,0.75) 100%), var(--lake-deep);
  background-size: cover; background-position: center;
  color: var(--white); padding-bottom: 100px; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.hero-media video { position: absolute; inset: 0; }
.hero-media img.is-poster { position: absolute; inset: 0; display: none; }
/* Video only plays on larger screens — mobile gets the poster image instead,
   to save data/battery. On desktop, the fallback image stays hidden so it
   doesn't sit stacked on top of the video. */
@media (max-width: 760px) {
  .hero-media video { display: none; }
  .hero-media img.is-poster { display: block; }
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,47,48,0.12) 0%, rgba(15,33,33,0.62) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--white); max-width: 16ch; }
.hero .lede { color: rgba(255,255,253,0.82); margin: 22px 0 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Signature waterline: a thin animated route line drawn across the hero */
.waterline { position: absolute; left: 0; right: 0; bottom: 0; height: 90px; z-index: 1; pointer-events: none; }
.waterline path { stroke: var(--gold-light); stroke-width: 1.4; fill: none; opacity: 0.65; stroke-dasharray: 6 10; animation: waterline-flow 14s linear infinite; }
@keyframes waterline-flow { to { stroke-dashoffset: -320; } }

/* --- Section rhythm -------------------------------------------------------*/
.section { padding: 108px 0; }
.section-tight { padding: 72px 0; }
.section-dark { background-color: var(--lake-deep); background-image: var(--texture-contour); background-repeat: repeat; color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-sand-deep { background: var(--sand-deep); }
.section-header { max-width: 640px; margin-bottom: 56px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Wave divider between sections — reinforces the water motif structurally */
.wave-divider { display: block; width: 100%; height: 40px; }
.wave-divider path { fill: var(--sand); }
.wave-divider.to-deep path { fill: var(--lake-deep); }
.wave-divider.to-sand-deep path { fill: var(--sand-deep); }
.wave-divider.to-sand path { fill: var(--sand); }

/* --- Reveal-on-scroll -----------------------------------------------------*/
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* --- About / Philosophy split -------------------------------------------*/
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split-media .badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--gold);
  color: var(--white); font-family: var(--font-label); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 16px 20px; max-width: 220px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } .split-media .badge { display: none; } }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--line); }
.stat-row .num { font-family: var(--font-body); font-weight: 700; font-size: 2.3rem; color: var(--lake); display: block; }
.stat-row .label { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(22,33,29,0.6); }
@media (max-width: 700px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }

/* --- Destination cards (the signature "field card" system) --------------*/
.route-track { position: relative; }
.route-track::before {
  content: ''; position: absolute; top: 46px; left: 6%; right: 6%; height: 1px;
  background-image: linear-gradient(90deg, var(--gold) 40%, transparent 40%);
  background-size: 14px 1px; background-repeat: repeat-x;
  display: none;
}
@media (min-width: 1000px) { .route-track::before { display: block; } }

.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1000px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .dest-grid { grid-template-columns: 1fr; } }

.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4.1; display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--white); isolation: isolate;
}
.dest-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,47,48,0.05) 30%, rgba(15,30,30,0.94) 100%); z-index: 1; }
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.6s ease; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card-body { position: relative; z-index: 2; padding: 24px; }
.dest-card .index { font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.12em; color: var(--gold-light); display: block; margin-bottom: 10px; }
.dest-card h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; }
.dest-card .best-for { font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.05em; color: rgba(255,255,253,0.75); margin-bottom: 14px; }
.dest-card .reveal-copy { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease; font-size: 0.88rem; color: rgba(255,255,253,0.85); }
.dest-card:hover .reveal-copy { max-height: 140px; opacity: 1; margin-bottom: 14px; }
.card-cta { font-family: var(--font-label); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--gold); padding-bottom: 3px; }
.dest-card .card-cta { color: var(--white); border-bottom-color: var(--gold-light); }

/* --- Park / highlight cards (used on destination detail pages) ----------*/
.park-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 800px) { .park-grid { grid-template-columns: 1fr; } }
.park-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(22,33,29,0.06); }
.park-card img { width: 100%; height: 230px; object-fit: cover; }
.park-card-body { padding: 26px; }
.park-card .best-for-tag {
  display: inline-block; font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--clay); background: rgba(156,80,48,0.1); padding: 5px 10px; border-radius: 20px; margin-bottom: 12px;
}
.park-card ul.highlights { margin-top: 14px; }
.park-card ul.highlights li { position: relative; padding-left: 18px; font-size: 0.92rem; margin-bottom: 6px; color: rgba(22,33,29,0.78); }
.park-card ul.highlights li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }

/* --- Experience carousel (featured) --------------------------------------*/
.exp-carousel { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/8; background: var(--lake-deep); }
@media (max-width: 700px) { .exp-carousel { aspect-ratio: 4/5; } }
.exp-carousel-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.5s ease;
  display: flex; align-items: flex-end;
}
.exp-carousel-slide.is-active { opacity: 1; visibility: visible; }
.exp-carousel-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.exp-carousel-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,30,30,0.68) 0%, rgba(15,30,30,0.15) 55%, transparent 85%); z-index: 1; }
.exp-carousel-content { position: relative; z-index: 2; color: var(--white); padding: 48px; max-width: 480px; }
@media (max-width: 700px) { .exp-carousel-content { padding: 30px; } }
.exp-carousel-content .eyebrow { justify-content: flex-start; }
.exp-carousel-content h3 { color: var(--white); font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.3rem); margin-bottom: 14px; }
.exp-carousel-content p { color: rgba(255,255,253,0.85); margin-bottom: 22px; }

.exp-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,253,0.4);
  background: rgba(15,30,30,0.4); color: var(--white); font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s ease;
}
.exp-carousel-arrow:hover { background: rgba(15,30,30,0.75); }
.exp-carousel-arrow.prev { left: 20px; }
.exp-carousel-arrow.next { right: 20px; }

.exp-carousel-progress { position: absolute; left: 48px; bottom: 26px; z-index: 3; display: flex; align-items: center; gap: 16px; }
@media (max-width: 700px) { .exp-carousel-progress { left: 30px; bottom: 18px; } }
.exp-carousel-counter { font-family: var(--font-label); font-size: 0.78rem; color: rgba(255,255,253,0.8); letter-spacing: 0.04em; }
.exp-carousel-counter em { font-style: normal; color: var(--gold-light); }
.exp-carousel-bars { display: flex; gap: 6px; }
.exp-carousel-bars .bar { width: 26px; height: 2px; background: rgba(255,255,253,0.3); transition: background 0.2s ease; }
.exp-carousel-bars .bar.is-active { background: var(--gold-light); }

/* --- Compact experience cards (icon-based, replaces the old photo grid) --*/
.exp-compact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .exp-compact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .exp-compact-grid { grid-template-columns: 1fr; } }
.exp-compact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: box-shadow 0.25s ease, transform 0.25s ease; }
.exp-compact-card:hover { box-shadow: 0 16px 34px rgba(22,33,29,0.08); transform: translateY(-3px); }
.exp-compact-icon { width: 46px; height: 46px; border-radius: 50%; background: rgba(185,138,61,0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.exp-compact-icon svg { width: 22px; height: 22px; }
.exp-compact-card h4 { font-size: 1.2rem; margin-bottom: 8px; }
.exp-compact-card p { font-size: 0.92rem; color: rgba(22,33,29,0.68); margin-bottom: 16px; }
.exp-compact-link { font-family: var(--font-label); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lake); border-bottom: 1px solid var(--lake-light); padding-bottom: 2px; }
.exp-compact-link:hover { color: var(--clay); }

/* --- "More ways to explore" CTA bar (homepage teaser only) --------------*/
.exp-more-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--sand-deep); border-radius: var(--radius); padding: 30px 36px; flex-wrap: wrap; }
.exp-more-bar-left { display: flex; align-items: center; gap: 20px; }
.exp-more-bar-icon { color: var(--gold); flex-shrink: 0; }
.exp-more-bar-icon svg { width: 34px; height: 34px; }
.exp-more-bar h4 { font-size: 1.15rem; margin-bottom: 4px; }
.exp-more-bar p { font-size: 0.9rem; color: rgba(22,33,29,0.68); max-width: 46ch; }

/* --- Testimonials ---------------------------------------------------------*/
.testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .testimonial-track { grid-template-columns: 1fr; } }
.testimonial-card { background: var(--white); padding: 34px; border-radius: var(--radius); }
.testimonial-card q { display: block; font-family: var(--font-quote); font-size: 1.35rem; line-height: 1.5; color: var(--ink); font-style: italic; margin-bottom: 18px; }
.testimonial-card .who { font-family: var(--font-quote); font-style: italic; font-size: 0.95rem; letter-spacing: 0.01em; text-transform: none; color: var(--lake); }

/* --- CTA band ---------------------------------------------------------- */
.cta-band { background-color: var(--lake); background-image: var(--texture-contour); background-repeat: repeat; color: var(--white); text-align: center; padding: 110px 0; position: relative; overflow: hidden; }
.cta-band h2 { color: var(--white); max-width: 18ch; margin-left: auto; margin-right: auto; }
.cta-band .lede { color: rgba(255,255,253,0.8); margin: 20px auto 34px; }

/* --- Forms ----------------------------------------------------------------*/
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(22,33,29,0.65); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 13px 15px; border: 1px solid var(--line);
  background: var(--white); border-radius: var(--radius); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--lake-light); outline-offset: 1px; }
.field-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; }
.field-checkbox input { margin-top: 4px; }
.pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-group input { position: absolute; opacity: 0; }
.pill-group label {
  font-family: var(--font-label); font-size: 0.78rem; text-transform: none; letter-spacing: 0.02em;
  border: 1px solid var(--line); padding: 9px 16px; border-radius: 30px; cursor: pointer; transition: all 0.2s ease;
}
.pill-group input:checked + label { background: var(--lake); border-color: var(--lake); color: var(--white); }

.alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-size: 0.94rem; }
.alert-success { background: rgba(90,148,144,0.15); border: 1px solid var(--lake-light); color: var(--lake-deep); }
.alert-error { background: rgba(156,80,48,0.12); border: 1px solid var(--clay); color: var(--clay); }

/* --- Footer -----------------------------------------------------------*/
.site-footer { background-color: var(--lake-deep); background-image: var(--texture-contour); background-repeat: repeat; color: rgba(255,255,253,0.85); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,253,0.12); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h5 { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.site-footer ul li { margin-bottom: 10px; font-size: 0.92rem; }
.site-footer ul li a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 0.82rem; flex-wrap: wrap; gap: 12px; }
.newsletter-form { display: flex; gap: 0; margin-top: 6px; max-width: 340px; }
.newsletter-form input { flex: 1; padding: 12px 14px; border: 1px solid rgba(255,255,253,0.25); background: transparent; color: var(--white); font-family: var(--font-body); }
.newsletter-form button { background: var(--gold); border: none; color: var(--white); padding: 0 18px; cursor: pointer; font-family: var(--font-label); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* --- Cookie consent -----------------------------------------------------*/
.cookie-bar {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 200; max-width: 560px;
  background: var(--ink); color: var(--white); padding: 22px 24px; border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3); transform: translateY(140%); transition: transform 0.4s ease;
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar p { font-size: 0.86rem; color: rgba(255,255,253,0.8); margin-bottom: 14px; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions button { font-family: var(--font-label); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 18px; border-radius: var(--radius); cursor: pointer; border: 1px solid rgba(255,255,253,0.3); background: transparent; color: var(--white); }
.cookie-actions button.accept { background: var(--gold); border-color: var(--gold); }

/* --- Breadcrumb / page hero (interior pages) -----------------------------*/
.page-hero { padding: 190px 0 90px; background: var(--lake-deep); color: var(--white); position: relative; overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.page-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,47,48,0.12) 0%, rgba(15,33,33,0.62) 100%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero .lede { color: rgba(255,255,253,0.78); }

/* --- Utility --------------------------------------------------------------*/
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mono-label { font-family: var(--font-label); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
