/* ============================================================
   MANTUMA CAMP — styles.css
   uMkhuze Game Reserve · Northern KwaZulu-Natal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Work+Sans:wght@300;400;500;600&display=swap');

/* ---- DESIGN TOKENS ---- */
:root {
  --bone:           #f5e9c8;
  --paper:          #fbf3dc;
  --ink:            #2a1a08;
  --ink-soft:       #4a3520;
  --bark:           #3d2817;
  --sage:           #6b8a3a;
  --sage-deep:      #3a4a1f;
  --terracotta:     #d97a2a;
  --terracotta-deep:#a8521a;
  --gold:           #e8a838;
  --gold-soft:      #f5d088;
  --line:           #d8c8a0;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Work Sans', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 300; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
p  { font-size: 1.05rem; }

.eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: var(--terracotta);
}
.eyebrow::before {
  content: ""; display: block; width: 2rem; height: 1px; background: var(--terracotta);
}

/* ---- LAYOUT ---- */
.container { max-width: 1220px; margin: 0 auto; padding: 0 2rem; }
section { padding: 7rem 0; position: relative; z-index: 2; }
.section-head { margin-bottom: 4rem; max-width: 780px; }
.section-head h2 { margin: 1rem 0 1.25rem; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2.5rem;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-nav.scrolled {
  background: rgba(42,26,8,.97);
  padding: .75rem 2.5rem;
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.logo {
  display: flex; align-items: center; position: relative;
  height: 72px; width: 120px; flex-shrink: 0;
  transition: width .35s ease;
}
.logo img { height: 120px; transition: opacity .4s, height .35s; position: absolute; top: 50%; left: 0; transform: translateY(-50%); }
.logo .logo-full   { opacity: 1; }
.logo .logo-sketch { opacity: 0; height: 56px; }
.site-nav.scrolled .logo { width: 56px; height: 56px; }
.site-nav.scrolled .logo-full   { opacity: 0; }
.site-nav.scrolled .logo-sketch { opacity: 1; }
.nav-links {
  display: flex; gap: 2.2rem; list-style: none;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
}
.nav-links a { color: var(--bone); opacity: .85; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--terracotta); color: var(--bone);
  padding: .55rem 1.4rem; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600;
  border: none; cursor: pointer; transition: background .2s;
}
.nav-cta:hover { background: var(--terracotta-deep); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--bone); margin: 5px 0; transition: all .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 780px;
  display: flex; align-items: flex-start;
  color: var(--bone); overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #e88828 0%, #b85020 35%, #7a3018 60%, #2a1808 100%);
}
.hero-sun {
  position: absolute; top: 18%; right: 28%;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, #fff5d8 0%, #f5d088 35%, #e8a838 65%, transparent 100%);
  opacity: .85;
}
/* ── Birds — three depth layers, slow ambient drift ─────────────
   Negative animation-delays mean each flock starts mid-flight at
   page load — no waiting at the left edge, no snapping. */
.hero-birds { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bird-flock {
  position: absolute; left: 0;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: both;
  will-change: transform;
}
.bird-flock.fly-fwd  { animation-name: bird-fly-fwd;  }
.bird-flock.fly-back { animation-name: bird-fly-back; }
.bird-flock.fly-back svg { transform: scaleX(-1); }

/* Per-flock placement, duration, and starting offset */
.bird-flock.far  { top: 13%; animation-duration: 42s; animation-delay: -10s; z-index: 1; }
.bird-flock.mid  { top: 30%; animation-duration: 36s; animation-delay: -22s; z-index: 2; }
.bird-flock.near { top: 48%; animation-duration: 30s; animation-delay: -8s;  z-index: 3; }

.bird-wing {
  animation: bird-flap 1.1s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.bird-flock.far  .bird-wing { animation-duration: .55s; }
.bird-flock.mid  .bird-wing { animation-duration: .85s; }
.bird-flock.near .bird-wing { animation-duration: 1.1s; }

@keyframes bird-fly-fwd  { from { transform: translateX(115vw); } to { transform: translateX(-25vw); } }
@keyframes bird-fly-back { from { transform: translateX(-25vw); } to { transform: translateX(115vw); } }
@keyframes bird-flap     { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(-0.5); } }

@media (prefers-reduced-motion: reduce) {
  .bird-flock, .bird-wing { animation: none !important; }
}

/* Walking elephant */
.hero-elephant {
  position: absolute; bottom: 7%; z-index: 2; pointer-events: none;
  transform: scaleX(-1);
  animation: elephant-walk 110s linear infinite;
}
.hero-elephant svg { width: 240px; height: 144px; overflow: visible; }
@keyframes elephant-walk { from { left: -260px; } to { left: 108vw; } }
.hero-elephant > svg { animation: body-bob 2.6s ease-in-out infinite; }
@keyframes body-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
.hero-elephant .heleg-fl,
.hero-elephant .heleg-fr,
.hero-elephant .heleg-bl,
.hero-elephant .heleg-br {
  transform-origin: top center;
  animation-duration: 1.8s; animation-iteration-count: infinite; animation-timing-function: ease-in-out;
}
.hero-elephant .heleg-fl,
.hero-elephant .heleg-br { animation-name: legA; }
.hero-elephant .heleg-fr,
.hero-elephant .heleg-bl { animation-name: legB; }
@keyframes legA { 0%,100% { transform: rotate(12deg) translateY(0); } 50% { transform: rotate(-10deg) translateY(-1px); } }
@keyframes legB { 0%,100% { transform: rotate(-10deg) translateY(-1px); } 50% { transform: rotate(12deg) translateY(0); } }
.hero-elephant .he-trunk { transform-origin: top center; animation: trunk-swing 2.8s ease-in-out infinite; }
.hero-elephant .he-tail  { transform-origin: right center; animation: tail-swing 2.4s ease-in-out infinite; }
@keyframes trunk-swing { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(4deg); } }
@keyframes tail-swing  { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(8deg); } }

/* Giraffe browsing the big acacia. The head/neck rotates gently from
   the base of the neck (where it meets the body), as if reaching
   between branches and tugging leaves. */
.hero-giraffe .giraffe-head {
  transform-box: fill-box;
  transform-origin: 0% 100%;
  animation: giraffe-browse 7s ease-in-out infinite;
}
@keyframes giraffe-browse {
  0%, 12%, 100% { transform: rotate(0deg); }
  28%           { transform: rotate(-3.5deg); }   /* lift head higher into canopy */
  44%           { transform: rotate(-1.5deg); }   /* small tug */
  60%           { transform: rotate(1deg); }      /* lower a touch */
  76%           { transform: rotate(-2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-giraffe .giraffe-head { animation: none; }
}

/* Person with binoculars */
.hero-person {
  position: absolute; bottom: 5%; left: 30%; z-index: 2; pointer-events: none;
}
.person-head { transform-origin: 50% 90%; animation: scan 7s ease-in-out infinite; }
@keyframes scan { 0%,100% { transform: rotate(-15deg); } 50% { transform: rotate(15deg); } }

/* Acacia silhouette */
.acacia { position: absolute; bottom: 0; left: 0; width: 100%; pointer-events: none; z-index: 1; }

/* Hero content */
.hero-content { position: relative; z-index: 2; width: 100%; padding: 155px 2rem 7vh; }
.hero-content .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.hero h1 { color: var(--bone); font-weight: 300; text-shadow: 0 2px 20px rgba(42,26,8,.5); }
.hero h1 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.hero .eyebrow { color: var(--gold-soft); margin-bottom: 1.5rem; text-shadow: 0 1px 8px rgba(42,26,8,.6); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero-meta {
  display: flex; flex-direction: column; gap: 1.25rem;
  color: rgba(245,233,200,.9); font-size: .95rem;
  border-left: 1px solid rgba(245,233,200,.35); padding-left: 1.5rem;
  text-shadow: 0 1px 6px rgba(42,26,8,.5);
}
.hero-meta strong { display: block; font-family: 'Fraunces',serif; font-size: 1.55rem; color: var(--bone); font-weight: 400; margin-bottom: .15rem; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(245,233,200,.7); font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.scroll-ring {
  width: 28px; height: 28px; border: 1px solid rgba(245,233,200,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: scroll-bob 2s ease-in-out infinite;
}
.scroll-ring::after { content: ""; width: 4px; height: 4px; background: var(--bone); border-radius: 50%; opacity: .7; }
@keyframes scroll-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ============================================================
   ABOUT / STATS
   ============================================================ */
.about { background: var(--paper); }
.about .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.about-text p { color: var(--ink-soft); margin-top: 1.5rem; }
.about-meta {
  font-size: .85rem !important;
  font-style: italic;
  color: var(--ink-soft);
  opacity: .82;
  border-top: 1px solid rgba(74, 53, 32, .12);
  padding-top: 1.5rem;
  margin-top: 2.5rem !important;
  line-height: 1.55;
}
.about-meta a {
  color: var(--terracotta-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--terracotta-deep);
}
.stat-stack { display: flex; flex-direction: column; gap: 0; }
.stat {
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1.5rem;
  padding: 1.75rem 0; border-bottom: 1px solid var(--line);
}
.stat:first-child { border-top: 1px solid var(--line); }
.stat-num { font-family: 'Fraunces',serif; font-size: 2.5rem; color: var(--terracotta); font-weight: 400; line-height: 1; }
.stat-label { font-size: .85rem; color: var(--ink-soft); line-height: 1.4; }
.stat-label strong { display: block; font-size: .95rem; color: var(--ink); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem; }

/* ============================================================
   WILDLIFE
   ============================================================ */
.wildlife { background: var(--sage-deep); color: var(--bone); }
.wildlife .eyebrow { color: var(--gold-soft); }
.wildlife .eyebrow::before { background: var(--gold-soft); }
.wildlife .section-head h2 { color: var(--bone); }
.wildlife .section-head p { color: rgba(245,233,200,.8); }
.creature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.creature-card {
  background: rgba(245,233,200,.08); padding: 1.75rem 1.5rem;
  border: 1px solid rgba(245,233,200,.12); transition: background .25s;
}
.creature-card:hover { background: rgba(245,233,200,.13); }
.creature-icon { width: 52px; height: 52px; margin-bottom: 1rem; display: block; }
.creature-card h3 { font-size: 1.1rem; color: var(--bone); margin-bottom: .5rem; }
.creature-card p { font-size: .9rem; color: rgba(245,233,200,.75); }
.activity-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 4rem; }
@media (max-width: 1024px) { .activity-row { grid-template-columns: repeat(2, 1fr); } }
.activity-card {
  background: rgba(232,168,56,.12); border: 1px solid rgba(232,168,56,.2);
  padding: 1.5rem; border-left: 3px solid var(--gold);
}
.activity-card h3 { font-size: 1rem; color: var(--gold-soft); margin-bottom: .5rem; }
.activity-card p { font-size: .88rem; color: rgba(245,233,200,.75); }

/* Big 5 grid */
.big5-section-label { color: var(--gold-soft); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.5rem; }
.big5-hint { color: rgba(245,233,200,.4); font-weight: 400; text-transform: none; letter-spacing: .04em; margin-left: .25rem; }

/* Click affordance: a small chevron at the foot of each card head that
   rotates when the card opens. Lets visitors know there's more to read. */
.big5-card-head { position: relative; }
.big5-card-head::after {
  content: "";
  display: block;
  width: 12px; height: 8px;
  margin-top: .35rem;
  background-color: rgba(245,233,200,.35);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M0 0 L 6 8 L 12 0 Z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M0 0 L 6 8 L 12 0 Z'/></svg>") center/contain no-repeat;
  transition: transform .35s ease, background-color .25s;
}
.big5-card:hover .big5-card-head::after { background-color: var(--gold-soft); }
.big5-card.open .big5-card-head::after {
  transform: rotate(180deg);
  background-color: var(--gold);
}
#big5Grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
.big5-card {
  background: rgba(245,233,200,.06); border: 1px solid rgba(245,233,200,.1);
  cursor: pointer; transition: background .25s;
}
.big5-card:hover, .big5-card.open { background: rgba(245,233,200,.12); }
.big5-card-head { display: flex; flex-direction: column; align-items: center; padding: 1.5rem 1rem; gap: .75rem; }
.big5-icon { width: 56px; height: 56px; overflow: visible; }
.big5-icon g { transform-box: fill-box; transform-origin: center; }

/* ── Lion (10s cycle): tail swish → walk → lie down → rest → stand up ── */
.big5-lion .lion-tail { transform-origin: 100% 0%; animation: lion-tail 2.4s ease-in-out infinite; }
.big5-lion .lion-body { animation: lion-body 10s ease-in-out infinite; }
.big5-lion .lion-legs { transform-origin: 50% 0%; animation: lion-legs 10s ease-in-out infinite; }
@keyframes lion-tail { 0%,100% { transform: rotate(-12deg); } 50% { transform: rotate(15deg); } }
@keyframes lion-body { 0%,30% { transform: translateY(0); } 45%,75% { transform: translateY(7px); } 90%,100% { transform: translateY(0); } }
@keyframes lion-legs { 0%,30% { transform: scaleY(1); } 45%,75% { transform: scaleY(.15); } 90%,100% { transform: scaleY(1); } }

/* ── Leopard (8s cycle): prowl forward, pause, tail flick, prowl back ── */
.big5-leopard .leopard-body { animation: leo-prowl 8s ease-in-out infinite; }
.big5-leopard .leopard-tail { transform-origin: 100% 80%; animation: leo-flick 8s ease-in-out infinite; }
@keyframes leo-prowl { 0%,100% { transform: translateX(0); } 30% { transform: translateX(3px); } 50% { transform: translateX(3px); } 75% { transform: translateX(0); } }
@keyframes leo-flick { 0%,40%,100% { transform: rotate(0); } 55% { transform: rotate(-18deg); } 65% { transform: rotate(10deg); } 75% { transform: rotate(0); } }

/* ── Elephant (9s cycle): drink water sequence + occasional ear flap ── */
.big5-elephant .ele-trunk  { transform-origin: 0% 0%; animation: ele-trunk-drink 9s ease-in-out infinite; }
.big5-elephant .ele-ripple { animation: ele-ripple 9s ease-in-out infinite; }
@keyframes ele-trunk-drink {
  0%,8%   { transform: rotate(-8deg); }
  25%,55% { transform: rotate(8deg); }
  72%,100% { transform: rotate(-8deg); }
}
@keyframes ele-ripple {
  0%,15%  { transform: scale(0); opacity: 0; }
  30%,55% { transform: scale(1); opacity: .55; }
  70%,100% { transform: scale(0); opacity: 0; }
}

/* ── Rhino (8s cycle): graze → look up → graze again ── */
.big5-rhino .rhino-head { transform-origin: 0% 50%; animation: rhino-graze 8s ease-in-out infinite; }
@keyframes rhino-graze {
  0%,12%   { transform: translateY(0)   rotate(0deg); }
  28%,55%  { transform: translateY(3px) rotate(8deg); }
  68%,80%  { transform: translateY(-1px) rotate(-3deg); }
  92%,100% { transform: translateY(0)   rotate(0deg); }
}

/* ── Buffalo (9s cycle): stand → tail swish → head bob → graze briefly ── */
.big5-buffalo .buf-tail { transform-origin: 100% 0%; animation: buf-tail 2.7s ease-in-out infinite; }
.big5-buffalo .buf-head { transform-origin: 0% 100%; animation: buf-head 9s ease-in-out infinite; }
@keyframes buf-tail { 0%,100% { transform: rotate(15deg); } 50% { transform: rotate(-10deg); } }
@keyframes buf-head {
  0%,30%   { transform: rotate(0deg)  translateY(0); }
  45%,65%  { transform: rotate(7deg)  translateY(2px); }
  80%,100% { transform: rotate(0deg)  translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .big5-icon * { animation: none !important; }
}
.big5-card h3 { font-size: 1rem; color: var(--bone); text-align: center; }
.big5-card small { font-size: .72rem; color: rgba(245,233,200,.5); font-style: italic; }
.big5-card-body { max-height: 0; overflow: hidden; transition: max-height .45s ease, padding .35s ease; }
.big5-card.open .big5-card-body { max-height: 300px; padding: 0 1rem 1.25rem; }
.big5-card-body p { font-size: .88rem; color: rgba(245,233,200,.8); line-height: 1.6; }

/* Species accordions */
.species-accordions { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; }
[data-acc] { border-bottom: 1px solid rgba(245,233,200,.12); }
.accordion-trigger {
  width: 100%; background: none; border: none; color: var(--bone);
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; font-size: .9rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer;
}
.accordion-trigger svg { transition: transform .35s; flex-shrink: 0; }
[data-acc].open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .5s ease; }
[data-acc].open .accordion-body { max-height: 1000px; }
.species-list { padding: .75rem 0 1.5rem; display: flex; flex-wrap: wrap; gap: .3rem .5rem; }
.species-list span { font-size: .78rem; color: rgba(245,233,200,.75); }
.species-list .divider { font-size: .7rem; color: var(--terracotta); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; width: 100%; margin-top: .5rem; }

/* ============================================================
   BUSH STORIES
   ============================================================ */
.stories { background: var(--paper); padding: 5rem 0; }
.stories .section-head { max-width: 760px; margin-bottom: 3rem; }
.stories .section-lead { color: var(--ink-soft); font-size: 1rem; max-width: 640px; }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.story-card {
  background: #fff;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 6px rgba(26, 14, 4, .06);
  transition: transform .35s ease, box-shadow .35s ease;
}
.story-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(26, 14, 4, .12); }

.story-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.story-card:hover .story-image img { transform: scale(1.05); }
.story-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--terracotta); color: var(--bone);
  padding: .3rem .7rem;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
.story-body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.story-meta {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: .6rem; font-weight: 600;
}
.story-card h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 1.25rem; line-height: 1.3;
  margin-bottom: .75rem; color: var(--ink);
}
.story-card p {
  color: var(--ink-soft); font-size: .92rem; line-height: 1.6;
  margin-bottom: 1.25rem; flex: 1;
}
.story-link {
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--terracotta); text-decoration: none;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: border-color .25s;
}
.story-link:hover { border-bottom-color: var(--terracotta); }
.story-link[aria-disabled="true"] { opacity: .5; cursor: default; }
.story-link[aria-disabled="true"]:hover { border-bottom-color: transparent; }

.stories-note {
  text-align: center; font-style: italic; color: var(--ink-soft);
  font-size: .9rem; margin-top: 1rem;
}
.stories-note a { color: var(--terracotta); border-bottom: 1px dotted var(--terracotta); }

@media (max-width: 960px) { .stories-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .stories-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--ink-deep, #1a0e04); color: var(--bone); padding: 5rem 0; }
.faq .eyebrow { color: var(--gold-soft); }
.faq .eyebrow::before { background: var(--gold-soft); }
.faq h2 { color: var(--bone); font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: .75rem; }
.faq .section-lead { color: rgba(245,233,200,.7); font-size: 1rem; max-width: 640px; margin-bottom: 3rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; }
.faq-item { border-bottom: 1px solid rgba(245,233,200,.12); }
.faq-item .accordion-trigger { text-transform: none; letter-spacing: 0; font-size: 1rem; font-weight: 400; font-family: 'Fraunces', serif; }
.faq-content { padding: 0 0 1.5rem 0; color: rgba(245,233,200,.82); font-size: .92rem; line-height: 1.65; }
.faq-content p { margin-bottom: .8rem; }
.faq-content ul { margin: .5rem 0 1rem 1.2rem; }
.faq-content li { margin-bottom: .35rem; }
.faq-content a { color: var(--gold-soft); border-bottom: 1px dotted var(--gold-soft); }
.faq-content strong { color: var(--bone); }
@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   ACCOMMODATION
   ============================================================ */
.stays { background: var(--paper); }

/* At-a-Glance summary panel */
.at-a-glance {
  background: var(--bone);
  border: 1px solid rgba(74, 53, 32, .12);
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 0;
}
.glance-numbers {
  background: var(--bark);
  color: var(--bone);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 1.5rem;
  align-content: center;
}
.glance-numbers > div {
  display: flex; flex-direction: column;
  border-left: 2px solid var(--gold-soft);
  padding-left: 1rem;
}
.glance-numbers strong {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: .35rem;
}
.glance-numbers span {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(245, 233, 200, .75);
  line-height: 1.3;
}
.glance-facts {
  padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.glance-facts h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--ink);
}
.glance-facts p {
  font-size: .94rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: .9rem;
}
.glance-facts p:last-child { margin-bottom: 0; }
@media (max-width: 880px) {
  .at-a-glance { grid-template-columns: 1fr; }
  .glance-facts { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .glance-numbers { grid-template-columns: 1fr; padding: 2rem 1.25rem; }
}

.stay-card {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 0;
  background: var(--bone); border: 1px solid var(--line);
  margin-bottom: 2rem; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.stay-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(42,26,8,.12); }
.stay-card:nth-child(even) { grid-template-columns: 1.4fr 1fr; }
.stay-card:nth-child(even) .stay-visual { order: 2; }
.stay-visual { min-height: 340px; position: relative; overflow: hidden; background: linear-gradient(135deg,#7a6a47,#4a4a2a); }
.stay-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.stay-gallery {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 2px; background: var(--ink);
}
.stay-gallery.two { grid-template-rows: 1fr; }
.stay-gallery.three {
  /* 1 large image on the left, 2 stacked on the right */
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.stay-gallery.three > div:nth-child(1) { grid-row: span 2; }
.stay-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.stay-gallery img:hover { transform: scale(1.04); }
.stay-gallery .photo-cap {
  position: absolute; bottom: .4rem; left: .4rem; right: .4rem;
  background: rgba(26,14,4,.78); color: var(--bone);
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .55rem; pointer-events: none; text-align: center;
}
.stay-gallery > div { position: relative; overflow: hidden; }
.stay-tag {
  position: absolute; top: 1.5rem; left: 1.5rem; z-index: 2;
  background: var(--bone); color: var(--ink);
  padding: .4rem 1rem; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
}
.stay-content { padding: 2.75rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.stay-content h3 { margin-bottom: .5rem; }
.stay-meta { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; font-size: .85rem; color: var(--ink-soft); }
.stay-content p { color: var(--ink-soft); margin-bottom: 1.5rem; }
.stay-features { display: flex; flex-wrap: wrap; gap: .5rem; }
.feature-pill { border: 1px solid var(--line); padding: .3rem .9rem; font-size: .76rem; color: var(--ink-soft); }

/* Beyond Mantuma subsection */
.stays-divider { margin: 5rem 0 3rem; text-align: center; position: relative; }
.stays-divider::before, .stays-divider::after {
  content: ""; position: absolute; top: 50%; width: 25%; height: 1px; background: var(--line);
}
.stays-divider::before { left: 0; }
.stays-divider::after  { right: 0; }
.stays-divider .eyebrow { display: block; margin-bottom: .6rem; color: var(--terracotta); }
.stays-divider h3 {
  font-family: 'Fraunces',serif; font-weight: 300; font-style: italic;
  font-size: 1.6rem; color: var(--ink); margin: 0 auto; max-width: 520px;
  background: var(--paper); padding: 0 1.5rem; display: inline-block; position: relative; z-index: 1;
}
.stay-card.beyond .stay-tag { background: var(--sage-deep); color: var(--bone); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--ink); }
.gallery .section-head h2, .gallery .section-head p, .gallery .eyebrow { color: var(--bone); }
.gallery .eyebrow::before { background: var(--gold-soft); }
.gallery .eyebrow { color: var(--gold-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: .75rem; }
.g-item { position: relative; overflow: hidden; cursor: pointer; }
.g-item img, .g-item svg { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.g-item:hover img, .g-item:hover svg { transform: scale(1.05); }
.g1 { grid-column: 1 / 3; grid-row: 1 / 3; min-height: 420px; }
.g2 { min-height: 200px; }
.g3 { min-height: 200px; }
.g4 { min-height: 200px; }
.g5 { min-height: 200px; }
.g6 { grid-column: 3; grid-row: 1 / 3; min-height: 420px; }
.g7 { grid-column: 4; grid-row: 1 / 3; min-height: 420px; }
.g-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,14,4,.75));
  color: var(--bone); padding: 2rem .75rem .75rem;
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  opacity: 0; transition: opacity .3s;
}
.g-item:hover .g-caption { opacity: 1; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--paper); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.review-card { background: var(--bone); border: 1px solid var(--line); padding: 2rem; position: relative; }
.review-card::before {
  content: "\201C"; font-family: 'Fraunces',serif; font-size: 5rem; color: var(--gold-soft);
  position: absolute; top: -.5rem; left: 1rem; line-height: 1; pointer-events: none;
}
.review-stars { color: var(--gold); letter-spacing: .1em; margin-bottom: .75rem; }
.review-text { font-style: italic; color: var(--ink-soft); margin-bottom: 1.25rem; line-height: 1.7; }
.review-meta { font-size: .8rem; color: var(--terracotta); font-weight: 500; letter-spacing: .08em; }

/* Featured single testimonial — used while the site has only one real
   review. When more guest reviews come in, switch back to the .review-grid
   layout above. */
.review-feature {
  max-width: 760px; margin: 3rem auto 0;
  background: var(--bone);
  border: 1px solid var(--line);
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
  text-align: center;
}
.review-feature .quote-mark {
  position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 56px;
  color: var(--terracotta);
  background: var(--bone);
  padding: .5rem 1rem;
}
.review-feature .review-stars {
  font-size: 1.1rem; margin-bottom: 1.5rem;
  letter-spacing: .15em; color: var(--gold-soft);
}
.review-feature blockquote {
  margin: 0 0 2rem;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.review-feature blockquote p { margin-bottom: 1.25rem; }
.review-feature blockquote p:last-child { margin-bottom: 0; }
.review-feature .review-meta {
  display: inline-block;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--terracotta);
  font-weight: 600;
  border-top: 1px solid rgba(217, 122, 42, .25);
  padding-top: 1.25rem;
}
@media (max-width: 600px) {
  .review-feature { padding: 2.5rem 1.5rem 2rem; }
  .review-feature blockquote { font-size: 1rem; }
}

.review-source { margin-top: 2.5rem; text-align: center; }
.review-source a { color: var(--terracotta-deep); font-size: .85rem; font-weight: 500; border-bottom: 1px solid var(--terracotta-deep); padding-bottom: 2px; }

/* ============================================================
   PRACTICAL / MAP
   ============================================================ */
.practical { background: var(--sage-deep); color: var(--bone); }
.practical .eyebrow { color: var(--gold-soft); }
.practical .eyebrow::before { background: var(--gold-soft); }
.practical .section-head h2 { color: var(--bone); }
.practical-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.practical-info { display: flex; flex-direction: column; gap: 2.5rem; }
.info-block h4 { font-family: 'Fraunces',serif; font-size: 1.1rem; color: var(--gold-soft); margin-bottom: .75rem; font-weight: 400; }
.info-block p, .info-block li { font-size: .92rem; color: rgba(245,233,200,.82); line-height: 1.55; }
.info-block ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; padding: 0; margin: 0; }
.info-block li {
  position: relative;
  padding-left: 1.4em;
}
/* Spearhead bullet — drawn as an SVG mask so the colour comes from CSS.
   Shape echoes the crossed assegai motif at the foot of the Mantuma logo. */
.info-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: .55em;
  height: .9em;
  background-color: var(--gold-soft);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 16'><path d='M6 0 L11 6 L6 16 L1 6 Z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 16'><path d='M6 0 L11 6 L6 16 L1 6 Z'/></svg>") center/contain no-repeat;
}
.gate-times { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.5rem; }
.gate-row { display: contents; }
.gate-row span:first-child { color: var(--gold-soft); font-weight: 500; }
.map-card { background: rgba(245,233,200,.06); border: 1px solid rgba(245,233,200,.12); padding: 2rem; }
.map-card .eyebrow { margin-bottom: .75rem; }
.map-card h3 { color: var(--bone); margin-bottom: .75rem; }
.map-card p { color: rgba(245,233,200,.75); font-size: .9rem; margin-bottom: 1.5rem; }
.map-vis { width: 100%; aspect-ratio: 4/5; background: #f0e3c0; overflow: hidden; }
.map-directions { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.map-directions strong { color: var(--gold-soft); font-size: .9rem; font-weight: 600; }
.map-directions p { color: rgba(245,233,200,.75); font-size: .85rem; }
.map-quote { margin-top: 2rem; font-style: italic; color: rgba(245,233,200,.6); font-size: .85rem; border-top: 1px solid rgba(245,233,200,.1); padding-top: 1.25rem; }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
#bookingModal, #storyModal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
  background: rgba(26,14,4,.85); backdrop-filter: blur(4px);
}
#bookingModal.open, #storyModal.open { display: flex; }
.modal-inner { background: var(--paper); width: 90vw; max-width: 920px; height: 88vh; display: flex; flex-direction: column; }
.modal-header { background: var(--bark); color: var(--bone); padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.modal-header h4 { font-family: 'Fraunces',serif; font-weight: 300; font-size: 1.1rem; }
.modal-close {
  background: none; border: none; color: var(--bone); cursor: pointer;
  font-size: 1.4rem; line-height: 1; padding: .25rem; transition: transform .25s;
}
.modal-close:hover { transform: rotate(90deg); }
.modal-iframe { flex: 1; border: none; width: 100%; }

/* ============================================================
   MAP ZOOM MODAL
   ============================================================ */
.map-vis { cursor: zoom-in; transition: filter .2s; }
.map-vis:hover { filter: brightness(1.04); }

#mapModal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
  background: rgba(26,14,4,.92); backdrop-filter: blur(6px);
  padding: 2vh;
}
#mapModal.open { display: flex; }
.map-modal-inner {
  position: relative; background: var(--paper);
  width: 96vw; height: 92vh; max-width: 1400px;
  display: flex; flex-direction: column;
  box-shadow: 0 12px 60px rgba(0,0,0,.5);
}
.map-modal-canvas { flex: 1; padding: 1rem; min-height: 0; }
.map-modal-canvas svg { width: 100%; height: 100%; cursor: default; }
.map-modal-close {
  position: absolute; top: -16px; right: -16px; z-index: 2;
  background: var(--bone); color: var(--ink, #1a0e04);
  border: 2px solid var(--ink, #1a0e04); border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 1.2rem; line-height: 1; cursor: pointer;
  transition: transform .25s;
}
.map-modal-close:hover { transform: rotate(90deg); }
@media (max-width: 760px) {
  .map-modal-close { top: 8px; right: 8px; }
}

/* ============================================================
   PAW-PRINT CURSOR (desktop only, opt-in via class on <html>)
   ============================================================ */
#pawCursor {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 36px;
  margin: -18px 0 0 -16px;
  pointer-events: none;
  z-index: 99999;
  color: #2a1a08;
  transition: width .25s cubic-bezier(.2,.9,.3,1.4),
              height .25s cubic-bezier(.2,.9,.3,1.4),
              margin .25s cubic-bezier(.2,.9,.3,1.4),
              opacity .2s ease,
              transform .04s linear;
  will-change: transform;
}
#pawCursor .paw {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity .35s ease;
}
#pawCursor .paw-cat  { transform: rotate(-15deg); }
#pawCursor .paw-ele  { transform: rotate(0deg); }
#pawCursor .paw-hoof { transform: rotate(8deg); }

#pawCursor[data-track="cat"]  .paw-cat  { opacity: 1; }
#pawCursor[data-track="ele"]  .paw-ele  { opacity: 1; }
#pawCursor[data-track="hoof"] .paw-hoof { opacity: 1; }

/* Activate on devices that support hover (i.e. mouse) */
@media (hover: hover) and (pointer: fine) {
  html.paw-on, html.paw-on body { cursor: none; }
  html.paw-on a, html.paw-on button,
  html.paw-on [role="button"], html.paw-on [data-open-booking],
  html.paw-on input, html.paw-on textarea, html.paw-on select,
  html.paw-on label, html.paw-on .accordion-trigger,
  html.paw-on .big5-card, html.paw-on .stay-gallery img,
  html.paw-on .gallery-grid img, html.paw-on #reserveMap {
    cursor: none;
  }
  html.paw-on #pawCursor { display: block; }
}

/* "Pressed" state: shrink + tilt slightly when hovering interactive elements */
#pawCursor.pressed {
  width: 26px; height: 30px;
  margin: -15px 0 0 -13px;
}
#pawCursor.pressed .paw { filter: drop-shadow(0 1px 2px rgba(0,0,0,.4)); }
#pawCursor.clicking {
  width: 22px; height: 26px;
  margin: -13px 0 0 -11px;
}

/* Hidden while typing in form fields */
#pawCursor.hidden { opacity: 0; }

/* Dust-trail ghost prints — spawned by JS as it moves */
.paw-ghost {
  position: fixed;
  width: 28px; height: 32px;
  pointer-events: none;
  z-index: 99998;
  opacity: 0;
  color: #5a4828;
  animation: paw-ghost-fade 1.6s ease-out forwards;
}
.paw-ghost svg { width: 100%; height: 100%; display: block; }
@keyframes paw-ghost-fade {
  0%   { opacity: .35; transform: scale(1) translateY(0); }
  100% { opacity: 0;   transform: scale(.85) translateY(2px); }
}

@media (prefers-reduced-motion: reduce) {
  #pawCursor { transition: none; }
  .paw-ghost { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bark); color: var(--bone); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand img { height: 80px; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; color: rgba(245,233,200,.65); line-height: 1.6; }
.footer-col h5 { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; font-family: 'Work Sans',sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-col li { font-size: .88rem; color: rgba(245,233,200,.65); }
.footer-col a { color: rgba(245,233,200,.65); transition: color .2s; }
.footer-col a:hover { color: var(--bone); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a { color: rgba(245,233,200,.55); transition: color .2s; }
.footer-social a:hover { color: var(--bone); }
.footer-bottom { border-top: 1px solid rgba(245,233,200,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .78rem; color: rgba(245,233,200,.4); }
.footer-access a { color: rgba(245,233,200,.3); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; transition: color .25s; }
.footer-access a:hover { color: rgba(245,233,200,.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  section { padding: 5rem 0; }
  .hero-content .container, .about .container, .practical-grid, .species-accordions { grid-template-columns: 1fr; }
  .creature-grid { grid-template-columns: repeat(2,1fr); }
  #big5Grid { grid-template-columns: repeat(3,1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .site-nav.menu-open .nav-links {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(42,26,8,.97); padding: 1.5rem 2.5rem; gap: 1.25rem;
  }
}
@media (max-width: 680px) {
  .stay-card, .stay-card:nth-child(even) { grid-template-columns: 1fr; }
  .stay-card:nth-child(even) .stay-visual { order: 0; }
  .activity-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g1, .g6, .g7 { grid-column: span 1; grid-row: span 1; min-height: 200px; }
  .footer-grid { grid-template-columns: 1fr; }
  #big5Grid { grid-template-columns: 1fr 1fr; }
  .hero-meta { border-left: none; padding-left: 0; border-top: 1px solid rgba(245,233,200,.25); padding-top: 1.5rem; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
  background: var(--bark);
  color: var(--bone);
  padding: 1.5rem 1.75rem;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(26, 14, 4, .35);
  z-index: 9999;
  font-family: 'Work Sans', sans-serif;
  font-size: .9rem;
  line-height: 1.55;
  border-left: 3px solid var(--terracotta);
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.2, .9, .3, 1.1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: .5rem;
}
.cookie-banner p {
  color: rgba(245, 233, 200, .85);
  margin-bottom: 1rem;
  font-size: .85rem;
}
.cookie-banner p a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px dotted var(--gold-soft);
}
.cookie-banner p a:hover { color: var(--gold); border-color: var(--gold); }
.cookie-banner .cookie-actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
.cookie-banner button {
  flex: 1;
  min-width: 110px;
  padding: .7rem 1rem;
  font-family: 'Work Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.cookie-banner button.primary {
  background: var(--terracotta);
  color: var(--bone);
  border-color: var(--terracotta);
}
.cookie-banner button.primary:hover {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
}
.cookie-banner button.secondary {
  background: transparent;
  color: var(--bone);
  border-color: rgba(245, 233, 200, .35);
}
.cookie-banner button.secondary:hover {
  border-color: var(--gold-soft);
  color: var(--gold);
}
@media (max-width: 480px) {
  .cookie-banner {
    left: .5rem; right: .5rem; bottom: .5rem;
    padding: 1.25rem 1.25rem;
  }
  .cookie-banner button { font-size: .72rem; padding: .65rem .75rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none; }
}

/* Footer legal links row */
.footer-legal {
  margin-top: 1rem !important;
  font-size: .78rem !important;
  opacity: .8;
}
.footer-legal a {
  color: rgba(245, 233, 200, .82);
  text-decoration: none;
  border-bottom: 1px dotted rgba(245, 233, 200, .35);
  padding: 0 .15rem;
  transition: color .2s, border-color .2s;
}
.footer-legal a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-legal span {
  color: rgba(245, 233, 200, .35);
  margin: 0 .35rem;
}
