/* ==========================================================================
   Polar Lapland — site stylesheet
   Monochrome dark theme: white, black, grey. The photographs carry the colour.
   Edit colours/sizes in the :root block; everything else derives from them.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --bg: #0a0a0b;
  --bg-2: #0f0f11;
  --surface: #141416;
  --surface-2: #1b1b1f;
  --line: rgba(255, 255, 255, .10);
  --line-2: rgba(255, 255, 255, .18);
  --ink: #ffffff;
  --ink-2: rgba(255, 255, 255, .74);
  --ink-3: rgba(255, 255, 255, .52);
  --ink-4: rgba(255, 255, 255, .34);
  --danger: #ff8a80;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --radius-s: 6px;
  --radius: 14px;
  --radius-pill: 999px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section: clamp(64px, 9vw, 120px);
  --header-h: 72px;

  --ease: cubic-bezier(.2, 0, 0, 1);
  --t-fast: 200ms;
  --t-slow: 600ms;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-family: var(--font-display); font-weight: 500; letter-spacing: -.005em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); line-height: 1.06; }
h3 { font-size: clamp(1.375rem, 2vw, 1.625rem); line-height: 1.2; }
h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; line-height: 1.4; }
strong { color: var(--ink); font-weight: 600; }
hr { border: 0; height: 1px; background: var(--line); margin: 0; }
:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 2px; }
::selection { background: #fff; color: #000; }
[hidden] { display: none !important; }
@media (max-width: 767px) { body { font-size: 1.0625rem; } }

/* ---------- 3. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 820px; }
.container--wide { max-width: 1400px; }
.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--flush-top { padding-top: 0; }
.band { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1023px) { .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 639px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); } }
.stack > * + * { margin-top: var(--stack, 16px); }
.cluster { display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; }
.split { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 20px 32px; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
main { display: block; padding-bottom: 88px; }
@media (min-width: 768px) { main { padding-bottom: 0; } }

/* ---------- 4. Typography helpers ---------- */
.eyebrow { font-family: var(--font-body); font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.eyebrow--light { color: var(--ink-2); }
.lede { font-size: clamp(1.0625rem, 1.4vw, 1.1875rem); line-height: 1.65; color: var(--ink-2); max-width: 58ch; }
.meta { font-size: .8125rem; color: var(--ink-3); }
.small { font-size: .875rem; }
.serif { font-family: var(--font-display); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 + .lede, .section-head h1 + .lede { margin-top: 18px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lede { margin-inline: auto; }
.num { font-family: var(--font-display); font-weight: 500; font-variant-numeric: tabular-nums; }
.balance { text-wrap: balance; }
.pretty { text-wrap: pretty; }

/* ---------- 5. Buttons, links, badges ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px;
  font-family: var(--font-body); font-size: .9375rem; font-weight: 600; letter-spacing: .01em; line-height: 1;
  color: #0a0a0b; background: #fff; border: 1px solid #fff; border-radius: var(--radius-s);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { background: #e9e9ec; border-color: #e9e9ec; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--ghost { color: var(--ink); background: transparent; border-color: var(--line-2); }
.btn--ghost:hover { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .5); }
.btn--sm { min-height: 40px; padding: 8px 16px; font-size: .875rem; }
.btn--lg { min-height: 56px; padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; }
.link { color: var(--ink); text-decoration: underline; text-decoration-color: var(--ink-4); text-underline-offset: 4px; text-decoration-thickness: 1px; transition: text-decoration-color var(--t-fast); }
.link:hover { text-decoration-color: #fff; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 500; }
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--t-fast) var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: var(--radius-pill);
  font-size: .6875rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; line-height: 1;
  color: var(--ink); background: rgba(255, 255, 255, .10); border: 1px solid var(--line-2);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.badge--solid { color: #0a0a0b; background: #fff; border-color: #fff; }
.badge svg { width: 12px; height: 12px; }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: .8125rem; color: var(--ink-2); }
.chip svg { width: 15px; height: 15px; color: var(--ink-3); flex: none; }
.icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- 6. Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-top: env(safe-area-inset-top);
  transition: background var(--t-slow) var(--ease), border-color var(--t-slow) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; height: 140px; pointer-events: none;
  background: linear-gradient(to bottom, rgba(10, 10, 11, .7), rgba(10, 10, 11, 0));
  transition: opacity var(--t-slow) var(--ease);
}
.site-header.is-scrolled { background: rgba(10, 10, 11, .82); border-color: var(--line); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.site-header.is-scrolled::before { opacity: 0; }
.site-header__inner { position: relative; display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 16px; }
.site-header__logo img { height: 44px; width: auto; }
@media (min-width: 768px) { .site-header__logo img { height: 52px; } }
.site-nav { display: none; align-items: center; gap: 28px; }
.site-nav a { font-size: .8125rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); transition: color var(--t-fast); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a.btn { margin-left: 8px; color: #0a0a0b; font-size: .875rem; letter-spacing: .01em; text-transform: none; }
.site-nav a.btn:hover { color: #0a0a0b; }
@media (min-width: 1024px) { .site-nav { display: flex; } }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-right: -8px; color: var(--ink); border-radius: var(--radius-s); }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; display: none; flex-direction: column;
  padding: calc(var(--header-h) + env(safe-area-inset-top) + 16px) var(--gutter) 40px;
  background: rgba(10, 10, 11, .96); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
}
.mobile-menu a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 2rem; color: var(--ink); }
.mobile-menu .btn { margin-top: 28px; }
.mobile-menu__meta { margin-top: auto; padding-top: 24px; color: var(--ink-3); font-size: .875rem; }
.mobile-menu__meta a { display: inline; padding: 0; border: 0; font: inherit; color: var(--ink-2); }
body.menu-open { overflow: hidden; }
body.menu-open .mobile-menu { display: flex; }
body.menu-open .site-header { background: rgba(10, 10, 11, .96); }
body.menu-open .nav-toggle .icon-menu { display: none; }
body.menu-open .nav-toggle .icon-close { display: block; }

/* ---------- 7. Hero ---------- */
.hero { position: relative; overflow: hidden; background: #000; color: var(--ink); min-height: 86svh; display: flex; align-items: flex-end; }
.hero--tall { min-height: 100svh; }
.hero--short { min-height: 60svh; }
.hero__media { position: absolute; inset: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero__scrim { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(10, 10, 11, .92) 0%, rgba(10, 10, 11, .55) 30%, rgba(10, 10, 11, .10) 62%, rgba(10, 10, 11, 0) 85%),
              linear-gradient(to right, rgba(10, 10, 11, .55) 0%, rgba(10, 10, 11, .15) 45%, rgba(10, 10, 11, 0) 75%); }
.hero__content { position: relative; width: 100%; padding-top: calc(var(--header-h) + 40px); padding-bottom: clamp(48px, 8vw, 96px); }
.hero__content .eyebrow { color: var(--ink-2); margin-bottom: 20px; }
.hero__content h1 { max-width: 17ch; }
.hero__content .lede { margin-top: 22px; max-width: 46ch; }
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; }
.hero--center { align-items: center; text-align: center; }
.hero--center .hero__content h1, .hero--center .hero__content .lede { margin-inline: auto; }
.hero--center .hero__actions { justify-content: center; }
.hero--center .hero__scrim { background: linear-gradient(to top, rgba(10, 10, 11, .95) 0%, rgba(10, 10, 11, .5) 35%, rgba(10, 10, 11, .25) 60%, rgba(10, 10, 11, .1) 100%); }
.ken-burns { animation: ken-burns 26s ease-in-out infinite alternate; transform-origin: 50% 40%; will-change: transform; }
@keyframes ken-burns { from { transform: scale(1); } to { transform: scale(1.08); } }
.page-hero { padding-top: calc(var(--header-h) + clamp(40px, 8vw, 96px)); padding-bottom: clamp(32px, 5vw, 64px); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { margin-top: 20px; }
.page-hero .eyebrow { margin-bottom: 16px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .8125rem; color: var(--ink-3); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--ink-4); }

/* ---------- 8. Trust strip & stats ---------- */
.trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 40px; padding: 18px 0; font-size: .8125rem; color: var(--ink-3); }
.trust__lead { color: var(--ink-2); letter-spacing: .1em; text-transform: uppercase; font-weight: 500; font-size: .75rem; }
.trust__item { display: inline-flex; align-items: center; gap: 8px; }
.trust__item strong { color: var(--ink); }
.trust__item .stars { color: var(--ink); letter-spacing: -1px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__item { padding: 32px 16px; text-align: center; }
.stats__item + .stats__item { border-left: 1px solid var(--line); }
.stats__num { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.75rem, 7vw, 5.5rem); line-height: 1; color: var(--ink); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stats__label { margin-top: 12px; }
@media (max-width: 639px) { .stats { grid-template-columns: 1fr; } .stats__item + .stats__item { border-left: 0; border-top: 1px solid var(--line); } }
.stats--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 639px) { .stats--2 { grid-template-columns: 1fr; } }
.rating { display: inline-flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--ink-2); }
.rating .stars { color: var(--ink); font-size: .9375rem; letter-spacing: -1px; }
.rating strong { color: var(--ink); }

/* ---------- 9. Cards ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.card--pad { padding: clamp(20px, 3vw, 32px); }
.card--hover { transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease); }
.card--hover:hover { transform: translateY(-3px); border-color: var(--line-2); }

.tour-card { position: relative; display: flex; flex-direction: column; height: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease); }
.tour-card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.tour-card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #000; }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease); }
.tour-card:hover .tour-card__media img { transform: scale(1.04); }
.tour-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 10, 11, .75), rgba(10, 10, 11, 0) 55%); pointer-events: none; }
.tour-card__badges { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; flex-wrap: wrap; gap: 6px; z-index: 1; }
.tour-card__body { display: flex; flex-direction: column; flex: 1; padding: 20px; gap: 12px; }
.tour-card__title { font-size: 1.5rem; line-height: 1.15; }
.tour-card__title a::after { content: ""; position: absolute; inset: 0; }
.tour-card__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.tour-card__desc { font-size: .9375rem; color: var(--ink-2); }
.tour-card__foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.price { display: flex; flex-direction: column; gap: 2px; }
.price__from { font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.price__row { display: flex; align-items: baseline; gap: 8px; }
.price__old { color: var(--ink-4); text-decoration: line-through; font-size: .9375rem; }
.price__now { font-family: var(--font-display); font-weight: 600; font-size: 1.75rem; line-height: 1; color: var(--ink); }
.price__unit { font-size: .8125rem; color: var(--ink-3); }
.tour-card .btn { position: relative; z-index: 1; }
.tour-card--wide { flex-direction: row; }
.tour-card--wide .tour-card__media { flex: 0 0 42%; aspect-ratio: auto; }
@media (max-width: 767px) { .tour-card--wide { flex-direction: column; } .tour-card--wide .tour-card__media { aspect-ratio: 4 / 3; } }
.tour-card--activity .tour-card__media { aspect-ratio: 4 / 3; }

/* ---------- 10. Feature lists, programs, checklists ---------- */
.features { display: grid; gap: 28px 32px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.feature { display: flex; gap: 16px; }
.feature__icon { flex: none; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 12px; color: var(--ink); }
.feature__icon svg { width: 20px; height: 20px; }
.feature h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; line-height: 1.4; margin-bottom: 6px; }
.feature p { font-size: .9375rem; color: var(--ink-2); }
.feature--stack { flex-direction: column; gap: 18px; }
.feature--stack h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.checklist { display: grid; gap: 10px 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: .9375rem; color: var(--ink-2); }
.checklist li svg { flex: none; width: 18px; height: 18px; margin-top: 3px; color: var(--ink); }
.checklist--muted li svg { color: var(--ink-4); }
.program { counter-reset: step; }
.program__step { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding-bottom: 24px; position: relative; }
.program__step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; color: var(--ink); width: 40px; height: 40px; border: 1px solid var(--line-2); border-radius: 50%; display: grid; place-items: center; }
.program__step::after { content: ""; position: absolute; left: 20px; top: 44px; bottom: 4px; width: 1px; background: var(--line); }
.program__step:last-child::after { display: none; }
.program__step h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin: 8px 0 6px; }
.program__step p { font-size: .9375rem; color: var(--ink-2); }
.numbered { display: grid; gap: 0; }
.numbered__item { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid var(--line); }
.numbered__item:last-child { border-bottom: 1px solid var(--line); }
.numbered__n { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--ink-3); line-height: 1; padding-top: 4px; }
.numbered__item h3 { font-size: 1.5rem; margin-bottom: 8px; }

/* ---------- 11. Accordion (details/summary) ---------- */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; font-weight: 500; color: var(--ink); font-size: 1.0625rem; }
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary::after { content: ""; flex: none; width: 12px; height: 12px; border-right: 1.5px solid var(--ink-3); border-bottom: 1.5px solid var(--ink-3); transform: rotate(45deg); transition: transform var(--t-fast) var(--ease); margin-right: 4px; margin-top: -6px; }
.accordion__item[open] summary::after { transform: rotate(225deg); margin-top: 6px; }
.accordion__body { padding: 0 0 22px; color: var(--ink-2); font-size: .9375rem; max-width: 70ch; }
.accordion__body p + p { margin-top: 12px; }

/* ---------- 12. Forms ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.field { display: grid; gap: 8px; }
.field label { font-size: .875rem; font-weight: 500; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-s);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:focus, .field textarea:focus { outline: none; border-color: #fff; background: var(--surface-2); }
.field textarea { min-height: 160px; resize: vertical; }
.field__hint { font-size: .8125rem; color: var(--ink-3); }
.field__error { font-size: .8125rem; color: var(--danger); }
.form__status { font-size: .9375rem; color: var(--ink); }
.form__status[data-state="error"] { color: var(--danger); }

/* ---------- 13. Galleries & media ---------- */
.h-scroll { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-inline: var(--gutter); }
.h-scroll::-webkit-scrollbar { display: none; }
.h-scroll > * { flex: 0 0 auto; scroll-snap-align: start; }
.h-scroll__item { width: min(72vw, 340px); aspect-ratio: 4 / 5; border-radius: var(--radius-s); overflow: hidden; background: var(--surface); }
.h-scroll__item img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .photo-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1024px) { .photo-grid { grid-template-columns: repeat(4, 1fr); } }
.photo-grid__item { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius-s); background: var(--surface); }
.photo-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease); }
.photo-grid__item:hover img { transform: scale(1.03); }
.photo-grid__item--wide { grid-column: span 2; aspect-ratio: 8 / 5; }
.tour-gallery { display: grid; gap: 10px; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; border-radius: var(--radius); overflow: hidden; }
.tour-gallery a, .tour-gallery div { position: relative; overflow: hidden; background: var(--surface); }
.tour-gallery img { width: 100%; height: 100%; object-fit: cover; }
.tour-gallery > :first-child { grid-row: span 2; aspect-ratio: 4 / 3; }
.tour-gallery > :not(:first-child) { aspect-ratio: 4 / 3; }
@media (max-width: 767px) { .tour-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; } .tour-gallery > :first-child { grid-column: span 2; grid-row: auto; } }
.tour-gallery__more { position: absolute; right: 12px; bottom: 12px; }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(0, 0, 0, .94); display: none; align-items: center; justify-content: center; padding: 16px; }
.lightbox[open] { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox__close, .lightbox__nav { position: absolute; top: 16px; right: 16px; width: 48px; height: 48px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: rgba(255, 255, 255, .1); }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 12px; right: auto; }
.lightbox__nav--next { right: 12px; }
.lightbox__caption { position: absolute; left: 0; right: 0; bottom: 16px; text-align: center; color: var(--ink-2); font-size: .875rem; padding: 0 60px; }
.figure { margin: 0; }
.figure img { border-radius: var(--radius-s); }
.figure figcaption { margin-top: 10px; font-size: .8125rem; color: var(--ink-3); }
.image-band { position: relative; min-height: 420px; display: flex; align-items: center; color: var(--ink); overflow: hidden; }
.image-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.image-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 10, 11, .85), rgba(10, 10, 11, .45) 50%, rgba(10, 10, 11, .9)); }
.image-band > .container { position: relative; z-index: 1; }
.map-wrap { max-width: 720px; margin-inline: auto; }
.map-wrap svg { width: 100%; height: auto; }

/* ---------- 14. Tour page layout & booking sidebar ---------- */
.tour-layout { display: grid; gap: 40px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 1024px) { .tour-layout { grid-template-columns: minmax(0, 1fr) 380px; gap: 56px; align-items: start; } }
.tour-main > * + * { margin-top: clamp(36px, 5vw, 56px); }
.tour-main h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); margin-bottom: 20px; }
.tour-specs { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 18px; }
.booking { position: sticky; top: calc(var(--header-h) + 20px); }
.booking__card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 24px; }
.booking__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin: 6px 0 10px; }
.booking__price .price__now { font-size: 2.5rem; }
.booking__note { font-size: .8125rem; color: var(--ink-3); }
.spec-table { margin: 20px 0; border-top: 1px solid var(--line); }
.spec-table div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .9375rem; }
.spec-table dt { color: var(--ink-3); margin: 0; }
.spec-table dd { color: var(--ink); margin: 0; text-align: right; font-weight: 500; }
.guarantee-seal { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--line-2); border-radius: var(--radius-s); background: rgba(255, 255, 255, .03); }
.guarantee-seal svg { flex: none; width: 28px; height: 28px; color: var(--ink); }
.guarantee-seal strong { display: block; font-size: .9375rem; }
.guarantee-seal span { font-size: .8125rem; color: var(--ink-3); }
.meeting-point { padding: 16px; border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--bg-2); font-size: .9375rem; }
.meeting-point strong { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.meeting-point svg { width: 16px; height: 16px; }
.bokun-embed-wrapper { min-height: 1400px; width: 100%; margin-top: 16px; }
.bokun-embed-wrapper .bokunWidget, .bokun-embed-wrapper iframe { min-height: 1400px !important; width: 100% !important; border: 0; }
.booking__title { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-top: 24px; }
.related { margin-top: var(--section); }

/* ---------- 15. Comparison table ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); }
.table { width: 100%; border-collapse: collapse; font-size: .9375rem; min-width: 640px; }
.table th, .table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { font-weight: 600; color: var(--ink); background: var(--surface); }
.table td { color: var(--ink-2); }
.table tr:last-child td { border-bottom: 0; }
.table td:first-child { color: var(--ink-3); }

/* ---------- 16. CTA band ---------- */
.cta { text-align: center; }
.cta h2 { max-width: 20ch; margin-inline: auto; }
.cta .lede { margin: 18px auto 0; }
.cta .hero__actions { justify-content: center; margin-top: 32px; }

/* ---------- 17. Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: clamp(48px, 7vw, 88px) 0 32px; font-size: .875rem; color: var(--ink-3); }
.site-footer__grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer__logo img { height: 56px; width: auto; margin-bottom: 18px; }
.site-footer h4 { color: var(--ink); font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer a:hover { color: var(--ink); }
.site-footer__tagline { max-width: 32ch; line-height: 1.6; }
.site-footer__bottom { margin-top: clamp(40px, 5vw, 64px); padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; font-size: .75rem; letter-spacing: .04em; }
.site-footer__bottom button { text-decoration: underline; text-underline-offset: 3px; }
.site-footer__bottom button:hover, .site-footer__bottom a:hover { color: var(--ink); }

/* ---------- 18. Floating UI ---------- */
.whatsapp-float {
  position: fixed; right: 16px; bottom: calc(env(safe-area-inset-bottom, 0px) + 84px); z-index: 60;
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%;
  background: #fff; color: #0a0a0b; box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  transition: transform var(--t-fast) var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 26px; height: 26px; }
@media (min-width: 768px) { .whatsapp-float { bottom: 24px; } }
.bookbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 10, 11, .92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-2);
}
.bookbar__price { display: flex; flex-direction: column; line-height: 1.2; }
.bookbar__price small { font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.bookbar__price strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.bookbar .btn { flex: 1; }
@media (min-width: 768px) { .bookbar { display: none; } }
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999; padding: 0 16px calc(16px + env(safe-area-inset-bottom, 0px)); pointer-events: none;
}
.cookie__card { pointer-events: auto; margin: 0 auto; max-width: 56rem; padding: 20px; background: #0f0f11; border: 1px solid var(--line-2); border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0, 0, 0, .6); font-size: .8125rem; color: var(--ink-2); line-height: 1.6; }
.cookie__prefs { margin-top: 18px; display: grid; gap: 12px; }
.cookie__prefs label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.cookie__prefs input { margin-top: 3px; accent-color: #fff; }
.cookie__prefs strong { display: block; font-size: .8125rem; color: var(--ink); }
.cookie__prefs span { color: var(--ink-3); font-size: .75rem; }
.cookie__actions { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.cookie__actions .btn { min-height: 40px; padding: 8px 16px; font-size: .8125rem; }
.cookie__actions .btn--text { background: none; border: 0; color: var(--ink-3); text-decoration: underline; min-height: 40px; padding: 8px 6px; }
@media (min-width: 768px) { .cookie { padding: 0 24px 24px; } .cookie__card { padding: 24px; } }

/* ---------- 19. Long-form prose (guides, blog, privacy, science) ---------- */
.prose { max-width: 72ch; color: var(--ink-2); font-size: 1.0625rem; line-height: 1.75; }
.prose > * + * { margin-top: 1.25em; }
.prose h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-top: 2.2em; margin-bottom: .6em; }
.prose h3 { font-family: var(--font-body); font-size: 1.125rem; font-weight: 600; margin-top: 1.8em; margin-bottom: .5em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.25em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: .45em; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--ink-4); }
.prose a:hover { text-decoration-color: #fff; }
.prose blockquote { margin: 0; padding-left: 20px; border-left: 2px solid var(--line-2); font-family: var(--font-display); font-size: 1.375rem; font-style: italic; color: var(--ink); }
.prose img { border-radius: var(--radius-s); }
.prose table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.prose th, .prose td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { color: var(--ink); font-weight: 600; }
.prose .note { padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--bg-2); font-size: .9375rem; }
.prose hr { margin: 2em 0; }
.article-head { max-width: 820px; }
.article-head h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 18px; font-size: .8125rem; color: var(--ink-3); }
.article-hero { margin: clamp(28px, 4vw, 48px) 0; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--radius); background: var(--surface); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-grid { display: grid; gap: 48px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 1024px) { .article-grid { grid-template-columns: minmax(0, 1fr) 320px; align-items: start; } }
.aside-card { position: sticky; top: calc(var(--header-h) + 20px); }
.toc { font-size: .875rem; }
.toc a { display: block; padding: 6px 0; color: var(--ink-3); border-bottom: 1px solid var(--line); }
.toc a:hover { color: var(--ink); }
.post-card { display: flex; flex-direction: column; height: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; position: relative; transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease); }
.post-card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.post-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: #000; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__title { font-size: 1.375rem; line-height: 1.2; }
.post-card__title a::after { content: ""; position: absolute; inset: 0; }
.post-card__excerpt { font-size: .9375rem; color: var(--ink-2); }
.post-card__meta { margin-top: auto; padding-top: 10px; font-size: .8125rem; color: var(--ink-3); }

/* ---------- 20. Northern Lights universe & data widgets ---------- */
body.universe { background: transparent; }
.universe__sky { position: fixed; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(to bottom, #03050a 0%, #070a10 55%, #0a0a0b 100%); }
.universe__sky canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.universe__sky img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 100%; opacity: .6; -webkit-mask-image: linear-gradient(to bottom, transparent 20%, #000 70%); mask-image: linear-gradient(to bottom, transparent 20%, #000 70%); }
.universe__fallback { position: absolute; inset: 0; background: radial-gradient(120% 70% at 30% 0%, rgba(80, 200, 160, .18), transparent 60%), radial-gradient(90% 60% at 80% 10%, rgba(120, 90, 200, .14), transparent 60%); }
.universe .section { background: transparent; }
.universe .veil { background: linear-gradient(to bottom, rgba(10, 10, 11, 0), rgba(10, 10, 11, .92) 18%, rgba(10, 10, 11, .96)); }
.kp-chip { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1px solid var(--line-2); border-radius: var(--radius-pill); background: rgba(10, 10, 11, .55); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); font-size: .8125rem; color: var(--ink-2); }
.kp-chip strong { color: var(--ink); font-family: var(--font-display); font-size: 1.25rem; line-height: 1; }
.kp-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
.data-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.data-card__label { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.data-card__value { font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 500; color: var(--ink); line-height: 1; margin-top: 8px; }
.data-card__sub { margin-top: 8px; font-size: .875rem; color: var(--ink-2); }
.chart { width: 100%; height: auto; }
.chart text { fill: var(--ink-3); font-family: var(--font-body); font-size: 11px; }
.chart .grid line { stroke: var(--line); }
.chart .series { fill: none; stroke: #fff; stroke-width: 1.5; }
.chart .area { fill: rgba(255, 255, 255, .06); }

/* ---------- 21. Motion ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.grain::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .045; mix-blend-mode: overlay; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"); background-size: 160px 160px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .ken-burns { animation: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- 22. Print ---------- */
@media print {
  .site-header, .site-footer, .whatsapp-float, .bookbar, .cookie, .mobile-menu { display: none !important; }
  body { background: #fff; color: #000; }
  h1, h2, h3 { color: #000; }
}

/* ---------- 23. Light bands (white / light grey sections inside the dark site) ---------- */
.light {
  --bg: #f5f5f4; --bg-2: #ebebea; --surface: #ffffff; --surface-2: #f0f0ef;
  --line: rgba(10, 10, 11, .10); --line-2: rgba(10, 10, 11, .2);
  --ink: #0a0a0b; --ink-2: rgba(10, 10, 11, .74); --ink-3: rgba(10, 10, 11, .54); --ink-4: rgba(10, 10, 11, .36);
  background: var(--bg); color: var(--ink-2); border-color: var(--line);
}
.light--white { --bg: #ffffff; --bg-2: #f5f5f4; }
.light h1, .light h2, .light h3, .light h4, .light strong { color: var(--ink); }
.light .btn { color: #fff; background: #0a0a0b; border-color: #0a0a0b; }
.light .btn:hover { background: #26262b; border-color: #26262b; }
.light .btn--ghost { color: var(--ink); background: transparent; border-color: var(--line-2); }
.light .btn--ghost:hover { background: rgba(10, 10, 11, .05); border-color: rgba(10, 10, 11, .5); }
.light .badge { color: var(--ink); background: rgba(10, 10, 11, .06); }
.light .badge--solid { color: #fff; background: #0a0a0b; border-color: #0a0a0b; }
.light :focus-visible { outline-color: #0a0a0b; }
.light ::selection { background: #0a0a0b; color: #fff; }
.light .field input, .light .field textarea, .light .field select { background: #fff; }
.light .field input:focus, .light .field textarea:focus { border-color: #0a0a0b; background: #fff; }
.light .tour-card, .light .post-card, .light .card { box-shadow: 0 10px 30px -18px rgba(10, 10, 11, .25); }
.light .form__status { color: var(--ink); }
.light .form__status[data-state="error"] { color: #b3261e; }
.light .field__error { color: #b3261e; }
.light .cookie, .light .site-header { color: initial; }
.checks { display: grid; gap: 10px 20px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.checks label { display: flex; gap: 10px; align-items: flex-start; font-size: .9375rem; color: var(--ink-2); cursor: pointer; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--surface); }
.checks input { margin-top: 3px; accent-color: currentColor; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .875rem; color: var(--ink-2); }
.consent input { margin-top: 4px; accent-color: currentColor; }
.bundle { display: grid; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (min-width: 1024px) { .bundle { grid-template-columns: 1fr 1.25fr; } }
.bundle__steps { display: grid; gap: 18px; margin-top: 28px; }
.bundle__step { display: grid; grid-template-columns: 36px 1fr; gap: 14px; }
.bundle__step span { font-family: var(--font-display); font-size: 1.375rem; font-weight: 500; color: var(--ink); line-height: 1; padding-top: 2px; }
.bundle__step p { font-size: .9375rem; }
.bundle__step strong { display: block; margin-bottom: 2px; }

/* ---------- 24. Entrance (first visit to the home page) ---------- */
.intro { position: fixed; inset: 0; z-index: 2000; background: #03050a; display: flex; align-items: center; justify-content: center; overflow: hidden; cursor: pointer;
  transition: clip-path 900ms cubic-bezier(.76, 0, .24, 1), opacity 300ms; clip-path: inset(0 0 0 0); }
.intro canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.intro__inner { position: relative; text-align: center; color: #fff; padding: 0 24px; }
.intro__logo { width: min(64vw, 300px); height: auto; margin: 0 auto; opacity: 0; transform: translateY(12px) scale(.96); animation: intro-in 900ms 200ms var(--ease) forwards; }
.intro__line { width: 0; height: 1px; background: rgba(255, 255, 255, .5); margin: 26px auto 18px; animation: intro-line 1100ms 700ms var(--ease) forwards; }
.intro__text { font-size: .75rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(255, 255, 255, .7); opacity: 0; animation: intro-in 800ms 1000ms var(--ease) forwards; }
.intro__skip { position: absolute; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .5); }
.intro.is-leaving { clip-path: inset(0 0 100% 0); }
.intro.is-hidden { display: none; }
@keyframes intro-in { to { opacity: 1; transform: none; } }
@keyframes intro-line { to { width: min(60vw, 260px); } }
html.has-intro .hero__content > * { opacity: 0; transform: translateY(14px); }
html.intro-done .hero__content > * { opacity: 1; transform: none; transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
html.intro-done .hero__content > :nth-child(2) { transition-delay: 100ms; }
html.intro-done .hero__content > :nth-child(3) { transition-delay: 200ms; }
html.intro-done .hero__content > :nth-child(4) { transition-delay: 300ms; }
@media (prefers-reduced-motion: reduce) { .intro { display: none; } html.has-intro .hero__content > * { opacity: 1; transform: none; } }

/* ---------- 25. Visual-first components (photo cards, icon tiles, CTA rows) ---------- */
.photo-card { position: relative; display: block; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: #000; color: #fff; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease); }
.photo-card:hover img { transform: scale(1.04); }
.photo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 10, 11, .9) 0%, rgba(10, 10, 11, .45) 45%, rgba(10, 10, 11, 0) 75%); }
.photo-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; z-index: 1; display: grid; gap: 8px; }
.photo-card__body h3 { color: #fff; font-size: 1.625rem; }
.photo-card__body p { color: rgba(255, 255, 255, .78); font-size: .9375rem; max-width: 34ch; }
.photo-card__body .btn { justify-self: start; margin-top: 6px; color: #0a0a0b; background: #fff; border-color: #fff; }
.photo-card--wide { aspect-ratio: 16 / 9; }
@media (max-width: 639px) { .photo-card { aspect-ratio: 4 / 4.4; } }
.tiles { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.tile { padding: 20px; border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius-s); background: rgba(10, 10, 11, .55); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); color: #fff; }
.tile svg { width: 24px; height: 24px; margin-bottom: 14px; }
.tile h3 { font-family: var(--font-body); font-size: .9375rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.tile p { font-size: .8125rem; color: rgba(255, 255, 255, .72); }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; padding: 18px 22px; border: 1px solid var(--line-2); border-radius: var(--radius); background: var(--surface); }
.cta-row .price__now { font-size: 2rem; }
.cta-row .btn { margin-left: auto; }
@media (max-width: 639px) { .cta-row .btn { margin-left: 0; width: 100%; } }
.section-cta { display: flex; justify-content: center; margin-top: clamp(32px, 4vw, 48px); }
.post-card--compact .post-card__media { aspect-ratio: 16 / 9; }
.read-more { margin-top: 12px; }
.read-more summary { list-style: none; cursor: pointer; color: var(--ink); font-weight: 500; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--ink-4); }
.read-more summary::-webkit-details-marker { display: none; }
.read-more[open] summary { margin-bottom: 12px; }

/* ---------- 26. "We cross borders" map explorer ---------- */
.map-explore { display: grid; gap: 24px; align-items: stretch; }
@media (min-width: 900px) { .map-explore { grid-template-columns: 1.1fr 1fr; gap: 32px; } }
.map-stage { position: relative; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; overflow: hidden; }
.map-svg { width: 100%; height: auto; display: block; }
.map-land { fill: #141416; stroke: rgba(255, 255, 255, .18); stroke-width: .5; fill-rule: evenodd; }
.map-border { fill: none; stroke: rgba(255, 255, 255, .28); stroke-width: 1; stroke-dasharray: 3 3; stroke-linecap: round; }
.map-country { fill: rgba(255, 255, 255, .4); font-family: var(--font-body); font-size: 10px; letter-spacing: 2.8px; }
.pin { cursor: pointer; outline: none; }
.pin__hit { fill: transparent; }
.pin__ring { fill: rgba(255, 255, 255, .10); transition: r 250ms var(--ease), fill 250ms; }
.pin__dot { fill: #fff; transition: r 250ms var(--ease); }
.pin__label { fill: rgba(255, 255, 255, .78); font-family: var(--font-body); font-size: 10px; letter-spacing: .2px; paint-order: stroke; stroke: #0f0f11; stroke-width: 2.5px; stroke-linejoin: round; pointer-events: none; transition: fill 250ms; }
.pin--home .pin__label { fill: #fff; font-weight: 500; font-size: 11px; }
.pin:hover .pin__ring, .pin:focus-visible .pin__ring, .pin.is-active .pin__ring { fill: rgba(255, 255, 255, .22); r: 12; }
.pin.is-active .pin__dot { r: 4.5; }
.pin.is-active .pin__label, .pin:hover .pin__label { fill: #fff; }
.pin:focus-visible .pin__ring { stroke: #fff; stroke-width: 1; }
.pin.is-active .pin__ring { animation: pin-pulse 2.2s ease-out infinite; }
@keyframes pin-pulse { 0% { opacity: 1; } 100% { opacity: .35; } }
.map-photo { position: relative; min-height: 360px; border-radius: var(--radius); overflow: hidden; background: #000; border: 1px solid var(--line); }
@media (min-width: 900px) { .map-photo { min-height: 0; } }
.map-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 700ms var(--ease); transform-origin: 50% 50%; }
.map-photo img.is-visible { opacity: 1; }
.map-photo img.is-zooming { animation: map-zoom 9s linear forwards; }
@keyframes map-zoom { from { transform: scale(1.02); } to { transform: scale(1.16); } }
.map-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 10, 11, .88) 0%, rgba(10, 10, 11, .35) 40%, rgba(10, 10, 11, 0) 70%); pointer-events: none; }
.map-photo__caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 22px; color: #fff; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 12px; }
.map-photo__caption h3 { font-size: 1.75rem; color: #fff; line-height: 1.1; }
.map-photo__caption p { font-size: .8125rem; color: rgba(255, 255, 255, .7); }
.map-photo__caption .eyebrow { color: rgba(255, 255, 255, .7); margin-bottom: 6px; }
.map-photo__counter { font-family: var(--font-display); font-size: 1rem; color: rgba(255, 255, 255, .6); }
.map-legend { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center; margin-top: 20px; }
@media (prefers-reduced-motion: reduce) { .map-photo img.is-zooming { animation: none; } .pin.is-active .pin__ring { animation: none; } }

/* ---------- 27. Reviews ---------- */
.reviews-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 32px; margin-bottom: clamp(24px, 3vw, 40px); }
.reviews-summary__score { display: flex; align-items: baseline; gap: 10px; }
.reviews-summary__score strong { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1; color: var(--ink); }
.reviews-summary__score span { color: var(--ink-3); font-size: .9375rem; }
.reviews-summary .stars { color: var(--ink); font-size: 1.125rem; letter-spacing: 1px; }
.platforms { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: clamp(24px, 3vw, 40px); }
.platform { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--surface); transition: border-color var(--t-fast), transform var(--t-fast) var(--ease); }
.platform:hover { border-color: var(--line-2); transform: translateY(-2px); }
.platform strong { display: block; font-size: .9375rem; }
.platform span { font-size: .8125rem; color: var(--ink-3); }
.platform svg { width: 16px; height: 16px; color: var(--ink-3); flex: none; }
.quotes { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.quote { display: flex; flex-direction: column; gap: 14px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.quote svg { width: 22px; height: 22px; color: var(--ink-4); }
.quote p { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4; color: var(--ink); }
.quote footer { margin-top: auto; font-size: .8125rem; color: var(--ink-3); display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.quote footer strong { color: var(--ink-2); font-weight: 500; }
.review-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 14px; font-size: .875rem; color: var(--ink-3); }
.review-strip .stars { color: var(--ink); }
.review-strip a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--ink-4); }

/* ---------- 28. Reviews stage ---------- */
.reviews-band { position: relative; overflow: hidden; color: #fff; }
.reviews-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; opacity: .5; }
.reviews-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 10, 11, .96) 0%, rgba(10, 10, 11, .72) 45%, rgba(10, 10, 11, .96) 100%); }
.reviews-band > .container { position: relative; z-index: 1; }
.reviews-grid { display: grid; gap: 28px; align-items: stretch; }
@media (min-width: 960px) { .reviews-grid { grid-template-columns: 380px minmax(0, 1fr); gap: 40px; } }
.score-card { display: flex; flex-direction: column; gap: 22px; padding: clamp(24px, 3vw, 36px); border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius); background: rgba(10, 10, 11, .55); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.score-card__num { font-family: var(--font-display); font-weight: 500; font-size: clamp(4.5rem, 9vw, 6.5rem); line-height: .9; letter-spacing: -.03em; color: #fff; }
.score-card__stars { display: flex; gap: 4px; margin-top: 10px; }
.score-card__stars svg { width: 22px; height: 22px; color: #fff; }
.score-card__sub { color: rgba(255, 255, 255, .72); font-size: .9375rem; }
.score-card__rank { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: var(--radius-pill); border: 1px solid rgba(255, 255, 255, .22); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: #fff; }
.score-card__rank svg { width: 14px; height: 14px; flex: none; }
.score-list { display: grid; gap: 8px; }
.score-list a { display: grid; grid-template-columns: 1fr auto; gap: 8px 14px; align-items: center; padding: 12px 14px; border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius-s); background: rgba(255, 255, 255, .04); transition: background var(--t-fast), border-color var(--t-fast); }
.score-list a:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .35); }
.score-list strong { color: #fff; font-size: .9375rem; }
.score-list span { color: rgba(255, 255, 255, .7); font-size: .8125rem; white-space: nowrap; }
.score-list .bar { grid-column: 1 / -1; display: block; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, .14); overflow: hidden; }
.score-list .bar i { display: block; height: 100%; width: 98%; background: #fff; }
.carousel { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 380px; padding: clamp(24px, 3vw, 40px); border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius); background: rgba(10, 10, 11, .55); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.carousel__track { position: relative; flex: 1; }
.carousel__slide { position: absolute; inset: 0; margin: 0; display: flex; flex-direction: column; gap: 22px; opacity: 0; transform: translateY(10px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); pointer-events: none; }
.carousel__slide.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.carousel__quote-mark { width: 34px; height: 34px; color: rgba(255, 255, 255, .35); }
.carousel__text { margin: 0; font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2.125rem); line-height: 1.3; color: #fff; text-wrap: pretty; }
.carousel__who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: #0a0a0b; font-weight: 600; font-size: .9375rem; letter-spacing: .02em; flex: none; }
.carousel__who strong { display: block; color: #fff; font-size: .9375rem; }
.carousel__who span { font-size: .8125rem; color: rgba(255, 255, 255, .65); }
.carousel__who .avatar { color: #0a0a0b; font-size: .9375rem; }
.carousel__badge { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--radius-pill); font-size: .6875rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; white-space: nowrap; }
.carousel__badge svg { width: 12px; height: 12px; }
.carousel__nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .14); }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dots button { width: 28px; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, .25); transition: background var(--t-fast), width var(--t-fast); }
.carousel__dots button.is-active { background: #fff; width: 44px; }
.carousel__arrows { display: flex; gap: 8px; }
.carousel__arrows button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25); color: #fff; display: grid; place-items: center; transition: background var(--t-fast), border-color var(--t-fast); }
.carousel__arrows button:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.carousel__arrows svg { width: 18px; height: 18px; }
@media (max-width: 639px) { .carousel { min-height: 0; } .carousel__badge { margin-left: 0; } .carousel__who { flex-wrap: wrap; } }
@media (prefers-reduced-motion: reduce) { .carousel__slide { transition: none; } }

/* date inputs: native picker icon in the right colour, consistent height */
.field input[type="date"] { color-scheme: dark; min-height: 50px; }
.field input[type="date"]:invalid { color: var(--ink-4); }
.light .field input[type="date"] { color-scheme: light; }
.field input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .7; }
.consent input { flex: none; width: 18px; height: 18px; }
.consent span { flex: 1 1 200px; }

/* Northern Lights page: real photo sky with a faint twinkling starfield on top */
.universe__sky--photo img { opacity: .92; object-position: 50% 60%; -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.85) 0%, #000 30%); mask-image: linear-gradient(to bottom, rgba(0,0,0,.85) 0%, #000 30%); }
.universe__sky--photo canvas { opacity: .6; mix-blend-mode: screen; }

/* ---------- 29. Contact page ---------- */
.contact-grid { display: grid; gap: 28px; align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: 48px; } }
.contact-aside { display: grid; gap: 22px; }
.contact-list { display: grid; gap: 10px; }
.contact-list > li > a, .contact-list > li > div { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--surface); transition: border-color var(--t-fast), transform var(--t-fast) var(--ease); }
.contact-list > li > a:hover { border-color: var(--line-2); transform: translateX(3px); }
.contact-list__icon { flex: none; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #0a0a0b; }
.contact-list__icon svg { width: 20px; height: 20px; }
.contact-list strong { display: block; font-size: .9375rem; color: var(--ink); }
.contact-list strong + span { font-size: .8125rem; color: var(--ink-3); }
.contact-list__arrow { margin-left: auto; width: 16px; height: 16px; color: var(--ink-3); flex: none; }
.contact-social { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-form { padding: clamp(22px, 3vw, 36px); border-radius: var(--radius); box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .8); }
.contact-form .field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230a0a0b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.contact-map { position: relative; aspect-ratio: 16 / 7; min-height: 320px; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; filter: grayscale(1) contrast(1.05); }
.contact-map__label { position: absolute; left: 16px; bottom: 16px; padding: 12px 16px; border-radius: var(--radius-s); background: rgba(10, 10, 11, .88); border: 1px solid var(--line-2); font-size: .8125rem; color: var(--ink-2); }
.contact-map__label strong { display: block; color: #fff; }

/* ---------- 30. Trip builder ---------- */
.builder { display: grid; gap: clamp(28px, 4vw, 48px); max-width: 1120px; margin-inline: auto; }
.builder__step { display: grid; gap: 18px; }
.builder__head { display: flex; gap: 14px; align-items: flex-start; }
.builder__head h3 { font-size: 1.5rem; }
.builder__num { flex: none; width: 36px; height: 36px; border-radius: 50%; background: #0a0a0b; color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; }
.builder__grid { display: grid; gap: clamp(28px, 4vw, 48px); }
@media (min-width: 900px) { .builder__grid { grid-template-columns: 1fr 1fr; } }
.picks { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px) { .picks { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.pick { position: relative; display: block; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: #000; cursor: pointer; border: 2px solid transparent; transition: transform var(--t-fast) var(--ease), border-color var(--t-fast), box-shadow var(--t-fast); }
.pick:hover { transform: translateY(-3px); }
.pick input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pick img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease), filter var(--t-fast); filter: saturate(.75) brightness(.95); }
.pick:hover img { transform: scale(1.05); }
.pick::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 10, 11, .88) 0%, rgba(10, 10, 11, .3) 50%, rgba(10, 10, 11, 0) 75%); pointer-events: none; }
.pick__body { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 1; color: #fff; }
.pick__body strong { display: block; color: #fff; font-size: .9375rem; line-height: 1.25; }
.pick__body span { font-size: .75rem; color: rgba(255, 255, 255, .75); }
.pick__check { position: absolute; top: 12px; right: 12px; z-index: 1; width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .8); background: rgba(10, 10, 11, .35); display: grid; place-items: center; color: #0a0a0b; transition: background var(--t-fast), transform var(--t-fast) var(--ease); }
.pick__check svg { width: 16px; height: 16px; opacity: 0; stroke-width: 2.5; }
.pick:has(input:checked) { border-color: #0a0a0b; box-shadow: 0 16px 40px -18px rgba(10, 10, 11, .6); }
.pick:has(input:checked) img { filter: saturate(1) brightness(1); }
.pick:has(input:checked) .pick__check { background: #fff; border-color: #fff; transform: scale(1.05); }
.pick:has(input:checked) .pick__check svg { opacity: 1; }
.pick:has(input:focus-visible) { outline: 2px solid #0a0a0b; outline-offset: 3px; }
.summary { position: sticky; bottom: calc(76px + env(safe-area-inset-bottom, 0px)); z-index: 5; display: grid; gap: 14px; align-items: center; padding: 16px 18px; border-radius: var(--radius); background: #0a0a0b; color: #fff; box-shadow: 0 20px 50px -20px rgba(10, 10, 11, .6); }
@media (min-width: 768px) { .summary { bottom: 16px; grid-template-columns: auto 1fr auto auto; gap: 20px; padding: 16px 22px; } }
.summary__thumbs { display: flex; }
.summary__thumbs img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid #0a0a0b; margin-left: -10px; }
.summary__thumbs img:first-child { margin-left: 0; }
.summary__thumbs:empty::before { content: "0"; width: 40px; height: 40px; border-radius: 50%; border: 1px dashed rgba(255, 255, 255, .4); display: grid; place-items: center; font-size: .8125rem; color: rgba(255, 255, 255, .6); }
.summary__text strong { display: block; color: #fff; font-size: 1rem; }
.summary__text span { font-size: .8125rem; color: rgba(255, 255, 255, .65); }
.summary__price { display: flex; flex-direction: column; gap: 2px; }
.summary__price .price__from { color: rgba(255, 255, 255, .6); }
.summary__price .price__now { color: #fff; font-size: 1.75rem; }
.summary__price .price__unit { color: rgba(255, 255, 255, .6); max-width: 22ch; line-height: 1.3; }
.summary .btn { color: #0a0a0b; background: #fff; border-color: #fff; }
.summary .btn:hover { background: #e9e9ec; border-color: #e9e9ec; }
@media (max-width: 767px) { .summary { position: static; grid-template-columns: auto 1fr; } .summary__price { grid-column: 1 / -1; flex-direction: row; align-items: baseline; gap: 8px; flex-wrap: wrap; } .summary .btn { grid-column: 1 / -1; width: 100%; } }

/* ---------- 27. Accommodation (pages generated by _tools/build-accommodation.ps1) ---------- */
.stay-filters { display: flex; flex-wrap: wrap; gap: 10px 12px; align-items: center; margin-bottom: clamp(28px, 4vw, 40px); }
.stay-filters .field { display: inline-grid; gap: 0; margin-left: auto; }
.stay-filters .field select { min-height: 40px; padding: 6px 36px 6px 14px; font-size: .875rem; border-radius: var(--radius-pill); }
@media (max-width: 639px) { .stay-filters .field { margin-left: 0; width: 100%; } }
.stay-empty { padding: 40px 20px; text-align: center; color: var(--ink-3); border: 1px dashed var(--line-2); border-radius: var(--radius); }
.stay-card__rating { display: inline-flex; align-items: baseline; gap: 6px; font-size: .8125rem; color: var(--ink-3); }
.stay-card__rating strong { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; color: var(--ink); font-weight: 600; }
.stay-gallery { position: relative; }
.stay-gallery__hidden { display: none; }
.stay-beds { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.stay-beds div { padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--surface); font-size: .9375rem; color: var(--ink-2); }
.stay-beds strong { display: block; margin-bottom: 4px; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.stay-form { display: grid; gap: 14px; margin-top: 16px; }
.stay-form .field label { font-size: .8125rem; }
.stay-form .field input, .stay-form .field select, .stay-form .field textarea { min-height: 46px; padding: 10px 14px; font-size: .9375rem; }
.stay-form .field textarea { min-height: 96px; }
.stay-form__row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.stay-form .consent { font-size: .8125rem; }
.stay-form .form__status:empty { display: none; }
.stay-map { aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.stay-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(1) contrast(1.05); }

/* ---------- 27b. Accommodation, mobile-first refinements ---------- */
.stay-form fieldset { border: 0; padding: 0; margin: 0; min-width: 0; display: grid; gap: 14px; }
.stay-form [data-step="2"], .stay-form.is-step2 [data-step="1"] { display: none; }
.stay-form.is-step2 [data-step="2"] { display: grid; }
.stay-form__summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-s); background: var(--surface-2); font-size: .875rem; color: var(--ink-2); }
.stay-form__summary strong { color: var(--ink); font-weight: 500; }
.stay-form__summary button { flex: none; color: var(--ink); font-size: .8125rem; text-decoration: underline; text-underline-offset: 3px; }
.stay-form .read-more { margin-top: 0; }
.stay-form .read-more summary { font-size: .875rem; font-weight: 400; color: var(--ink-2); }
.stay-card__tags { display: none; }
.stay-sheet__close, .stay-sheet__backdrop { display: none; }
.stay-amenities .read-more summary { margin-top: 14px; }
.stay-amenities .read-more[open] summary { margin-bottom: 10px; }

@media (max-width: 639px) {
  /* sticky, swipeable filter row */
  .stay-filters { position: sticky; top: calc(var(--header-h) + env(safe-area-inset-top, 0px)); z-index: 40; flex-wrap: nowrap; overflow-x: auto; scroll-padding-inline: var(--gutter); scrollbar-width: none; gap: 8px; margin: 0 calc(-1 * var(--gutter)) 20px; padding: 10px var(--gutter); background: rgba(10, 10, 11, .94); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
  .stay-filters::-webkit-scrollbar { display: none; }
  .stay-filters > * { flex: 0 0 auto; }
  .stay-filters .field { width: auto; margin-left: 0; }
  .stay-filters .btn { white-space: nowrap; }
  /* compact list cards */
  [data-stay-grid] { gap: 12px; }
  [data-stay-grid] .tour-card { flex-direction: row; }
  [data-stay-grid] .tour-card__media { flex: 0 0 38%; aspect-ratio: auto; min-height: 140px; }
  [data-stay-grid] .tour-card__media::after { background: none; }
  [data-stay-grid] .tour-card__badges { display: none; }
  [data-stay-grid] .tour-card__body { padding: 12px 14px; gap: 6px; }
  [data-stay-grid] .tour-card__title { font-size: 1.125rem; }
  [data-stay-grid] .tour-card__desc, [data-stay-grid] .tour-card__foot .btn { display: none; }
  [data-stay-grid] .tour-card__meta { gap: 4px 10px; }
  [data-stay-grid] .chip { font-size: .75rem; }
  [data-stay-grid] .chip svg { width: 13px; height: 13px; }
  [data-stay-grid] .tour-card__foot { padding-top: 8px; }
  [data-stay-grid] .stay-card__tags { display: flex; flex-wrap: wrap; gap: 4px 10px; font-size: .6875rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
  .stay-card__rating strong { font-size: 1.25rem; }
  /* swipeable photo strip instead of the grid */
  .stay-gallery .tour-gallery { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); scrollbar-width: none; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); border-radius: 0; }
  .stay-gallery .tour-gallery::-webkit-scrollbar { display: none; }
  .stay-gallery .tour-gallery > * { flex: 0 0 84%; aspect-ratio: 4 / 3; scroll-snap-align: start; border-radius: var(--radius-s); }
  .stay-gallery .tour-gallery__more { bottom: 10px; right: 10px; }
}

@media (max-width: 767px) {
  /* request form as a bottom sheet, opened from the "Check availability" bar */
  .stay-sheet { position: fixed; left: 0; right: 0; bottom: 0; top: auto; z-index: 160; max-height: 92svh; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; transform: translateY(105%); transition: transform 320ms var(--ease); }
  .stay-sheet.is-open { transform: none; }
  .stay-sheet .booking__card { position: relative; border-radius: var(--radius) var(--radius) 0 0; border-bottom: 0; background: #0f0f11; padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px)); }
  .stay-sheet .spec-table { display: none; }
  .stay-sheet__close { display: grid; place-items: center; position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .08); color: var(--ink); }
  .stay-sheet__close svg { width: 20px; height: 20px; }
  .stay-sheet__backdrop { display: block; position: fixed; inset: 0; z-index: 150; background: rgba(0, 0, 0, .65); opacity: 0; pointer-events: none; transition: opacity 300ms var(--ease); }
  .stay-sheet__backdrop.is-open { opacity: 1; pointer-events: auto; }
}
@media (prefers-reduced-motion: reduce) { .stay-sheet, .stay-sheet__backdrop { transition: none; } }
@media (max-width: 639px) { .stay-stats { display: none; } }

/* ---------- 28. Mobile optimisation pass (phones, under 640px) ---------- */
.contact-map { width: 100%; max-width: 100%; }
@media (max-width: 639px) {
  :root { --section: 52px; }
  .section-head { margin-bottom: 24px; }
  /* Tour cards and guest quotes become swipeable rows instead of a tall stack.
     Full listings (/activities, /accommodation) keep the vertical list. */
  .grid--3:has(> .tour-card):not([data-tour-grid]):not([data-stay-grid]),
  .grid--2:has(> .tour-card):not([data-tour-grid]),
  .quotes:has(> .quote) {
    display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch;
    margin-inline: calc(-1 * var(--gutter)); padding: 4px var(--gutter) 8px; scroll-padding-inline: var(--gutter);
  }
  .grid--3:has(> .tour-card):not([data-tour-grid]):not([data-stay-grid])::-webkit-scrollbar,
  .grid--2:has(> .tour-card):not([data-tour-grid])::-webkit-scrollbar,
  .quotes:has(> .quote)::-webkit-scrollbar { display: none; }
  .grid--3:has(> .tour-card):not([data-tour-grid]):not([data-stay-grid]) > *,
  .grid--2:has(> .tour-card):not([data-tour-grid]) > *,
  .quotes:has(> .quote) > * { flex: 0 0 84%; scroll-snap-align: start; }
  .quote p { font-size: 1.125rem; }
  /* shorter cards everywhere on phones */
  .tour-card__media { aspect-ratio: 4 / 3; }
  .tour-card--activity .tour-card__media { aspect-ratio: 16 / 10; }
  .tour-card__body { padding: 16px; gap: 10px; }
  .tour-card__title { font-size: 1.375rem; }
  .post-card__media { aspect-ratio: 16 / 9; }
  .post-card__body { padding: 16px; }
  /* trip builder: shorter picture tiles */
  .pick { aspect-ratio: 4 / 3; }
  .features { gap: 20px; }
  .image-band { min-height: 320px; }
  .card--pad { padding: 20px; }
  /* comfortable tap targets */
  .link-arrow { min-height: 44px; display: inline-flex; align-items: center; }
  .breadcrumb li { display: inline-flex; align-items: center; min-height: 40px; }
  .trust { gap: 10px 24px; }
  .trust__item { min-height: 40px; }
  .read-more summary, .accordion__item summary { min-height: 44px; }
  /* contact map: height from the viewport, never from the aspect ratio */
  .contact-map { aspect-ratio: auto; height: 300px; min-height: 0; }
}

/* ---------- 29. Home: "Stay with us" featured accommodation slider ---------- */
.stay-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.stay-tabs button { position: relative; overflow: hidden; min-height: 40px; padding: 8px 18px; border: 1px solid var(--line-2); border-radius: var(--radius-pill); font-size: .875rem; font-weight: 500; color: var(--ink-2); white-space: nowrap; transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast); }
.stay-tabs button:hover { color: var(--ink); border-color: rgba(255, 255, 255, .5); }
.stay-tabs button[aria-selected="true"] { color: #0a0a0b; background: #fff; border-color: #fff; }
.stay-tabs button i { position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: rgba(10, 10, 11, .35); }
.stay-tabs button.is-playing i { animation: stay-progress var(--stay-dur, 6s) linear forwards; }
@keyframes stay-progress { from { width: 0; } to { width: 100%; } }
.stay-slider { position: relative; border-radius: var(--radius); overflow: hidden; background: #000; border: 1px solid var(--line); }
.stay-slider__track { position: relative; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; }
.stay-slider__track::-webkit-scrollbar { display: none; }
.stay-slide { position: relative; flex: 0 0 100%; scroll-snap-align: start; aspect-ratio: 16 / 9; max-height: 640px; min-height: 440px; }
.stay-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stay-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 10, 11, .92) 0%, rgba(10, 10, 11, .55) 38%, rgba(10, 10, 11, .05) 70%); pointer-events: none; }
.stay-slide__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: clamp(20px, 4vw, 44px); max-width: 620px; color: #fff; }
.stay-slide__body .eyebrow { color: rgba(255, 255, 255, .78); }
.stay-slide__body h3 { margin: 8px 0 10px; font-size: clamp(1.75rem, 3.6vw, 2.75rem); line-height: 1.05; color: #fff; }
.stay-slide__body p:not(.eyebrow) { font-size: .9375rem; line-height: 1.55; color: rgba(255, 255, 255, .82); max-width: 50ch; }
.stay-slide__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 14px 0 20px; }
.stay-slide__meta .chip, .stay-slide__meta .chip svg { color: rgba(255, 255, 255, .88); }
.stay-slider__count { position: absolute; top: 14px; right: 14px; z-index: 2; padding: 6px 10px; border-radius: var(--radius-pill); background: rgba(10, 10, 11, .55); border: 1px solid rgba(255, 255, 255, .18); font-family: var(--font-display); font-size: .9375rem; letter-spacing: .08em; color: #fff; }
.stay-slider__nav { position: absolute; top: 50%; z-index: 2; width: 46px; height: 46px; transform: translateY(-50%); display: grid; place-items: center; border-radius: 50%; color: #fff; background: rgba(10, 10, 11, .55); border: 1px solid rgba(255, 255, 255, .28); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); transition: background var(--t-fast), transform var(--t-fast) var(--ease); }
.stay-slider__nav:hover { background: rgba(255, 255, 255, .18); }
.stay-slider__nav svg { width: 20px; height: 20px; }
.stay-slider__nav--prev { left: 14px; }
.stay-slider__nav--next { right: 14px; }
@media (max-width: 639px) {
  .stay-tabs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); }
  .stay-tabs::-webkit-scrollbar { display: none; }
  .stay-tabs button { flex: 0 0 auto; }
  .stay-slide { aspect-ratio: 4 / 5; min-height: 0; max-height: none; }
  .stay-slide__body .btn { width: 100%; }
  .stay-slider__nav { display: none; }
}
@media (prefers-reduced-motion: reduce) { .stay-tabs button.is-playing i { animation: none; } }
@media (max-width: 639px) {
  .stay-slide { aspect-ratio: 3 / 4; }
  .stay-slide__body p:not(.eyebrow) { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .stay-slide__meta { gap: 6px 12px; margin: 10px 0 16px; }
  .stay-slide__meta .chip:nth-child(n+4) { display: none; }
}

/* ---------- 30. Guest reviews: platform logos and a touch of colour (the one place colour is allowed) ---------- */
.score-card__stars svg { color: #F5B301; }
.score-list a { grid-template-columns: auto 1fr auto; }
.score-list .logo { width: 22px; height: 22px; flex: none; }
.score-list .bar { grid-column: 1 / -1; }
.score-list a[data-platform="tripadvisor"] .bar i { background: #34E0A1; }
.score-list a[data-platform="google"] .bar i { background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335); }
.score-list a[data-platform="getyourguide"] .bar i { background: #FF5533; }
.score-list a:hover { border-color: rgba(255, 255, 255, .45); }
.carousel__badge { padding: 5px 10px 5px 6px; text-transform: none; letter-spacing: 0; font-size: .75rem; font-weight: 500; }
.carousel__badge .logo { width: 16px; height: 16px; }
.carousel__who .carousel__stars { display: inline-flex; gap: 2px; color: #F5B301; margin-bottom: 4px; }
.carousel__stars svg { width: 14px; height: 14px; }
.carousel__slide[data-platform="tripadvisor"] .carousel__quote-mark { color: #34E0A1; }
.carousel__slide[data-platform="google"] .carousel__quote-mark { color: #4285F4; }
.carousel__slide[data-platform="getyourguide"] .carousel__quote-mark { color: #FF5533; }
.carousel__slide[data-platform="tripadvisor"] .avatar { background: #34E0A1; }
.carousel__slide[data-platform="google"] .avatar { background: #FBBC05; }
.carousel__slide[data-platform="getyourguide"] .avatar { background: #FF5533; color: #fff; }
.carousel__quote-mark { opacity: .9; transition: color var(--t-fast); }
.reviews-band::before { content: ""; position: absolute; inset: auto -10% -30% -10%; height: 60%; background: radial-gradient(60% 60% at 50% 100%, rgba(52, 224, 161, .18), transparent 70%); pointer-events: none; z-index: 0; }

@media (max-width: 639px) { .carousel__dots { flex-wrap: wrap; gap: 6px; } .carousel__dots button { width: 14px; } .carousel__dots button.is-active { width: 26px; } }

.score-list .logo { min-width: 22px; }
.score-list strong { min-width: 0; }
@media (max-width: 639px) { .score-list span { font-size: .75rem; } .score-list a { padding: 10px 12px; gap: 6px 10px; } }


/* ---------- 31. Tour pages on phones/tablets: one swipeable photo row, booking card first ---------- */
@media (max-width: 1023px) {
  .tour-layout .booking { order: -1; position: static; }
  .tour-layout .tour-main { margin-top: 8px; }
}
@media (max-width: 639px) {
  .tour-gallery { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); border-radius: 0; }
  .tour-gallery::-webkit-scrollbar { display: none; }
  .tour-gallery > * { flex: 0 0 84%; aspect-ratio: 4 / 3; scroll-snap-align: start; border-radius: var(--radius-s); grid-column: auto; grid-row: auto; }
  .tour-gallery > :first-child { grid-column: auto; grid-row: auto; }
  .tour-gallery__more { right: calc(var(--gutter) + 10px); bottom: 10px; }
}
/* galleries with fewer than five photos (desktop grid) */
@media (min-width: 768px) {
  .tour-gallery--4 > :nth-child(2) { grid-column: 2 / 4; }
  .tour-gallery--3 { grid-template-columns: 2fr 1fr; }
}

/* ---------- 32. Phones: compact long sections (under 640px) ---------- */
@media (max-width: 639px) {
  .hero { min-height: 78svh; }
  .hero__content { padding-bottom: 40px; }
  .section-head .lede { font-size: 1rem; }
  .section-head h2 { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .image-band > .container.section { padding-block: 44px; }
  .image-band .split { margin-bottom: 20px !important; }
  /* "season" line above the review strip */
  .band > .container > .eyebrow.text-center { display: none; }
  /* photo cards (Why chase / Why choose) become compact rows */
  .grid:has(> .photo-card) { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .photo-card { aspect-ratio: auto; display: grid; grid-template-columns: 104px 1fr; min-height: 104px; background: var(--surface); border: 1px solid var(--line); }
  .light .photo-card { background: #fff; }
  .photo-card img { width: 104px; height: 100%; min-height: 104px; }
  .photo-card::after { display: none; }
  .photo-card__body { position: static; padding: 12px 14px; gap: 4px; align-content: center; }
  .photo-card__body h3 { font-size: 1.125rem; color: var(--ink); }
  .photo-card__body p { font-size: .8125rem; color: var(--ink-2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .photo-card__body .btn { display: none; }
  /* icon tiles: two columns, titles only */
  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .tile { padding: 14px; display: flex; align-items: center; gap: 10px; }
  .tile svg { width: 20px; height: 20px; margin: 0; flex: none; }
  .tile h3 { margin: 0; font-size: .8125rem; }
  .tile p { display: none; }
  /* guide cards become rows */
  .grid:has(> .post-card) { gap: 10px; }
  .post-card { flex-direction: row; }
  .post-card__media { flex: 0 0 34%; aspect-ratio: auto; min-height: 96px; }
  .post-card__body { padding: 12px 14px; gap: 4px; justify-content: center; }
  .post-card__title { font-size: 1rem; line-height: 1.3; }
  .post-card .eyebrow { font-size: .6875rem; }
  .post-card__excerpt, .post-card p:not(.eyebrow) { display: none; }
  /* review score card: one compact row */
  .score-card { padding: 18px; gap: 14px; }
  .score-card > div:first-child { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .score-card__num { font-size: 2.75rem; }
  .score-card__stars { margin: 0 !important; }
  .score-card__stars svg { width: 16px; height: 16px; }
  .score-card__sub { margin: 0 !important; flex-basis: 100%; }
  .score-card__rank { display: none; }
  /* small number cards sit three across; two-up stats */
  .card .grid--3:has(> .data-card) { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .card .data-card { padding: 12px 6px !important; }
  .card .data-card__value { font-size: 1.5rem !important; }
  .card .data-card__label { font-size: .625rem; }
  .stats--2 { grid-template-columns: 1fr 1fr; }
  .stats--2 .stats__item + .stats__item { border-top: 0; border-left: 1px solid var(--line); }
  .stats--2 .stats__item { padding: 20px 10px; }
  .stats--2 .stats__num { font-size: 2.25rem !important; }
  /* feature lists: two compact columns */
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .feature { flex-direction: column; gap: 8px; }
  .feature__icon { width: 36px; height: 36px; }
  .feature h3 { font-size: .875rem; margin-bottom: 2px; }
  .feature p { font-size: .8125rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  /* trip builder: collapsed until the visitor taps "Start building" */
  .builder-launch { display: grid; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
  .builder-launch p { color: var(--ink-2); font-size: .9375rem; }
  .builder.is-collapsed { display: none; }
  .builder__step { gap: 12px; }
  .builder__head h3 { font-size: 1.25rem; }
  .picks { gap: 8px; }
  .pick { aspect-ratio: 16 / 10; }
  .pick__body { left: 10px; right: 10px; bottom: 10px; }
  .pick__body strong { font-size: .8125rem; }
  .pick__body span { display: none; }
}
@media (min-width: 640px) { .builder-launch { display: none; } .builder.is-collapsed { display: grid; } }

/* ---------- 33. Mobile menu: full-screen aurora panel with staggered links ---------- */
.mobile-menu {
  display: flex; visibility: hidden; opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity 320ms var(--ease), transform 320ms var(--ease), visibility 0s linear 320ms;
  background: #0a0a0b; overflow: hidden;
}
.mobile-menu::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("/assets/img/aurora-forest-road-800.jpg") center 40% / cover no-repeat; opacity: 0; transform: scale(1.08);
  transition: opacity 600ms var(--ease) 80ms, transform 9s linear;
}
.mobile-menu::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(10, 10, 11, .92) 0%, rgba(10, 10, 11, .62) 45%, rgba(10, 10, 11, .94) 100%); }
.mobile-menu > * { position: relative; z-index: 1; }
.mobile-menu nav { counter-reset: item; display: grid; }
.mobile-menu nav a:not(.btn) {
  counter-increment: item; display: flex; align-items: baseline; gap: 14px; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: clamp(1.75rem, 8vw, 2.25rem); line-height: 1.1; color: #fff;
  opacity: 0; transform: translateY(18px); transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}
.mobile-menu nav a:not(.btn)::before { content: counter(item, decimal-leading-zero); font-family: var(--font-body); font-size: .6875rem; letter-spacing: .14em; color: rgba(255, 255, 255, .45); min-width: 22px; }
.mobile-menu a[aria-current="page"]::after { content: ""; margin-left: auto; width: 8px; height: 8px; border-radius: 50%; background: #fff; align-self: center; }
.mobile-menu .btn { margin-top: 22px; opacity: 0; transform: translateY(18px); transition: opacity 420ms var(--ease), transform 420ms var(--ease); }
.mobile-menu__meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 0; color: transparent; opacity: 0; transition: opacity 420ms var(--ease) 380ms; }
.mobile-menu__meta a { display: inline-flex; align-items: center; min-height: 40px; padding: 8px 14px; border: 1px solid rgba(255, 255, 255, .28); border-radius: var(--radius-pill); font-size: .875rem; color: #fff; background: rgba(10, 10, 11, .45); }
body.menu-open .mobile-menu { visibility: visible; opacity: 1; transform: none; pointer-events: auto; transition: opacity 320ms var(--ease), transform 320ms var(--ease), visibility 0s; }
body.menu-open .mobile-menu::before { opacity: 1; transform: scale(1); }
body.menu-open .mobile-menu nav a:not(.btn), body.menu-open .mobile-menu .btn { opacity: 1; transform: none; }
body.menu-open .mobile-menu__meta { opacity: 1; }
body.menu-open .mobile-menu nav > :nth-child(1) { transition-delay: 60ms; }
body.menu-open .mobile-menu nav > :nth-child(2) { transition-delay: 110ms; }
body.menu-open .mobile-menu nav > :nth-child(3) { transition-delay: 160ms; }
body.menu-open .mobile-menu nav > :nth-child(4) { transition-delay: 210ms; }
body.menu-open .mobile-menu nav > :nth-child(5) { transition-delay: 260ms; }
body.menu-open .mobile-menu nav > :nth-child(6) { transition-delay: 310ms; }
body.menu-open .mobile-menu nav > :nth-child(7) { transition-delay: 360ms; }
body.menu-open .mobile-menu nav > :nth-child(8) { transition-delay: 420ms; }
body.menu-open .site-header { background: transparent; border-color: transparent; }
body.menu-open .site-header::before { opacity: 0; }
.nav-toggle svg { transition: transform 300ms var(--ease); }
body.menu-open .nav-toggle .icon-close { transform: rotate(90deg); }
@media (prefers-reduced-motion: reduce) { .mobile-menu, .mobile-menu::before, .mobile-menu a, .mobile-menu .btn, .mobile-menu__meta { transition: none !important; } }
.mobile-menu nav a.btn { display: inline-flex; padding: 14px 24px; border-bottom: 0; font-family: var(--font-body); font-size: 1rem; color: #0a0a0b; }
.mobile-menu__meta a { flex: 1 1 100%; justify-content: center; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: var(--font-body); }

/* ---------- 34. Accommodation pages: warm colour accents (body.page-stay only) ---------- */
.page-stay {
  --stay-amber: #E9A23B; --stay-amber-soft: rgba(233, 162, 59, .16); --stay-amber-line: rgba(233, 162, 59, .45);
  --stay-ice: #8CC7E8; --stay-ice-soft: rgba(140, 199, 232, .16);
  --stay-gold: #F5B301; --stay-cream: #F6EFE4; --stay-cream-2: #EFE4D2;
}
.page-stay .hero .eyebrow, .page-stay .page-hero .eyebrow { color: var(--stay-amber); }
.page-stay .hero__actions .btn { background: var(--stay-amber); border-color: var(--stay-amber); color: #1a1208; }
.page-stay .hero__actions .btn:hover { background: #f0b45a; border-color: #f0b45a; }
/* stats: amber numbers on a faint warm glow */
.page-stay .stay-stats { position: relative; }
.page-stay .stay-stats::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 100%, rgba(233, 162, 59, .12), transparent 70%); pointer-events: none; }
.page-stay .stats__num { color: var(--stay-amber); }
/* filters: amber active pill */
.page-stay .stay-filters .btn[aria-pressed="true"] { background: var(--stay-amber); border-color: var(--stay-amber); color: #1a1208; }
.page-stay .stay-filters .btn--ghost:hover { border-color: var(--stay-amber-line); color: #fff; }
/* cards: coloured badges, gold rating, amber hover */
.page-stay .tour-card:hover { border-color: var(--stay-amber-line); }
.page-stay .tour-card__badges .badge { border-color: transparent; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.page-stay .tour-card__badges .badge:first-child { background: rgba(233, 162, 59, .85); color: #1a1208; }
.page-stay .tour-card__badges .badge:nth-child(2) { background: rgba(140, 199, 232, .85); color: #0b1a24; }
.page-stay .tour-card__badges .badge svg { color: inherit; }
.page-stay .stay-card__rating strong { color: var(--stay-gold); }
.page-stay .stay-card__rating strong::before { content: "\2605"; font-family: var(--font-body); font-size: .75em; margin-right: 4px; vertical-align: 2px; }
.page-stay .stay-card__tags span:first-child { color: var(--stay-amber); }
.page-stay .tour-card__foot .btn--ghost:hover { border-color: var(--stay-amber); color: var(--stay-amber); background: var(--stay-amber-soft); }
.page-stay .chip svg { color: var(--stay-ice); }
/* "How it works": cream band with amber icon tiles */
.page-stay .section.light { --bg: var(--stay-cream); --bg-2: var(--stay-cream-2); --line: rgba(60, 40, 10, .12); --line-2: rgba(60, 40, 10, .22); }
.page-stay .section.light .feature__icon { background: var(--stay-amber-soft); border-color: var(--stay-amber-line); color: #8a5a12; }
.page-stay .section.light .feature h3 { color: #1a1208; }
.page-stay .section.light .feature p { color: #4d4030; }
/* listing pages */
.page-stay .tour-specs .chip svg { color: var(--stay-ice); }
.page-stay .review-strip .stars { color: var(--stay-gold); }
.page-stay .review-strip strong { color: var(--stay-gold); }
.page-stay .feature__icon { background: var(--stay-amber-soft); border-color: var(--stay-amber-line); color: var(--stay-amber); }
.page-stay .checklist li svg { color: var(--stay-amber); }
.page-stay .stay-beds strong { color: var(--stay-ice); }
.page-stay .spec-table dd { color: #fff; }
.page-stay .booking__card { border-color: var(--stay-amber-line); box-shadow: 0 0 0 1px rgba(233, 162, 59, .12), 0 24px 60px -30px rgba(233, 162, 59, .35); }
.page-stay .booking__card .eyebrow { color: var(--stay-amber); }
.page-stay .stay-form .btn { background: var(--stay-amber); border-color: var(--stay-amber); color: #1a1208; }
.page-stay .stay-form .btn:hover { background: #f0b45a; border-color: #f0b45a; }
.page-stay .stay-form__summary { border-color: var(--stay-amber-line); }
.page-stay .bookbar .btn { background: var(--stay-amber); border-color: var(--stay-amber); color: #1a1208; }
.page-stay .bookbar__price strong { color: var(--stay-amber); }
.page-stay .stay-map iframe { filter: none; }
.page-stay .tour-gallery__more { background: rgba(233, 162, 59, .92); border-color: transparent; color: #1a1208; }
.page-stay .read-more summary { color: var(--stay-amber); text-decoration-color: var(--stay-amber-line); }
.page-stay .link-arrow:hover, .page-stay .section-cta .link:hover { color: var(--stay-amber); }
/* hero of the overview: warmer scrim so the pink light comes through */
.page-stay .hero--short .hero__scrim { background: linear-gradient(to top, rgba(10, 10, 11, .94) 0%, rgba(10, 10, 11, .55) 45%, rgba(40, 20, 30, .25) 100%); }
/* phones: hero buttons stack full width */
@media (max-width: 639px) { .hero__actions .btn--lg { width: 100%; } }

/* ---------- 35. Home: "Daytime in Lapland" photo mosaic + day plan ---------- */
.daygrid { display: grid; gap: 12px; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 200px; }
.daytile { position: relative; display: block; overflow: hidden; border-radius: var(--radius); background: #000; color: #fff; }
.daytile--big { grid-column: span 2; grid-row: span 2; }
.daytile--wide { grid-column: span 2; }
.daytile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms var(--ease), filter 600ms var(--ease); filter: saturate(1.05); }
.daytile:hover img { transform: scale(1.06); }
.daytile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 10, 11, .88) 0%, rgba(10, 10, 11, .35) 45%, rgba(10, 10, 11, 0) 75%); transition: opacity var(--t-fast); }
.daytile__when { position: absolute; top: 12px; left: 12px; z-index: 1; display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: var(--radius-pill); background: rgba(10, 10, 11, .55); border: 1px solid rgba(255, 255, 255, .2); font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.daytile__when svg { width: 12px; height: 12px; }
.daytile__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 16px; display: grid; gap: 4px; transform: translateY(6px); transition: transform 500ms var(--ease); }
.daytile:hover .daytile__body { transform: none; }
.daytile__body h3 { font-size: 1.25rem; line-height: 1.15; color: #fff; }
.daytile--big .daytile__body h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.daytile__meta { font-size: .8125rem; color: rgba(255, 255, 255, .78); display: flex; flex-wrap: wrap; gap: 4px 12px; }
.daytile__meta strong { color: #fff; font-weight: 500; }
.daytile__arrow { position: absolute; right: 14px; bottom: 14px; z-index: 1; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #0a0a0b; opacity: 0; transform: translateX(6px); transition: opacity var(--t-fast), transform var(--t-fast) var(--ease); }
.daytile__arrow svg { width: 16px; height: 16px; }
.daytile:hover .daytile__arrow, .daytile:focus-visible .daytile__arrow { opacity: 1; transform: none; }
.dayplan { margin-top: 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; padding: 16px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.dayplan__label { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-right: 6px; }
.dayplan__step { display: inline-flex; align-items: center; gap: 8px; font-size: .9375rem; color: var(--ink); }
.dayplan__step time { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--ink); }
.dayplan__step + .dayplan__step::before { content: ""; width: 18px; height: 1px; background: var(--line-2); margin-right: 4px; }
.dayplan__cta { margin-left: auto; }
@media (max-width: 1023px) { .daygrid { grid-auto-rows: 170px; } }
@media (max-width: 639px) {
  .daygrid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 150px; gap: 8px; }
  .daytile--big { grid-column: span 2; grid-row: span 1; }
  .daytile--big .daytile__body h3 { font-size: 1.375rem; }
  .daytile__body { padding: 12px; }
  .daytile__body h3 { font-size: 1rem; }
  .daytile__meta { font-size: .75rem; }
  .daytile__arrow { display: none; }
  .dayplan { padding: 14px; gap: 8px 12px; }
  .dayplan__step + .dayplan__step::before { display: none; }
  .dayplan__cta { margin-left: 0; width: 100%; }
}

/* ---------- 36. Section with a soft aurora glow in the background (home: Daytime in Lapland) ---------- */
.section--glow { position: relative; overflow: hidden; }
.section--glow::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 70% at 15% 20%, rgba(52, 224, 161, .16), transparent 65%),
    radial-gradient(50% 60% at 85% 80%, rgba(120, 140, 255, .14), transparent 65%),
    radial-gradient(40% 40% at 60% 10%, rgba(140, 199, 232, .08), transparent 70%);
}
.section--glow > .container { position: relative; z-index: 1; }
