/* ==========================================================================
   Butterfly Cottage — Grantown-on-Spey
   Design: limewash paper, slate-pine, larch copper. Erode + Switzer.
   ========================================================================== */

/* ---------- Fonts ----------
   Self-hosted, so no visitor IP reaches a third party and there is no extra
   DNS and TLS handshake on the critical path. Files and the licence are in
   assets/fonts/. Replacing them: see README. */
@font-face {
  font-family: 'Erode';
  src: url('fonts/Erode-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Erode';
  src: url('fonts/Erode-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('fonts/Switzer-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('fonts/Switzer-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('fonts/Switzer-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.25rem + 1.1vw, 2.125rem);
  --text-2xl: clamp(2rem, 1.35rem + 2.4vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1.4rem + 3.6vw, 4.25rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --font-display: 'Erode', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Switzer', 'Inter', system-ui, sans-serif;

  --radius-sm: 2px;
  --radius-md: 3px;
  --measure: 64ch;
  --page: 1220px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --section-y: clamp(4rem, 9vw, 8.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

:root,
[data-theme='light'] {
  color-scheme: light;
  --bg: #f5f2ea;
  --surface: #fdfbf6;
  --surface-2: #efeade;
  --ink: #1c211d;
  --ink-soft: #40463f;
  --muted: #6b6a60;
  --faint: #a8a49a;
  --line: #ded7c8;
  --line-strong: #c9c1ae;
  --primary: #23504a;
  --primary-hover: #163b36;
  --on-primary: #fbfaf6;
  --accent: #9d5f2f;

  /* Brand green (BC brand identity 2021: #b0cb1f) — darkened for contrast on cream */
  --brand-green: #6e8410;
  --logo: #23504a;
  --accent-soft: #e9dccc;
  --shadow: 0 1px 2px rgb(28 33 29 / 0.04), 0 12px 32px -12px rgb(28 33 29 / 0.12);
}

[data-theme='dark'] {
  color-scheme: dark;
  --bg: #141816;
  --surface: #1b201d;
  --surface-2: #232a26;
  --ink: #ece7db;
  --ink-soft: #cfcabd;
  --muted: #9a978c;
  --faint: #6d6a62;
  --line: #2e352f;
  --line-strong: #414a42;
  --primary: #8fbcaf;
  --primary-hover: #a9cfc3;
  --on-primary: #10201c;
  --accent: #d29b6d;
  --brand-green: #b0cb1f;
  --logo: #ece7db;
  --accent-soft: #2b322c;
  --shadow: 0 1px 2px rgb(0 0 0 / 0.3), 0 16px 40px -16px rgb(0 0 0 / 0.55);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
a {
  color: inherit;
  touch-action: manipulation;
}
button {
  font: inherit;
  color: inherit;
  touch-action: manipulation;
}
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
::selection {
  background: var(--accent-soft);
  color: var(--ink);
}

/* ---------- Type ---------- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 {
  font-size: var(--text-3xl);
}
h2 {
  font-size: var(--text-xl);
}
h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
p {
  text-wrap: pretty;
}
.lede {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}
.prose {
  max-width: var(--measure);
}
.prose p + p {
  margin-top: var(--space-5);
}
.prose a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-strong);
  transition: text-decoration-color 0.2s;
}
.prose a:hover {
  text-decoration-color: var(--primary);
}

.eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--muted);
}
.rule {
  height: 1px;
  background: var(--line);
  border: 0;
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
/* Notch and rounded corners in landscape: only ever adds padding. */
@supports (padding: max(0px)) {
  .wrap {
    padding-left: max(var(--gutter), env(safe-area-inset-left));
    padding-right: max(var(--gutter), env(safe-area-inset-right));
  }
}
section {
  padding-block: var(--section-y);
}
.section-head {
  display: grid;
  gap: var(--space-4);
  max-width: 62ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.header[data-scrolled='true'] {
  border-bottom-color: var(--line);
}
/* Seven nav entries, a four-language switcher and the booking button do not
   fit the 1220px article measure, so the header gets a wider track. */
.header .wrap {
  max-width: 1400px;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  min-height: 4.75rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  margin-right: auto;
  color: var(--ink);
}
.brand svg {
  width: 2.25rem;
  height: auto;
  color: var(--primary);
  flex: none;
}
/* Official Butterfly Cottage wordmark, drawn as a mask so it inherits colour */
.brand__logo {
  display: block;
  width: 13.5rem;
  height: 3.021rem;
  flex: none;
  background-color: var(--logo);
  -webkit-mask: url('logo.svg') no-repeat left center / contain;
  mask: url('logo.svg') no-repeat left center / contain;
  transition: background-color 0.25s var(--ease);
}
.brand:hover .brand__logo {
  background-color: var(--accent);
}
@media (max-width: 560px) {
  .brand__logo {
    width: 10.6rem;
    height: 2.372rem;
  }
}
@media (max-width: 480px) {
  .brand__logo {
    width: 8.2rem;
    height: 1.835rem;
  }
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.brand__sub {
  display: block;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.1vw, 1.15rem);
}
.nav a {
  font-size: var(--text-sm);
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink-soft);
  padding-block: 0.35rem;
  border-bottom: 1px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--accent);
}
/* The map is the only nav entry that leaves the page, so it says so. */
.nav__map {
  display: inline-flex;
  align-items: center;
  gap: 0.32em;
  color: var(--ink);
}
.nav__map svg {
  width: 0.7em;
  height: 0.7em;
  flex: none;
  opacity: 0.7;
}
.nav__map:hover svg {
  opacity: 1;
}
.header__tools {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.lang {
  display: flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.lang a {
  padding: 0.3rem 0.5rem;
  text-decoration: none;
  color: var(--muted);
}
.lang a[aria-current='true'] {
  background: var(--ink);
  color: var(--bg);
}
/* Four languages have to stay inside a 360px header */
@media (max-width: 620px) {
  .lang a {
    padding: 0.3rem 0.28rem;
    letter-spacing: 0;
  }
}
@media (max-width: 480px) {
  .header__inner {
    gap: var(--space-3);
  }
  .header__tools {
    gap: 0.375rem;
  }
  .lang a {
    padding: 0.3rem 0.25rem;
  }
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--ink-soft);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.icon-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.icon-btn svg {
  width: 1.05rem;
  height: 1.05rem;
}
[data-theme='dark'] .icon-sun,
.icon-moon {
  display: none;
}
[data-theme='dark'] .icon-moon {
  display: block;
}

.burger {
  display: none;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--primary);
  --btn-fg: var(--on-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s,
    transform 0.25s var(--ease);
}
.btn:hover {
  --btn-bg: var(--primary-hover);
  transform: translateY(-1px);
}
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--ink);
}
.btn--light {
  --btn-bg: #fdfbf6;
  --btn-fg: #1c211d;
  border-color: #fdfbf6;
}
.btn--light:hover {
  --btn-bg: #fff;
  --btn-fg: #1c211d;
  border-color: #fff;
}
.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fdfbf6;
  border-color: rgb(253 251 246 / 0.55);
}
.btn--outline-light:hover {
  --btn-bg: rgb(253 251 246 / 0.12);
  --btn-fg: #fdfbf6;
  border-color: #fdfbf6;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(2.5rem, 5vw, 4rem) 0;
}
.hero__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.hero__grid > .eyebrow {
  grid-column: 1 / -1;
}
.hero h1 {
  margin: 0;
}
.hero__aside {
  display: grid;
  align-content: end;
  /* --space-7 does not exist in the scale above, so this used to resolve to
     "normal" and the buttons sat directly under the paragraph. */
  gap: var(--space-8);
}
.hero__aside p {
  margin: 0;
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }
  .hero__aside {
    padding-bottom: 0.4rem;
  }
}
.hero__band {
  position: relative;
  isolation: isolate;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
/* Two crops are cut from the same photo in build_images.py, so the box only has
   to match the crop it gets. No object-position nudging needed. */
.hero__band img {
  display: block;
  width: 100%;
  aspect-ratio: 2.4 / 1;
  object-fit: cover;
}
@media (max-width: 700px) {
  .hero__band img {
    aspect-ratio: 1 / 1;
  }
}
.hero__band::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, rgb(12 18 16 / 0.5), transparent);
  pointer-events: none;
}
.hero__season {
  position: absolute;
  z-index: 1;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  margin: 0;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(253 251 246 / 0.85);
  text-shadow: 0 1px 10px rgb(0 0 0 / 0.55);
}
@media (max-width: 640px) {
  .hero__season {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 460px) {
  .brand__sub {
    display: none;
  }
}

/* ---------- Facts strip ---------- */
.facts {
  background: var(--surface);
  border-block: 1px solid var(--line);
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
}
.facts ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: var(--space-6) var(--space-6);
}
.facts li {
  display: grid;
  gap: 0.3rem;
}
.facts dt,
.facts .facts__k {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  font-weight: 600;
}
.facts .facts__v {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  line-height: 1.2;
}

/* ---------- Split (text + image) ---------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--reverse > *:first-child {
    order: 2;
  }
  .split--wide-text {
    grid-template-columns: 1.15fr 0.85fr;
  }
}
.frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-2);
}
.frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.frame--portrait img {
  aspect-ratio: 3 / 4;
}
.caption {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--muted);
}

.pullquote {
  margin-top: var(--space-8);
  padding-left: var(--space-6);
  border-left: 2px solid var(--accent);
}
.pullquote p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.4;
}
.pullquote cite {
  display: block;
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Amenities ---------- */
.amenities {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}
@media (min-width: 1000px) {
  .amenities {
    grid-template-columns: repeat(3, 1fr);
  }
  .amenity:nth-child(5) {
    grid-column: span 2;
  }
  .amenity:nth-child(5) ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--space-8);
  }
}
.amenity {
  border-top: 1px solid var(--line-strong);
  padding-top: var(--space-5);
}
.amenity h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--text-base);
  letter-spacing: 0.02em;
}
.amenity h3 svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent);
  flex: none;
}
.amenity ul {
  list-style: none;
  padding: 0;
  margin-top: var(--space-4);
  display: grid;
  gap: 0.55rem;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
.amenity li {
  padding-left: 1rem;
  position: relative;
}
.amenity li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 1px;
  background: var(--faint);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery > *:nth-child(1),
  .gallery > *:nth-child(9) {
    grid-column: span 2;
  }
  .gallery > *:nth-child(1) img,
  .gallery > *:nth-child(9) img {
    aspect-ratio: 16 / 9;
  }
}
.shot {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  display: block;
  height: 100%;
}
/* The WebP <picture> wrapper must not become a layout box of its own,
   otherwise the img loses its percentage height inside the grid cell. */
.shot picture {
  display: contents;
}
.shot img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.shot:hover img {
  transform: scale(1.04);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgb(12 16 14 / 0.94);
  backdrop-filter: blur(4px);
  overscroll-behavior: contain;
}
.lightbox[open] {
  display: grid;
}
.lightbox img {
  max-width: min(1200px, 100%);
  max-height: 82vh;
  width: auto;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.lightbox figcaption {
  margin-top: var(--space-4);
  text-align: center;
  color: rgb(253 251 246 / 0.78);
  font-size: var(--text-sm);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgb(253 251 246 / 0.1);
  border: 1px solid rgb(253 251 246 / 0.28);
  color: #fdfbf6;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgb(253 251 246 / 0.24);
}
.lightbox__close {
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav[data-dir='prev'] {
  left: clamp(0.5rem, 2vw, 2rem);
}
.lightbox__nav[data-dir='next'] {
  right: clamp(0.5rem, 2vw, 2rem);
}
.lightbox svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* ---------- Video ---------- */
.video {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 100%;
  display: block;
}
.video img,
.video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.video__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgb(16 22 19 / 0.35);
  transition: background 0.3s;
}
.video:hover .video__play {
  background: rgb(16 22 19 / 0.2);
}
.video__play span {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgb(253 251 246 / 0.92);
  color: #1c211d;
}
.video__play svg {
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 3px;
}

/* ---------- Practical table ---------- */
.know {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.know dl {
  display: grid;
  gap: 0;
  margin: 0;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .know dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2rem, 5vw, 5rem);
  }
}
.know__row {
  display: grid;
  grid-template-columns: minmax(9rem, 12rem) 1fr;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.know__row dt {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 600;
  color: var(--muted);
}
.know__row dd {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
/* Links in this table inherited body colour and had no underline, so they did
   not read as links at all. */
.know__row a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.know__row a:hover {
  text-decoration-thickness: 2px;
}
/* The terms link must be unmistakably clickable */
.know__row a.link-strong {
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration-thickness: 2px;
}
@media (max-width: 480px) {
  .know__row {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }
}

/* ---------- FAQ ---------- */
/* Native <details>, so it works without JavaScript and stays keyboard
   operable and findable by the browser's own in-page search. */
.faq {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  max-width: 68ch;
}
.faq > h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}
.faq__item {
  border-top: 1px solid var(--line);
}
.faq__item:last-of-type {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-5);
  padding-block: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary:hover {
  color: var(--primary);
}
.faq__item summary::after {
  content: '';
  flex: none;
  width: 0.5em;
  height: 0.5em;
  margin-top: 0.15em;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}
.faq__item[open] summary::after {
  transform: rotate(-135deg);
}
.faq__answer {
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- Reviews ---------- */
.score {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-4) var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--line);
}
.score__big {
  font-variant-numeric: tabular-nums;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1;
}
.score__meta {
  font-size: var(--text-sm);
  color: var(--muted);
}
.score__bars {
  display: grid;
  gap: 0.4rem;
  min-width: min(100%, 17rem);
  margin-left: auto;
}
.score__bar {
  font-variant-numeric: tabular-nums;
  display: grid;
  grid-template-columns: 6.5rem 1fr 2.2rem;
  gap: var(--space-3);
  align-items: center;
  font-size: var(--text-xs);
  color: var(--muted);
}
.score__track {
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.score__fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
}
.quotes {
  margin-top: var(--space-12);
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: grid;
  align-content: start;
  gap: var(--space-4);
}
.quote blockquote {
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink-soft);
}
.quote figcaption {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Area / links ---------- */
.area {
  display: grid;
  gap: var(--space-10) var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}
.area__block h3 {
  font-size: var(--text-base);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line-strong);
}
.area__block p {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
.linklist {
  list-style: none;
  padding: 0;
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.linklist a {
  display: inline-block;
  font-size: var(--text-xs);
  padding: 0.28rem 0.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink-soft);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.linklist a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.map-cta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--surface-2);
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.map-cta p {
  max-width: 48ch;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  margin-top: var(--space-2);
}

/* ---------- Hosts ---------- */
.hosts {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  max-width: 56rem;
}
.host img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: saturate(0.94);
}
.host h3 {
  margin-top: var(--space-4);
  font-size: var(--text-base);
}
.host p {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--muted);
}

/* Hosts' own story, below the portraits */
.story {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  max-width: 58ch;
}
.story h3 {
  font-size: var(--text-lg);
}
.story p {
  margin-top: var(--space-5);
  color: var(--ink-soft);
}
.story__close {
  margin-top: var(--space-8);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
}
/* Awards and review links, set off from the story above */
.story__awards {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--line);
}
/* Breathing room before the booking band */
#hosts {
  padding-bottom: calc(var(--section-y) + clamp(1.5rem, 5vw, 3rem));
}

/* ---------- Booking band ---------- */
.book {
  background: var(--primary);
  color: var(--on-primary);
}
[data-theme='dark'] .book {
  background: #1d3a35;
  color: #ece7db;
}
.book h2 {
  color: inherit;
}
.book .lede {
  color: color-mix(in srgb, currentColor 82%, transparent);
}
.book__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 900px) {
  .book__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}
.book__contact {
  display: grid;
  gap: var(--space-4);
  font-size: var(--text-sm);
}
.book__contact a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor 40%, transparent);
  text-underline-offset: 3px;
}
.book__contact a:hover {
  text-decoration-color: currentColor;
}
.book__row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid color-mix(in srgb, currentColor 22%, transparent);
}
.book__row span:first-child {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  opacity: 0.72;
}
.book__row small {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: var(--text-xs);
  opacity: 0.68;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-block: var(--space-16) var(--space-10);
  font-size: var(--text-sm);
  color: var(--muted);
}
.footer__grid {
  display: grid;
  gap: var(--space-10);
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}
.footer h3 {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink);
  margin-bottom: var(--space-4);
}
.footer ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.footer a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s;
}
.footer a:hover {
  color: var(--ink);
}
.footer__legal {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  font-size: var(--text-xs);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .shot img,
  .btn,
  .nav,
  .faq__item summary::after {
    transition: none;
  }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 1279px) {
  .burger {
    display: grid;
  }
  .nav {
    position: fixed;
    inset: 4.75rem 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: var(--space-2) var(--gutter) var(--space-6);
    transform: translateY(-130%);
    transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav[data-open='true'] {
    transform: none;
  }
  .nav a {
    padding-block: var(--space-4);
    border-bottom: 1px solid var(--line);
    font-size: var(--text-base);
  }
  .nav a:hover {
    border-bottom-color: var(--line);
  }
  .header__cta {
    display: none;
  }
}
@media (min-width: 1280px) {
  .nav {
    transform: none !important;
  }
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: var(--gutter);
  top: 0.5rem;
  z-index: 200;
  background: var(--surface);
  padding: 0.6rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Footer brand + credentials ---------- */
.footer__mark {
  display: block;
  width: 12.65rem;
  max-width: 100%;
  height: 2.86rem;
  margin-bottom: var(--space-5);
  background-color: var(--logo);
  -webkit-mask: url('logo.svg') no-repeat left center / contain;
  mask: url('logo.svg') no-repeat left center / contain;
}
.social {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-5);
}
.social a {
  display: grid;
  place-items: center;
  width: 2.375rem;
  height: 2.375rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  background: none;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.social a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}
.social svg {
  width: 1.1875rem;
  height: 1.1875rem;
  display: block;
}
.creds {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6) var(--space-10);
}
.cred {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  max-width: 19rem;
}
.cred svg {
  width: 2.625rem;
  height: 2.625rem;
  flex: none;
  color: var(--brand-green);
}
.cred__t {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.cred__d {
  display: block;
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: 1.4;
  margin-top: 0.15rem;
}
