/* ═══════════════════════════════════════════════════════════════════════════════
   River Otter Outdoors — Enderby, BC
   Design direction: "River Current"

   The brand is built from the name and the watershed it sits in: drifting current
   lines behind frosted glass in the hero, topographic contour lines in the section
   backgrounds. Deep river green as the ground, copper as the warm accent — kokanee
   flank, rifle brass, worn leather.
   ═══════════════════════════════════════════════════════════════════════════════ */

:root {
  /* ── Core palette ─────────────────────────────────────────────────────────── */
  --river-950: #0e1a17;      /* near-black deep river green */
  --river-800: #1c2f28;      /* dark section backgrounds */
  --current-500: #3d7a68;    /* mid river-green, primary brand colour */
  --current-300: #6fa593;    /* lighter current accent — gradients + on-dark text */
  --copper-500: #b5652f;     /* warm copper/rust accent */
  --stone-100: #f2efe7;      /* warm stone/canvas background, not stark white */
  --stone-50:  #f9f7f2;
  --line: #ded6c4;

  /* ── Accessibility variants ───────────────────────────────────────────────────
     Measured contrast ratios, so small text always clears WCAG AA (4.5:1):

       --current-500 on --stone-50 .... 4.70:1  passes, but with no headroom
       --current-600 on --stone-50 .... 6.82:1  used for all small text on light
       --copper-500  on --stone-50 .... 4.03:1  LARGE TEXT ONLY (passes 3:1)
       --copper-600  on --stone-50 .... 5.66:1  used for small text on light
       --copper-500  on --river-950 ... 4.13:1  LARGE TEXT ONLY
       --copper-400  on --river-950 ... 6.54:1  used for small text on dark
       --current-300 on --river-950 ... 6.35:1  used for eyebrows on dark
       --stone-100   on --river-950 ... 15.7:1  body text on dark
     ─────────────────────────────────────────────────────────────────────────── */
  --current-600: #2f5f51;
  --copper-600: #96501f;
  --copper-400: #d98a4f;

  --grad-river: linear-gradient(135deg, var(--current-300), var(--current-500));
  --grad-deep: linear-gradient(135deg, var(--river-800), var(--river-950));
  --grad-copper: linear-gradient(135deg, var(--copper-400), var(--copper-500));

  --font-display: "Bebas Neue", "Haettenschweiler", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --sh-sm: 0 2px 14px rgba(14, 26, 23, .07);
  --sh-md: 0 14px 40px rgba(14, 26, 23, .13);
  --radius: 16px;
  --nav-h: 74px;
  --ease: cubic-bezier(.2, .6, .2, 1);
}

/* ═══ RESET / BASE ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
/* Dark root so rubber-band overscroll matches the hero at the top and the footer at
   the bottom, instead of flashing a light strip past either end. */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--river-950); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--river-950);
  background: var(--stone-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
  letter-spacing: .012em;
  line-height: 1;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }

.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 2; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--current-600);
}
.section-h2 {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: .96; max-width: 20ch; text-wrap: balance;
  margin-top: 1rem; text-transform: uppercase;
}
/* nowrap keeps figures like "4.9 out of 5" from splitting across a line break. */
.section-h2 em { font-style: normal; color: var(--copper-600); white-space: nowrap; }
.section-lead {
  font-size: 1.05rem; max-width: 56ch; margin-top: 1.3rem;
  color: var(--river-800); opacity: .88;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--copper-500); outline-offset: 3px; border-radius: 3px; }

.skip-link {
  position: absolute; top: -60px; left: 1rem; z-index: 300;
  background: var(--river-950); color: var(--stone-50);
  padding: .7rem 1.2rem; border-radius: 0 0 10px 10px;
  font-size: .88rem; font-weight: 600; transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; }

/* ═══ REVEAL ═════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; }
.reveal.d2 { transition-delay: .18s; }

/* ═══ BUTTONS ════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-size: .92rem; font-weight: 600;
  padding: .95rem 1.7rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .3s var(--ease), background-color .3s, border-color .3s, color .3s, box-shadow .3s;
}
.btn-copper { background: var(--grad-copper); color: #fff; box-shadow: 0 8px 26px rgba(181, 101, 47, .3); }
.btn-copper:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(181, 101, 47, .4); }

.btn-glass {
  background: rgba(242, 239, 231, .12); color: var(--stone-50);
  border-color: rgba(242, 239, 231, .42);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(242, 239, 231, .24); transform: translateY(-2px); }

.btn-solid { background: var(--current-600); color: var(--stone-50); }
.btn-solid:hover { background: var(--river-800); transform: translateY(-2px); }

.btn-quiet { border-color: var(--line); color: var(--river-950); }
.btn-quiet:hover { border-color: var(--current-600); color: var(--current-600); transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* ═══ TOPOGRAPHIC TEXTURE ════════════════════════════════════════════════════
   Nested irregular contours, drawn once and reused at increasing scale so the
   nesting reads like a real topo map rather than a tiled pattern. Purely
   decorative, very low opacity, never over text.
   ═══════════════════════════════════════════════════════════════════════════ */
.topo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  color: var(--current-500); opacity: .11;
  pointer-events: none; z-index: 1;
}
.topo-right { transform: scaleX(-1); }

/* ═══ NAV ════════════════════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background-color .4s, box-shadow .4s, backdrop-filter .4s;
}
#nav.at-top { background: transparent; }
#nav:not(.at-top) {
  /* Kept fairly opaque: the bar passes over dark sections (trust bar, reviews, footer)
     and the wordmark has to stay legible the whole way down. */
  background: rgba(249, 247, 242, .94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--sh-sm);
}
.nav-inner {
  max-width: 1160px; width: 100%; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.nav-logo { display: flex; align-items: center; gap: .7rem; }
.nav-mark { width: 30px; height: 30px; flex: none; color: var(--copper-500); }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-main {
  font-family: var(--font-display); font-size: 1.4rem; line-height: 1;
  letter-spacing: .03em; text-transform: uppercase;
}
.nav-logo-main em { font-style: normal; color: var(--current-600); }
.nav-logo-sub {
  font-family: var(--font-body); font-size: .54rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--river-800); opacity: .68; margin-top: 3px;
}

/* Hero sits behind the transparent nav, so the wordmark inverts while at the top. */
#nav.at-top .nav-logo-main { color: var(--stone-50); }
#nav.at-top .nav-logo-main em { color: var(--current-300); }
#nav.at-top .nav-logo-sub { color: var(--stone-100); opacity: .72; }
#nav.at-top .nav-links a { color: var(--stone-100); }
#nav.at-top .nav-phone { color: var(--stone-50); border-color: rgba(242, 239, 231, .38); }
#nav.at-top .hbg span { background: var(--stone-50); }

.nav-links { display: none; gap: 2.1rem; }
.nav-links a {
  font-size: .88rem; font-weight: 500; position: relative; padding-bottom: 5px;
  transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--copper-500); transition: right .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-phone {
  display: none; align-items: center; gap: .5rem;
  font-size: .88rem; font-weight: 600;
  padding: .6rem 1.2rem; border-radius: 999px; border: 1.5px solid var(--line);
  transition: border-color .3s, color .3s;
}
.nav-phone:hover { border-color: var(--copper-500); color: var(--copper-600); }
#nav.at-top .nav-phone:hover { color: var(--copper-400); border-color: var(--copper-400); }

@media (min-width: 920px) { .nav-links, .nav-phone { display: flex; } }

.hbg {
  width: 44px; height: 44px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0; z-index: 210;
}
@media (min-width: 920px) { .hbg { display: none; } }
.hbg span {
  width: 23px; height: 2px; background: var(--river-950); border-radius: 2px;
  transition: transform .32s var(--ease), opacity .22s;
}
.hbg.open span { background: var(--stone-50); }
.hbg.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; }
.hbg.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ MOBILE MENU ════════════════════════════════════════════════════════════ */
.mob-ov {
  position: fixed; inset: 0; z-index: 200;
  background: var(--grad-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
  opacity: 0; transform: translateY(-12px);
  transition: opacity .34s var(--ease), transform .34s var(--ease);
}
.mob-ov[hidden] { display: none; }
.mob-ov.open { opacity: 1; transform: none; }
.mob-links { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.mob-links a {
  font-family: var(--font-display); font-size: 2.3rem; letter-spacing: .03em;
  text-transform: uppercase; color: var(--stone-50); transition: color .25s;
}
.mob-links a:hover { color: var(--copper-400); }
.mob-phone { color: var(--copper-400); font-weight: 600; font-size: 1.08rem; margin-top: .6rem; }
.mob-dir {
  color: var(--stone-100); font-weight: 500; font-size: .95rem;
  border-bottom: 1px solid rgba(242, 239, 231, .3); padding-bottom: 2px;
}
.mob-hours {
  color: rgba(242, 239, 231, .58); font-size: .82rem;
  letter-spacing: .05em; margin-top: .4rem;
}
body.menu-open { overflow: hidden; }

/* ═══ HERO ═══════════════════════════════════════════════════════════════════ */
#hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--river-950); overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 0 3rem;
}

/* The current field — see the note in index.html for how the seamless loop works. */
.river { position: absolute; inset: 0; z-index: 1; }
.river::after {
  /* Vignette: settles the current field into the page edges. Kept deliberately light —
     the frosted panel does the work of protecting text contrast, so the vignette does
     not need to, and crushing it here would erase the whole identity of the page. */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(130% 100% at 32% 46%, rgba(14, 26, 23, 0) 0%, rgba(14, 26, 23, .28) 58%, rgba(14, 26, 23, .62) 100%),
    linear-gradient(180deg, rgba(14, 26, 23, .5) 0%, transparent 22%, transparent 76%, rgba(14, 26, 23, .62) 100%);
}
.river-svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.cl { stroke: var(--current-300); }
.current-lines .cl {
  animation-name: drift;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}
/* Each line: its own weight, opacity and speed. Slower + fainter reads as deeper water. */
.cl-1 { stroke-width: 1.4; opacity: .42; animation-duration: 64s; }
.cl-2 { stroke-width: 2.2; opacity: .62; animation-duration: 41s; stroke: var(--copper-400); }
.cl-3 { stroke-width: 1.5; opacity: .48; animation-duration: 55s; }
.cl-4 { stroke-width: 2.8; opacity: .78; animation-duration: 29s; }
.cl-5 { stroke-width: 1.6; opacity: .52; animation-duration: 47s; }
.cl-6 { stroke-width: 2.4; opacity: .66; animation-duration: 35s; stroke: var(--copper-400); }
.cl-7 { stroke-width: 1.3; opacity: .36; animation-duration: 70s; }
.cl-8 { stroke-width: 2.1; opacity: .58; animation-duration: 44s; }
.cl-9 { stroke-width: 1.4; opacity: .34; animation-duration: 60s; }

@keyframes drift {
  from { transform: translateX(-1200px); }
  to   { transform: translateX(0); }
}

.hero-inner { position: relative; z-index: 3; width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

.hero-panel {
  max-width: 660px;
  background: rgba(28, 47, 40, .42);
  border: 1px solid rgba(111, 165, 147, .26);
  border-radius: 22px;
  padding: clamp(2rem, 5vw, 3.4rem);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.hero-eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--current-300); margin-bottom: 1.2rem;
}
.hero-h1 {
  display: flex; flex-direction: column;
  font-size: clamp(3rem, 9.2vw, 6.4rem);
  line-height: .9; text-transform: uppercase; color: var(--stone-50);
  letter-spacing: .01em;
}
.hero-h1-sm { font-size: .52em; color: var(--current-300); letter-spacing: .06em; }
.hero-h1 .accent { color: var(--copper-400); }

.hero-sub {
  margin-top: 1.6rem; font-size: 1.05rem; line-height: 1.75;
  color: var(--stone-100); opacity: .9; max-width: 48ch;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
/* Stacked buttons at ragged widths look accidental — square them off on phones,
   where these two taps are the whole point of the page. */
@media (max-width: 540px) {
  .hero-cta, .visit-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn, .visit-cta .btn { width: 100%; }
}
.hero-meta {
  margin-top: 2.2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(242, 239, 231, .16);
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  font-size: .85rem; color: var(--stone-100); opacity: .82;
}
.hero-meta strong { font-weight: 600; color: var(--stone-50); }

/* ═══ TRUST BAR ══════════════════════════════════════════════════════════════ */
.trust-bar { background: var(--river-800); padding: 1.15rem 1.5rem; }
.trust-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1.4rem;
}
.trust-item { display: flex; align-items: center; gap: .6rem; }
.trust-stars { color: var(--copper-400); letter-spacing: .1em; font-size: .95rem; }
.trust-label { color: var(--stone-100); font-size: .9rem; font-weight: 500; }
.trust-link {
  color: var(--stone-100); font-size: .9rem; font-weight: 500;
  border-bottom: 1px solid rgba(242, 239, 231, .34); padding-bottom: 1px;
  transition: color .3s, border-color .3s;
}
.trust-link:hover { color: var(--copper-400); border-color: var(--copper-400); }
.trust-div { width: 1px; height: 17px; background: rgba(242, 239, 231, .22); }
@media (max-width: 700px) { .trust-div { display: none; } }

/* ═══ SHOP ═══════════════════════════════════════════════════════════════════ */
.shop { position: relative; padding: 7rem 0; background: var(--stone-50); overflow: hidden; }

.shop-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3.4rem; }
@media (min-width: 780px)  { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }

.shop-card {
  position: relative; overflow: hidden;
  background: var(--stone-100);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 2.1rem;
  transition: transform .42s var(--ease), box-shadow .42s;
}
.shop-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
@media (prefers-reduced-motion: reduce) { .shop-card:hover { transform: none; } }
.shop-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-river);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.shop-card:hover::before { transform: scaleX(1); }

.shop-tag {
  position: absolute; top: 1.5rem; right: 1.7rem;
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--current-500); opacity: .3; letter-spacing: .06em;
}
.shop-icon { width: 46px; height: 46px; margin-bottom: 1.4rem; color: var(--current-600); }
.shop-card h3 {
  font-size: 1.62rem; text-transform: uppercase; letter-spacing: .02em;
  line-height: 1.05; margin-bottom: .8rem; padding-right: 2.2rem;
}
.shop-card p { font-size: .96rem; color: var(--river-800); opacity: .88; }

.shop-note {
  margin-top: 2.6rem; padding: 1.35rem 1.6rem;
  background: var(--stone-100);
  border-left: 3px solid var(--copper-500);
  border-radius: 0 12px 12px 0;
  font-size: .92rem; color: var(--river-800); max-width: 64ch;
}

/* ═══ WHY ════════════════════════════════════════════════════════════════════ */
.why { padding: 7rem 0; background: var(--stone-100); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 2.8rem; margin-top: 3.4rem; }
@media (min-width: 880px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 2.4rem; } }
.why-num {
  display: block; font-family: var(--font-display); font-size: 3.6rem;
  color: var(--copper-500); opacity: .34; line-height: 1; margin-bottom: .5rem;
  letter-spacing: .04em;
}
.why-card h3 {
  font-size: 1.55rem; text-transform: uppercase; letter-spacing: .02em;
  line-height: 1.05; margin-bottom: .85rem;
}
.why-card p { font-size: .96rem; color: var(--river-800); opacity: .88; }

/* ═══ TESTIMONIALS ═══════════════════════════════════════════════════════════ */
.testimonials { padding: 7rem 0; background: var(--grad-deep); }
.testimonials .eyebrow { color: var(--current-300); }
.testimonials .section-h2 { color: var(--stone-50); }
.testimonials .section-h2 em { color: var(--copper-400); }

/* Left-aligned to sit under the heading rather than floating centred away from it. */
.tst-carousel { max-width: 800px; margin: 3.2rem 0 0; }
/* Height is set per-slide by JS so short quotes don't leave a gap under them.
   Falls back to natural (tallest-slide) height with JS off. */
.tst-viewport { overflow: hidden; transition: height .55s var(--ease); }
/* flex-start, not the default stretch: stretched slides all report the tallest
   slide's height, which would defeat the per-slide height measurement in main.js. */
.tst-track { display: flex; align-items: flex-start; transition: transform .7s cubic-bezier(.55, 0, .25, 1); }
.tst-slide { flex: 0 0 100%; min-width: 0; padding: 0 .4rem; }
.tst-stars { color: var(--copper-400); letter-spacing: .12em; margin-bottom: 1.4rem; font-size: .9rem; }
.tst-quote {
  font-family: var(--font-body); font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem); line-height: 1.65;
  color: var(--stone-50); text-wrap: pretty;
}
.tst-attr {
  margin-top: 1.5rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--current-300);
}

.tst-controls { display: flex; align-items: center; gap: 1.4rem; margin-top: 2.4rem; }
.tst-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(242, 239, 231, .28); background: transparent;
  color: var(--stone-50); cursor: pointer;
  transition: border-color .3s, color .3s, transform .3s var(--ease);
}
.tst-arrow:hover { border-color: var(--copper-400); color: var(--copper-400); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .tst-arrow:hover { transform: none; } }
.tst-dots { display: flex; align-items: center; gap: .6rem; }
.tst-dot {
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%;
  background: rgba(242, 239, 231, .28); cursor: pointer;
  transition: background-color .35s, transform .35s var(--ease);
}
.tst-dot:hover { background: var(--copper-400); }
.tst-dot[aria-selected="true"] { background: var(--copper-400); transform: scale(1.5); }

/* ═══ VISIT ══════════════════════════════════════════════════════════════════ */
.visit { position: relative; padding: 7rem 0; background: var(--stone-50); overflow: hidden; }
.visit-grid { display: grid; grid-template-columns: 1fr; gap: 2.6rem; margin-top: 3.4rem; align-items: start; }
@media (min-width: 920px) { .visit-grid { grid-template-columns: .88fr 1.12fr; gap: 3.4rem; } }

.visit-block + .visit-block { margin-top: 2.1rem; }
.visit-block h3 {
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--current-600); margin-bottom: .6rem;
}
.visit-block p { font-size: 1.02rem; line-height: 1.7; }
.visit-block a { border-bottom: 1px solid var(--line); transition: color .3s, border-color .3s; }
.visit-block a:hover { color: var(--current-600); border-color: var(--current-600); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: .3rem; font-size: .97rem; }
.hours-table td { padding: .44rem 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td.closed { color: var(--river-800); opacity: .55; }
.hours-table tr.today td { color: var(--current-600); font-weight: 600; }

.hours-badge {
  display: inline-block; margin-top: 1.1rem; padding: .5rem 1.05rem;
  background: var(--stone-100); border: 1px solid var(--line); border-radius: 999px;
  font-size: .84rem; color: var(--river-800);
}
.hours-badge strong { font-weight: 600; }
.hours-badge.is-open strong { color: var(--current-600); }
.hours-badge.is-closed strong { color: var(--copper-600); }

.visit-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }

.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--sh-sm); background: var(--stone-100);
}
.map-wrap iframe { display: block; width: 100%; height: 460px; border: 0; }
@media (max-width: 620px) { .map-wrap iframe { height: 330px; } }

.map-caption {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: .5rem 1.2rem;
  padding: .85rem 1.15rem;
  border-top: 1px solid var(--line);
  background: var(--stone-100);
  font-size: .87rem; color: var(--river-800);
}
.map-caption a {
  font-weight: 600; color: var(--current-600); white-space: nowrap;
  border-bottom: 1px solid var(--line); transition: border-color .3s;
}
.map-caption a:hover { border-color: var(--current-600); }

/* ═══ FOOTER ═════════════════════════════════════════════════════════════════ */
.site-footer { background: var(--grad-deep); padding: 4rem 0 2rem; position: relative; }
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-river);
}
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 2.4rem; }
@media (min-width: 780px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; } }

.footer-logo {
  font-family: var(--font-display); font-size: 1.7rem; line-height: 1;
  letter-spacing: .03em; text-transform: uppercase; color: var(--stone-50);
  display: block;
}
.footer-logo em { font-style: normal; color: var(--current-300); }
.footer-logo-sub {
  font-size: .54rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(242, 239, 231, .5); display: block; margin-top: 5px;
}
.footer-brand p {
  margin-top: 1rem; font-size: .92rem; line-height: 1.65;
  color: rgba(242, 239, 231, .64); max-width: 36ch;
}
.footer-col h4 {
  font-family: var(--font-body); font-size: .7rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--copper-400); margin: 0 0 .9rem;
}
.footer-col a, .footer-col p {
  display: block; font-size: .93rem; color: rgba(242, 239, 231, .82); margin-bottom: .45rem;
}
.footer-col a:hover { color: var(--copper-400); }
.footer-copy {
  grid-column: 1 / -1; font-size: .8rem; color: rgba(242, 239, 231, .46);
  border-top: 1px solid rgba(242, 239, 231, .12);
  padding-top: 1.5rem; margin-top: .8rem;
}

/* ═══ REDUCED MOTION ═════════════════════════════════════════════════════════
   Everything that moves on its own stops. The current lines hold a still frame
   rather than disappearing, so the hero keeps its composition.
   ═══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .current-lines .cl { animation: none; transform: translateX(-600px); }
  .reveal { opacity: 1; transform: none; transition: none; }
  .tst-track, .tst-viewport { transition: none; }
  .mob-ov { transition: none; }
  .hbg span { transition: none; }
  .shop-card::before { transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
