/* Furuodden Camping — design system v3
   Single-page narrative. Bricolage Grotesque + Manrope. */

/* ── Self-hosted fonts (variable, weight 400–700) ──────── */
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-display: swap;
  src: url("/assets/fonts/bricolage-grotesque-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-display: swap;
  src: url("/assets/fonts/bricolage-grotesque-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Light is the default; dark values live in the second slot of
     each light-dark() and resolve from `color-scheme` (OS preference,
     or forced via <html data-theme="…"> set by theme.js). Tokens that
     are the SAME in both themes stay plain values. */
  color-scheme: light dark;

  /* Surfaces (light → dark) */
  /* Dark slot = "Google Grey": Google's neutral dark-grey surfaces
     (#202124 base, #303134 cards) + Google's text greys (#e8eaed /
     #bdc1c6 / #9aa0a6), with our terracotta + sage kept as brand
     accents so it still reads as Furuodden, not a generic grey UI. */
  --page:        light-dark(#f7f1de, #202124);   /* body / hero background — Google grey-900 */
  --bone:        #f7f1de;                          /* constant: light fg on dark/green/accent panels */
  --bone-soft:   light-dark(#f0e8cf, #282a2d);
  --bone-deep:   light-dark(#e5d9b3, #2a2b2e);     /* notice bar band */
  --paper:       light-dark(#fbf7e9, #303134);     /* cards (most elevated) — Google card grey */

  /* Text — Google's dark-mode greys */
  --ink:         light-dark(#0f1612, #e8eaed);     /* primary */
  --ink-soft:    light-dark(#2a322b, #bdc1c6);     /* secondary */
  --ink-mute:    light-dark(#565d56, #9aa0a6);     /* muted / meta */

  /* In dark mode headings drop the green and use Google's high-emphasis
     white (a hair brighter than body text) — green stays only on the
     forest sections + footer, which keep their clean deep-pine fill. */
  --forest:      light-dark(#1e3823, #f1f3f4);     /* heading text role — neutral white in dark */
  --forest-panel: light-dark(#1e3823, #223a30);    /* section--forest + ::selection — clean deep pine */
  --forest-deep: light-dark(#1e3823, #223a30);     /* footer background — same green as the forest sections */
  --moss:        light-dark(#5d6f54, #86a08c);

  /* Accents — terracotta lifted to a cleaner, luminous coral so it reads
     as a deliberate accent on grey rather than a dull burnt orange. */
  --rust:        light-dark(#99411e, #e88c6b);     /* links, eyebrows, filled-button bg */
  --rust-deep:   light-dark(#7d3617, #d6754f);     /* hover */
  --rust-soft:   #ec896a;                           /* constant: coral on green panels */
  --on-accent:   light-dark(#f7f1de, #202124);      /* fg on filled rust / ink chips */

  /* Misc */
  --stone:       light-dark(#b4ac8e, #6b6b66);
  --rule:        light-dark(#d4c9a3, #3c4043);      /* Google divider grey */
  --rule-soft:   light-dark(#e2d8b8, #34373b);

  /* Translucent tints (were hardcoded rgba before dark mode) */
  --topbar-bg:   light-dark(rgba(247, 241, 222, 0.86), rgba(32, 33, 36, 0.85));
  --hover-tint:  light-dark(rgba(196, 90, 43, 0.06), rgba(232, 234, 237, 0.07));
  --active-tint: light-dark(rgba(15, 22, 18, 0.08), rgba(232, 234, 237, 0.10));

  --display: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --sans:    "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  --topbar-h: 56px;
  --radius:   12px;
  --radius-lg: 20px;
}

/* Manual override from the topbar toggle (theme.js). Without an
   override, color-scheme: light dark above follows the OS setting. */
:root[data-theme="light"] { color-scheme: light; }
:root[data-theme="dark"]  { color-scheme: dark; }

/* Graceful fallback for browsers without light-dark() (pre-2024): pin
   every token to its light value so the site renders exactly as before.
   Dark mode simply doesn't engage there — no broken colours. */
@supports not (color: light-dark(#000, #fff)) {
  :root {
    --page:        #f7f1de;
    --bone-soft:   #f0e8cf;
    --bone-deep:   #e5d9b3;
    --paper:       #fbf7e9;
    --ink:         #0f1612;
    --ink-soft:    #2a322b;
    --ink-mute:    #565d56;
    --forest:      #1e3823;
    --forest-panel: #1e3823;
    --forest-deep: #1e3823;
    --moss:        #5d6f54;
    --rust:        #99411e;
    --rust-deep:   #7d3617;
    --on-accent:   #f7f1de;
    --stone:       #b4ac8e;
    --rule:        #d4c9a3;
    --rule-soft:   #e2d8b8;
    --topbar-bg:   rgba(247, 241, 222, 0.86);
    --hover-tint:  rgba(196, 90, 43, 0.06);
    --active-tint: rgba(15, 22, 18, 0.08);
  }
  .bo-card:hover  { box-shadow: 0 8px 24px rgba(15, 22, 18, 0.08); }
  .cookie-banner  { box-shadow: 0 8px 28px rgba(15, 22, 18, 0.18); }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  font-weight: 400;
  font-feature-settings: "kern", "liga", "ss01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
@media (min-width: 721px) { body { font-size: 17px; } }

a { color: inherit; text-decoration: none; }
/* Inline prose links (e.g. in the Plassen section text) need to read as links. */
.section-body a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.section-body a:hover { color: var(--rust-deep); }
/* Bus departure pills (Entur deep-links) under the Plassen text. */
.bus-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.section-body a.bus-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.55rem 1.05rem;
  background: var(--rust);
  color: var(--on-accent);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.section-body a.bus-link:hover {
  background: var(--rust-deep);
  color: var(--on-accent);
  transform: translateY(-1px);
}
::selection { background: var(--forest-panel); color: var(--bone); }
img { max-width: 100%; height: auto; display: block; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 3rem);
}
.wrap-narrow { max-width: 720px; }

/* ───────────────────────────────────────────────────────
   NOTICE BAR — site-wide advisory above topbar
   ─────────────────────────────────────────────────────── */
.notice-bar {
  background: var(--bone-deep);
  border-bottom: 1px solid var(--rule);
}
.notice-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem clamp(1.1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  flex-wrap: wrap;
  line-height: 1.4;
}
.notice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--rust);
  color: var(--on-accent);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--display);
  line-height: 1;
}
.notice-text {
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.notice-text strong { color: var(--ink); font-weight: 600; }
.notice-link {
  color: var(--rust);
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid var(--rust);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.notice-link:hover { opacity: 0.7; }
@media (max-width: 520px) {
  .notice-inner { font-size: 12.5px; gap: 0.6rem; padding: 0.6rem 1rem; }
  .notice-icon { width: 20px; height: 20px; font-size: 11px; }
}

/* ───────────────────────────────────────────────────────
   TOPBAR — always sticky, always visible
   ─────────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--topbar-bg);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--rule-soft);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: var(--topbar-h);
  padding: 0.5rem clamp(1.1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
}
.topbar-brand {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--forest);
  white-space: nowrap;
  transition: color 0.2s;
  font-variation-settings: "wdth" 100, "opsz" 24;
}
.topbar-brand:hover { color: var(--rust); }
.topbar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
}
.topbar-links a {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  color: var(--ink);
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.topbar-links a:hover { color: var(--rust); background: var(--hover-tint); }
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.55rem 1rem;
  background: var(--rust);
  color: var(--on-accent);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.topbar-cta:hover { background: var(--rust-deep); color: var(--on-accent); transform: translateY(-1px); }
.topbar-lang {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.topbar-lang a, .topbar-lang span {
  padding: 0.5rem 0.55rem;
  color: var(--ink-mute);
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.topbar-lang a:hover { color: var(--rust); }
.topbar-lang .active { color: var(--ink); background: var(--active-tint); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Dark-mode toggle (theme.js) — shows a moon in light mode and a sun in
   dark mode, i.e. the icon represents the action a click performs. */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  flex-shrink: 0;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.15s, background 0.15s, border-color 0.15s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.theme-toggle:hover {
  color: var(--rust);
  border-color: var(--rust);
  transform: translateY(-1px);
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 2px;
}
.theme-toggle svg { width: 18px; height: 18px; display: block; }
.theme-toggle .icon-sun { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
  :root:not([data-theme="light"]) .theme-toggle .icon-sun  { display: block; }
}
:root[data-theme="dark"]  .theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"]  .theme-toggle .icon-sun  { display: block; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }
:root[data-theme="light"] .theme-toggle .icon-sun  { display: none; }
@media (max-width: 520px) {
  .theme-toggle { width: 34px; height: 34px; }
}

@media (max-width: 720px) {
  .topbar-inner { padding: 0.4rem 1rem; gap: 0.35rem; }
  .topbar-links { order: 3; width: 100%; justify-content: center; border-top: 1px solid var(--rule-soft); padding-top: 0.3rem; margin-top: 0.3rem; font-size: 13px; gap: 0.05rem; }
  .topbar-links a { padding: 0.5rem 0.6rem; }
  .topbar-brand { font-size: 1rem; }
  .topbar-cta { padding: 0.45rem 0.8rem; font-size: 12.5px; }
  .topbar-lang { font-size: 11px; }
  .topbar-lang a, .topbar-lang span { padding: 0.4rem 0.45rem; }
}

/* ───────────────────────────────────────────────────────
   HERO — bold type, video below
   ─────────────────────────────────────────────────────── */
.hero {
  background: var(--page);
  position: relative;
  padding: clamp(2.5rem, 7vw, 5.5rem) 0 0;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 3rem);
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rust);
  display: inline-block;
}
.hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.6rem, 9vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0;
  max-width: 16ch;
  font-variation-settings: "wdth" 100, "opsz" 96;
}
.hero-title em {
  font-style: normal;
  color: var(--rust);
  font-weight: 500;
}
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 1.5rem 0 0;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 2rem 0 0;
  align-items: center;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.5rem 0;
}
.hero-phone strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hero-video-block {
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  position: relative;
  width: 100%;
  height: clamp(220px, 45vh, 540px);
  overflow: hidden;
  background: #0e1610;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  pointer-events: none;
}

/* ───────────────────────────────────────────────────────
   SECTIONS — alternating cream / paper / forest
   ─────────────────────────────────────────────────────── */
.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
  scroll-margin-top: calc(var(--topbar-h) + 1rem);
}
.section--paper { background: var(--paper); }
.section--soft  { background: var(--bone-soft); }
.section--forest {
  background: var(--forest-panel);
  color: var(--bone);
}
.section--forest .section-eyebrow { color: var(--rust-soft); }
.section--forest .section-title { color: var(--bone); }
.section--forest .section-lead { color: rgba(247, 241, 222, 0.82); }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  opacity: 0.7;
}
.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "wdth" 100, "opsz" 72;
}
.section-title em {
  font-style: normal;
  color: var(--rust);
  font-weight: 500;
}
.section-lead {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 1.25rem 0 0;
  font-weight: 400;
}
.section-body {
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.65;
}
.section-body p { margin: 0 0 1.1rem; }
.section-body p:last-child { margin-bottom: 0; }
.section-body strong { font-weight: 600; color: var(--ink); }

/* ───────────────────────────────────────────────────────
   QUICK STATS — 4 metrics row
   ─────────────────────────────────────────────────────── */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem 3rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 2rem 0;
  text-align: center;
}
.stat .number {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--forest);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 100, "opsz" 96;
}
.stat .number .unit {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--ink-mute);
  margin-left: 0.2em;
}
.stat .label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.5rem;
}
@media (min-width: 720px) {
  .stats { gap: 1.75rem 4rem; padding: 2.25rem 0; }
}
.section--forest .stats {
  border-color: rgba(247, 241, 222, 0.15);
}
.section--forest .stat .number { color: var(--bone); }
.section--forest .stat .label { color: rgba(247, 241, 222, 0.65); }

/* ───────────────────────────────────────────────────────
   ACCOMMODATION CARDS
   ─────────────────────────────────────────────────────── */
.bo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 760px) {
  .bo-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.bo-card {
  background: var(--paper);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--rule-soft);
}
.bo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px light-dark(rgba(15, 22, 18, 0.08), rgba(0, 0, 0, 0.5));
}
.bo-card .type {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
}
.bo-card h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 500;
  margin: 0;
  color: var(--forest);
  letter-spacing: -0.018em;
  line-height: 1.05;
  font-variation-settings: "wdth" 100, "opsz" 24;
}
.bo-card .price {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: flex;
  align-baseline: baseline;
  align-items: baseline;
  gap: 0.3em;
}
.bo-card .price .from {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bo-card .price .nightly {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0;
  text-transform: none;
}
.bo-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
.bo-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}
.bo-card ul li {
  font-size: 0.92rem;
  color: var(--ink-mute);
  display: flex;
  align-items: baseline;
  gap: 0.5em;
}
.bo-card ul li::before {
  content: "—";
  color: var(--rust);
  flex-shrink: 0;
}

/* ───────────────────────────────────────────────────────
   FACILITY PILLS (under accommodation, fasiliteter row)
   ─────────────────────────────────────────────────────── */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.55rem 0.95rem;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.pill::before {
  content: "•";
  color: var(--rust);
  font-size: 1.2em;
  line-height: 1;
}
.section--forest .pill {
  background: rgba(247, 241, 222, 0.06);
  border-color: rgba(247, 241, 222, 0.18);
  color: rgba(247, 241, 222, 0.92);
}

/* ───────────────────────────────────────────────────────
   ACTIVITIES — bucketed by distance
   ─────────────────────────────────────────────────────── */
.act-bucket {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule-soft);
}
.act-bucket:first-of-type {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.act-bucket-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 1.25rem; /* h3 element styled by class — zero the UA heading margins */
}
.act-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) {
  .act-list { grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
}
.act-item h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
  color: var(--forest);
  letter-spacing: -0.012em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
}
.act-item p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--ink-mute);
  line-height: 1.5;
}
.act-item a {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 6px;
  padding: 4px 0;
  margin: -4px 0;
  transition: transform 0.2s;
}
.act-item a h4::after {
  content: "↗";
  font-family: var(--sans);
  font-size: 0.7em;
  font-weight: 600;
  color: var(--rust);
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
  position: relative;
  top: -0.15em;
}
.act-item a:hover h4 {
  color: var(--rust);
}
.act-item a:hover h4::after {
  opacity: 1;
  transform: translate(2px, -2px);
}
.section--forest .act-item h4 { color: var(--bone); }
.section--forest .act-item p { color: rgba(247, 241, 222, 0.72); }
.section--forest .act-bucket { border-color: rgba(247, 241, 222, 0.15); }
.section--forest .act-bucket-label { color: var(--rust-soft); }
.section--forest .section-title em { color: var(--rust-soft); }
.section--forest .act-item a h4::after { color: var(--rust-soft); }
.section--forest .act-item a:hover h4 { color: var(--rust-soft); }

/* ───────────────────────────────────────────────────────
   BOOKING CALLOUT
   ─────────────────────────────────────────────────────── */
.booking {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
@media (min-width: 720px) {
  .booking { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  /* Three booking paths (Campio / phone / self-service terminal) on the
     homepage. Scoped modifier so the E6 page's 2-card row stays 1fr 1fr. */
  .booking--triple { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.booking-card {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.booking-card .badge {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
}
.booking-card h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.018em;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.booking-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}
.booking-card .phone-big {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.booking-card .phone-big a { color: inherit; transition: color 0.2s; }
.booking-card .phone-big a:hover { color: var(--rust); }
.booking-card .name {
  font-family: var(--sans);
  color: var(--ink-mute);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ───────────────────────────────────────────────────────
   PRICE TABLE (booking section)
   ─────────────────────────────────────────────────────── */
.prices {
  margin-top: clamp(2rem, 4vw, 3rem);
}
.prices-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.97rem;
}
.prices-table th,
.prices-table td {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: baseline;
  text-align: left;
}
.prices-table th {
  font-family: var(--display);
  font-weight: 500;
  color: var(--forest);
  font-size: 1.15rem;
  letter-spacing: -0.012em;
}
.prices-table td.price {
  text-align: right;
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  font-size: 1.15rem;
  white-space: nowrap;
}
.prices-table tr:last-child th,
.prices-table tr:last-child td {
  border-bottom: 1px solid var(--rule);
}
.prices-table .sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.83rem;
  color: var(--ink-mute);
  font-weight: 400;
  margin-top: 0.15rem;
}

/* ───────────────────────────────────────────────────────
   MAP
   ─────────────────────────────────────────────────────── */
.map-frame {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  background: var(--bone-soft);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}
.map-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}
.map-caption {
  margin: 1rem 0 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
}
@media (min-width: 721px) {
  .map-frame { aspect-ratio: 16 / 7; }
}

/* ───────────────────────────────────────────────────────
   BUTTONS
   ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.95em 1.55em;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  min-height: 44px;
  cursor: pointer;
  white-space: nowrap;
}
.btn.primary {
  background: var(--rust);
  color: var(--on-accent);
  border-color: var(--rust);
}
.btn.primary:hover {
  background: var(--rust-deep);
  border-color: var(--rust-deep);
  transform: translateY(-1px);
}
.btn.secondary:hover {
  background: var(--ink);
  color: var(--on-accent);
  transform: translateY(-1px);
}
.btn.ghost {
  background: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}
.btn.ghost:hover {
  color: var(--rust);
  background: transparent;
}
.btn::after {
  content: "→";
  font-size: 15px;
  transition: transform 0.2s;
}
.btn:hover::after { transform: translateX(2px); }
.btn.ghost::after { display: none; }
.section--forest .btn.secondary {
  border-color: var(--bone);
  color: var(--bone);
}
.section--forest .btn.secondary:hover {
  background: var(--bone);
  color: var(--forest-panel);
}

/* ───────────────────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────────────────── */
footer.site {
  background: var(--forest-deep);
  color: rgba(247, 241, 222, 0.78);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--sans);
}
footer.site .wrap { padding: 0 clamp(1.1rem, 4vw, 3rem); }
footer.site .row1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 720px) {
  footer.site .row1 { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
}
footer.site .footer-logo {
  width: auto;
  height: 44px;
  display: block;
  margin: 0 0 0.8rem;
}
footer.site .tagline {
  font-size: 14px;
  line-height: 1.55;
  max-width: 32ch;
  color: rgba(247, 241, 222, 0.72);
}
footer.site .col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-soft);
  margin: 0 0 0.85rem;
}
footer.site ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 14px;
}
footer.site ul a {
  color: rgba(247, 241, 222, 0.85);
  transition: color 0.15s;
}
footer.site ul a:hover { color: var(--rust-soft); }
footer.site ul .footer-link-button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  color: rgba(247, 241, 222, 0.85);
  text-align: left;
  transition: color 0.15s;
}
footer.site ul .footer-link-button:hover { color: var(--rust-soft); }
footer.site .row2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 241, 222, 0.12);
  font-size: 12px;
  color: rgba(247, 241, 222, 0.64); /* ≥4.5:1 on the dark-mode footer green (#223a30) — WCAG AA */
}

/* ───────────────────────────────────────────────────────
   ANIMATIONS
   ─────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp 0.7s ease-out both; }
.reveal.d1 { animation-delay: 0s; }
.reveal.d2 { animation-delay: 0.1s; }
.reveal.d3 { animation-delay: 0.22s; }
.reveal.d4 { animation-delay: 0.34s; }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; } }

/* ───────────────────────────────────────────────────────
   COOKIE CONSENT BANNER (fixed bottom of viewport)
   ─────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 100;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px light-dark(rgba(15, 22, 18, 0.18), rgba(0, 0, 0, 0.6));
  padding: 1.25rem 1.5rem;
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--sans);
  animation: fadeUp 0.45s ease-out both;
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.cookie-text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.cookie-text a {
  color: var(--rust);
  border-bottom: 1px solid var(--rust);
  padding-bottom: 1px;
  font-weight: 600;
}
.cookie-text a:hover { color: var(--rust-deep); border-color: var(--rust-deep); }
.cookie-actions {
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13.5px;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}
.cookie-btn:hover { background: var(--ink); color: var(--on-accent); transform: translateY(-1px); }
.cookie-btn.cookie-accept {
  background: var(--rust);
  color: var(--on-accent);
  border-color: var(--rust);
}
.cookie-btn.cookie-accept:hover {
  background: var(--rust-deep);
  border-color: var(--rust-deep);
  color: var(--on-accent);
}
@media (max-width: 520px) {
  .cookie-banner { padding: 1rem 1.1rem; bottom: 0.6rem; left: 0.6rem; right: 0.6rem; }
  .cookie-text { font-size: 13.5px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; padding: 0.55rem 0.8rem; }
}

/* ───────────────────────────────────────────────────────
   MAP PLACEHOLDER (entire area is the button — click to load)
   ─────────────────────────────────────────────────────── */
.map-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse at top left, var(--bone-soft) 0%, var(--bone-deep) 100%);
  border: 0;
  font: inherit;
  color: inherit;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s, filter 0.25s;
}
.map-placeholder:hover {
  filter: brightness(0.97);
}
.map-placeholder:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: -4px;
}
.map-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  max-width: 380px;
  pointer-events: none;
}
.map-placeholder-text {
  margin: 0;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.map-placeholder-cta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.map-placeholder-cta::after {
  content: "→";
  font-size: 1.05em;
  transition: transform 0.2s;
}
.map-placeholder:hover .map-placeholder-cta::after {
  transform: translateX(3px);
}

/* ───────────────────────────────────────────────────────
   GALLERY — folder-driven photo grid + lightbox
   Rendered by assets/js/gallery.js from assets/gallery/manifest.json.
   ─────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: clamp(0.6rem, 1.4vw, 1rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.gallery-item { margin: 0; }
.gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  background: var(--bone-soft);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px light-dark(rgba(15, 22, 18, 0.12), rgba(0, 0, 0, 0.55));
  border-color: var(--rust);
}
.gallery-thumb:hover img { transform: scale(1.04); }
.gallery-thumb:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }
.gallery-item figcaption {
  margin-top: 0.5rem;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.4;
}
.gallery-status,
.gallery-empty {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink-mute);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.gallery-status[hidden],
.gallery-empty[hidden] { display: none; }

/* Lightbox overlay (dark regardless of theme) */
html.lb-open,
html.lb-open body { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(12, 16, 13, 0.92);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: fadeUp 0.2s ease-out both;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: min(1200px, 92vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: #0e1610;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(247, 241, 222, 0.1);
  color: #f7f1de;
  cursor: pointer;
  border-radius: 999px;
  font-family: var(--display);
  line-height: 1;
  transition: background 0.15s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(247, 241, 222, 0.22); }
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible { outline: 2px solid var(--rust-soft); outline-offset: 2px; }
.lightbox-close {
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  width: 44px; height: 44px;
  font-size: 1.9rem;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  font-size: 2.2rem;
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox-next { right: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: clamp(0.75rem, 3vw, 2rem);
  transform: translateX(-50%);
  max-width: min(680px, 88vw);
  margin: 0;
  padding: 0.5rem 1rem;
  text-align: center;
  font-family: var(--sans);
  font-size: 14px;
  color: #f7f1de;
  background: rgba(12, 16, 13, 0.55);
  border-radius: 999px;
}
.lightbox-caption[hidden] { display: none; }
.lightbox-count {
  position: absolute;
  top: clamp(0.85rem, 2vw, 1.6rem);
  left: clamp(0.85rem, 2vw, 1.6rem);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(247, 241, 222, 0.7);
}
@media (max-width: 520px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.8rem; }
  .lightbox-close { width: 40px; height: 40px; font-size: 1.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox { animation: none; }
  .gallery-thumb,
  .gallery-thumb img,
  .lightbox-nav,
  .lightbox-close { transition: none; }
}
