/*
 * Pinabo site styles — shared by all three designs.
 *
 * Colours, fonts and corners come from the :root block the build writes in
 * below; each design's personality is the [data-design] rules further down.
 */

:root {
  --accent: #2b7560;
  --accent-soft: #dde9e6;
  --accent-tint: #e3ebe9;
  --dark: #132522;
  --ground: #f7f8f8;
  --surface: #ffffff;
  --wash: #eaf0f1;
  --line: #d8e0e2;
  --ink: #17282a;
  --muted: #4e6669;
  --display: 'Fraunces', Georgia, serif;
  --display-weight: 600;
  --display-scale: 1;
  --body: 'Figtree', system-ui, sans-serif;
  --r-btn: 4px;
  --r-card: 6px;
  --r-chip: 4px;
  --scrim: 1;
  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --section: clamp(56px, 9vw, 120px);
  --h1: clamp(44px, 6.2vw, 88px);
  --h2: clamp(32px, 3.6vw, 48px);
  --h3: clamp(22px, 2vw, 28px);
}

[data-design="country"] { --h1: clamp(50px, 6.8vw, 96px); --h2: clamp(34px, 3.9vw, 54px); }
[data-design="town"]    { --h1: clamp(44px, 5.8vw, 80px); --h2: clamp(32px, 3.6vw, 50px); }

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(16px, 0.95rem + 0.2vw, 18px);
  line-height: 1.65;
  font-variant-numeric: lining-nums;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 50;
  background: var(--surface); color: var(--ink); padding: 10px 16px; border-radius: var(--r-chip);
}
.skip:focus { top: 12px; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.narrow { max-width: 760px; }
.center { text-align: center; align-items: center; }
.stack { display: flex; flex-direction: column; gap: 18px; }
.muted { color: var(--muted); }
.lead { font-size: 1.12em; margin: 0; }
.hide-phone { }

/* ---------------------------------------------------------------- type */

.h2, .page-title, .hero-title, .h3 {
  font-family: var(--display);
  font-weight: var(--display-weight);
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
.h2 { font-size: calc(var(--h2) * var(--display-scale)); }
.h3 { font-size: calc(var(--h3) * var(--display-scale)); line-height: 1.15; }

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow-light { color: #fff; }
[data-design="town"] .eyebrow { font-size: 13px; letter-spacing: 0.22em; }
[data-design="country"][data-font="classic"] .eyebrow {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 20px; letter-spacing: 0; text-transform: none;
}

.prose p { margin: 0 0 1em; }
.prose p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px;
  border-radius: var(--r-btn);
  font-family: var(--body); font-size: 16px; font-weight: 600; line-height: 1.2;
  text-decoration: none; white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary:hover { background: color-mix(in srgb, var(--accent) 86%, #000); }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--ground); }
.btn-light { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.75); color: #fff; }
.btn-light:hover { background: rgba(255,255,255,0.18); }
[data-design="town"] .btn { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------------------------------------------------------------- header */

.bar {
  position: relative; z-index: 20;
  display: flex; align-items: center; gap: 28px;
  height: 96px; padding: 0 clamp(20px, 4vw, 56px);
  background: var(--surface); border-bottom: 1px solid var(--line);
}
.brand {
  margin-right: auto;
  font-family: var(--display); font-weight: var(--display-weight);
  font-size: calc(28px * var(--display-scale)); letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none; line-height: 1.1;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--ink); text-decoration: none; font-size: 16px; font-weight: 500; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent); }
[data-design="town"] .nav a { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.bar-cta { min-height: 48px; padding: 0 24px; }

/* Menu bar over the photo — only on pages that start with a photo. */
[data-header="over"] .bar { position: absolute; top: 0; left: 0; right: 0; background: transparent; border: 0; }
[data-header="over"] .brand, [data-header="over"] .nav a, [data-header="over"] .menu summary { color: #fff; }
[data-header="over"] .nav a:hover, [data-header="over"] .nav a[aria-current="page"] { color: #fff; text-decoration: underline; text-underline-offset: 6px; }

.menu { display: none; position: relative; }
.menu summary {
  list-style: none; cursor: pointer; color: var(--ink);
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
}
.menu summary::-webkit-details-marker { display: none; }
.menu-panel {
  position: absolute; right: 0; top: 52px; width: min(300px, 86vw);
  display: flex; flex-direction: column; gap: 2px; padding: 12px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.menu-panel a { color: var(--ink) !important; text-decoration: none; padding: 12px 10px; font-weight: 500; }
.menu-panel .btn { color: #fff !important; margin-top: 8px; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .menu { display: block; }
}
@media (max-width: 640px) {
  .bar { height: 72px; gap: 8px; padding: 0 12px 0 20px; }
  .brand { font-size: calc(22px * var(--display-scale)); }
  .bar-cta { min-height: 44px; padding: 0 16px; font-size: 15px; }
  [data-design="town"] .bar-cta { font-size: 12px; }
}

/* ---------------------------------------------------------------- hero */

.hero, .page-hero { position: relative; overflow: hidden; background: var(--dark); color: #fff; }
.hero { min-height: min(94vh, 860px); display: flex; align-items: flex-end; }
[data-header="solid"] .hero { min-height: min(86vh, 780px); }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-pos, 50% 50%); }
.hero-scrim { position: absolute; inset: 0; }

[data-hero="left"] .hero .hero-scrim {
  background:
    linear-gradient(90deg, rgba(10,20,24,calc(0.72 * var(--scrim))) 0%, rgba(10,20,24,calc(0.45 * var(--scrim))) 38%, rgba(10,20,24,0) 66%),
    linear-gradient(180deg, rgba(10,20,24,calc(0.45 * var(--scrim))) 0%, rgba(10,20,24,0) 22%, rgba(10,20,24,0) 55%, rgba(10,20,24,calc(0.55 * var(--scrim))) 100%);
}
[data-hero="centre"] .hero .hero-scrim {
  background: linear-gradient(180deg, rgba(20,20,14,calc(0.45 * var(--scrim))) 0%, rgba(20,20,14,calc(0.10 * var(--scrim))) 28%, rgba(20,20,14,calc(0.40 * var(--scrim))) 55%, rgba(20,20,14,calc(0.82 * var(--scrim))) 100%);
}
.page-hero .hero-scrim {
  background: linear-gradient(180deg, rgba(10,14,18,calc(0.45 * var(--scrim))) 0%, rgba(10,14,18,calc(0.25 * var(--scrim))) 40%, rgba(10,14,18,calc(0.70 * var(--scrim))) 100%);
}

.hero-content { position: relative; z-index: 1; padding: 160px 0 clamp(40px, 7vw, 88px); }
.hero-text { display: flex; flex-direction: column; gap: 22px; max-width: 700px; }
[data-hero="centre"] .hero-text { max-width: 980px; margin: 0 auto; align-items: center; text-align: center; }
[data-hero="centre"] .hero-text .cta-row, [data-hero="centre"] .facts-row { justify-content: center; }
.hero-title { font-size: calc(var(--h1) * var(--display-scale)); color: #fff; line-height: 1.02; }
.hero-tag { margin: 0; font-size: clamp(19px, 1.6vw, 22px); line-height: 1.5; color: rgba(255,255,255,0.92); text-wrap: pretty; }

.facts-row { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: 0; padding: 0; list-style: none; font-size: 17px; font-weight: 500; }
.facts-row li + li::before { content: "·"; margin-right: 14px; opacity: 0.6; }

.rating-chip {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  padding: 8px 14px; border-radius: var(--r-chip);
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.35);
  font-size: 15px; font-weight: 600; color: #fff; text-decoration: none;
}
[data-hero="centre"] .rating-chip { align-self: center; }
.star { color: #f2c14e; }

.page-hero { min-height: clamp(320px, 42vh, 460px); display: flex; align-items: flex-end; }
.page-hero-text { position: relative; z-index: 1; padding: 150px 0 clamp(36px, 5vw, 64px); display: flex; flex-direction: column; gap: 12px; }
.page-title { font-size: calc(clamp(40px, 5vw, 68px) * var(--display-scale)); color: #fff; }
[data-hero="centre"] .page-hero-text { align-items: center; text-align: center; }

@media (max-width: 640px) {
  .hero { min-height: 640px; }
  [data-header="solid"] .hero { min-height: 560px; }
  .hero-content { padding-top: 110px; }
  .hero-text { gap: 16px; }
  .hero-tag { font-size: 19px; }
  [data-header="over"] .hero .hero-scrim {
    background: linear-gradient(180deg, rgba(10,16,20,calc(0.55 * var(--scrim))) 0%, rgba(10,16,20,calc(0.2 * var(--scrim))) 16%, rgba(10,16,20,calc(0.5 * var(--scrim))) 34%, rgba(10,16,20,calc(0.84 * var(--scrim))) 60%, rgba(10,16,20,calc(0.92 * var(--scrim))) 100%);
  }
  [data-header="solid"] .hero .hero-scrim {
    background: linear-gradient(180deg, rgba(10,14,20,calc(0.5 * var(--scrim))) 0%, rgba(10,14,20,calc(0.66 * var(--scrim))) 25%, rgba(10,14,20,calc(0.84 * var(--scrim))) 55%, rgba(10,14,20,calc(0.92 * var(--scrim))) 100%);
  }
  .facts-row { font-size: 14px; gap: 8px; }
  .facts-row li { display: inline-flex; align-items: center; min-height: 32px; padding: 0 12px; border-radius: var(--r-chip); background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); }
  .facts-row li + li::before { content: none; }
  .hero .cta-row { width: 100%; }
  .hero .cta-row .btn { width: 100%; }
  .hide-phone { display: none; }
}

/* ---------------------------------------------------------------- sections */

.section { padding: var(--section) 0; }
.section-ground { background: var(--ground); }
.section-surface { background: var(--surface); }
.section-wash { background: var(--wash); }
.section-soft { background: var(--accent-soft); }
.section-accent { background: var(--accent); color: #fff; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(28px, 3.4vw, 44px); }
.section-head .stack { max-width: 720px; }
[data-hero="centre"] .section-head.centred { flex-direction: column; align-items: center; text-align: center; }
.rule { width: 48px; height: 1px; background: var(--accent); }

/* Trust strip */
.trust { background: var(--surface); border-bottom: 1px solid var(--line); padding: 32px 0; }
.trust .wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.score { display: flex; align-items: center; gap: 14px; }
.score-ring {
  width: 64px; height: 64px; flex-shrink: 0; border-radius: 50%; border: 2px solid var(--accent);
  display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--accent); background: var(--surface);
}
.score-ring b { font-size: 18px; line-height: 1; }
.score-ring small { font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }
.score-text { display: flex; flex-direction: column; gap: 1px; font-size: 15px; }
.score-text strong { color: var(--ink); }
.stars { color: #d4962b; letter-spacing: 2px; font-size: 15px; }
.chips { display: flex; flex-wrap: wrap; gap: 14px 34px; margin: 0; padding: 0; list-style: none; }
.chips li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.chips svg { color: var(--accent); flex-shrink: 0; }
.awards { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.awards li { padding: 8px 14px; border: 1px solid var(--line); border-radius: var(--r-chip); font-size: 14px; font-weight: 600; color: var(--ink); background: var(--ground); }

/* Welcome */
.welcome { display: grid; grid-template-columns: minmax(0, 640px) minmax(0, 400px); justify-content: space-between; gap: 48px; }
.facts-table { margin: 0; border-bottom: 1px solid var(--line); }
.facts-table div { display: flex; justify-content: space-between; gap: 12px; padding: 16px 0; border-top: 1px solid var(--line); font-size: 16px; }
.facts-table dt { color: var(--muted); }
.facts-table dd { margin: 0; font-weight: 600; text-align: right; }
.welcome-side { display: flex; flex-direction: column; gap: 24px; }
.host { display: flex; align-items: center; gap: 16px; padding: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); }
.host-photo, .host-initials { width: 60px; height: 60px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }
.host-initials { background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 600; font-size: 20px; }
.host-text { display: flex; flex-direction: column; gap: 3px; font-size: 15px; }
.host-text strong { font-size: 18px; }

/* Cards and grids */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); }
.grid-4 { display: grid; grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.icon-bubble { width: 48px; height: 48px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Distances */
.distance { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.distance-time { font-family: var(--display); font-weight: var(--display-weight); font-size: calc(30px * var(--display-scale)); line-height: 1.1; }
.distance-place { color: var(--muted); font-size: 16px; }

/* Town-style "minutes on foot" list */
.walk-list { list-style: none; margin: 0; padding: 0; }
.walk-list li { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.walk-num { font-family: var(--display); font-weight: var(--display-weight); font-size: calc(52px * var(--display-scale)); line-height: 1; color: var(--accent); width: 72px; }
.walk-unit { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.walk-place { font-size: 18px; font-weight: 500; }
.arrive-list { list-style: none; margin: 0; padding: 0; }
.arrive-list li { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.arrive-list svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.arrive-list strong { display: block; font-size: 18px; margin-bottom: 4px; }
.arrive-list p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }
.col-h { margin: 0 0 12px; font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 96px); align-items: start; }

/* Sleeping plan */
.room { padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.room svg { color: var(--accent); }
.room-name { font-family: var(--display); font-weight: var(--display-weight); font-size: calc(28px * var(--display-scale)); line-height: 1.15; }
.room-detail { color: var(--muted); font-size: 16px; line-height: 1.5; }

/* Why book direct */
.why { display: flex; flex-direction: column; gap: 10px; }
.why svg { color: var(--accent); }
.why strong { font-size: 19px; line-height: 1.3; }
.why p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }

/* Reviews */
.review { margin: 0; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.review blockquote { margin: 0; font-family: var(--display); font-size: calc(23px * var(--display-scale)); line-height: 1.4; }
[data-design="country"] .review blockquote { font-style: italic; }
.review figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 2px; font-size: 14px; color: var(--muted); }
.review figcaption strong { font-size: 16px; color: var(--ink); }
.review-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.review-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.rating-summary { display: flex; align-items: center; gap: 20px; margin-bottom: 12px; }
.rating-summary .big { font-family: var(--display); font-weight: var(--display-weight); font-size: calc(64px * var(--display-scale)); line-height: 1; color: var(--accent); }

/* Local area */
.place { display: flex; flex-direction: column; gap: 16px; margin: 0; }
.place img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-card); }
.place-dist { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--accent); }
.place p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.place-large { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.place-large + .place-large { margin-top: clamp(40px, 6vw, 80px); }
.place-large:nth-child(even) img { order: 2; }
.more-list { columns: 2; column-gap: 48px; list-style: none; margin: 0; padding: 0; }
.more-list li { break-inside: avoid; padding: 12px 0; border-top: 1px solid var(--line); }

/* Gallery teaser + page */
.gallery-teaser { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: 250px 250px; gap: 12px; }
.gallery-teaser img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-card); }
.gallery-teaser img:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-teaser img:nth-child(4) { grid-column: span 2; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.shot { margin: 0; display: flex; flex-direction: column; gap: 8px; }
.shot-open { padding: 0; border: 0; background: none; cursor: zoom-in; border-radius: var(--r-card); overflow: hidden; }
.shot-open img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s ease; }
.shot-open:hover img { transform: scale(1.03); }
.shot figcaption { font-size: 14px; color: var(--muted); }
.grid .shot:nth-child(7n + 1) { grid-column: span 2; grid-row: span 2; }
.grid .shot:nth-child(7n + 1) .shot-open, .grid .shot:nth-child(7n + 1) .shot-open img { height: 100%; }
.lightbox { position: fixed; inset: 0; z-index: 60; background: rgba(10,12,14,0.92); display: flex; align-items: center; justify-content: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox-fig { margin: 0; text-align: center; }
.lightbox-fig img { max-width: min(1200px, 94vw); max-height: 82vh; object-fit: contain; border-radius: 4px; }
.lightbox-fig figcaption { color: #fff; margin-top: 12px; }
.lightbox-close { position: absolute; top: 16px; right: 16px; min-height: 44px; padding: 0 18px; border-radius: var(--r-btn); border: 1px solid rgba(255,255,255,0.6); background: transparent; color: #fff; font: inherit; cursor: pointer; }

/* FAQs */
.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 64px; }
.narrow .faq-list { grid-template-columns: minmax(0, 1fr); }
.faq { padding: 24px 0; border-top: 1px solid var(--line); }
.faq h3 { margin: 0 0 8px; font-size: 19px; font-weight: 600; font-family: var(--body); }
.faq p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; white-space: pre-line; }
.faq-more { margin-top: 32px; }

/* House page */
.side-photos { display: grid; gap: 14px; }
.side-photos img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-card); }
.feature-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 40px; list-style: none; margin: 0; padding: 0; }
.feature-list li { display: flex; gap: 12px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line); font-weight: 500; }
.feature-list svg { color: var(--accent); flex-shrink: 0; }

/* Booking page */
.book-frame { width: 100%; min-height: 900px; border: 1px solid var(--line); border-radius: var(--r-card); background: #fff; }
.book-card { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 18px; align-items: flex-start; max-width: 760px; }

/* Contact page */
.contact-list { display: flex; flex-direction: column; }
.contact-list a, .contact-list span { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-top: 1px solid var(--line); color: var(--ink); text-decoration: none; font-size: 18px; }
.contact-list svg { color: var(--accent); flex-shrink: 0; }

/* Newsletter */
.newsletter { padding: clamp(56px, 8vw, 112px) 0; background: var(--accent); color: #fff; }
.newsletter .wrap { display: flex; align-items: flex-end; justify-content: space-between; gap: 56px; }
.newsletter .h2 { color: #fff; }
.newsletter p { margin: 0; color: rgba(255,255,255,0.9); }
.newsletter .eyebrow { color: rgba(255,255,255,0.85); }
.newsletter .btn { background: #fff; color: var(--ink); border-color: #fff; }

/* Final CTA + footer */
.final-cta { padding: var(--section) 0; background: var(--wash); }
.final-cta .cta-row { justify-content: center; }
.foot { background: var(--dark); color: rgba(255,255,255,0.92); padding: 80px 0 48px; }
.foot a { color: rgba(255,255,255,0.92); text-decoration: none; }
.foot a:hover { color: #fff; text-decoration: underline; }
.foot-top { display: flex; justify-content: space-between; gap: 48px; }
.foot-name { margin: 0; font-family: var(--display); font-weight: var(--display-weight); font-size: calc(28px * var(--display-scale)); color: #fff; }
.foot-place { margin: 6px 0 0; color: rgba(255,255,255,0.8); font-size: 15px; }
.foot-cols { display: flex; gap: 80px; }
.foot-col { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.foot-h { margin: 0 0 4px; font-family: var(--body); font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.foot-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.18); font-size: 14px; color: rgba(255,255,255,0.75); }
.foot-bottom span:only-child { margin-left: auto; }
.foot-col .socials { display: contents; }

/* ---------------------------------------------------------------- tablet + phone */

@media (max-width: 1080px) {
  .welcome { grid-template-columns: minmax(0, 1fr); }
  .grid-4 { grid-template-columns: repeat(min(var(--cols, 4), 2), minmax(0, 1fr)); }
  .foot-top { flex-direction: column; }
}

@media (max-width: 760px) {
  .section-head { flex-direction: column; align-items: flex-start; }
  [data-hero="centre"] .section-head.centred { align-items: center; }
  .two-col, .place-large { grid-template-columns: minmax(0, 1fr); }
  .place-large:nth-child(even) img { order: 0; }
  .grid-4 { gap: 10px; }
  .distance, .room { padding: 16px; gap: 8px; }
  .distance-time { font-size: calc(21px * var(--display-scale)); }
  .distance-place, .room-detail { font-size: 15px; }
  .room-name { font-size: calc(22px * var(--display-scale)); }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 16px; }
  .why strong { font-size: 17px; }
  .why p { font-size: 15px; }
  .swipe { display: flex !important; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; margin-right: calc(-1 * var(--gutter)); padding-right: var(--gutter); }
  .swipe > * { flex: 0 0 min(290px, 78vw); scroll-snap-align: start; }
  .swipe-hint { display: block !important; font-size: 14px; color: var(--muted); margin-top: 12px; }
  .review { padding: 24px; }
  .review blockquote { font-size: calc(21px * var(--display-scale)); }
  .review-grid { grid-template-columns: minmax(0, 1fr); }
  .gallery-teaser { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 220px 140px; gap: 8px; }
  .gallery-teaser img:first-child { grid-column: span 2; grid-row: auto; }
  .gallery-teaser img:nth-child(4) { display: none; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .faq-list { grid-template-columns: minmax(0, 1fr); }
  .feature-list { grid-template-columns: minmax(0, 1fr); }
  .more-list { columns: 1; }
  .walk-list.tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .walk-list.tiles li { flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px; border: 1px solid var(--line); border-radius: var(--r-card); background: var(--surface); }
  .walk-list.tiles .walk-num { font-size: calc(36px * var(--display-scale)); width: auto; }
  .walk-list.tiles .walk-place { font-size: 15px; line-height: 1.3; }
  .newsletter .wrap { flex-direction: column; align-items: stretch; gap: 28px; }
  .final-cta .cta-row { flex-direction: column; width: 100%; }
  .final-cta .cta-row .btn { width: 100%; }
  .foot { padding: 56px 0 40px; }
  .foot-cols { flex-direction: column; gap: 28px; }
  .trust .wrap { flex-direction: column; align-items: flex-start; gap: 18px; }
  .chips { flex-direction: column; gap: 12px; }
}

.swipe-hint { display: none; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
