/* =================================================================
   Femund Canoe Camp
   No external requests: no CDN fonts, no analytics, no embeds.
   ================================================================= */

/* ---------- tokens ---------- */
:root {
  --spruce-900: #08130f;
  --spruce-800: #0d1c18;
  --spruce-700: #12271f;
  --spruce-600: #1a382d;
  --teal-600: #146b57;
  --teal-500: #1c8a6e;
  --teal-400: #2fae8b;
  --teal-300: #6fd3b4;
  --teal-200: #a8e6d2;
  --amber-500: #c2793c;
  --amber-400: #d9954f;
  --sand-100: #f7f3ea;
  --sand-200: #efe7d8;
  --sand-300: #e0d3bd;
  --stone-500: #6d7a72;

  --bg: var(--sand-100);
  --bg-2: #fffdf8;
  --bg-3: var(--sand-200);
  --ink: #0f221c;
  --ink-2: #3d4f47;
  --ink-3: #6d7a72;
  --line: #ddd2bd;
  --line-2: #cfc2a9;
  --accent: var(--teal-600);
  --accent-ink: #fff;
  --accent-soft: #e3f2ec;
  --warm: var(--amber-500);
  --card: #fffdf8;
  --shadow: 0 1px 2px rgb(15 34 28 / .05), 0 10px 30px -12px rgb(15 34 28 / .16);
  --shadow-lg: 0 2px 4px rgb(15 34 28 / .06), 0 30px 60px -20px rgb(15 34 28 / .28);

  --map-land: #eee6d5;
  --map-pine: #b9c9ae;
  --map-water-a: #a8cfe0;
  --map-water-b: #7fb4cc;
  --map-water: #93c3d8;
  --map-park: #cfdcc0;
  --map-ink: #4a5c52;

  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1200px;
  --gap: clamp(1rem, 2.4vw, 2rem);
  --sec: clamp(3.5rem, 8vw, 7rem);
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* dark palette */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) {
    color-scheme: dark;
    --bg: var(--spruce-800);
    --bg-2: var(--spruce-700);
    --bg-3: var(--spruce-900);
    --ink: #e9f2ed;
    --ink-2: #b3c4bb;
    --ink-3: #8b9c93;
    --line: #244135;
    --line-2: #2f5647;
    --accent: var(--teal-300);
    --accent-ink: #06221a;
    --accent-soft: #14332a;
    --warm: var(--amber-400);
    --card: #102520;
    --shadow: 0 1px 2px rgb(0 0 0 / .3), 0 12px 34px -14px rgb(0 0 0 / .6);
    --shadow-lg: 0 2px 6px rgb(0 0 0 / .35), 0 34px 70px -24px rgb(0 0 0 / .7);
    --map-land: #17322a;
    --map-pine: #29513f;
    --map-water-a: #1c4f66;
    --map-water-b: #12384a;
    --map-water: #17435a;
    --map-park: #1e3f30;
    --map-ink: #9fb6aa;
  }
}
:root[data-theme=dark] {
  color-scheme: dark;
  --bg: var(--spruce-800);
  --bg-2: var(--spruce-700);
  --bg-3: var(--spruce-900);
  --ink: #e9f2ed;
  --ink-2: #b3c4bb;
  --ink-3: #8b9c93;
  --line: #244135;
  --line-2: #2f5647;
  --accent: var(--teal-300);
  --accent-ink: #06221a;
  --accent-soft: #14332a;
  --warm: var(--amber-400);
  --card: #102520;
  --shadow: 0 1px 2px rgb(0 0 0 / .3), 0 12px 34px -14px rgb(0 0 0 / .6);
  --shadow-lg: 0 2px 6px rgb(0 0 0 / .35), 0 34px 70px -24px rgb(0 0 0 / .7);
  --map-land: #17322a;
  --map-pine: #29513f;
  --map-water-a: #1c4f66;
  --map-water-b: #12384a;
  --map-water: #17435a;
  --map-park: #1e3f30;
  --map-ink: #9fb6aa;
}
:root[data-theme=light] { color-scheme: light; }

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; background-repeat: no-repeat; background-size: cover; background-position: center; }
a { color: inherit; text-decoration-color: color-mix(in oklab, currentColor 35%, transparent); text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent); color: var(--accent-ink); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; text-wrap: balance; }
p { text-wrap: pretty; }

/* Class-based display rules outrank the UA [hidden] rule, so pin it. */
[hidden] { display: none !important; }

.wrap { width: min(100% - 2.2rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--sec); }
.vh { position: absolute!important; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip { position: absolute; left: 1rem; top: -100px; z-index: 200; background: var(--accent); color: var(--accent-ink); padding: .7rem 1.1rem; border-radius: var(--r-sm); transition: top .2s; }
.skip:focus { top: 1rem; }

.h2 { font-size: clamp(1.85rem, 1.2rem + 2.6vw, 3.2rem); }
.lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.28rem); color: var(--ink-2); max-width: 62ch; }
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; font-weight: 650; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .9rem;
}
.kicker .ic { width: 16px; height: 16px; }
.sechead { max-width: 68ch; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.sechead--center { max-width: none; text-align: center; }
.sechead--center .kicker { justify-content: center; }
.sechead--center .lead { margin-inline: auto; }

.ic { width: 20px; height: 20px; flex: none; }
.ic--sm { width: 15px; height: 15px; }
.ic--rot { transform: rotate(-90deg); width: 14px; height: 14px; opacity: .5; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--accent); --btn-fg: var(--accent-ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .82rem 1.5rem; border: 1.5px solid transparent; border-radius: 100px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  box-shadow: 0 1px 2px rgb(0 0 0/.08);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px -10px color-mix(in oklab, var(--accent) 65%, transparent); }
.btn:active { transform: translateY(0); }
.btn .ic { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.btn:hover .ic { transform: translateX(3px); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: none; }
.btn--sm { padding: .58rem 1.05rem; font-size: .875rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--full { width: 100%; }

.lnk {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; color: var(--accent); text-decoration: none;
  border-bottom: 1.5px solid color-mix(in oklab, var(--accent) 35%, transparent);
  padding-bottom: 2px; transition: gap .2s var(--ease), border-color .2s;
}
.lnk:hover { gap: .7rem; border-color: var(--accent); }
.lnk .ic { width: 16px; height: 16px; }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.hdr.is-stuck { border-bottom-color: var(--line); }
.hdr__in { width: min(100% - 2.2rem, 1360px); margin-inline: auto; display: flex; align-items: center; gap: 1.2rem; height: 72px; }
/* The logo ships as white-on-transparent PNG; masking recolours it per theme. */
.logomark {
  display: block; width: 132px; height: 50px; background: var(--ink);
  -webkit-mask: url(/i/logo-800.webp) no-repeat center / contain;
  mask: url(/i/logo-800.webp) no-repeat center / contain;
}
.hdr__logo { flex: none; display: block; }
.logomark--ftr { width: 160px; height: 60px; background: #eef5f1; }

.hdr__nav { margin-inline: auto; }
.hdr__nav ul { display: flex; gap: .15rem; list-style: none; padding: 0; }
.hdr__nav a {
  display: block; padding: .5rem .72rem; border-radius: 100px;
  font-size: .9rem; font-weight: 550; text-decoration: none; color: var(--ink-2);
  transition: color .2s, background .2s;
}
.hdr__nav a:hover { color: var(--ink); background: color-mix(in oklab, var(--ink) 6%, transparent); }
.hdr__nav a[aria-current=page] { color: var(--accent); background: var(--accent-soft); }
@media (max-width: 1120px) { .hdr__nav { display: none; } }

.hdr__tools { display: flex; align-items: center; gap: .45rem; margin-left: auto; }
@media (min-width: 1121px) { .hdr__tools { margin-left: 0; } }

.iconbtn {
  display: grid; place-items: center; width: 40px; height: 40px;
  border: 1px solid var(--line); border-radius: 100px; background: transparent; cursor: pointer;
  color: var(--ink-2); transition: border-color .2s, color .2s, background .2s;
}
.iconbtn:hover { color: var(--accent); border-color: var(--accent); }
.ic--moon, .ic--x { display: none; }
:root[data-theme=dark] .ic--sun { display: none; }
:root[data-theme=dark] .ic--moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .ic--sun { display: none; }
  :root:not([data-theme=light]) .ic--moon { display: block; }
}
.hdr__burger { display: none; }
@media (max-width: 1120px) { .hdr__burger { display: grid; } }
body.menu-open .ic--menu { display: none; }
body.menu-open .ic--x { display: block; }

/* language menu */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: .35rem; height: 40px; padding: 0 .7rem;
  border: 1px solid var(--line); border-radius: 100px; background: transparent; cursor: pointer;
  font-size: .82rem; font-weight: 650; letter-spacing: .04em; color: var(--ink-2);
  transition: border-color .2s, color .2s;
}
.lang__btn:hover { color: var(--accent); border-color: var(--accent); }
.lang__btn .ic { width: 16px; height: 16px; }
.lang__menu {
  position: absolute; top: calc(100% + .5rem); right: 0; z-index: 20;
  min-width: 190px; padding: .35rem; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--card); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px) scale(.98);
  transition: opacity .18s, transform .18s var(--ease), visibility .18s;
}
.lang[data-open] .lang__menu { opacity: 1; visibility: visible; transform: none; }
.lang__menu a {
  display: flex; align-items: baseline; gap: .6rem; padding: .5rem .7rem;
  border-radius: var(--r-sm); text-decoration: none; font-size: .92rem; color: var(--ink-2);
}
.lang__menu a:hover { background: var(--accent-soft); color: var(--ink); }
.lang__menu a[aria-current] { color: var(--accent); font-weight: 650; }
.lang__code { font-size: .72rem; font-weight: 700; letter-spacing: .08em; opacity: .65; width: 1.8em; }
@media (max-width: 640px) { .lang { display: none; } .hdr__cta { display: none; } }

/* mobile menu */
.mnav {
  position: fixed; inset: 72px 0 0; z-index: 99; overflow-y: auto;
  padding: 1.6rem 1.4rem 4rem; background: var(--bg);
  animation: mnavIn .3s var(--ease);
}
@keyframes mnavIn { from { opacity: 0; transform: translateY(-10px); } }
.mnav ul { list-style: none; padding: 0; }
.mnav ul a {
  display: block; padding: .85rem 0; border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: 1.5rem; text-decoration: none;
}
.mnav ul a[aria-current=page] { color: var(--accent); }
.mnav__langs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; }
.mnav__langs a {
  display: flex; gap: .4rem; padding: .5rem .9rem; border: 1px solid var(--line);
  border-radius: 100px; font-size: .88rem; text-decoration: none;
}
.mnav__langs a[aria-current] { border-color: var(--accent); color: var(--accent); }
.mnav__langs .lang__name { display: none; }
.mnav__contact { display: grid; gap: .6rem; margin-top: 1.8rem; }
.mnav__contact a { display: flex; align-items: center; gap: .6rem; color: var(--ink-2); text-decoration: none; }
body.menu-open { overflow: hidden; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(94svh, 900px); display: grid; align-items: end; isolation: isolate; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s ease; }
.hero__slide.is-on { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; animation: kb 22s ease-out both; }
.hero__slide.is-on img { animation-play-state: running; }
@keyframes kb { from { transform: scale(1.02); } to { transform: scale(1.14); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgb(6 18 15/.55) 0%, rgb(6 18 15/.12) 34%, rgb(6 18 15/.55) 72%, rgb(6 18 15/.88) 100%),
    radial-gradient(120% 80% at 20% 100%, rgb(6 18 15/.55), transparent 60%);
}
.hero__in { padding-block: clamp(3rem, 12vh, 8rem) clamp(4.5rem, 10vh, 7rem); color: #fff; position: relative; }
.hero__h {
  font-size: clamp(2.9rem, 1.4rem + 7.4vw, 7.2rem);
  line-height: .95; letter-spacing: -.035em; text-shadow: 0 2px 40px rgb(0 0 0/.4);
}
.hero__h span { display: inline-block; animation: heroWord .9s var(--ease) both; animation-delay: calc(var(--i) * .13s + .1s); }
@keyframes heroWord { from { opacity: 0; transform: translateY(.5em) rotate(1.5deg); filter: blur(6px); } }
.hero__p {
  max-width: 46ch; margin-top: 1.3rem; font-size: clamp(1.05rem, 1rem + .45vw, 1.4rem);
  color: rgb(255 255 255/.9); text-shadow: 0 1px 20px rgb(0 0 0/.5);
  animation: heroWord 1s var(--ease) .55s both;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; animation: heroWord 1s var(--ease) .75s both; }
.hero .btn--ghost { --btn-fg: #fff; border-color: rgb(255 255 255/.45); backdrop-filter: blur(6px); }
.hero .btn--ghost:hover { background: rgb(255 255 255/.12); border-color: #fff; color: #fff; }
.hero__dots { position: absolute; bottom: 1.5rem; right: max(1.1rem, calc(50vw - var(--wrap) / 2)); display: flex; gap: .5rem; z-index: 2; }
.hero__dots button {
  width: 30px; height: 4px; padding: 0; border: 0; border-radius: 4px; cursor: pointer;
  background: rgb(255 255 255/.35); transition: background .3s, width .3s var(--ease);
}
.hero__dots button[aria-selected=true] { background: #fff; width: 46px; }

/* ---------- trust ---------- */
.trust { background: var(--bg-2); border-block: 1px solid var(--line); }
.trust__in { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__i { padding: clamp(1.4rem, 3vw, 2.4rem) 1rem; text-align: center; }
.trust__i + .trust__i { border-left: 1px solid var(--line); }
.trust__i b { display: block; font-family: var(--serif); font-size: clamp(1.7rem, 1rem + 2.4vw, 2.9rem); line-height: 1; color: var(--accent); }
.trust__i span { display: block; margin-top: .4rem; font-size: .82rem; color: var(--ink-3); letter-spacing: .01em; }
@media (max-width: 700px) {
  .trust__in { grid-template-columns: 1fr 1fr; }
  .trust__i:nth-child(3), .trust__i:nth-child(4) { border-top: 1px solid var(--line); }
  .trust__i:nth-child(3) { border-left: 0; }
}

/* ---------- intro ---------- */
.intro__in { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.intro__txt p { margin-top: 1.1rem; color: var(--ink-2); font-size: 1.06rem; }
.intro__media { position: relative; }
.intro__media img:first-child { border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.intro__pip {
  position: absolute; right: -6%; bottom: -8%; width: 44%;
  border-radius: var(--r-lg); border: 6px solid var(--bg); box-shadow: var(--shadow-lg);
}
@media (max-width: 860px) { .intro__in { grid-template-columns: 1fr; } .intro__pip { width: 38%; right: 2%; } }

/* ---------- offers ---------- */
.offers { background: var(--bg-2); }
.offers__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 1.1rem; }
.offer {
  position: relative; display: block; overflow: hidden; border-radius: var(--r-lg);
  text-decoration: none; isolation: isolate; background: var(--spruce-800);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.offer:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s; }
.offer:hover .offer__media img { transform: scale(1.06); }
.offer::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgb(6 18 15/.55) 62%, rgb(6 18 15/.94) 100%);
}
.offer__body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.4rem; color: #fff; }
.offer__body h3 { font-size: 1.55rem; }
.offer__body p { margin-top: .45rem; font-size: .9rem; color: rgb(255 255 255/.82); line-height: 1.5;
  max-height: 0; opacity: 0; overflow: hidden; transition: max-height .45s var(--ease), opacity .35s, margin .45s var(--ease); }
.offer:hover .offer__body p, .offer:focus-visible .offer__body p { max-height: 8rem; opacity: 1; }
.offer__go { display: inline-flex; align-items: center; gap: .4rem; margin-top: .8rem; font-size: .82rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-300); }
.offer__go .ic { width: 15px; height: 15px; }
@media (hover: none) { .offer__body p { max-height: 8rem; opacity: 1; } }

/* ---------- trip planner ---------- */
.planner { background: var(--bg-3); }
.planner__grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: clamp(1.5rem, 3vw, 2.6rem); align-items: start; }
@media (max-width: 1000px) { .planner__grid { grid-template-columns: 1fr; } }

.step { border: 0; padding: 0; margin: 0 0 2.1rem; }
.step legend {
  display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; padding: 0;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
}
.step__n {
  display: grid; place-items: center; width: 30px; height: 30px; flex: none;
  border-radius: 100px; background: var(--accent); color: var(--accent-ink);
  font-family: var(--sans); font-size: .82rem; font-weight: 700;
}
.step__note { margin-top: .7rem; font-size: .86rem; color: var(--warm); font-weight: 550; }

.picks { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); gap: .7rem; }
.pick {
  position: relative; display: flex; flex-direction: column; overflow: hidden; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: var(--r); background: var(--card);
  transition: border-color .2s, box-shadow .25s var(--ease), transform .25s var(--ease);
}
.pick:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick__media img { width: 100%; object-fit: cover; }
.pick__body { display: flex; flex-direction: column; gap: .3rem; padding: .85rem .95rem 1rem; }
.pick__name { font-weight: 650; font-size: 1.02rem; }
.pick__blurb { font-size: .8rem; line-height: 1.45; color: var(--ink-3); }
.pick__price { margin-top: auto; padding-top: .5rem; font-size: .84rem; color: var(--ink-2); }
.pick__price b { font-size: 1.05rem; color: var(--accent); }
.pick__tick {
  position: absolute; top: .6rem; right: .6rem; display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 100px; border: 1.5px solid var(--line-2);
  background: color-mix(in oklab, var(--card) 80%, transparent); color: transparent;
  transition: background .2s, color .2s, border-color .2s, transform .25s var(--ease);
}
.pick__tick .ic { width: 15px; height: 15px; }
.pick:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 18%, transparent); }
.pick:has(input:checked) .pick__tick { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); transform: scale(1.08); }
.pick:has(input:focus-visible) { outline: 2.5px solid var(--accent); outline-offset: 3px; }
.pick--none { flex-direction: row; align-items: center; align-self: start; min-height: 68px; }
.pick--none .pick__body { padding: 1rem 3rem 1rem 1rem; }

.qty { display: flex; align-items: center; gap: .5rem; margin-top: .9rem; }
.qty__label { margin-right: .3rem; font-size: .88rem; color: var(--ink-3); }
.qty__b {
  width: 34px; height: 34px; border: 1.5px solid var(--line-2); border-radius: 100px;
  background: var(--card); cursor: pointer; font-size: 1.1rem; line-height: 1;
  transition: border-color .2s, color .2s;
}
.qty__b:hover { border-color: var(--accent); color: var(--accent); }
.qty output { min-width: 2ch; text-align: center; font-weight: 650; }

.fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 1.1rem; }
.field label { display: block; margin-bottom: .45rem; font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.field input[type=date] {
  width: 100%; padding: .62rem .8rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--card);
}
.range { display: flex; align-items: center; gap: .9rem; }
.range output {
  min-width: 2.6ch; text-align: center; font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--accent);
}
input[type=range] { flex: 1; -webkit-appearance: none; appearance: none; height: 26px; background: transparent; cursor: pointer; }
input[type=range]::-webkit-slider-runnable-track { height: 5px; border-radius: 6px; background: var(--line-2); }
input[type=range]::-moz-range-track { height: 5px; border-radius: 6px; background: var(--line-2); }
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; margin-top: -8.5px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--card); box-shadow: 0 2px 8px rgb(0 0 0/.22);
}
input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--accent);
  border: 3px solid var(--card); box-shadow: 0 2px 8px rgb(0 0 0/.22);
}

.chips { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: .6rem; }
.chip {
  position: relative; display: flex; align-items: center; gap: .7rem; padding: .7rem .85rem; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: var(--r); background: var(--card);
  transition: border-color .2s, background .2s, transform .2s var(--ease);
}
.chip:hover { transform: translateY(-2px); border-color: var(--line-2); }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip__ic { display: grid; place-items: center; width: 34px; height: 34px; flex: none; border-radius: 9px; background: var(--accent-soft); color: var(--accent); }
.chip__ic .ic { width: 18px; height: 18px; }
.chip__txt { display: flex; flex-direction: column; min-width: 0; }
.chip__name { font-size: .92rem; font-weight: 600; }
.chip__note { font-size: .74rem; color: var(--ink-3); line-height: 1.35; }
.chip__price { margin-left: auto; font-size: .85rem; font-weight: 650; color: var(--ink-2); white-space: nowrap; }
.chip:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.chip:has(input:checked) .chip__ic { background: var(--accent); color: var(--accent-ink); }
.chip:has(input:focus-visible) { outline: 2.5px solid var(--accent); outline-offset: 3px; }

.planner__sum { position: sticky; top: 92px; }
.sum__card { padding: 1.4rem; border: 1.5px solid var(--line); border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow); }
.sum__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line); }
.sum__head h3 { font-size: 1.3rem; }
.sum__cur select {
  padding: .35rem .5rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg-2); font-size: .82rem; font-weight: 650; cursor: pointer;
}
.sum__lines { list-style: none; padding: .9rem 0 0; margin: 0; display: grid; gap: .55rem; min-height: 3rem; }
.sum__lines li { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; }
.sum__lines li span:first-child { color: var(--ink-2); }
.sum__lines li b { font-weight: 600; white-space: nowrap; }
.sum__lines .empty { color: var(--ink-3); font-style: italic; display: block; }
.sum__save {
  margin-top: .8rem; padding: .6rem .8rem; border-radius: var(--r-sm);
  background: var(--accent-soft); color: var(--accent); font-size: .85rem; font-weight: 600;
  display: flex; justify-content: space-between; gap: .5rem;
}
.sum__total {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-top: 1rem; padding-top: 1rem; border-top: 1.5px solid var(--line);
}
.sum__total span { font-size: .88rem; font-weight: 600; color: var(--ink-2); }
.sum__total strong { font-family: var(--serif); font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.4rem); color: var(--accent); letter-spacing: -.02em; }
.sum__cta { display: grid; gap: .55rem; margin-top: 1.1rem; }
.sum__note { margin-top: .9rem; font-size: .74rem; line-height: 1.5; color: var(--ink-3); }

/* ---------- region map ---------- */
.mapsec { background: var(--bg-2); }
.mapsec__grid { display: grid; grid-template-columns: 300px minmax(0, 1fr) 380px; gap: clamp(1.2rem, 2.4vw, 2.2rem); align-items: start; }
@media (max-width: 1180px) { .mapsec__grid { grid-template-columns: 280px minmax(0, 1fr); } .mapsec__det { grid-column: 1 / -1; } }
@media (max-width: 760px) { .mapsec__grid { grid-template-columns: 1fr; } .mapsec__map { order: -1; } }

.mapsec__list { display: grid; gap: .35rem; max-height: 620px; overflow-y: auto; padding-right: .3rem; }
.rte {
  display: flex; gap: .75rem; width: 100%; padding: .7rem .8rem; text-align: left; cursor: pointer;
  border: 1.5px solid transparent; border-radius: var(--r); background: transparent;
  transition: background .2s, border-color .2s;
}
.rte:hover { background: var(--bg-3); }
.rte[aria-pressed=true] { background: var(--card); border-color: var(--accent); }
.rte__n { font-family: var(--serif); font-size: .95rem; color: var(--ink-3); padding-top: .1rem; }
.rte[aria-pressed=true] .rte__n { color: var(--accent); }
.rte__title { display: block; font-weight: 600; font-size: .96rem; line-height: 1.3; }
.rte__meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .3rem; font-size: .76rem; color: var(--ink-3); }
.lvl { padding: .1rem .5rem; border-radius: 100px; font-size: .7rem; font-weight: 650; letter-spacing: .02em; }
.lvl--1 { background: #d8efe2; color: #14614a; }
.lvl--2 { background: #dceadb; color: #3c6330; }
.lvl--3 { background: #f2e8cf; color: #7a5a1c; }
.lvl--4 { background: #f6dfd0; color: #8b4a22; }
.lvl--5 { background: #f2d6d6; color: #8f2f2f; }
:root[data-theme=dark] .lvl--1 { background: #12463a; color: #9fe4cb; }
:root[data-theme=dark] .lvl--2 { background: #22482c; color: #b6dea9; }
:root[data-theme=dark] .lvl--3 { background: #4a3d1a; color: #e8cf90; }
:root[data-theme=dark] .lvl--4 { background: #52301c; color: #f0bb95; }
:root[data-theme=dark] .lvl--5 { background: #4d2222; color: #f0a9a9; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .lvl--1 { background: #12463a; color: #9fe4cb; }
  :root:not([data-theme=light]) .lvl--2 { background: #22482c; color: #b6dea9; }
  :root:not([data-theme=light]) .lvl--3 { background: #4a3d1a; color: #e8cf90; }
  :root:not([data-theme=light]) .lvl--4 { background: #52301c; color: #f0bb95; }
  :root:not([data-theme=light]) .lvl--5 { background: #4d2222; color: #f0a9a9; }
}

.mapsec__map { border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid var(--line); background: var(--map-land); }
.map { width: 100%; height: auto; }
.mpark { fill: var(--map-park); opacity: .75; stroke: none; }
.mwater { fill: url(#water); stroke: color-mix(in oklab, var(--map-ink) 30%, transparent); stroke-width: 1.5; }
.mriver { fill: none; stroke: var(--map-water); stroke-width: 5; stroke-linecap: round; }
.mroad { fill: none; stroke: color-mix(in oklab, var(--map-ink) 40%, transparent); stroke-width: 2.5; stroke-dasharray: 1 9; stroke-linecap: round; }
.mborder { fill: none; stroke: color-mix(in oklab, var(--map-ink) 55%, transparent); stroke-width: 2; stroke-dasharray: 14 6 3 6; }
.mroute {
  fill: none; stroke: var(--accent); stroke-width: 8; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transition: opacity .4s;
}
.mroute.is-on {
  opacity: 1;
  stroke-dasharray: var(--len); stroke-dashoffset: var(--len);
  animation: draw 1.5s var(--ease) forwards;
  filter: drop-shadow(0 2px 6px color-mix(in oklab, var(--accent) 55%, transparent));
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.mlabel { font-family: var(--sans); font-size: 15px; fill: var(--map-ink); font-weight: 600; letter-spacing: .02em; }
.mlabel--park { font-size: 17px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; fill: color-mix(in oklab, var(--map-ink) 82%, transparent); }
.mlabel--lake, .mlabel--area { font-size: 16px; font-style: italic; fill: color-mix(in oklab, var(--map-ink) 85%, transparent); }
.mlabel--femund { font-size: 22px; font-weight: 700; letter-spacing: .3em; fill: #14526e; }
:root[data-theme=dark] .mlabel--femund { fill: #a8d8ee; }
@media (prefers-color-scheme: dark) { :root:not([data-theme=light]) .mlabel--femund { fill: #a8d8ee; } }
.mlabel--border { font-size: 15px; letter-spacing: .3em; fill: color-mix(in oklab, var(--map-ink) 60%, transparent); }
.mlabel--camp { font-size: 19px; font-weight: 700; fill: var(--accent); }
.mlabel--n { font-size: 13px; font-weight: 700; fill: var(--map-ink); }
.mpin__sm { fill: var(--map-ink); }
.mpin__dot { fill: var(--accent); stroke: var(--bg-2); stroke-width: 3; }
.mpin__pulse { fill: var(--accent); opacity: .22; animation: pulse 3s ease-out infinite; }
@keyframes pulse { 0% { r: 10; opacity: .35; } 70% { r: 26; opacity: 0; } 100% { opacity: 0; } }
.mrose__ring { fill: none; stroke: color-mix(in oklab, var(--map-ink) 40%, transparent); stroke-width: 1.5; }
.mrose__n { fill: var(--map-ink); }

.rdet { padding: 1.2rem; border: 1.5px solid var(--line); border-radius: var(--r-lg); background: var(--card); animation: fadeUp .5s var(--ease); }
.rdet__media { margin: -1.2rem -1.2rem 1.1rem; overflow: hidden; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.rdet h3 { font-size: 1.45rem; }
.rdet__lead { margin-top: .5rem; font-weight: 550; color: var(--ink-2); }
.rdet p + p { margin-top: .7rem; font-size: .93rem; color: var(--ink-2); }
.rdet .lnk { margin-top: 1rem; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } }

/* ---------- how it works ---------- */
.how__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: clamp(1.4rem, 3vw, 3rem); list-style: none; padding: 0; counter-reset: s; }
.how__i { position: relative; padding-top: 2.4rem; border-top: 2px solid var(--line); }
.how__n { position: absolute; top: -1.1rem; left: 0; font-family: var(--serif); font-size: 3rem; line-height: 1; color: color-mix(in oklab, var(--accent) 32%, transparent); }
.how__i h3 { font-size: 1.35rem; }
.how__i p { margin-top: .6rem; color: var(--ink-2); font-size: .96rem; }

/* ---------- activities / nearby ---------- */
.acts { background: var(--bg-2); }
.acts__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: 1.4rem; }
.act__media { overflow: hidden; border-radius: var(--r); margin-bottom: .9rem; }
.act__media img { width: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.act:hover .act__media img { transform: scale(1.05); }
.act h3 { font-size: 1.25rem; }
.act p { margin-top: .4rem; font-size: .92rem; color: var(--ink-2); }

.near__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 1.2rem; }
.nea { padding: 1.3rem; border: 1.5px solid var(--line); border-radius: var(--r); background: var(--card); transition: transform .3s var(--ease), border-color .2s; }
.nea:hover { transform: translateY(-4px); border-color: var(--accent); }
.nea h3 { font-size: 1.15rem; }
.nea p { margin-top: .45rem; font-size: .9rem; color: var(--ink-2); }

/* ---------- season ---------- */
.season__rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr); gap: 1rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
.season__rail::-webkit-scrollbar { height: 6px; }
.season__rail::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 6px; }
.mon { scroll-snap-align: start; padding: 1.3rem; border: 1.5px solid var(--line); border-radius: var(--r); background: var(--card); }
.mon__m { font-family: var(--serif); font-size: 1.5rem; color: var(--accent); }
.mon__t { font-size: .8rem; font-weight: 650; letter-spacing: .06em; color: var(--ink-3); margin-bottom: .7rem; }
.mon h3 { font-size: 1.1rem; }
.mon p { margin-top: .4rem; font-size: .88rem; color: var(--ink-2); }

/* ---------- reviews ---------- */
.revs { background: var(--bg-3); }
.revs h2 { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.revs__score { font-size: clamp(2.6rem, 2rem + 3vw, 4.2rem); line-height: 1; }
.revs__meta { font-family: var(--sans); font-size: .88rem; font-weight: 500; letter-spacing: .02em; color: var(--ink-3); }
.stars { display: inline-flex; gap: .15rem; }
.star .ic { width: 26px; height: 26px; }
.star--full .ic { fill: var(--warm); stroke: var(--warm); }
.star--half .ic { fill: color-mix(in oklab, var(--warm) 45%, transparent); stroke: var(--warm); }
.star--empty .ic { fill: none; stroke: var(--line-2); }
.revs__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 1.2rem; }
.rev { margin: 0; padding: 1.5rem; border-radius: var(--r-lg); background: var(--card); border: 1.5px solid var(--line); }
.rev blockquote { font-family: var(--serif); font-size: 1.12rem; line-height: 1.5; }
.rev blockquote::before { content: "\201C"; color: var(--accent); }
.rev blockquote::after { content: "\201D"; color: var(--accent); }
.rev figcaption { margin-top: 1rem; font-size: .85rem; color: var(--ink-3); }
.rev figcaption b { display: block; color: var(--ink); font-size: .95rem; }
.revs__link { margin-top: 2rem; text-align: center; }

/* ---------- gift ---------- */
.gift__in { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.6rem, 4vw, 4rem); align-items: center; }
.gift__media img { border-radius: var(--r-lg); }
@media (max-width: 800px) { .gift__in { grid-template-columns: 1fr; } }
.gift .btn { margin-top: 1.4rem; }

/* ---------- newsletter ---------- */
.news { background: var(--spruce-800); color: #eef5f1; }
.news .h2 { color: #fff; }
.news .lead { color: rgb(238 245 241/.72); }
.news__in { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
@media (max-width: 860px) { .news__in { grid-template-columns: 1fr; } }
.news__form { display: flex; flex-wrap: wrap; gap: .6rem; position: relative; }
.news__form input {
  flex: 1 1 240px; padding: .9rem 1.1rem; border: 1.5px solid rgb(255 255 255/.22); border-radius: 100px;
  background: rgb(255 255 255/.06); color: #fff;
}
.news__form input::placeholder { color: rgb(255 255 255/.45); }
.news__form input:focus-visible { outline-color: var(--teal-300); }
.news__form .btn { --btn-bg: var(--teal-300); --btn-fg: #06221a; }
.news__ok { flex-basis: 100%; display: flex; align-items: center; gap: .5rem; color: var(--teal-200); font-size: .9rem; font-weight: 600; }

/* ---------- page hero ---------- */
.phero { position: relative; display: grid; align-items: end; min-height: min(72svh, 660px); isolation: isolate; overflow: hidden; }
.phero--short { min-height: min(56svh, 520px); }
.phero__bg { position: absolute; inset: 0; z-index: -2; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; animation: kb 26s ease-out both; }
.phero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgb(6 18 15/.5) 0%, rgb(6 18 15/.18) 40%, rgb(6 18 15/.86) 100%); }
.phero__in { padding-block: 4rem clamp(2.6rem, 6vh, 4.4rem); color: #fff; }
.phero__h { font-size: clamp(2.1rem, 1.3rem + 4vw, 4.2rem); max-width: 20ch; animation: heroWord .8s var(--ease) both; }
.phero__p { max-width: 54ch; margin-top: 1rem; font-size: clamp(1rem, .96rem + .4vw, 1.25rem); color: rgb(255 255 255/.88); animation: heroWord .9s var(--ease) .15s both; }
.phero__price { margin-top: 1.1rem; font-size: 1rem; color: rgb(255 255 255/.8); }
.phero__price b { font-family: var(--serif); font-size: 1.9rem; color: #fff; margin-inline: .3rem; }
.phero .btn { margin-top: 1.6rem; }
.crumbs { display: flex; align-items: center; gap: .4rem; margin-bottom: 1.2rem; font-size: .84rem; color: rgb(255 255 255/.7); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* ---------- page body ---------- */
.pbody__in { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .95fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 900px) { .pbody__in { grid-template-columns: 1fr; } }
.prose p { margin-bottom: 1.1rem; font-size: clamp(1.03rem, 1rem + .3vw, 1.16rem); color: var(--ink-2); }
.prose p:first-child { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.4rem); color: var(--ink); font-family: var(--serif); line-height: 1.45; }
.prose strong { color: var(--ink); }

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr)); gap: 0; border: 1.5px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--card); }
.fact { padding: .9rem 1rem; border-bottom: 1px solid var(--line); }
.fact dt { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.fact dd { margin: .25rem 0 0; font-size: .95rem; font-weight: 550; }
.incl { margin-top: 1.6rem; padding: 1.3rem; border-radius: var(--r); background: var(--accent-soft); }
.incl h3 { font-size: 1.1rem; margin-bottom: .8rem; }
.incl ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.incl li { display: flex; gap: .6rem; font-size: .92rem; }
.incl li .ic { width: 17px; height: 17px; margin-top: .28rem; color: var(--accent); stroke-width: 2.4; }

/* ---------- gallery + lightbox ---------- */
.gal { background: var(--bg-2); padding-bottom: calc(var(--sec) - 1rem); }
.gal__rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 30vw); gap: .8rem; overflow-x: auto; padding: 0 max(1.1rem, calc(50vw - var(--wrap) / 2)) 1rem; scroll-snap-type: x mandatory; }
.gal__rail::-webkit-scrollbar { height: 6px; }
.gal__rail::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 6px; }
.gal__i { scroll-snap-align: start; padding: 0; border: 0; border-radius: var(--r); overflow: hidden; cursor: zoom-in; background: none; }
.gal__i img { width: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .3s; }
.gal__i:hover img { transform: scale(1.05); }

.lb { width: 100vw; max-width: 100vw; height: 100dvh; max-height: 100dvh; padding: 0; border: 0; background: rgb(6 18 15/.96); }
.lb::backdrop { background: rgb(6 18 15/.9); }
.lb[open] { display: grid; grid-template-columns: 64px 1fr 64px; align-items: center; }
.lb__fig { margin: 0; display: grid; place-items: center; padding: 1rem; max-height: 100dvh; }
.lb__fig img { max-width: 100%; max-height: 88dvh; width: auto; border-radius: var(--r); object-fit: contain; }
.lb__x { position: absolute; top: 1rem; right: 1rem; z-index: 2; }
.lb__x, .lb__nav { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgb(255 255 255/.25); border-radius: 100px; background: rgb(255 255 255/.08); color: #fff; cursor: pointer; }
.lb__x:hover, .lb__nav:hover { background: rgb(255 255 255/.2); }
.lb__nav { justify-self: center; }
.lb__nav--p .ic { transform: rotate(90deg); }
.lb__nav--n .ic { transform: rotate(-90deg); }
.lb__count { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); color: rgb(255 255 255/.7); font-size: .85rem; }

/* ---------- adventures ---------- */
.filts { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filt {
  padding: .5rem 1rem; border: 1.5px solid var(--line); border-radius: 100px; background: var(--card);
  font-size: .88rem; font-weight: 550; cursor: pointer; transition: all .2s;
}
.filt:hover { border-color: var(--accent); color: var(--accent); }
.filt[aria-pressed=true] { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.advs__grid { display: grid; gap: 1.4rem; }
.adv {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center; padding: 1.2rem; border: 1.5px solid var(--line); border-radius: var(--r-lg);
  background: var(--card); scroll-margin-top: 100px;
}
.adv:nth-child(even) .adv__media { order: 2; }
@media (max-width: 780px) { .adv { grid-template-columns: 1fr; } .adv:nth-child(even) .adv__media { order: 0; } }
.adv[hidden] { display: none; }
.adv__media { overflow: hidden; border-radius: var(--r); }
.adv__media img { width: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.adv:hover .adv__media img { transform: scale(1.04); }
.adv__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-bottom: .7rem; font-size: .8rem; color: var(--ink-3); }
.adv__meta span { display: inline-flex; align-items: center; gap: .3rem; }
.adv__meta .ic { width: 15px; height: 15px; }
.adv h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); }
.adv__lead { margin-top: .5rem; font-weight: 550; color: var(--ink); }
.adv__body > p:last-of-type { margin-top: .6rem; font-size: .94rem; color: var(--ink-2); }
.adv__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: .9rem 0 1.1rem; }
.tag { padding: .18rem .6rem; border: 1px solid var(--line-2); border-radius: 100px; font-size: .72rem; color: var(--ink-3); }

/* ---------- faq ---------- */
.faq__in { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: clamp(1.6rem, 4vw, 3.4rem); align-items: start; }
@media (max-width: 860px) { .faq__in { grid-template-columns: 1fr; } }
.faq__side { position: sticky; top: 92px; display: grid; gap: 1.4rem; }
.faq__search { position: relative; display: flex; align-items: center; }
.faq__search .ic { position: absolute; left: .85rem; color: var(--ink-3); pointer-events: none; }
.faq__search input {
  width: 100%; padding: .78rem 1rem .78rem 2.6rem; border: 1.5px solid var(--line);
  border-radius: 100px; background: var(--card);
}
.faq__toc { display: grid; gap: .1rem; }
.faq__toc a { padding: .45rem .7rem; border-left: 2px solid var(--line); font-size: .9rem; color: var(--ink-2); text-decoration: none; }
.faq__toc a:hover { border-color: var(--accent); color: var(--accent); }
.faq__help { padding: 1.2rem; border-radius: var(--r); background: var(--accent-soft); display: grid; gap: .6rem; justify-items: start; }
.faq__help p { font-size: .9rem; color: var(--ink-2); }
.faqg + .faqg { margin-top: 2.6rem; }
.faqg[hidden] { display: none; }
.faqg h2 { font-size: 1.5rem; margin-bottom: 1rem; scroll-margin-top: 100px; }
.faql { display: grid; gap: .5rem; }
.qa { border: 1.5px solid var(--line); border-radius: var(--r); background: var(--card); overflow: hidden; }
.qa[hidden] { display: none; }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.2rem; cursor: pointer; font-weight: 600; list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--accent); }
.qa summary .ic { flex: none; color: var(--ink-3); transition: transform .3s var(--ease); }
.qa[open] summary .ic { transform: rotate(180deg); }
.qa[open] summary { color: var(--accent); }
.qa__a { padding: 0 1.2rem 1.2rem; font-size: .96rem; color: var(--ink-2); animation: fadeUp .35s var(--ease); }
.qa__a a { color: var(--accent); }
.faq__none { padding: 2rem; text-align: center; color: var(--ink-3); }

/* ---------- contact ---------- */
.cont__in { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.6rem, 4vw, 4rem); align-items: center; }
@media (max-width: 820px) { .cont__in { grid-template-columns: 1fr; } }
.cont__list { list-style: none; padding: 0; display: grid; gap: .7rem; margin: 1.4rem 0 1.8rem; }
.cont__list li, .cont__list a { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink-2); }
.cont__list a:hover { color: var(--accent); }
.cont__list .ic { color: var(--accent); }
.cont__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }

/* ---------- footer ---------- */
.ftr { background: var(--spruce-900); color: #cfded6; padding-top: clamp(3rem, 6vw, 5rem); }
.ftr__top {
  width: min(100% - 2.2rem, var(--wrap)); margin-inline: auto;
  display: grid; grid-template-columns: 1.3fr 1fr 1.3fr 1fr; gap: clamp(1.6rem, 3vw, 3rem);
  padding-bottom: 3rem;
}
@media (max-width: 900px) { .ftr__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ftr__top { grid-template-columns: 1fr; } }
.ftr__brand img { width: 170px; }
.ftr__tag { margin-top: .8rem; font-family: var(--serif); font-size: 1.05rem; color: var(--teal-300); }
.ftr__social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.ftr__social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgb(255 255 255/.18); border-radius: 100px; color: #cfded6; transition: all .2s; }
.ftr__social a:hover { background: var(--teal-300); border-color: var(--teal-300); color: #06221a; }
.ftr__social svg { width: 19px; height: 19px; }
.ftr__col h2 { font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-300); margin-bottom: 1rem; }
.ftr__col ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.ftr__col a { color: #cfded6; text-decoration: none; font-size: .93rem; }
.ftr__col a:hover { color: #fff; text-decoration: underline; }
.ftr__contact a { display: flex; align-items: flex-start; gap: .6rem; line-height: 1.5; }
.ftr__contact .ic { color: var(--teal-300); margin-top: .2rem; }
.ftr__eco { display: block; padding: .8rem; background: #fff; border-radius: var(--r-sm); max-width: 200px; }
.ftr__gps { margin-top: .9rem; font-size: .78rem; color: rgb(207 222 214/.6); font-variant-numeric: tabular-nums; }
.ftr__bot {
  width: min(100% - 2.2rem, var(--wrap)); margin-inline: auto;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; border-top: 1px solid rgb(255 255 255/.1); font-size: .82rem; color: rgb(207 222 214/.6);
}
.ftr__bot ul { display: flex; flex-wrap: wrap; gap: 1.2rem; list-style: none; padding: 0; }
.ftr__bot a { color: inherit; text-decoration: none; }
.ftr__bot a:hover { color: #fff; }

/* ---------- sticky mobile bar ---------- */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem 1.1rem calc(.7rem + env(safe-area-inset-bottom));
  background: color-mix(in oklab, var(--bg-2) 94%, transparent);
  backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .35s var(--ease);
}
.stickybar.is-on { transform: none; }
.stickybar__txt { font-size: .9rem; }
@media (max-width: 640px) { .stickybar { display: flex; } body { padding-bottom: 0; } }

/* ---------- legal / 404 ---------- */
.legal .wrap { max-width: 68ch; }
.legal p { margin-top: 1rem; color: var(--ink-2); }
.legal a { color: var(--accent); }
.nf__links { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- scroll reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .hero__slide img, .phero__bg img { animation: none; }
}

@media print {
  .hdr, .mnav, .stickybar, .ftr__social, .news, .planner__sum, .hero__dots { display: none !important; }
  body { background: #fff; color: #000; }
}
