/* ==========================================================================
   EZEMVELO KZN WILDLIFE — Master Stylesheet
   Built from Figma templates: 2:745, 186:45, 188:1172
   Canvas: 1920px  |  Content: ~1296px (312px margins)
   ========================================================================== */

/* ---------- 0. FONTS ---------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Source+Sans+Pro:wght@400;600;700;900&display=swap");

@font-face {
  font-display: swap;
  font-family: "Sharktooth";
  font-style: normal;
  font-weight: 400;
  src:
    url("fonts/d4759756daf64a30f9eb5143fd3cfc8f.woff2") format("woff2"),
    url("fonts/d4759756daf64a30f9eb5143fd3cfc8f.woff") format("woff"),
    url("fonts/d4759756daf64a30f9eb5143fd3cfc8f.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Sharktooth";
  font-style: normal;
  font-weight: 700;
  src:
    url("fonts/dc89cb3e5031f8211b0cac521a060abd.woff2") format("woff2"),
    url("fonts/dc89cb3e5031f8211b0cac521a060abd.woff") format("woff"),
    url("fonts/dc89cb3e5031f8211b0cac521a060abd.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Sharktooth";
  font-style: normal;
  font-weight: 800;
  src:
    url("fonts/dc89cb3e5031f8211b0cac521a060abd.woff2") format("woff2"),
    url("fonts/dc89cb3e5031f8211b0cac521a060abd.woff") format("woff"),
    url("fonts/dc89cb3e5031f8211b0cac521a060abd.ttf") format("truetype");
}

/* ---------- 0. RESET & BASE ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --dark-green:  #105249;
  --green:       #3d8d7f;
  --teal:        #408776;
  --yellow:      #f3c048;
  --dark-text:   #27423c;
  --white:       #fffffc;
  --off-white:   #fcfcfc;
  --black:       #1a1718;

  /* Fonts */
  --font-display: 'Sharktooth', serif;
  --font-body:    'Source Sans Pro', sans-serif;
  --font-ui:      'Poppins', sans-serif;

  /* Layout */
  --content-max:  1296px;
  --gutter:       24px;
  --section-pad:  80px;
  --radius-pill:  50px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
  color: var(--dark-green);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
hr { border: none; border-top: 1px solid var(--dark-green); opacity: .25; }

.inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Typography helpers */
.kicker {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 60px;
  text-transform: uppercase;
  color: var(--dark-green);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: var(--dark-green);
}
.section-title strong {
  font-family: var(--font-display);
  font-weight: 800;  /* Sharktooth Heavy */
}

.section-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.325;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  color: var(--dark-green);
}
.section-subtitle strong { font-weight: 800; }

/* Button base */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.4px;
  padding: 14px 40px;
  cursor: pointer;
  transition: opacity .2s;
}
.btn:hover { opacity: .85; }

.btn--green {
  background: var(--green);
  color: var(--off-white);
}
.btn--yellow {
  background: var(--yellow);
  color: var(--black);
}


/* ==========================================================================
   1. SITE HEADER
   ========================================================================== */
/* --- Header: dark teal bar per Figma 651:5349 --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal);
  border-bottom: 3px solid var(--yellow);
}

.site-header__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 16px 54px;
  gap: 24px;
}

.site-header__logo {
  background: var(--white);
  padding: 12px 20px;
  margin: -16px 0;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.site-header__logo img {
  height: 80px;
  width: auto;
}

.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-header__menu {
  display: flex;
  gap: 32px;
}

.site-header__item > a {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.4px;
  color: var(--yellow);
  padding: 8px 0;
  position: relative;
  text-decoration: none;
}
/* Dropdown chevron arrow after nav text */
.site-header__item--dropdown > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.site-header__item > a:hover {
  opacity: .85;
}

/* Dropdown */
.site-header__item--dropdown { position: relative; }
.site-header__dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  background: var(--teal);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  padding: 12px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .2s, transform .2s;
  z-index: 110;
}
.site-header__item--dropdown:hover .site-header__dropdown,
.site-header__dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.site-header__dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: 15px;
  color: var(--white);
}
.site-header__dropdown a:hover {
  background: rgba(255,255,255,.12);
}

.site-header__cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  background: var(--yellow);
  color: var(--dark-text);
  padding: 12px 28px;
  border-radius: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.site-header__cta:hover { opacity: .85; }
.icon-search { flex-shrink: 0; }

.site-header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  width: 32px;
  flex-direction: column;
  gap: 5px;
}
.site-header__burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}


/* ==========================================================================
   2. IMAGE BAND — Reusable hero / photo-band / park-hero component
   Ken Burns zoom, text in top half, content aligned with header
   ========================================================================== */
@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.image-band {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.image-band__image {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}
.image-band__image img {
  width: 100%;
  height: auto;
  min-height: 480px;
  object-fit: cover;
  animation: kenBurns 10s ease-in-out infinite alternate;
  will-change: transform;
}
/* Content overlay — padding matches .site-header__inner (54px) */
.image-band__content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 54px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
/* Title text */
.image-band__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 60px;
  line-height: 0.87;
  letter-spacing: -1.19px;
  text-transform: uppercase;
  color: #408776;
  max-width: 700px;
}
.image-band__title strong { font-weight: 800; }
/* Smaller title variant for photo bands */
.image-band__title--sm {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1px;
}
/* Short variant (photo bands — lower min-height) */
.image-band--short .image-band__image img {
  min-height: 300px;
}
/* CTA buttons (2×2 grid, e.g. homepage hero) */
.image-band__ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-self: flex-start;
  flex-shrink: 0;
}
.image-band__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-text);
  background: var(--yellow);
  padding: 12px 28px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
  border: none;
}
.image-band__cta:hover { opacity: .85; }


/* ==========================================================================
   4. CONTENT HEADER (Content/Story pages — no hero image)
   ========================================================================== */
.section-content-header {
  padding: 60px 0 0;
}
.section-content-header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-content-header__kicker { /* uses .kicker */ }
.section-content-header__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 24px;
}
.section-content-header__title strong { font-weight: 800; }
.section-content-header__rule {
  border: none;
  border-top: 1px solid var(--dark-green);
  opacity: .25;
  margin-top: 16px;
}


/* ==========================================================================
   5. WHO WE ARE — two-column: text left, rhino illustration right (Figma)
   ========================================================================== */
.section-who-we-are {
  padding: var(--section-pad) 0;
  background: var(--white);
  overflow: visible;
}
.section-who-we-are__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
/* Left column — text content */
.section-who-we-are__text-col {
  flex: 1;
  min-width: 0;
}
.section-who-we-are__kicker {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  color: #1b2128;
  margin-bottom: 16px;
}
.section-who-we-are__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin: 0 0 24px;
}
.section-who-we-are__rule {
  border: none;
  border-top: 1px solid var(--dark-green);
  width: 100%;
  max-width: 773px;
  margin: 0 0 24px;
}
/* Logo + body text side by side below the rule (per Figma) */
.section-who-we-are__below-rule {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.section-who-we-are__logo {
  max-width: 207px;
  flex-shrink: 0;
}
.section-who-we-are__text {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.4px;
  color: var(--dark-green);
  max-width: 512px;
  margin: 0;
}
/* Right column — rhino illustration with yellow parallelogram decorations */
.section-who-we-are__illustration-wrap {
  position: relative;
  flex-shrink: 0;
  width: 527px;
}
/* Yellow parallelogram decorations — top-right cluster (5 shapes per Figma) */
.section-who-we-are__illustration-wrap::before {
  content: '';
  position: absolute;
  top: -38px;
  right: 8px;
  width: 168px;
  height: 105px;
  background-image:
    url('/assets/decor-parallelogram.svg'),
    url('/assets/decor-parallelogram.svg'),
    url('/assets/decor-parallelogram.svg'),
    url('/assets/decor-parallelogram.svg'),
    url('/assets/decor-parallelogram.svg');
  background-size: 62px 40px;
  background-repeat: no-repeat;
  background-position:
    28px 0,
    13px 32px,
    106px 26px,
    90px 59px,
    0 65px;
  z-index: 0;
}
/* Yellow parallelogram decorations — bottom-left cluster (5 shapes per Figma) */
.section-who-we-are__illustration-wrap::after {
  content: '';
  position: absolute;
  bottom: -36px;
  left: 87px;
  width: 168px;
  height: 105px;
  background-image:
    url('/assets/decor-parallelogram.svg'),
    url('/assets/decor-parallelogram.svg'),
    url('/assets/decor-parallelogram.svg'),
    url('/assets/decor-parallelogram.svg'),
    url('/assets/decor-parallelogram.svg');
  background-size: 62px 40px;
  background-repeat: no-repeat;
  background-position:
    29px 0,
    13px 32px,
    106px 25px,
    90px 58px,
    0 65px;
  z-index: 0;
}
.section-who-we-are__illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}


/* (Photo band now uses .image-band — see section 2) */


/* ==========================================================================
   7. EXPLORE ACTIVITY GRID
   ========================================================================== */
.section-explore-cards {
  padding: var(--section-pad) 0;
}
.section-explore-cards__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-explore-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px 42px;
}
/* ---------- Description cell (row 1, col 1) ---------- */
.section-explore-cards__desc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0;
}
.section-explore-cards__kicker {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 60px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin: 0;
}
.section-explore-cards__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin: 38px 0 0;
}
.section-explore-cards__rule {
  border: none;
  border-top: 1px solid var(--dark-green);
  margin: 64px 0 0;
  width: 100%;
}
.section-explore-cards__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.32px;
  color: var(--dark-green);
  margin: 38px 0 0;
}
/* ---------- Activity card ---------- */
.explore-card {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 50px 0 0 0;
  text-decoration: none;
  aspect-ratio: 293 / 370;
}
.explore-card__image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
  display: block;
}
.explore-card:hover .explore-card__image { transform: scale(1.05); }
/* Golden/amber gradient overlay — concentrated in upper-left per Figma */
.explore-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(135deg, rgba(243,192,72,.55) 0%, rgba(243,192,72,.25) 40%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  border-radius: 50px 0 0 0;
}
/* Card title — top-left, large display font */
.explore-card__label {
  position: absolute;
  top: 37px; left: 29px; right: 29px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.82px;
  text-transform: uppercase;
  color: var(--dark-green);
  z-index: 2;
}
/* "BOOK YOUR STAY" yellow button — bottom-right with white border creating notch cutout */
.explore-card__cta {
  position: absolute;
  bottom: 0; right: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 37px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  background: var(--yellow);
  color: #1b2128;
  padding: 0 20px;
  z-index: 2;
  text-decoration: none;
  border-top: 10px solid var(--white);
  border-left: 13px solid var(--white);
}


/* ==========================================================================
   8. PANORAMA (full-width photo)
   ========================================================================== */
.section-panorama {
  position: relative;
  width: 100%;
}
.section-panorama__frame {
  overflow: hidden;
  max-width: 1812px;
  margin: 0 auto;
}
.section-panorama__image {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s ease;
}
.section-panorama:hover .section-panorama__image {
  transform: scale(1.03);
}
/* 20 yellow parallelograms in a 4×5 diagonal grid — bottom-right of image */
.section-panorama__decor {
  position: absolute;
  bottom: -46px; right: 20px;
  width: 428px; height: 363px;
  background-image:
    url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),
    url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),
    url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),
    url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg'),url('/assets/decor-parallelogram.svg');
  background-size: 55px 35px;
  background-repeat: no-repeat;
  background-position:
    373px 0, 360px 28px, 347px 56px, 334px 84px, 321px 112px,
    266px 72px, 253px 100px, 240px 128px, 227px 156px, 214px 184px,
    159px 144px, 146px 172px, 133px 200px, 120px 228px, 107px 256px,
    52px 216px, 39px 244px, 26px 272px, 13px 300px, 0px 328px;
  pointer-events: none;
  z-index: 2;
}


/* ==========================================================================
   9. STAY GRID
   ========================================================================== */
.section-stay-grid {
  padding: var(--section-pad) 0;
}
.section-stay-grid__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
/* ---------- Header ---------- */
.section-stay-grid__kicker {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 60px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin: 0;
}
.section-stay-grid__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin: 38px 0 0;
}
.section-stay-grid__title strong { font-weight: 800; }
.section-stay-grid__rule {
  border: none;
  border-top: 1px solid var(--dark-green);
  margin: 64px 0 0;
  width: 100%;
}
.section-stay-grid__header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-top: 44px;
}
.section-stay-grid__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.4px;
  color: var(--dark-green);
  max-width: 651px;
  margin: 0;
}
.section-stay-grid__discover {
  display: inline-block;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  line-height: 60px;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  text-decoration: none;
  background: #3d8d7f;
  color: #fcfcfc;
  padding: 0 32px;
}
.section-stay-grid__discover:hover { background: var(--dark-green); }
/* ---------- Card grid (2 columns) ---------- */
.section-stay-grid__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 64px;
}
.stay-card {
  position: relative;
  overflow: hidden;
  border-radius: 50px 0 0 0;
}
.stay-card__link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 50px 0 0 0;
}
.stay-card__image {
  width: 100%;
  aspect-ratio: 621 / 436;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.stay-card__link:hover .stay-card__image { transform: scale(1.04); }
/* Golden gradient overlay from bottom-left per Figma 34:556 */
.stay-card__link::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  background: linear-gradient(42deg, rgba(247,194,61,.65) 3%, rgba(255,255,255,0) 55%);
  z-index: 1;
  pointer-events: none;
  border-radius: 50px 0 0 0;
}
.stay-card__label {
  position: absolute;
  bottom: 28px; left: 45px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  text-transform: uppercase;
  color: #1b2128;
  z-index: 2;
}
.stay-card__label-prefix {
  font-weight: 400;
  display: block;
  font-size: 60px;
  line-height: 53px;
  letter-spacing: -1.2px;
}
.stay-card__label-name {
  font-weight: 800;
  display: block;
  font-size: 60px;
  line-height: 53px;
  letter-spacing: -1.2px;
}
/* ---------- Description/button meta row (zigzag layout) ---------- */
.section-stay-grid__meta-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 0 60px;
  align-items: flex-start;
  margin-top: 45px;
}
.stay-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.4px;
  color: #1b2128;
  margin: 0;
}
.stay-card__cta {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 43px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--yellow);
  color: var(--dark-green);
  padding: 0 24px;
  white-space: nowrap;
}


/* ==========================================================================
   10. RHINO CLUB CTA  (two variants: --teal = A8, --yellow = A12)
   ========================================================================== */
/* Section wrapper — overflow hidden stops illustration bleeding into adjacent sections */
.section-rhino-cta {
  padding: 80px 0;
  overflow: hidden;
}
/* Shared box layout — Figma: 1780px wide, centred */
.section-rhino-cta__box {
  max-width: 1780px;
  min-height: 300px;
  margin: 0 auto;
  padding: 70px 80px 70px 330px;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 40px;
}
/* Rhino illustration — positioned left, partially outside box */
.section-rhino-cta__illustration {
  position: absolute;
  left: -380px;
  bottom: -20px;
  width: 440px;
  pointer-events: none;
  z-index: 2;
}
/* Content row — text + button */
.section-rhino-cta__content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  flex: 1;
}
/* Text — Sharktooth 40px (scaled from Figma 60px), uppercase */
.section-rhino-cta__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  flex: 1;
  margin: 0;
}
.section-rhino-cta__text strong { font-weight: 800; font-style: italic; }
/* Button — Source Sans Pro Semibold 15px, uppercase */
.section-rhino-cta__button {
  display: inline-block;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 45px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  text-decoration: none;
  padding: 0 32px;
  white-space: nowrap;
}
.section-rhino-cta__button:hover { opacity: .85; }
/* Paw-print decoration — anchored top-right */
.section-rhino-cta__decor {
  position: absolute;
  right: 0;
  width: 400px;
  height: 440px;
  pointer-events: none;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}

/* ---------- TEAL variant (A8 — Figma 7:214, bg #408776) ---------- */
.section-rhino-cta--teal .section-rhino-cta__box {
  background: #408776;
}
.section-rhino-cta--teal .section-rhino-cta__text {
  color: #f7c23d;
}
.section-rhino-cta--teal .section-rhino-cta__button {
  background: #f3c048;
  color: #1b2128;
}
.section-rhino-cta--teal .section-rhino-cta__decor {
  background-image: url('/assets/rhino-prints-yellow.png');
}

/* ---------- YELLOW variant (A12 — Figma 56:603, bg #f7c23d) ---------- */
.section-rhino-cta--yellow .section-rhino-cta__box {
  background: #f7c23d;
}
.section-rhino-cta--yellow .section-rhino-cta__text {
  color: #3d8d7f;
}
.section-rhino-cta--yellow .section-rhino-cta__button {
  background: #3d8d7f;
  color: #fff;
}
.section-rhino-cta--yellow .section-rhino-cta__decor {
  background-image: url('/assets/rhino-prints-teal.png');
}
/* Recolour rhino illustration to teal for yellow variant */
.section-rhino-cta--yellow .section-rhino-cta__illustration {
  filter: brightness(0) saturate(100%) invert(45%) sepia(20%) saturate(900%) hue-rotate(123deg) brightness(90%) contrast(85%);
}


/* ==========================================================================
   11. ADVENTURE MAP  (2-column: text left, Leaflet map right)
   ========================================================================== */
.section-adventure-map {
  padding: var(--section-pad) 0;
}
.section-adventure-map__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 446fr 793fr;
  gap: 48px;
  align-items: start;
}

/* --- Left column: text --- */
.section-adventure-map__text {
  padding-top: 14px;
}
.section-adventure-map__kicker {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 60px;
  color: #1b2128;
  margin: 0;
}
.section-adventure-map__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 60px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: var(--dark-green);
  line-height: 60px;
  margin: 0 0 24px;
}
.section-adventure-map__title strong { font-weight: 800; }
.section-adventure-map__rule {
  border: none;
  border-top: 1px solid var(--dark-green);
  opacity: 0.25;
  width: 100%;
  max-width: 465px;
  margin: 0 0 44px;
}
.section-adventure-map__body {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.4px;
  color: #27423c;
  max-width: 424px;
  margin: 0 0 40px;
}
.section-adventure-map__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 43px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  text-decoration: none;
  background: #f7c23d;
  color: var(--dark-green);
  padding: 0 32px;
  white-space: nowrap;
}
.section-adventure-map__cta:hover { opacity: 0.85; }

/* --- Right column: map --- */
.section-adventure-map__map-wrap {
  position: relative;
}
.section-adventure-map__map {
  width: 100%;
  aspect-ratio: 793 / 900;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
}
/* Mute tile saturation for brand aesthetic */
.section-adventure-map__map .leaflet-tile-pane {
  filter: saturate(0.7) brightness(1.05);
}

/* --- Leaflet popup styling --- */
.adventure-popup .leaflet-popup-content-wrapper {
  border-radius: 8px;
  font-family: var(--font-body);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.adventure-popup .leaflet-popup-content {
  margin: 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #27423c;
}
.adventure-popup .leaflet-popup-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark-green);
  margin: 0 0 6px;
}
.adventure-popup .leaflet-popup-content p { margin: 0 0 8px; }
.adventure-popup .leaflet-popup-content a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}

/* --- Map legend control --- */
.adventure-legend {
  background: rgba(255,255,252,0.95);
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: #27423c;
  max-width: 200px;
}
.adventure-legend h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
.adventure-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.adventure-legend__swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}
.adventure-legend__swatch--park {
  background: var(--dark-green);
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.adventure-legend__swatch--trail { background: #8B4513; }
.adventure-legend__swatch--wildlife { background: var(--yellow); }
.adventure-legend__swatch--phenomenon { background: #e06040; }

/* --- Custom Leaflet DivIcon markers --- */
.adventure-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  line-height: 1;
}
.adventure-marker--park {
  background: var(--dark-green);
  border-radius: 4px;
  width: 28px !important;
  height: 28px !important;
}
.adventure-marker--park span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.adventure-marker--trail {
  background: #8B4513;
  border-radius: 50%;
}
.adventure-marker--trail svg { display: block; }
.adventure-marker--wildlife {
  background: transparent;
  border: none;
  box-shadow: none;
}
.adventure-marker--phenomenon {
  background: transparent;
  border: none;
  box-shadow: none;
}


/* ==========================================================================
   12. IMPACT STATS
   ========================================================================== */
.section-impact {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.section-impact__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-impact__kicker {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 60px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: var(--dark-green);
}
.section-impact__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: var(--dark-green);
}
.section-impact__title strong { font-weight: 800; }
.section-impact__rule {
  border: none;
  border-top: 1px solid var(--dark-green);
  opacity: 0.25;
  margin: 32px 0;
}
.section-impact__body {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.4px;
  color: #27423c;
  max-width: 594px;
  margin-bottom: 48px;
}

/* 3-column stat card grid */
.section-impact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.section-impact__col {
  display: flex;
  flex-direction: column;
}
.section-impact__col .stat-card {
  flex: 1;
}

/* Teal stat cards */
.stat-card {
  background: var(--green);
  border-radius: 0;
  border-top-left-radius: 50px;
  padding: 30px 50px 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.stat-card__label {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 60px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}
.stat-card__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -2px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.stat-card__number span {
  font-size: 0.48em;
  line-height: 1.1;
  letter-spacing: -1.3px;
  display: block;
}
.stat-card__description {
  font-family: var(--font-body);
  font-size: 28px;
  line-height: 38px;
  letter-spacing: -0.56px;
  color: var(--yellow);
}

/* Below-card supporting text */
.section-impact__card-body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.36px;
  color: #27423c;
  margin-top: 20px;
}

/* Action buttons */
.section-impact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}
.section-impact__cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 43px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 22px;
  border-radius: 6px;
  display: inline-block;
}
.section-impact__cta--primary {
  background: var(--yellow);
  color: var(--dark-green);
}
.section-impact__cta--primary:hover { opacity: 0.85; }
.section-impact__cta--outline {
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
}
.section-impact__cta--outline:hover { background: var(--green); color: #fff; }


/* ==========================================================================
   13. NEWS SPOTLIGHT
   ========================================================================== */
.section-news {
  padding: var(--section-pad) 0;
}
.section-news__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-news__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 40px;
}
.section-news__title strong { font-weight: 800; }

/* News grid (build pages with single card) */
.section-news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1812px;
}
/* News listing page — single-column, bottom-gradient cards */
.section-news__grid--listing {
  grid-template-columns: 1fr;
  gap: 32px;
}
.section-news__grid--listing .news-card {
  margin: 0;
  width: 100%;
}
.section-news__grid--listing .news-card__image {
  min-height: 400px;
}
.section-news__grid--listing .news-card::before {
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(to top, rgba(16,82,73,.93) 0%, rgba(16,82,73,.45) 55%, transparent 100%);
}
.section-news__grid--listing .news-card__overlay {
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  padding: 0 48px 40px;
}
.section-news__grid--listing .news-card__title {
  font-size: 32px;
  font-weight: 700;
}
.section-news__grid--listing .news-card__meta {
  font-size: 16px;
}
@media (max-width: 640px) {
  .section-news__grid--listing .news-card__image {
    min-height: 300px;
  }
  .section-news__grid--listing .news-card__title {
    font-size: 24px;
  }
  .section-news__grid--listing .news-card__overlay {
    padding: 0 24px 28px;
  }
}
/* News article body */
.article-meta {
  color: #7a7a7a;
  font-size: 0.9rem;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.article-content {
  max-width: 800px;
  line-height: 1.75;
  font-size: 1.05rem;
}
.article-content p {
  margin-bottom: 1.2em;
}
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}

/* News slideshow */
.news-slideshow {
  position: relative;
}
.news-slideshow__track {
  position: relative;
  overflow: hidden;
}
.news-slideshow .news-slideshow__slide {
  display: none;
}
.news-slideshow .news-slideshow__slide.is-active {
  display: block;
}
.news-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border-top-left-radius: 50px;
  max-width: 1812px;
  margin: 0 auto;
}
.news-card__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
/* Teal gradient overlay from left per Figma 5:720 */
.news-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 70%;
  background: linear-gradient(to right, rgba(16,82,73,.85) 0%, rgba(16,82,73,.5) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.news-card__overlay {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 48px;
  z-index: 2;
  max-width: 55%;
}
.news-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.news-card__title strong { font-weight: 800; }
.news-card__meta {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.news-card__excerpt {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
  display: none;
}
/* Slideshow controls */
.news-slideshow__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.news-slideshow__prev,
.news-slideshow__next {
  width: 44px; height: 44px;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.news-slideshow__prev:hover,
.news-slideshow__next:hover {
  background: var(--green);
  color: var(--white);
}
.news-slideshow__dots {
  display: flex;
  gap: 10px;
}
.news-slideshow__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}
.news-slideshow__dot.is-active {
  background: var(--green);
}


/* ==========================================================================
   14. PARK OVERVIEW (Explore pages)
   ========================================================================== */
.section-park-overview {
  padding: var(--section-pad) 0;
}
.section-park-overview__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.section-park-overview__kicker {
  font-family: var(--font-body);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 60px;
  color: var(--dark-green);
}
.section-park-overview__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 16px;
}
.section-park-overview__title strong { font-weight: 800; }
.section-park-overview__rule {
  border: none;
  border-top: 1px solid var(--dark-green);
  opacity: .25;
  margin-bottom: 24px;
}
.section-park-overview__body {
  font-size: 20px;
  line-height: 1.5;
}
.section-park-overview__body p + p { margin-top: 16px; }
.section-park-overview__map img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}


/* ==========================================================================
   15. ACTIVITY DETAIL (Explore pages)
   ========================================================================== */
.section-activity-detail {
  padding: var(--section-pad) 0;
}
.section-activity-detail__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-activity-detail__section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 16px;
}
.section-activity-detail__section-title strong { font-weight: 800; }

.section-activity-detail__intro {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.section-activity-detail__book {
  margin-bottom: 48px;
}

.activity-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.activity-row--even {
  direction: rtl;
}
.activity-row--even > * { direction: ltr; }

.activity-row__image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.activity-row__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 16px;
}
.activity-row__title strong { font-weight: 800; }

.activity-row__list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 24px;
}
.activity-row__list li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.activity-row__times {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.time-card {
  background: var(--yellow);
  padding: 20px 24px;
  border-radius: 8px;
  flex: 1;
  min-width: 200px;
}
.time-card__label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 8px;
}
.time-card__label strong { font-weight: 800; }
.time-card__detail {
  font-size: 15px;
  line-height: 1.5;
  color: var(--dark-green);
}


/* ==========================================================================
   16. GALLERY BAND
   ========================================================================== */
.section-gallery {
  width: 100%;
  overflow: hidden;
}
.section-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1812px;
  margin: 0 auto;
}
.section-gallery__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}


/* ==========================================================================
   17. LOGISTICS
   ========================================================================== */
.section-logistics {
  padding: var(--section-pad) 0;
}
.section-logistics__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-logistics__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 32px;
}
.section-logistics__title strong { font-weight: 800; }

.section-logistics__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.section-logistics__text {
  font-size: 20px;
  line-height: 1.5;
}
.section-logistics__text p + p { margin-top: 16px; }
.section-logistics__images img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}


/* ==========================================================================
   18. BODY CONTENT (Content/Story pages)
   ========================================================================== */
.section-body-content {
  padding: 40px 0 var(--section-pad);
}
.section-body-content__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 550fr 612fr;
  gap: 60px;
  align-items: start;
}
.section-body-content__prose {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.4px;
}
.section-body-content__prose p + p { margin-top: 16px; }
.section-body-content__cta {
  display: inline-block;
  margin-top: 32px;
}
.section-body-content__image img {
  width: 100%;
  object-fit: cover;
}


/* ==========================================================================
   19. PILL CARD GRID (Content/Story pages)
   ========================================================================== */
.section-pill-grid {
  padding: var(--section-pad) 0;
}
.section-pill-grid__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-pill-grid__intro {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 550px;
}
.section-pill-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pill-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--yellow);
  border-radius: var(--radius-pill) 0 var(--radius-pill) 0;
  padding: 32px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.56px;
  text-transform: uppercase;
  color: var(--dark-text);
  min-height: 127px;
  transition: transform .2s;
}
.pill-card:hover { transform: translateY(-2px); }

/* ── 11b. LISTING CARD GRID (Vacancies, Tenders) ────────── */
.listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.listing-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.listing-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 24px;
  text-decoration: none;
  color: var(--dark-text);
  transition: border-color .2s, box-shadow .2s;
}
.listing-card:hover {
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.listing-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.listing-card__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--yellow);
}
.listing-card__body {
  flex: 1;
  min-width: 0;
}
.listing-card__title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--dark-green);
  margin-bottom: 4px;
}
.listing-card__meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: #777;
}
.listing-card__badge {
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(16,82,73,.08);
  color: var(--dark-green);
}
.listing-year-group {
  margin-bottom: 40px;
}
.listing-year-group__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--dark-green);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
}
@media (max-width: 960px) {
  .listing-grid--2col {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .listing-card {
    padding: 16px;
    gap: 12px;
  }
  .listing-card__icon {
    width: 36px;
    height: 36px;
  }
  .listing-card__title {
    font-size: 14px;
  }
  .listing-card__badge {
    display: none;
  }
}



/* ==========================================================================
   20. NUMBERED DIVISION ROWS (Content/Story pages)
   ========================================================================== */
.section-divisions {
  padding: var(--section-pad) 0;
}
.section-divisions__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-divisions__intro {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 396px;
}
.section-divisions__rows {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.division-row {
  display: grid;
  grid-template-columns: 648fr 561fr;
  gap: 60px;
  align-items: center;
}
.division-row--even {
  direction: rtl;
}
.division-row--even > * { direction: ltr; }

.division-row__image img {
  width: 100%;
  height: 278px;
  object-fit: cover;
  border-radius: 8px;
}
.division-row__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 16px;
}
.division-row__title strong { font-weight: 800; }
.division-row__text {
  font-size: 20px;
  line-height: 1.5;
}


/* ==========================================================================
   21. CONTACT SECTION (dark green)
   ========================================================================== */
.section-contact {
  background: var(--green);
  padding: var(--section-pad) 0;
}
.section-contact__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.section-contact__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 60px;
  line-height: .9;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}
.section-contact__title strong { font-weight: 800; }
.section-contact__rule {
  border-top: 1px solid var(--yellow);
  opacity: .4;
  margin-bottom: 24px;
}
.section-contact__intro {
  font-family: var(--font-ui);
  font-size: 20px;
  line-height: 1.5;
  color: var(--yellow);
  margin-bottom: 32px;
}
.section-contact__details {
  margin-bottom: 32px;
}
.section-contact__details dt {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  color: var(--yellow);
  margin-bottom: 4px;
}
.section-contact__details dd {
  font-family: var(--font-ui);
  font-size: 20px;
  color: var(--yellow);
  margin-bottom: 20px;
}
.section-contact__follow-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  color: var(--yellow);
  margin-bottom: 12px;
}
.section-contact__social {
  display: flex;
  gap: 16px;
}
.section-contact__social img { width: 36px; height: 36px; }

/* Contact form */
.section-contact__form {
  background: var(--white);
  border-radius: var(--radius-pill) 0 0 0;
  padding: 48px 56px;
}
.form-field {
  display: block;
  margin-bottom: 24px;
}
.form-field span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.2);
  font-family: var(--font-body);
  font-size: 20px;
  padding: 8px 0;
  color: var(--black);
  background: transparent;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--green); }
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 48px;
  border: none;
  cursor: pointer;
}
.form-submit:hover { opacity: .85; }


/* ==========================================================================
   21b. CONTACT DIRECTORY (Contact Us page)
   ========================================================================== */
.section-contact-directory {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.section-contact-directory__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-contact-directory__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 8px;
}
.section-contact-directory__heading strong { font-weight: 800; }
.section-contact-directory__rule {
  border: 0;
  border-top: 1px solid var(--green);
  opacity: .35;
  margin-bottom: 40px;
}
.section-contact-directory__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.section-contact-directory__card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.section-contact-directory__card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.section-contact-directory__card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-contact-directory__card p {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-text);
  margin-bottom: 4px;
}
.section-contact-directory__card a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}
.section-contact-directory__card a:hover {
  text-decoration: underline;
  color: var(--dark-green);
}
.section-contact-directory__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  margin-bottom: 14px;
}

/* Contact Us page — message form section */
.section-contact-form {
  padding: 60px 0 var(--section-pad);
  background: var(--white);
}
.section-contact-form__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-contact-form__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 8px;
}
.section-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}


/* ==========================================================================
   21c. PROSE LIST STYLES (body-content lists)
   ========================================================================== */
.section-body-content__prose ul,
.section-body-content__prose ol {
  margin: 12px 0 16px;
  padding-left: 24px;
}
.section-body-content__prose li {
  margin-bottom: 6px;
}
.section-body-content__prose li strong {
  color: var(--dark-green);
}


/* ==========================================================================
   21d. CALLOUT BANNER (Whistleblower, alerts)
   ========================================================================== */
.section-callout {
  background: var(--dark-green);
  padding: 60px 0;
}
.section-callout__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.section-callout__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  line-height: 1.1;
}
.section-callout__body {
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1.6;
  color: var(--white);
  max-width: 640px;
}
.section-callout__contact {
  text-align: right;
}
.section-callout__contact p {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 8px;
  line-height: 1.4;
}
.section-callout__contact a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
}
.section-callout__contact a:hover {
  text-decoration: underline;
}
.section-callout__shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--yellow);
  font-size: 28px;
  margin-bottom: 16px;
}


/* ==========================================================================
   22. CONTACT & DIRECTIONS (Explore pages)
   ========================================================================== */
.section-contact-directions {
  padding: var(--section-pad) 0;
}
.section-contact-directions__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.section-contact-directions__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 32px;
}
.section-contact-directions__title strong { font-weight: 800; }

.section-contact-directions__details {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px 16px;
  align-items: start;
}
.section-contact-directions__details dt img { width: 24px; }
.section-contact-directions__details dd {
  font-size: 18px;
  line-height: 1.5;
}
.section-contact-directions__body {
  font-size: 20px;
  line-height: 1.5;
}


/* ==========================================================================
   23. PARTNER STRIP
   ========================================================================== */
.section-partners {
  padding: 40px 0;
  background: var(--white);
}
.section-partners__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.section-partners__logo {
  height: 48px;
  width: auto;
  opacity: .7;
  transition: opacity .2s;
}
.section-partners__logo:hover { opacity: 1; }
.section-partners__strip {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: contain;
}


/* ==========================================================================
   24. GLOBAL FOOTER
   ========================================================================== */
.site-footer {
  background: var(--yellow);
  padding: 40px 0;
}
.site-footer__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 54px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-footer__logo img {
  height: 72px;
  width: auto;
}
.site-footer__wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  position: relative;
}
.site-footer__wordmark-line {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--dark-green);
  margin-bottom: 6px;
}
.site-footer__wordmark-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  color: var(--dark-green);
  white-space: nowrap;
  letter-spacing: 2px;
}
.site-footer__wordmark-tm {
  position: absolute;
  top: 0;
  right: -14px;
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--dark-green);
}
.site-footer__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 48px;
}
.site-footer__nav a {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--green);
  text-transform: uppercase;
}
.site-footer__nav a:hover { color: var(--dark-green); }
.site-footer__social {
  display: flex;
  gap: 16px;
}
.site-footer__social img { width: 24px; height: 24px; }


/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  :root { --section-pad: 60px; }

  .section-title,
  .section-content-header__title,
  .section-contact__title { font-size: 44px; }

  .section-subtitle,
  .section-park-overview__title,
  .section-activity-detail__section-title,
  .section-stay-grid__title,
  .section-stay-grid__kicker { line-height: 40px; }
  .section-stay-grid__rule { margin-top: 40px; }
  .section-stay-grid__header-row { gap: 30px; margin-top: 30px; }
  .section-stay-grid__text { font-size: 17px; line-height: 26px; }
  .section-stay-grid__discover { font-size: 17px; line-height: 50px; padding: 0 24px; }
  .section-stay-grid__grid { gap: 30px; margin-top: 40px; }
  .stay-card__label-prefix,
  .stay-card__label-name { font-size: 44px; line-height: 40px; }
  .stay-card__label { bottom: 20px; left: 30px; }
  .section-stay-grid__meta-row { gap: 0 30px; margin-top: 30px; }
  .stay-card__desc { font-size: 17px; line-height: 26px; }
  .section-impact__title { font-size: 48px; line-height: 50px; }
  .section-news__title,
  .section-logistics__title,
  .section-contact-directions__title { font-size: 36px; }

  .section-adventure-map__inner { grid-template-columns: 1fr; gap: 40px; }
  .section-adventure-map__text { text-align: center; padding-top: 0; }
  .section-adventure-map__title { font-size: 44px; line-height: 46px; }
  .section-adventure-map__rule { margin-left: auto; margin-right: auto; }
  .section-adventure-map__body { max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: 30px; }
  .section-adventure-map__map { aspect-ratio: 793 / 700; }

  .image-band__title { font-size: 44px; }
  .image-band__title--sm { font-size: 36px; }
  .image-band__content { padding: 48px 24px; }

  .section-explore-cards__grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .section-explore-cards__title { font-size: 44px; }
  .explore-card__label { font-size: 32px; line-height: 38px; }

  .section-who-we-are__inner { gap: 40px; }
  .section-who-we-are__heading { font-size: 44px; }
  .section-who-we-are__illustration-wrap { width: 380px; }

  .pill-card { font-size: 22px; padding: 24px 16px; min-height: 100px; }

  .section-contact-directory__heading { font-size: 40px; }
  .section-contact-directory__grid { grid-template-columns: repeat(2, 1fr); }
  .section-contact-form__heading { font-size: 30px; }

  .section-callout__title { font-size: 28px; }
  .section-callout__body { font-size: 16px; }
  .section-callout__contact p { font-size: 20px; }

  .section-body-content__inner,
  .section-park-overview__inner,
  .section-contact__inner,
  .section-contact-directions__inner { gap: 40px; }

  .section-impact__cards { gap: 16px; }
  .stat-card { padding: 24px 30px 32px; min-height: 300px; border-top-left-radius: 36px; }
  .stat-card__description { font-size: 22px; line-height: 30px; }
  .section-impact__card-body { font-size: 16px; line-height: 24px; }

  .site-header__inner { padding: 12px 24px; }
  .site-header__menu { gap: 16px; }
  .site-header__item > a { font-size: 15px; }

  .site-footer__inner { padding: 0 24px; }
  .site-footer__nav { gap: 24px; }
}

/* Mobile — 640px */
@media (max-width: 640px) {
  :root {
    --section-pad: 40px;
    --gutter: 16px;
  }

  body { font-size: 18px; }

  .section-title,
  .section-content-header__title,
  .section-contact__title { font-size: 32px; line-height: 1.1; }

  .section-subtitle,
  .activity-row__title,
  .division-row__title { font-size: 28px; }

  .image-band__image img { min-height: 320px; }
  .image-band--short .image-band__image img { min-height: 220px; }
  .image-band__content { flex-direction: column; padding: 24px 16px; }
  .image-band__title { font-size: 28px; line-height: 1.1; }
  .image-band__title--sm { font-size: 24px; }
  .image-band__ctas { grid-template-columns: 1fr 1fr; gap: 8px; align-self: flex-start; }
  .image-band__cta { font-size: 11px; padding: 10px 12px; }

  .section-who-we-are__inner { flex-direction: column; padding: 0 16px; }
  .section-who-we-are__heading { font-size: 32px; }
  .section-who-we-are__below-rule { flex-direction: column; gap: 24px; }
  .section-who-we-are__illustration-wrap { width: 100%; max-width: 360px; }
  .section-who-we-are__text { font-size: 18px; }

  .section-rhino-cta__box { padding: 50px 40px 50px 200px; }
  .section-rhino-cta__illustration { width: 240px; left: -20px; bottom: -15px; }
  .section-rhino-cta__text { font-size: 28px; line-height: 34px; }
  .section-rhino-cta__button { font-size: 13px; padding: 0 20px; line-height: 40px; }
  .section-rhino-cta__decor { width: 340px; height: 230px; top: 0; right: 0; }

  .section-adventure-map__title { font-size: 36px; line-height: 38px; letter-spacing: -0.8px; }
  .section-adventure-map__kicker { font-size: 13px; line-height: 40px; }
  .section-adventure-map__body { font-size: 18px; line-height: 27px; }
  .section-adventure-map__map { aspect-ratio: 1 / 1.1; }

  /* Stack grids to single column */
  .section-explore-cards__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-explore-cards__desc { grid-column: 1 / -1; }
  .section-explore-cards__title { font-size: 36px; }
  .explore-card__label { font-size: 26px; line-height: 32px; top: 24px; left: 20px; }
  .explore-card__cta { font-size: 12px; padding: 0 14px; line-height: 32px; border-top: 8px solid var(--white); border-left: 10px solid var(--white); }
  .section-stay-grid__grid { grid-template-columns: 1fr; gap: 24px; }
  .section-stay-grid__title { font-size: 28px; line-height: 30px; }
  .section-stay-grid__header-row { flex-direction: column; gap: 20px; }
  .section-stay-grid__discover { align-self: flex-start; font-size: 15px; line-height: 44px; }
  .section-stay-grid__text { font-size: 16px; line-height: 24px; }
  .section-stay-grid__meta-row { grid-template-columns: 1fr; gap: 16px; margin-top: 20px; }
  .stay-card__label-prefix,
  .stay-card__label-name { font-size: 32px; line-height: 30px; }
  .stay-card__label { bottom: 16px; left: 20px; }
  .stay-card__desc { font-size: 16px; line-height: 24px; }
  .stay-card__cta { text-align: center; }
  .section-news__grid { grid-template-columns: 1fr; }
  .section-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .pill-card { font-size: 18px; }
  .section-pill-grid__grid { grid-template-columns: repeat(2, 1fr); }
  .section-contact-directory__heading { font-size: 32px; }
  .section-contact-directory__grid { grid-template-columns: 1fr; }
  .section-contact-form__heading { font-size: 26px; }
  .section-contact-form__row { grid-template-columns: 1fr; }

  .section-callout__inner { grid-template-columns: 1fr; gap: 24px; }
  .section-callout__title { font-size: 24px; }
  .section-callout__contact { text-align: left; }

  /* Stack 2-column layouts */
  .section-body-content__inner,
  .section-park-overview__inner,
  .section-contact__inner,
  .section-contact-directions__inner,
  .section-logistics__content,
  .section-impact__title { font-size: 36px; line-height: 38px; }
  .section-impact__body { font-size: 18px; line-height: 26px; }
  .section-impact__cards { grid-template-columns: 1fr; gap: 24px; }
  .stat-card { min-height: auto; padding: 24px 28px 32px; }
  .stat-card__number { font-size: 64px; }
  .stat-card__description { font-size: 20px; line-height: 28px; }
  .section-impact__actions { flex-direction: column; align-items: flex-start; }

  .activity-row { grid-template-columns: 1fr; }
  .activity-row--even { direction: ltr; }
  .division-row { grid-template-columns: 1fr; }
  .division-row--even { direction: ltr; }

  /* Header: show burger, hide nav */
  .site-header__nav { display: none; }
  .site-header__nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--teal);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    padding: 20px;
    z-index: 100;
  }
  .site-header__nav.is-open .site-header__menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .site-header__nav.is-open .site-header__item > a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    color: var(--yellow);
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .site-header__burger { display: flex; }
  .site-header__cta { font-size: 14px; padding: 8px 16px; }

  /* Rhino CTA stack */
  .section-rhino-cta__box { padding: 30px 24px; }
  .section-rhino-cta__content { flex-direction: column; text-align: center; gap: 24px; }
  .section-rhino-cta__illustration { position: static; width: 120px; margin: 0 auto; }
  .section-rhino-cta__text { font-size: 24px; line-height: 30px; }
  .section-rhino-cta__button { font-size: 13px; }
  .section-rhino-cta__decor { display: none; }

  /* Footer stack */
  .site-footer__inner { flex-direction: column; text-align: center; }
  .site-footer__nav { flex-wrap: wrap; gap: 12px; justify-content: center; }

  /* Contact form */
  .section-contact__form { padding: 32px 24px; border-radius: 24px 0 0 0; }
  .form-field span { font-size: 22px; }
}
