/*
Theme Name: Cotswold Wildlife Park (Kadence Child)
Theme URI: https://cotswoldwildlifepark.com/
Template: kadence
Author: Cotswold Wildlife Park & Gardens
Description: Kadence child theme carrying the approved Cotswold Wildlife Park design system (colors, type, spacing, cards, grids) as CSS, on top of Kadence Theme + Kadence Blocks Pro for structure. All page content is built with Gutenberg/Kadence blocks, not hardcoded in this theme.
Version: 1.1.0
Text Domain: cwp-kadence-child
*/

/* This stylesheet is the complete, verified design-system CSS from the
   approved static prototype (prototype/styles.css), copied in full so every
   class used across all 9 pages is guaranteed to be styled identically to
   what was approved — followed by a small block of WordPress-only additions
   at the very end (a ".cwp-section" utility class used on the Home page,
   plus two small responsive tweaks). Site-wide chrome (header, nav, mega
   menu, off-canvas menu, search panel, footer) is included here too for
   completeness, but is inert dead weight in WordPress: Kadence's own
   Header/Footer Builder renders that chrome with its own markup and class
   names, so none of these selectors ever match anything on a real page. */
/* ==========================================================================
   Cotswold Wildlife Park — Homepage Prototype Stylesheet
   Design tokens mirror 02-design-system.md (Kadence Global Settings)
   ========================================================================== */

:root {
  /* Colors */
  --c-canopy: #1F3A2E;
  --c-safari: #3F6B4A;
  --c-amber: #D98A3D;
  --c-stone: #8C8577;
  --c-sand: #E9F1EA;
  --c-charcoal: #2A2A26;
  --c-white: #FFFFFF;
  --c-lagoon: #2E6B72;
  --c-hairline: #DCE7DC;

  /* Type */
  --f-heading: "Fraunces", Georgia, serif;
  --f-body: "Public Sans", -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --shadow-rest: 0 2px 8px rgba(31,58,46,0.08);
  --shadow-hover: 0 16px 32px rgba(31,58,46,0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--c-charcoal);
  background: var(--c-white);
  line-height: 1.65;
  font-size: 17px;
}
h1, h2, h3, h4 { font-family: var(--f-heading); color: var(--c-canopy); margin: 0 0 var(--space-sm); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(36px, 5.5vw, 64px); line-height: 1.08; }
h2 { font-size: clamp(28px, 3.6vw, 42px); }
h3 { font-size: clamp(20px, 2.4vw, 22px); }
p { margin: 0 0 var(--space-sm); }
a { color: var(--c-safari); }
img, .ph-img { display: block; }
ul { padding-left: 1.1em; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 860px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--c-canopy); color: #fff;
  padding: 12px 20px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Real photography containers ---------- */
img { max-width: 100%; height: auto; }
.card-img, .col-img, .g-item, .media-card { overflow: hidden; position: relative; background: var(--c-sand); }
.card-img img, .col-img img, .g-item img, .media-card img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease;
}
.card:hover .card-img img, .g-item:hover img { transform: scale(1.06); }

/* ---------- Dev notice banner (editorial, prototype-only) ---------- */
.dev-notice {
  background: #2A2A26; color: #fff; font-size: 13px; padding: 10px 24px;
  display: flex; align-items: center; justify-content: center; gap: 16px; text-align: center; position: relative;
}
.dev-notice p { margin: 0; max-width: 900px; }
.dev-notice code { background: rgba(255,255,255,0.15); padding: 1px 6px; border-radius: 4px; }
.dev-notice-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; line-height: 1; }
.dev-notice.hidden { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; border-radius: var(--radius-sm); font-weight: 600; font-size: 16px;
  text-decoration: none; border: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-family: var(--f-body); line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--c-amber); color: var(--c-charcoal); }
.btn-primary:hover { background: #c67a2e; box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; color: var(--c-canopy); border: 2px solid var(--c-canopy); padding: 14px 30px; }
.btn-outline:hover { background: var(--c-canopy); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid #fff; padding: 14px 30px; }
.btn-outline-light:hover { background: #fff; color: var(--c-canopy); }
.btn-lg { padding: 18px 38px; font-size: 17px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--c-hairline);
  transition: padding .25s ease, box-shadow .25s ease;
}
.site-header.shrink { box-shadow: var(--shadow-rest); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; transition: padding .25s ease; }
.site-header.shrink .header-inner { padding: 10px 24px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { font-size: 28px; }
.logo-text { font-family: var(--f-heading); font-weight: 600; color: var(--c-canopy); font-size: 19px; }
.logo-text em { display: block; font-style: normal; font-weight: 400; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-stone); }
.main-nav ul { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav a, .nav-top-link { color: var(--c-charcoal); text-decoration: none; font-weight: 500; font-size: 15px; }
.main-nav a:hover, .nav-top-link:hover { color: var(--c-safari); }
.main-nav > ul > li > a, .nav-top-link {
  display: flex; align-items: center; gap: 5px; padding: 10px 12px; background: none; border: none; cursor: pointer;
  font-family: var(--f-body); border-radius: var(--radius-sm);
}
.nav-top-link .caret { font-size: 10px; transition: transform .2s ease; color: var(--c-stone); }
.has-mega:hover .nav-top-link .caret, .has-dropdown:hover .nav-top-link .caret,
.has-mega.open .nav-top-link .caret, .has-dropdown.open .nav-top-link .caret { transform: rotate(180deg); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn { background: none; border: none; cursor: pointer; font-size: 18px; padding: 8px; border-radius: 50%; color: var(--c-canopy); line-height: 1; }
.icon-btn:hover { background: var(--c-sand); }
.header-phone { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--c-canopy); text-decoration: none; white-space: nowrap; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--c-canopy); display: block; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }

/* ---------- Mega menu & dropdown ---------- */
.mega-menu, .dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-hover); border: 1px solid var(--c-hairline);
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 120;
}
.has-mega:hover .mega-menu, .has-mega.open .mega-menu,
.has-dropdown:hover .dropdown-menu, .has-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.mega-menu { display: flex; gap: 0; padding: var(--space-md); width: 560px; left: 0; transform: translateY(8px); }
.has-mega:hover .mega-menu, .has-mega.open .mega-menu { transform: translateY(0); }
.mega-cols { display: flex; flex: 1; gap: var(--space-md); }
.mega-col { flex: 1; }
.mega-col-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-stone); font-weight: 700; margin: 0 0 10px; }
.mega-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.mega-col a { display: block; padding: 8px 10px; border-radius: var(--radius-sm); font-size: 14.5px; }
.mega-col a:hover { background: var(--c-sand); color: var(--c-safari); }
.mega-feature { width: 190px; flex-shrink: 0; background: var(--c-sand); border-radius: var(--radius-sm); padding: var(--space-sm); text-align: center; }
.mega-feature img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 10px; }
.mega-feature p { font-size: 13.5px; font-weight: 600; color: var(--c-canopy); margin-bottom: 10px; }
.dropdown-menu { left: 0; transform: translateY(8px); min-width: 220px; padding: 8px; display: flex; flex-direction: column; }
.has-dropdown:hover .dropdown-menu, .has-dropdown.open .dropdown-menu { transform: translateY(0); }
.dropdown-menu a { padding: 10px 14px; border-radius: var(--radius-sm); font-size: 14.5px; }
.dropdown-menu a:hover { background: var(--c-sand); color: var(--c-safari); }

/* ---------- Search panel ---------- */
.search-panel {
  position: fixed; inset: 0; background: rgba(31,58,46,0.55); z-index: 200; display: none;
  align-items: flex-start; justify-content: center; padding: 10vh 20px;
}
.search-panel.open { display: flex; }
.search-panel-inner { background: #fff; border-radius: var(--radius-md); width: 100%; max-width: 620px; display: flex; align-items: center; padding: 6px; box-shadow: var(--shadow-hover); }
.search-panel-inner input { flex: 1; border: none; padding: 16px 18px; font-size: 17px; font-family: var(--f-body); outline: none; border-radius: var(--radius-md); }
.search-panel-close { background: none; border: none; font-size: 22px; cursor: pointer; padding: 10px 14px; color: var(--c-stone); }
.search-results { list-style: none; background: #fff; max-width: 620px; width: 100%; margin: 8px auto 0; padding: 8px; border-radius: var(--radius-md); box-shadow: var(--shadow-hover); max-height: 50vh; overflow-y: auto; }
.search-results:empty { display: none; }
.search-results li a { display: block; padding: 12px 16px; border-radius: var(--radius-sm); text-decoration: none; }
.search-results li a:hover { background: var(--c-sand); }
.search-results .sr-title { font-weight: 600; color: var(--c-canopy); font-size: 15px; }
.search-results .sr-desc { font-size: 13px; color: var(--c-stone); margin-top: 2px; }
.search-empty { padding: 14px 16px; color: var(--c-stone); font-size: 14px; }

/* ---------- Off-canvas mobile nav ---------- */
.offcanvas-scrim { position: fixed; inset: 0; background: rgba(31,58,46,0.5); z-index: 140; opacity: 0; visibility: hidden; transition: opacity .25s ease; }
.offcanvas-scrim.open { opacity: 1; visibility: visible; }
.offcanvas-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 88vw); background: #fff; z-index: 150;
  transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; box-shadow: -8px 0 24px rgba(0,0,0,0.15);
}
.offcanvas-nav.open { transform: translateX(0); }
.offcanvas-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 20px; border-bottom: 1px solid var(--c-hairline); }
.offcanvas-close { background: none; border: none; font-size: 26px; cursor: pointer; color: var(--c-canopy); line-height: 1; }
.offcanvas-list { list-style: none; padding: 12px 12px; margin: 0; overflow-y: auto; flex: 1; }
.offcanvas-list > li > a, .offcanvas-trigger {
  display: flex; align-items: center; justify-content: space-between; width: 100%; text-align: left; background: none; border: none;
  padding: 14px 12px; font-size: 16px; font-weight: 600; color: var(--c-charcoal); text-decoration: none; cursor: pointer; font-family: var(--f-body);
  border-bottom: 1px solid var(--c-hairline);
}
.offcanvas-sublist { list-style: none; padding: 0 0 8px 14px; margin: 0; max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.offcanvas-group.open .offcanvas-sublist { max-height: 400px; }
.offcanvas-group.open .offcanvas-trigger { color: var(--c-safari); }
.offcanvas-sublist a { display: block; padding: 10px 12px; font-size: 14.5px; color: var(--c-charcoal); text-decoration: none; }
.offcanvas-sublist a:hover { color: var(--c-safari); }
.offcanvas-trigger .oc-caret { transition: transform .2s ease; color: var(--c-amber); font-size: 18px; }
.offcanvas-group.open .oc-caret { transform: rotate(45deg); }
.offcanvas-footer { padding: 16px 20px 24px; border-top: 1px solid var(--c-hairline); display: flex; flex-direction: column; gap: 12px; }
.mobile-nav { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,58,46,0.15) 0%, rgba(31,58,46,0.78) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 700px; padding-top: 60px; padding-bottom: 60px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; font-weight: 600; color: var(--c-amber); margin-bottom: var(--space-sm); }
.hero-content h1 { color: #fff; }
.hero-sub { font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,0.9); max-width: 560px; }
.hero-ctas { display: flex; gap: 16px; margin-top: var(--space-md); flex-wrap: wrap; }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: #fff; z-index: 2; text-decoration: none; text-align: center; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; }
.chevron { display: block; font-size: 22px; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0);} 50% { transform: translateY(6px);} }

/* ---------- Trust Bar ---------- */
.trust-bar { background: var(--c-canopy); padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; color: #fff; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 13px; line-height: 1.35; }
.trust-icon { font-size: 24px; }
.trust-item strong { color: var(--c-amber); }

/* ---------- Quick Facts ---------- */
.quick-facts { padding: var(--space-xl) 0; background: var(--c-sand); }
.qf-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-md); }
.qf-card { background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--radius-md); padding: var(--space-md); text-align: center; box-shadow: var(--shadow-rest); transition: transform .2s ease, box-shadow .2s ease; }
.qf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.qf-icon { font-size: 30px; display: block; margin-bottom: 8px; }
.qf-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-stone); font-weight: 600; margin-bottom: 4px; }
.qf-answer { font-size: 15px; margin: 0; }

/* ---------- Sections generic ---------- */
.section { padding: var(--space-2xl) 0; }
.section-alt { background: var(--c-sand); }
.section-dark { background: var(--c-canopy); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.85); }
.kicker { text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; font-weight: 600; color: var(--c-safari); margin-bottom: 8px; }
.section-dark .kicker { color: var(--c-amber); }
.quick-answer { background: var(--c-sand); border-left: 4px solid var(--c-amber); padding: var(--space-sm) var(--space-md); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 16px; margin: var(--space-md) 0 var(--space-lg); }
.section-dark .quick-answer { background: rgba(255,255,255,0.08); color: #fff; }
.callout { background: #fff; border: 1px dashed var(--c-hairline); padding: var(--space-sm) var(--space-md); border-radius: var(--radius-sm); font-size: 15px; }
.placeholder-note { font-size: 13px; color: var(--c-stone); font-style: italic; }
.section-cta { margin-top: var(--space-lg); display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Cards & grids ---------- */
.card-grid { display: grid; gap: var(--space-md); margin-top: var(--space-lg); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-6 { grid-template-columns: repeat(6, 1fr); }
.card {
  background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-rest); transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card-img { aspect-ratio: 4/3; }
.card-body { padding: var(--space-md); }
.card-body h3 { font-size: 19px; margin-bottom: 8px; }
.card-body p { font-size: 15px; margin: 0; color: var(--c-charcoal); }
.animal-card { text-align: center; }
.animal-card .card-img { border-radius: var(--radius-md); aspect-ratio: 1/1; }
.animal-card h3 { font-size: 16px; margin: 12px 0 4px; }
.animal-card p { font-size: 13.5px; color: var(--c-stone); }
.guide-card { background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--radius-md); padding: var(--space-lg); box-shadow: var(--shadow-rest); }

.chip-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin-top: var(--space-lg); }
.chip-list li { background: var(--c-sand); border: 1px solid var(--c-hairline); padding: 8px 16px; border-radius: var(--radius-full); font-size: 13.5px; font-weight: 500; }

/* ---------- Icon-only cards (Food & Dining) ---------- */
.card-icon-only .card-body { text-align: center; padding: var(--space-lg) var(--space-md); }
.card-icon { font-size: 40px; display: block; margin-bottom: 12px; }

/* ---------- Pros / cons callout ---------- */
.pros-callout { background: var(--c-sand); border-radius: var(--radius-md); padding: var(--space-lg); margin-top: var(--space-lg); }
.pros-callout h3 { margin-bottom: var(--space-md); }
.pros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.pros-list { list-style: none; padding: 0; margin: 0; }
.pros-list li { padding: 8px 0 8px 28px; position: relative; font-size: 15px; }
.pros-list li::before { content: "✓"; position: absolute; left: 0; color: var(--c-safari); font-weight: 700; }
.pros-list-caution li::before { content: "!"; color: var(--c-amber); font-weight: 700; }

/* ---------- Definition box & comparison table ---------- */
.definition-box { background: #fff; border: 2px solid var(--c-canopy); border-radius: var(--radius-md); padding: var(--space-md) var(--space-lg); margin: var(--space-lg) 0; }
.def-term { font-family: var(--f-heading); font-size: 20px; font-weight: 600; color: var(--c-canopy); margin-bottom: 8px; }
.def-term span { display: block; font-family: var(--f-body); font-size: 13px; font-weight: 500; color: var(--c-stone); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 4px; }
.compare-table { width: 100%; border-collapse: collapse; margin: var(--space-lg) 0; }
.compare-table th, .compare-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--c-hairline); font-size: 14.5px; }
.compare-table th { font-family: var(--f-heading); color: var(--c-canopy); background: var(--c-sand); }

/* ---------- Expert / keeper tip callouts ---------- */
.expert-tip { display: flex; gap: 14px; background: #fff; border: 1px solid var(--c-hairline); border-left: 4px solid var(--c-safari); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: var(--space-sm) var(--space-md); margin-top: var(--space-lg); font-size: 15px; box-shadow: var(--shadow-rest); }
.tip-icon { font-size: 22px; flex-shrink: 0; }
.section-dark .expert-tip { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.9); border-color: var(--c-amber); }

/* ---------- Media cards (weather / map / hotels) ---------- */
.media-card { border-radius: var(--radius-md); aspect-ratio: 3/2; margin: var(--space-md) 0; }
.media-card-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,58,46,0.1), rgba(31,58,46,0.75));
  display: flex; align-items: flex-end; padding: var(--space-md); color: #fff;
}
.media-card-overlay p { margin: 0; font-weight: 600; font-size: 15px; }
.media-card-overlay span { font-weight: 400; font-size: 13px; opacity: 0.85; }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); font-size: 34px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4)); }

/* ---------- Checklist box ---------- */
.checklist-box { background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--radius-md); padding: var(--space-lg); margin-top: var(--space-lg); box-shadow: var(--shadow-rest); }
.checklist { list-style: none; padding: 0; margin: var(--space-sm) 0 0; }
.checklist li { padding: 9px 0 9px 30px; position: relative; border-bottom: 1px solid var(--c-hairline); font-size: 15px; }
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: "☐"; position: absolute; left: 0; color: var(--c-amber); font-size: 17px; }

/* ---------- Two-column sections ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: start; }
.col-img { aspect-ratio: 4/3; border-radius: var(--radius-lg); }
.col-img-inline { aspect-ratio: 3/2; border-radius: var(--radius-md); margin: var(--space-md) 0; }
.col-content .icon-list { list-style: none; padding: 0; margin-top: var(--space-md); }
.col-content .icon-list li { padding: 10px 0 10px 30px; position: relative; border-bottom: 1px solid var(--c-hairline); font-size: 15px; }
.col-content .icon-list li::before { content: "✓"; position: absolute; left: 0; color: var(--c-safari); font-weight: 700; }
.icon-list-light li { border-bottom-color: rgba(255,255,255,0.15); }
.icon-list-light li::before { color: var(--c-amber); }

/* ---------- Accordion ---------- */
.accordion { margin-top: var(--space-lg); border-top: 1px solid var(--c-hairline); }
.accordion-item { border-bottom: 1px solid var(--c-hairline); }
.accordion-trigger {
  width: 100%; text-align: left; background: none; border: none; padding: 18px 4px; font-family: var(--f-heading);
  font-size: 17px; font-weight: 600; color: var(--c-canopy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.section-dark .accordion-trigger { color: #fff; }
.acc-icon { font-size: 20px; color: var(--c-amber); transition: transform .25s ease; flex-shrink: 0; }
.accordion-trigger[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; font-size: 15px; color: var(--c-charcoal); }
.section-dark .accordion-panel { color: rgba(255,255,255,0.85); }
.accordion-panel { padding: 0 4px; }
.accordion-trigger[aria-expanded="true"] + .accordion-panel { padding-bottom: 16px; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; padding: 0; margin: var(--space-lg) 0 0; border-left: 2px dashed var(--c-hairline); margin-left: 10px; }
.timeline li { position: relative; padding: 0 0 28px 32px; }
.timeline li::before { content: ""; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--c-amber); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--c-amber); }
.tl-time { display: block; font-weight: 700; color: var(--c-safari); font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.tl-text { font-size: 15.5px; }

/* ---------- Video ---------- */
.video-facade {
  width: 100%; max-width: 820px; aspect-ratio: 16/9; margin: var(--space-lg) auto 0; border-radius: var(--radius-lg);
  border: none; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  position: relative; overflow: hidden; padding: 0; text-decoration: none;
}
.video-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-facade::before { content: ""; position: absolute; inset: 0; background: rgba(31,58,46,0.35); transition: background .25s ease; }
.video-facade:hover::before { background: rgba(31,58,46,0.15); }
.play-btn, .video-caption { position: relative; z-index: 2; }
.play-btn { width: 76px; height: 76px; border-radius: 50%; background: var(--c-amber); color: var(--c-charcoal); display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: var(--shadow-hover); transition: transform .25s ease; }
.video-facade:hover .play-btn { transform: scale(1.08); }
.video-caption { color: #fff; font-weight: 600; background: rgba(0,0,0,0.4); padding: 6px 16px; border-radius: var(--radius-full); font-size: 14px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: var(--space-sm); margin-top: var(--space-lg); }
.g-item { border-radius: var(--radius-md); cursor: pointer; margin: 0; }
.g-item:nth-child(3n+1) { grid-row: span 2; }
.g-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 10px 14px; font-size: 12.5px; font-weight: 600; color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.65), transparent); opacity: 0; transition: opacity .25s ease;
}
.g-item:hover figcaption, .g-item:focus-within figcaption { opacity: 1; }

/* ---------- Testimonials ---------- */
.trust-stat { font-size: 18px; margin-bottom: var(--space-lg); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); text-align: left; margin-top: var(--space-md); }
.testimonial { background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--radius-md); padding: var(--space-md); margin: 0; box-shadow: var(--shadow-rest); }
.testimonial p { font-style: italic; font-size: 15px; }
.testimonial cite { font-style: normal; font-size: 13px; color: var(--c-stone); font-weight: 600; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--c-canopy); color: var(--c-amber);
  display: flex; align-items: center; justify-content: center; font-family: var(--f-heading); font-weight: 600;
  font-size: 15px; margin-bottom: var(--space-sm);
}

/* ---------- Tabs ---------- */
.tab-list { display: flex; flex-wrap: wrap; gap: 8px; border-bottom: 2px solid var(--c-hairline); margin-bottom: var(--space-lg); overflow-x: auto; }
.tab-btn {
  background: none; border: none; padding: 12px 20px; font-family: var(--f-body); font-weight: 600; font-size: 14.5px;
  color: var(--c-stone); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap;
}
.tab-btn.active, .tab-btn:hover { color: var(--c-canopy); border-bottom-color: var(--c-amber); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadein .3s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: translateY(0);} }

.price-table { width: 100%; border-collapse: collapse; margin: var(--space-md) 0; }
.price-table th, .price-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--c-hairline); font-size: 15px; }
.price-table th { font-family: var(--f-heading); color: var(--c-canopy); background: var(--c-sand); }

.weather-widget-placeholder, .map-placeholder {
  background: var(--c-sand); border: 1px dashed var(--c-stone); border-radius: var(--radius-md);
  padding: var(--space-lg); text-align: center; margin: var(--space-md) 0;
}

/* ---------- Stats ---------- */
.stats-section { background: var(--c-canopy); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); text-align: center; }
.stat-num { display: block; font-family: var(--f-heading); font-size: clamp(36px, 5vw, 56px); font-weight: 600; color: var(--c-amber); }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.8); }

/* ---------- Newsletter ---------- */
.newsletter-section { background: var(--c-sand); }
.newsletter-form { display: flex; gap: 12px; justify-content: center; max-width: 460px; margin: var(--space-md) auto; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 220px; padding: 15px 18px; border-radius: var(--radius-sm); border: 1px solid var(--c-hairline); font-size: 15px; font-family: var(--f-body); }
.microcopy { font-size: 13px; color: var(--c-stone); }

/* ---------- Final CTA ---------- */
.final-cta { position: relative; padding: var(--space-2xl) 0; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final-cta .container { position: relative; z-index: 2; color: #fff; }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.9); font-size: 18px; }
.final-cta .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-charcoal); color: rgba(255,255,255,0.75); padding: var(--space-2xl) 0 var(--space-md); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-lg); }
.site-footer h4 { color: #fff; font-family: var(--f-body); font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--space-sm); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: var(--c-amber); }
.logo-footer .logo-text { color: #fff; }
.social-icons { display: flex; gap: 12px; margin-top: var(--space-sm); font-size: 20px; }
.social-icons a { text-decoration: none; }
address { font-style: normal; font-size: 14px; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: var(--space-lg); padding-top: var(--space-md); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid var(--c-hairline); padding: 12px 16px; gap: 10px; z-index: 90; box-shadow: 0 -4px 16px rgba(0,0,0,0.08); }
.sticky-mobile-cta .btn { flex: 1; padding: 13px 10px; font-size: 14px; }
.sticky-mobile-cta.visible { display: flex; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .chevron { animation: none; }
}

/* ==========================================================================
   Interior pages (About, Animals, Experiences, Tickets, Plan Your Visit,
   Gallery, Conservation, Visitor Guide, Blog, FAQs, Contact)
   ========================================================================== */

/* ---------- Breadcrumb ---------- */
.breadcrumb { margin-bottom: var(--space-md); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; font-size: 13.5px; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.75); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; opacity: 0.6; }
.breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-amber); }
.breadcrumb li[aria-current="page"] { color: var(--c-amber); font-weight: 600; }
.section .breadcrumb li, .section .breadcrumb a { color: var(--c-stone); }
.section .breadcrumb li[aria-current="page"] { color: var(--c-safari); }

/* ---------- Interior page hero (shorter than homepage hero) ---------- */
.page-hero { position: relative; min-height: 44vh; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 2; color: #fff; max-width: 760px; padding: 100px 0 var(--space-xl); }
.page-hero-content h1 { color: #fff; margin-bottom: var(--space-sm); }
.page-hero-content .hero-sub { color: rgba(255,255,255,0.9); }
.page-hero-stats { display: flex; flex-wrap: wrap; gap: var(--space-lg); margin-top: var(--space-md); }
.page-hero-stats div { color: #fff; }
.page-hero-stats strong { display: block; font-family: var(--f-heading); font-size: 26px; color: var(--c-amber); }
.page-hero-stats span { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.8); }

/* ---------- Category filter pills (Animals page) ---------- */
.filter-pills { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: var(--space-lg) 0; }
.filter-pills a { display: inline-block; padding: 10px 20px; border-radius: var(--radius-full); border: 1px solid var(--c-hairline); background: #fff; color: var(--c-charcoal); text-decoration: none; font-size: 14px; font-weight: 600; transition: all .2s ease; }
.filter-pills a:hover, .filter-pills a.active { background: var(--c-canopy); color: #fff; border-color: var(--c-canopy); }
.category-block { padding-top: var(--space-xl); margin-top: var(--space-xl); border-top: 1px solid var(--c-hairline); scroll-margin-top: 100px; }
.category-block:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }

/* ---------- Team cards (About) ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: var(--space-lg); }
.team-card { text-align: center; }
.team-card .card-img { border-radius: 50%; aspect-ratio: 1/1; max-width: 160px; margin: 0 auto var(--space-sm); }
.team-card h3 { font-size: 17px; margin-bottom: 2px; }
.team-card .role { font-size: 13px; color: var(--c-safari); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 14px; color: var(--c-stone); }

/* ---------- Award badges ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-lg); }
.badge-item { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--radius-full); padding: 10px 20px; font-size: 13.5px; font-weight: 600; box-shadow: var(--shadow-rest); }
.badge-item span.b-icon { font-size: 20px; }

/* ---------- Ticket / pricing cards (Tickets page) ---------- */
.ticket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: var(--space-lg); }
.ticket-card { background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--radius-md); padding: var(--space-lg); box-shadow: var(--shadow-rest); position: relative; transition: transform .2s ease, box-shadow .2s ease; }
.ticket-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.ticket-card.featured { border: 2px solid var(--c-amber); }
.ticket-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--c-amber); color: var(--c-charcoal); font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.04em; }
.ticket-card h3 { font-size: 18px; margin-bottom: 4px; }
.ticket-price { font-family: var(--f-heading); font-size: 38px; color: var(--c-canopy); font-weight: 600; margin: var(--space-sm) 0; }
.ticket-price span { font-size: 14px; color: var(--c-stone); font-family: var(--f-body); font-weight: 400; }
.ticket-card ul { list-style: none; padding: 0; margin: var(--space-md) 0; }
.ticket-card ul li { padding: 7px 0 7px 26px; position: relative; font-size: 14.5px; border-bottom: 1px solid var(--c-hairline); }
.ticket-card ul li:last-child { border-bottom: none; }
.ticket-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--c-safari); font-weight: 700; }
.ticket-card .btn { width: 100%; }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: var(--space-lg); }
.blog-card { background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-rest); transition: transform .25s ease, box-shadow .25s ease; text-decoration: none; color: inherit; display: block; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-card .card-img { aspect-ratio: 3/2; }
.blog-card-body { padding: var(--space-md); }
.blog-meta { display: flex; gap: 10px; align-items: center; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--c-stone); margin-bottom: 8px; font-weight: 600; }
.blog-meta .blog-cat { color: var(--c-amber); }
.blog-card h3 { font-size: 18px; margin-bottom: 6px; color: var(--c-canopy); }
.blog-card p { font-size: 14.5px; color: var(--c-charcoal); margin: 0; }
.blog-featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-lg); align-items: center; background: var(--c-sand); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: var(--space-xl); }
.blog-featured .card-img { aspect-ratio: 4/3; border-radius: 0; }
.blog-featured-body { padding: var(--space-lg); }

/* ---------- Single post ---------- */
.post-body { font-size: 17px; line-height: 1.75; max-width: 760px; margin: 0 auto; }
.post-body h2 { margin-top: var(--space-xl); }
.post-body img { border-radius: var(--radius-md); margin: var(--space-lg) 0; }
.post-body blockquote { border-left: 4px solid var(--c-amber); padding-left: var(--space-md); font-style: italic; color: var(--c-safari); margin: var(--space-lg) 0; }
.post-hero-meta { display: flex; gap: var(--space-md); align-items: center; flex-wrap: wrap; margin: var(--space-md) 0; font-size: 13.5px; color: var(--c-stone); }
.author-chip { display: flex; align-items: center; gap: 8px; }
.author-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--c-canopy); color: var(--c-amber); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.share-row { display: flex; gap: 10px; margin-top: var(--space-lg); }
.share-row a { width: 40px; height: 40px; border-radius: 50%; background: var(--c-sand); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; }
.related-posts { max-width: 760px; margin: var(--space-xl) auto 0; padding-top: var(--space-xl); border-top: 1px solid var(--c-hairline); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: var(--space-sm); }
.contact-form label { font-size: 14px; font-weight: 600; color: var(--c-canopy); margin-bottom: -8px; }
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 14px 16px; border-radius: var(--radius-sm); border: 1px solid var(--c-hairline); font-size: 15px; font-family: var(--f-body); width: 100%;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-info-list { list-style: none; padding: 0; margin: var(--space-lg) 0; display: flex; flex-direction: column; gap: var(--space-md); }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.contact-info-list .ci-icon { font-size: 22px; flex-shrink: 0; }
.dept-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); margin-top: var(--space-lg); }
.dept-card { background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--radius-sm); padding: var(--space-sm) var(--space-md); }
.dept-card h4 { margin: 0 0 4px; font-size: 14.5px; color: var(--c-canopy); font-family: var(--f-body); font-weight: 700; }
.dept-card a { font-size: 13.5px; }

/* ---------- FAQ category tabs (reuses .tab-list / .tab-btn / .tab-panel) ---------- */
.faq-jump { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: var(--space-lg) 0; }
.faq-jump a { background: var(--c-sand); border: 1px solid var(--c-hairline); padding: 8px 16px; border-radius: var(--radius-full); font-size: 13.5px; font-weight: 600; text-decoration: none; color: var(--c-charcoal); }
.faq-jump a:hover { background: var(--c-canopy); color: #fff; }
.faq-category { padding-top: var(--space-lg); margin-top: var(--space-lg); scroll-margin-top: 100px; }
.faq-category:first-of-type { margin-top: 0; }

/* ---------- Bio / split feature (Conservation, About) ---------- */
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); margin-top: var(--space-lg); }
.feature-strip .stat { background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--radius-md); padding: var(--space-md); box-shadow: var(--shadow-rest); }
.feature-strip .stat-num { color: var(--c-safari); }
.feature-strip .stat-label { color: var(--c-charcoal); }

/* ---------- 404 / simple utility ---------- */
.simple-page-body { max-width: 760px; margin: 0 auto; }

/* ==========================================================================
   Homepage editorial redesign — premium variants (used on index.html)
   ========================================================================== */

/* Trust bar v2 — icon-ring badges with dividers, no flat repeated boxes */
.trust-bar-v2 { background: var(--c-canopy); padding: 0; }
.trust-grid-v2 { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-chip { display: flex; align-items: center; gap: 14px; padding: 24px 18px; position: relative; }
.trust-chip:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 22%; bottom: 22%; width: 1px; background: rgba(255,255,255,0.14); }
.trust-ring { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: rgba(217,138,61,0.14); border: 1px solid rgba(217,138,61,0.4); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.trust-chip-text { font-size: 12.5px; line-height: 1.35; color: rgba(255,255,255,0.78); }
.trust-chip-text strong { display: block; font-family: var(--f-heading); font-size: 14.5px; font-weight: 600; color: #fff; margin-top: 1px; }

/* Editorial feature grid — asymmetric "Why Visit" layout (1 large + 2 stacked) */
.feature-editorial { display: grid; grid-template-columns: 1.25fr 1fr; gap: var(--space-md); margin-top: var(--space-lg); }
.feature-editorial-main { grid-row: 1 / span 2; position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px; box-shadow: var(--shadow-rest); }
.feature-editorial-main img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .6s ease; }
.feature-editorial-main:hover img { transform: scale(1.05); }
.feature-editorial-main::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,58,46,0) 32%, rgba(18,28,21,0.94) 100%); }
.feature-editorial-body { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--space-lg); color: #fff; z-index: 2; }
.feature-editorial-body .fe-tag { font-family: var(--f-heading); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--c-amber); display: block; margin-bottom: 10px; }
.feature-editorial-body h3 { color: #fff; font-size: 25px; margin-bottom: 8px; }
.feature-editorial-body p { color: rgba(255,255,255,0.88); font-size: 15px; margin: 0; }
.feature-editorial-body a { color: #fff; text-decoration-color: rgba(255,255,255,0.5); }
.feature-editorial-side { background: #fff; border: 1px solid var(--c-hairline); border-radius: var(--radius-md); padding: var(--space-md); box-shadow: var(--shadow-rest); display: flex; gap: 16px; transition: transform .25s ease, box-shadow .25s ease; }
.feature-editorial-side:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-editorial-side .fe-num { font-family: var(--f-heading); font-size: 34px; color: var(--c-hairline); font-weight: 600; line-height: 1; flex-shrink: 0; }
.feature-editorial-side h3 { font-size: 17px; margin-bottom: 6px; }
.feature-editorial-side p { font-size: 14px; margin: 0; color: var(--c-charcoal); }

/* Overlay-image cards — Attractions / Food & Dining / Visitor Guide */
.card-overlay { position: relative; }
.card-overlay .card-img { position: absolute; inset: 0; aspect-ratio: auto; border-radius: inherit; }
.card-overlay { aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden; }
.card-overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,58,46,0) 32%, rgba(15,24,18,0.9) 100%); z-index: 1; }
.card-overlay .card-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: var(--space-md); background: none; border: none; }
.card-overlay .card-body h3 { color: #fff; margin-bottom: 4px; }
.card-overlay .card-body p { color: rgba(255,255,255,0.85); }
.card-overlay .cat-tag { display: inline-block; background: rgba(217,138,61,0.92); color: var(--c-charcoal); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 3px 10px; border-radius: var(--radius-full); margin-bottom: 8px; }
.guide-card.card-overlay { aspect-ratio: auto; min-height: 360px; padding: 0; }
.guide-card-v2 { position: relative; }
.guide-card-v2 .card-img { position: relative; overflow: visible; }
.guide-card-v2 .card-img img { border-radius: var(--radius-md); }
.guide-card-v2 .gc-badge { position: absolute; bottom: -22px; left: 20px; width: 52px; height: 52px; border-radius: 50%; background: var(--c-canopy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: var(--shadow-hover); border: 3px solid #fff; z-index: 2; }
.guide-card-v2 .card-body { padding-top: calc(var(--space-md) + 10px); }
.guide-card-v2 .gc-kicker { text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 700; color: var(--c-safari); margin: 0 0 6px; }

/* Story mini-timeline v2 — connected vertical era strip (dark section) */
.mini-timeline-v2 { list-style: none; padding: 0; margin: var(--space-lg) 0 0; position: relative; }
.mini-timeline-v2::before { content: ""; position: absolute; left: 13px; top: 6px; bottom: 6px; width: 1px; background: rgba(255,255,255,0.2); }
.mini-timeline-v2 li { position: relative; padding: 0 0 20px 38px; }
.mini-timeline-v2 li:last-child { padding-bottom: 0; }
.mini-timeline-v2 li::before { content: ""; position: absolute; left: 8px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--c-amber); box-shadow: 0 0 0 4px rgba(217,138,61,0.18); }
.mini-timeline-v2 strong { color: var(--c-amber); }

/* FAQ two-column layout (denser, more magazine-like than one long list).
   Uses two explicit grid columns (not CSS multi-column) so opening an item
   only reflows its own column, not the whole list. */
.faq-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--space-lg); margin-top: var(--space-lg); border-top: none; }
.faq-columns .faq-col { border-top: 1px solid var(--c-hairline); }

/* Plan Your Visit — premium pill tabs */
.tab-list.tab-list-v2 { border-bottom: none; margin-bottom: var(--space-lg); gap: 10px; }
.tab-list-v2 .tab-btn { border-radius: var(--radius-full); border: 1px solid var(--c-hairline); background: #fff; padding: 10px 20px 10px 16px; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 0; }
.tab-list-v2 .tab-btn .tb-icon { font-size: 15px; }
.tab-list-v2 .tab-btn.active, .tab-list-v2 .tab-btn:hover { background: var(--c-canopy); border-color: var(--c-canopy); color: #fff; }

/* Reviews — feature quote layout (one large quote + a stacked pair) */
.quote-feature-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--space-lg); margin-top: var(--space-md); text-align: left; align-items: stretch; }
.quote-feature { background: #fff; border-radius: var(--radius-lg); padding: var(--space-xl) var(--space-lg); box-shadow: var(--shadow-hover); position: relative; margin: 0; border: 1px solid var(--c-hairline); }
.quote-feature .qf-mark { font-family: var(--f-heading); font-size: 64px; line-height: 1; color: var(--c-amber); opacity: .35; display: block; margin-bottom: -8px; }
.quote-feature p { font-size: 20px; font-family: var(--f-heading); font-style: italic; color: var(--c-canopy); line-height: 1.4; }
.quote-feature cite { display: block; margin-top: var(--space-md); font-style: normal; font-weight: 600; font-size: 13.5px; color: var(--c-stone); }
.quote-stack { display: flex; flex-direction: column; gap: var(--space-md); }
.quote-stack .testimonial { margin: 0; flex: 1; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .qf-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid-6 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid-v2 { grid-template-columns: repeat(3, 1fr); }
  .trust-chip:nth-child(3)::after { display: none; }
  .feature-editorial { grid-template-columns: 1fr; }
  .feature-editorial-main { grid-row: auto; min-height: 320px; }
  .quote-feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .qf-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid-2, .card-grid-3, .card-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-mobile-cta { display: flex; }
  .section { padding: var(--space-xl) 0; }
  .trust-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .trust-chip::after { display: none !important; }
  .trust-chip { padding: 18px 14px; }
  .faq-columns { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .trust-grid, .qf-grid, .card-grid-2, .card-grid-3, .card-grid-6, .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .hero { min-height: 100vh; }
  .newsletter-form { flex-direction: column; }
  .pros-grid { grid-template-columns: 1fr; }
  .dev-notice { flex-direction: column; padding: 12px 40px 12px 16px; }
  .trust-grid-v2 { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .pros-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .ticket-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .blog-featured { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .dept-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .page-hero { min-height: 38vh; }
  .page-hero-content { padding: 70px 0 var(--space-lg); }
  .mega-menu, .dropdown-menu { display: none !important; }
}

@media (max-width: 560px) {
  .team-grid, .ticket-grid, .blog-grid, .feature-strip { grid-template-columns: 1fr; }
  .page-hero-stats { gap: var(--space-md); }
}

/* ==========================================================================
   WordPress-only additions (not part of the static prototype stylesheet)
   ========================================================================== */
.cwp-section { padding: var(--space-2xl) 0; }
.cwp-section.section-alt { background: var(--c-sand); }
.cwp-section.section-dark { background: var(--c-canopy); color: #fff; }
.cwp-section.section-dark h2, .cwp-section.section-dark h3 { color: #fff; }
.cwp-section.section-dark p { color: rgba(255,255,255,0.85); }
.cwp-section h1, .cwp-section h2, .cwp-section h3, .cwp-section h4 { font-family: var(--f-heading); color: var(--c-canopy); font-weight: 600; line-height: 1.15; }
.cwp-section a { color: var(--c-safari); }
.cwp-section img { max-width: 100%; height: auto; display: block; }
.cwp-section ul { padding-left: 1.1em; }
.final-cta .final-cta-inner { position: relative; z-index: 2; color: #fff; }
@media (max-width: 860px) {
  .cwp-section { padding: var(--space-xl) 0; }
}
@media (max-width: 560px) {
  .qf-grid, .card-grid-2, .card-grid-3, .card-grid-6, .stats-grid { grid-template-columns: 1fr; }
}

/* Kadence Footer Builder — Widget 1-4 columns (real chrome, unlike the block
   above). Kadence's Footer Background/Copyright colour controls in the
   Customizer only cover the background and the bottom copyright bar; it has
   no built-in colour control for text/links *inside* a footer Widget Area,
   so these few lines are the "only if a theme limitation makes it
   absolutely necessary" custom CSS the footer needs — everything else
   (layout, columns, background, copyright text) is set via real Kadence
   theme_mods in functions.php, not CSS. */
#colophon .footer-widget-area,
#colophon .footer-widget-area p,
#colophon .footer-widget-area address { color: rgba(255,255,255,0.82); }
#colophon .footer-widget-area h2.widget-title,
#colophon .footer-widget-area h4 { color: #fff; font-family: var(--f-heading); font-size: 1.05em; margin: 0 0 var(--space-sm); }
#colophon .footer-widget-area ul { list-style: none; margin: 0; padding: 0; }
#colophon .footer-widget-area li { margin: 0 0 8px; }
#colophon .footer-widget-area a { color: rgba(255,255,255,0.82); text-decoration: none; }
#colophon .footer-widget-area a:hover,
#colophon .footer-widget-area a:focus { color: var(--c-amber); text-decoration: underline; }
#colophon .footer-html-inner a { color: var(--c-amber); }