/* ============================================================
   Lyng Cabins — styles
   Palette (locked): Light Ground #F6F4EF · Warm Chalk #E2DBCF
   Charcoal Bark #292624 · Heather Accent #B97E87 · Forest Shadow #465037
   Type: Fraunces (serif, atmospheric) + Schibsted Grotesk (sans, usable)
   ============================================================ */

:root {
  --ground: #F6F4EF;
  --chalk: #E2DBCF;
  --bark: #292624;
  --heather: #B97E87;
  --forest: #465037;

  --ink: var(--bark);
  --ink-soft: #55504b;
  --line: rgba(41, 38, 36, 0.14);
  --line-heather: rgba(185, 126, 135, 0.45);

  --serif: "Fraunces", "Georgia", serif;
  --sans: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;

  --measure: 62ch;
  --radius: 2px;
  --radius-img: 4px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section: clamp(4rem, 9vw, 8.5rem);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}

::selection { background: var(--chalk); }

/* ---------- Type system ---------- */
.serif { font-family: var(--serif); }

.display {
  font-family: var(--serif);
  font-weight: 420;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.h2 {
  font-family: var(--serif);
  font-weight: 440;
  font-size: clamp(1.75rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.3;
}
.lede {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  max-width: var(--measure);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--heather);
  flex: none;
}
.muted { color: var(--ink-soft); }
.small { font-size: 0.9375rem; }

/* ---------- Layout ---------- */
.wrap {
  width: min(1240px, 100% - 2 * var(--gutter));
  margin-inline: auto;
}
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }

/* Heather divider — the brand signature: fine line with growth points */
.heather-rule {
  border: 0;
  height: 14px;
  margin: 0 auto;
  width: min(1240px, 100% - 2 * var(--gutter));
  background:
    radial-gradient(circle 2.5px at 12px 7px, var(--heather) 98%, transparent),
    radial-gradient(circle 2px at 26px 7px, var(--heather) 98%, transparent),
    radial-gradient(circle 1.5px at 37px 7px, var(--heather) 98%, transparent),
    linear-gradient(var(--line-heather), var(--line-heather)) 0 50% / 100% 1px no-repeat;
  background-repeat: no-repeat;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 48px;
  padding: 0.75em 1.6em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.btn--primary {
  background: var(--bark);
  color: var(--ground);
}
.btn--primary:hover { background: #3d3936; }
.btn--ghost {
  background: transparent;
  color: var(--bark);
  border-color: currentColor;
}
.btn--ghost:hover { background: rgba(41, 38, 36, 0.06); }
.btn--light {
  background: var(--ground);
  color: var(--bark);
}
.btn--light:hover { background: #fffdf8; }
.btn--ghost-light {
  background: transparent;
  color: var(--ground);
  border-color: rgba(246, 244, 239, 0.6);
}
.btn--ghost-light:hover { border-color: var(--ground); background: rgba(246, 244, 239, 0.08); }

.text-link {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line-heather);
  padding-bottom: 2px;
  transition: border-color 150ms ease;
}
.text-link:hover { border-color: var(--heather); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ground);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.1rem;
}
.site-header__logo img {
  height: 34px;
  width: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2.2rem);
}
.site-nav a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.35em 0;
  border-bottom: 1px solid transparent;
  transition: border-color 150ms ease;
}
.site-nav a:not(.btn):hover,
.site-nav a[aria-current="page"] { border-bottom-color: var(--heather); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.6rem;
  margin-right: -0.6rem;
}
.nav-toggle__bar {
  display: block;
  width: 24px; height: 2px;
  background: var(--bark);
  margin: 5px 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ground);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.5rem;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.btn) {
    width: 100%;
    padding: 0.85em 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.0625rem;
  }
  .site-nav .btn { margin-top: 1.1rem; width: 100%; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  color: var(--ground);
  isolation: isolate;
}
.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(30, 28, 26, 0.72) 0%,
    rgba(30, 28, 26, 0.28) 45%,
    rgba(30, 28, 26, 0.12) 100%
  );
}
.hero__content {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  max-width: 40rem;
}
.hero__content .display { color: #fbfaf6; }
.hero__intro {
  margin-top: 1.2rem;
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: rgba(251, 250, 246, 0.92);
  max-width: 34rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* Small hero (subpages) */
.hero--page { min-height: min(62vh, 560px); }

/* ---------- Booking bar ---------- */
.booking-bar {
  background: var(--chalk);
  border-radius: var(--radius-img);
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr auto;
  gap: 1rem;
  align-items: end;
  margin-top: -3.25rem;
  position: relative;
  z-index: 5;
  box-shadow: 0 18px 40px -28px rgba(41, 38, 36, 0.45);
}
.booking-bar label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}
.booking-bar select,
.booking-bar input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(41, 38, 36, 0.22);
  border-radius: var(--radius);
  background: var(--ground);
  color: var(--ink);
  font: inherit;
  font-size: 0.9375rem;
  padding: 0.55em 0.8em;
}
.booking-bar .btn { min-height: 48px; }

@media (max-width: 960px) {
  .booking-bar { grid-template-columns: 1fr 1fr; margin-top: -2.5rem; }
  .booking-bar .btn { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .booking-bar { grid-template-columns: 1fr; }
}

/* ---------- Cabin cards ---------- */
.cabin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (max-width: 960px) { .cabin-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cabin-grid { grid-template-columns: 1fr; } }

.cabin-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: transparent;
}
.cabin-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-img);
  aspect-ratio: 4 / 5;
}
.cabin-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.cabin-card:hover .cabin-card__media img { transform: scale(1.035); }
.cabin-card__tag {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  background: var(--ground);
  color: var(--bark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4em 0.85em;
  border-radius: var(--radius);
}
.cabin-card__body { padding-top: 1.1rem; }
.cabin-card__name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 470;
}
.cabin-card__meta {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.cabin-card__price {
  margin-top: 0.7rem;
  font-size: 0.9375rem;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 0.5em;
}
.cabin-card__price .muted { font-weight: 400; }

/* Coming-soon teaser cards: muted imagery, softened tone */
.cabin-card--soon .cabin-card__media img {
  filter: saturate(0.55) brightness(0.98);
}
.cabin-card--soon .cabin-card__tag {
  background: var(--chalk);
  color: var(--ink-soft);
}
.cabin-card--soon .cabin-card__price {
  font-weight: 500;
  color: var(--heather);
}

/* Teaser page signup */
.teaser-signup {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
  max-width: 540px;
}
.teaser-signup input[type="email"] {
  flex: 1;
  min-width: 200px;
  min-height: 48px;
  border: 1px solid rgba(41, 38, 36, 0.25);
  border-radius: var(--radius);
  background: var(--ground);
  padding: 0.6em 0.9em;
  font: inherit;
  font-size: 0.9375rem;
}
.teaser-signup .consent { flex-basis: 100%; margin-top: 0.3rem; }

/* ---------- Section headers ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.section-head .h2 { max-width: 24ch; }
@media (max-width: 640px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}

/* ---------- Editorial split ---------- */
.editorial {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.editorial--flip { grid-template-columns: minmax(0, 4fr) minmax(0, 5fr); }
.editorial > * { min-width: 0; }
@media (max-width: 860px) {
  .editorial, .editorial--flip { grid-template-columns: 1fr; }
}
.editorial__media { position: relative; }
.editorial__media img { border-radius: var(--radius-img); width: 100%; }
.editorial__media--stack {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 1.25rem;
  align-items: start;
}
.editorial__media--stack figure { margin: 0; min-width: 0; }
.editorial__media--stack figure:last-child { margin-top: clamp(2rem, 6vw, 5rem); }
.editorial figure { margin: 0; min-width: 0; }
.editorial figcaption,
.img-caption {
  margin-top: 0.6rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.7em;
  align-items: baseline;
}
.img-caption__loc {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.6875rem;
  color: var(--heather);
  flex: none;
}

/* ---------- Included (icon grid) ---------- */
.band--chalk { background: var(--chalk); }
.band--forest { background: var(--forest); color: var(--ground); }
.band--bark { background: var(--bark); color: var(--ground); }

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 4rem);
}
@media (max-width: 860px) { .included-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .included-grid { grid-template-columns: 1fr; } }

.included-grid--half { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .included-grid--half { grid-template-columns: 1fr; } }

.included-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.1rem;
  align-items: start;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(41, 38, 36, 0.16);
}
.included-item img { width: 56px; height: 56px; object-fit: contain; }
.included-item .h3 { margin-bottom: 0.25rem; }
.included-item p { font-size: 0.9375rem; color: var(--ink-soft); }

/* ---------- Steps (arrival) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  counter-reset: step;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  counter-increment: step;
  border-top: 1px solid rgba(246, 244, 239, 0.28);
  padding-top: 1.4rem;
}
.step::before {
  content: "0" counter(step);
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--heather);
  display: block;
  margin-bottom: 0.9rem;
}
.step .h3 { color: var(--ground); margin-bottom: 0.4rem; }
.step p { color: rgba(246, 244, 239, 0.78); font-size: 0.9688rem; }

/* ---------- Quotes ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
}
@media (max-width: 800px) { .quotes { grid-template-columns: 1fr; } }
.quote { margin: 0; }
.quote blockquote {
  margin: 0 0 1.1rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 430;
  line-height: 1.4;
}
.quote figcaption {
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.quote figcaption strong { color: var(--ink); font-weight: 600; }

/* ---------- Feature band (dark image + text) ---------- */
.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
@media (max-width: 860px) { .feature-band { grid-template-columns: 1fr; } }
.feature-band__media { position: relative; min-height: 320px; }
.feature-band__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
}
.feature-band__body .h2 { margin-bottom: 1rem; }
.feature-band--forest .feature-band__body { background: var(--forest); color: var(--ground); }
.feature-band--forest p { color: rgba(246, 244, 239, 0.82); }
.feature-band--chalk .feature-band__body { background: var(--chalk); }

/* ---------- Respect section ---------- */
.respect {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.respect__sprig img { width: clamp(140px, 18vw, 220px); height: auto; }
@media (max-width: 720px) {
  .respect { grid-template-columns: 1fr; }
  .respect__sprig { order: -1; }
  .respect__sprig img { width: 110px; }
}

/* ---------- Newsletter ---------- */
.newsletter {
  max-width: 620px;
}
.newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.newsletter .consent { flex-basis: 100%; margin-top: 0.3rem; }
.newsletter input[type="email"] {
  flex: 1;
  min-height: 48px;
  border: 1px solid rgba(41, 38, 36, 0.25);
  border-radius: var(--radius);
  background: var(--ground);
  padding: 0.6em 0.9em;
  font: inherit;
  font-size: 0.9375rem;
}
@media (max-width: 540px) {
  .newsletter form { flex-direction: column; }
}
.form-note { font-size: 0.8125rem; color: var(--ink-soft); margin-top: 0.8rem; }

.consent {
  display: flex;
  gap: 0.65em;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  max-width: 60ch;
}
.consent input[type="checkbox"] {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 0.15em;
  accent-color: var(--forest);
}
.consent a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* Legal pages */
.legal { max-width: 68ch; }
.legal h2 { font-size: 1.125rem; font-weight: 600; margin-top: 2.2rem; margin-bottom: 0.6rem; }
.legal p, .legal li { font-size: 0.9688rem; color: var(--ink-soft); }
.legal ul { padding-left: 1.2em; margin: 0 0 1em; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bark);
  color: rgba(246, 244, 239, 0.85);
  padding-block: clamp(3.5rem, 7vw, 6rem) 2.5rem;
}
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--ground); text-decoration: underline; text-underline-offset: 3px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 244, 239, 0.5);
  margin-bottom: 1.1rem;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.9375rem;
}
.footer-brand__line {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ground);
  max-width: 16ch;
  line-height: 1.3;
}
.footer-brand__logo {
  height: 40px;
  width: auto;
  margin-bottom: 1.4rem;
  /* dark footer: knock the green wordmark to light ground */
  filter: brightness(0) invert(0.96) sepia(0.06);
}
.footer-bottom {
  border-top: 1px solid rgba(246, 244, 239, 0.16);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(246, 244, 239, 0.55);
}
.footer-bottom ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

/* ---------- Cabin detail ---------- */
.detail-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  align-items: center;
}
.detail-meta span + span::before {
  content: "·";
  margin: 0 0.6em;
  color: var(--heather);
}

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(180px, 260px));
  gap: 0.9rem;
}
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-img); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery figure:first-child { grid-row: span 2; }
@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, minmax(140px, 200px)); }
  .gallery figure:first-child { grid-column: span 2; grid-row: span 1; }
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .detail-layout { grid-template-columns: 1fr; } }

.book-card {
  position: sticky;
  top: 92px;
  background: var(--chalk);
  border-radius: var(--radius-img);
  padding: 1.6rem;
}
.book-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  margin-bottom: 1.2rem;
}
.book-card__price strong { font-size: 1.5rem; font-weight: 600; }
.book-card label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.4rem;
}
.book-card input, .book-card select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(41, 38, 36, 0.22);
  border-radius: var(--radius);
  background: var(--ground);
  font: inherit;
  font-size: 0.9375rem;
  padding: 0.5em 0.75em;
  margin-bottom: 1rem;
}
.book-card__dates { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.book-card .btn { width: 100%; }
.book-card__note {
  margin-top: 0.9rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  text-align: center;
}

.booking-widget {
  background: var(--ground);
  border-radius: var(--radius-img);
  padding: clamp(0.5rem, 1.5vw, 1rem);
  box-shadow: 0 18px 40px -30px rgba(41, 38, 36, 0.4);
}
.booking-widget iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: var(--radius);
}

.fact-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 0;
}
.fact-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.9688rem;
}
.fact-list li:last-child { border-bottom: 1px solid var(--line); }
.fact-list .fact-label { font-weight: 600; }
@media (max-width: 540px) { .fact-list li { grid-template-columns: 1fr; gap: 0.15rem; } }

.local-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 1.4rem;
}
.local-list li { display: grid; gap: 0.2rem; }
.local-list .h3 { font-size: 1.0625rem; }
.local-list--grid {
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2.2rem;
}
.local-list--grid li {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
@media (max-width: 600px) { .local-list--grid { grid-template-columns: 1fr; } }

/* ---------- Quick facts strip ---------- */
.facts-strip {
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 1.3rem 1.5rem;
  background: var(--chalk);
  border-radius: var(--radius-img);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  font-size: 0.9375rem;
}
.facts-strip li { display: grid; gap: 0.15rem; }
.facts-strip__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 540px) { .facts-strip { grid-template-columns: 1fr; } }

/* ---------- Map embed ---------- */
.map-embed {
  border-radius: var(--radius-img);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
@media (max-width: 600px) { .map-embed iframe { height: 300px; } }

/* ---------- Getting there ---------- */
.travel-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2.2rem;
}
@media (max-width: 600px) { .travel-cols { grid-template-columns: 1fr; } }
.travel-cols > div {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.travel-cols__mode {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--heather);
  margin-bottom: 0.5rem;
}

/* ---------- FAQ ---------- */
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  font-weight: 600;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--heather);
  flex: none;
  transition: transform 200ms ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 0.9688rem;
  max-width: 60ch;
}

/* ---------- Filters (cabins page) ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: end;
  padding: 1.25rem 0 2rem;
}
.filter-bar .field { min-width: 170px; flex: 1; max-width: 230px; }
.filter-bar label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.filter-bar select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(41, 38, 36, 0.22);
  border-radius: var(--radius);
  background: var(--ground);
  font: inherit;
  font-size: 0.9375rem;
  padding: 0.5em 0.75em;
}
.filter-bar__reset {
  background: none;
  border: 0;
  min-height: 46px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.filter-empty {
  padding: 3rem 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.25rem;
  display: none;
}

/* ---------- Offsite form ---------- */
.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.25rem;
  max-width: 760px;
}
@media (max-width: 640px) { .enquiry-form { grid-template-columns: 1fr; } }
.enquiry-form .field--full { grid-column: 1 / -1; }
.enquiry-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(41, 38, 36, 0.22);
  border-radius: var(--radius);
  background: var(--ground);
  font: inherit;
  font-size: 0.9375rem;
  padding: 0.6em 0.85em;
}
.enquiry-form textarea { min-height: 130px; resize: vertical; }
.enquiry-form .btn { justify-self: start; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .cabin-card__media img { transition: none; }
  *, *::before, *::after { animation-duration: 0.001s !important; }
}
