/* ============================================================
   Flatbush Cottage
   Palette and type lifted from the Claude Design source.
   ============================================================ */

:root {
  --bg:        #F5EFE3;
  --card:      #FBF7EF;
  --panel:     #EDE4D4;

  --ink:       #241F1B;
  --body:      #3A322C;
  --muted:     #5A5049;
  --faint:     #8A7C6C;
  --dim:       #A99C88;

  --line:      #DBCEB8;
  --line-soft: #E9DFCC;
  --line-mid:  #E3D8C4;
  --stone:     #C2B49C;

  --rust:      #A44A38;
  --ochre:     #C07C34;
  --green:     #5F7A64;
  --teal:      #2E4A4E;

  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans:  'Work Sans', system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --gutter: 32px;
  --header-h: 62px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* keep anchored sections clear of the sticky header */
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--rust);
  text-decoration-color: rgba(164, 74, 56, 0.35);
  text-underline-offset: 3px;
}
a:hover { color: var(--ochre); text-decoration-color: var(--ochre); }

img { max-width: 100%; }
input, textarea, select, button { font-family: inherit; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; text-decoration: none; font-size: 14px;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 12px; color: var(--bg); }

@keyframes fcFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ── Layout primitives ───────────────────────────────────── */

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-top: 100px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 18px;
}
.eyebrow-light { color: #9FBDB4; }

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.h2-tight { line-height: 1; margin-bottom: 0; }
.h2-light { color: #EFEAE0; }

.lede {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.lede:last-child { margin-bottom: 0; }

.btn-dark {
  background: var(--ink);
  color: var(--bg) !important;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 2px;
  font-weight: 500;
}
.btn-dark:hover { background: var(--rust); }

/* ── Header ──────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 239, 227, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}

.wordmark {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  flex: none;
}
.wordmark:hover { color: var(--ink); }

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--rust); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  padding: 9px 11px;
  cursor: pointer;
  border-radius: 2px;
}
.nav-toggle-bars { display: block; width: 18px; }
.nav-toggle-bars span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-bars span + span { margin-top: 4px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */

.hero { padding-top: 56px; }

.hero-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 28px;
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 8.6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 15ch;
}

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.2;
  color: var(--green);
  margin: 10px 0 0;
}

.hero-price { text-align: right; padding-bottom: 10px; }
.hero-price-label { font-size: 13px; color: var(--faint); letter-spacing: 0.02em; }
.hero-price-figure { font-family: var(--serif); font-size: clamp(38px, 5vw, 52px); line-height: 1; }
.hero-price-note { font-size: 13px; color: var(--muted); }

/* full-bleed hero illustration */
.hero-image-bleed {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--bg);
  animation: fcFade 0.7s ease both;
}
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 7%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,  transparent 0, #000 9%, #000 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 7%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.hero-note {
  display: flex;
  gap: 18px;
  align-items: baseline;
  max-width: 640px;
  /* The design tucked this up with a negative margin to close the gap left
     by the hero mask's bottom fade. With the real artwork that pulls the
     caption 8px inside the image box, and the image's multiply blend clips
     the first line's ascenders. Sit clear of it instead. */
  margin-top: 16px;
}
.hero-note-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
  padding-top: 3px;
}
.hero-note-copy { font-size: 14.5px; line-height: 1.5; color: var(--body); margin: 0; }

/* ── Hairline grids ──────────────────────────────────────── */

.stat-grid,
.tri-grid,
.duo-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.stat-grid { grid-template-columns: repeat(4, 1fr); margin-top: 28px; }
.stat { background: var(--bg); padding: 22px 24px; }
.stat-figure { font-family: var(--serif); font-size: 34px; line-height: 1; display: block; }
.stat-label { font-size: 12.5px; color: var(--muted); margin-top: 6px; display: block; }

.tri-grid { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
.tri-grid > li { background: var(--bg); padding: 20px 24px; }
.tri-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 8px;
}
.tri-copy { font-size: 14.5px; line-height: 1.55; color: var(--body); margin: 0; }

.duo-grid { grid-template-columns: 1fr 1fr; }
.duo-cell { background: var(--bg); padding: 40px; }

/* ── About ───────────────────────────────────────────────── */

.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}

.vignette {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(125% 105% at 50% 45%, #000 62%, transparent 100%);
  mask-image: radial-gradient(125% 105% at 50% 45%, #000 62%, transparent 100%);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.tags li {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 7px 13px;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ── Section head ────────────────────────────────────────── */

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 36px;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head-note {
  font-size: 14px;
  color: var(--muted);
  max-width: 34ch;
  line-height: 1.55;
  text-align: right;
  margin: 0;
}
.section-head-stack { display: block; }

/* ── Rooms ───────────────────────────────────────────────── */

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room {
  border: 1px solid var(--line);
  background: var(--card);
  display: flex;
  flex-direction: column;
}

.room-media { position: relative; }

.room-photo {
  width: 100%;
  height: 270px;
  /* Warms the artwork against the cream card, and gives the faded
     Erasmus card a clean tint rather than a see-through backdrop. */
  background-color: var(--card);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}
.room-photo-faded { opacity: 0.24; }

.room-soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-soon span {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--muted);
  letter-spacing: 0.01em;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: 8px 22px;
  text-align: center;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 11px;
}
.badge-green { background: var(--green); color: var(--bg); }
.badge-ochre { background: var(--ochre); color: var(--ink); }
.badge-stone { background: var(--stone); color: var(--ink); }

.room-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.room-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  margin: 0;
}
.room-meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0;
}
.room-copy {
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.room-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line-mid);
  padding-top: 14px;
  margin-top: 4px;
}
.room-price { display: flex; flex-direction: column; gap: 2px; }
.room-price-label {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.room-price-figure {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  white-space: nowrap;
}
.room-cta, .room-soon-note {
  font-size: 13px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex: none;
}
.room-soon-note { color: var(--faint); }

/* ── Floorplan ───────────────────────────────────────────── */

.plan-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 44px;
}
.plan-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.plan-head .eyebrow { margin-bottom: 14px; }

.plan-legend {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--muted);
  align-items: center;
  flex-wrap: wrap;
}
.plan-legend span { display: inline-flex; align-items: center; gap: 8px; }
.swatch { width: 14px; height: 14px; display: inline-block; }
.swatch-ochre { background: var(--ochre); }
.swatch-shared { background: var(--card); border: 1px solid var(--stone); }

.plan-scroll { overflow-x: auto; padding-bottom: 16px; }

.plan-strip {
  display: flex;
  align-items: stretch;
  gap: 4px;
  height: 230px;
  min-width: 820px;
}
.plan-room {
  background: var(--card);
  border: 1px solid var(--stone);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px 9px;
}
.plan-room-bed { background: var(--ochre); border-color: #A5652A; }

.plan-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  line-height: 1.2;
  white-space: nowrap;
}
.plan-room-bed .plan-name { color: var(--ink); }
.plan-name-muted { color: var(--muted); }
.plan-name-faint { color: var(--faint); }

.plan-dim {
  font-size: 10.5px;
  color: var(--faint);
  margin-top: 4px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.plan-room-bed .plan-dim { color: #4A3A20; }
.plan-dim-faint { color: var(--dim); }

.plan-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 10px;
}

/* ── Neighborhood ────────────────────────────────────────── */

.hood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.transit-card {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 30px 28px;
}
.transit-card .tri-label { margin-bottom: 26px; }

.transit-list { list-style: none; margin: 0; padding: 0; }
.transit-list li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}
.pin {
  width: 22px; height: 22px;
  border-radius: 50%;
  color: var(--card);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.pin-rust  { background: var(--rust); }
.pin-ochre { background: var(--ochre); }
.pin-green { background: var(--green); }
.pin-teal  { background: var(--teal); }

.transit-name { font-size: 15px; color: var(--ink); }
.transit-time { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }

/* ── Included / rules ────────────────────────────────────── */

.check-grid, .rule-list { list-style: none; margin: 0; padding: 0; }

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}
.check-grid li, .rule-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.45;
}
.check { color: var(--green); font-size: 13px; }

.rule-list { display: flex; flex-direction: column; gap: 14px; }
.rule-list li { gap: 12px; line-height: 1.5; }
.diamond { color: var(--ochre); font-size: 11px; }

/* ── Corporate ───────────────────────────────────────────── */

.corp {
  background: var(--teal);
  color: #EFEAE0;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.corp-lede { font-size: 16px; line-height: 1.65; color: #D6D0C4; margin: 0; text-wrap: pretty; }

.corp-list {
  display: grid;
  gap: 1px;
  background: rgba(239, 234, 224, 0.22);
  list-style: none;
  margin: 0;
  padding: 0;
}
.corp-list li { background: var(--teal); padding: 18px 4px; }
.corp-title { font-family: var(--serif); font-size: 24px; margin: 0; }
.corp-copy { font-size: 14px; color: #B9C9C2; margin: 6px 0 0; }

/* ── Booking ─────────────────────────────────────────────── */

.booking-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 44px;
  align-items: start;
}

.calendar-card { border: 1px solid var(--line); background: var(--card); }

.calendar { width: 100%; border-collapse: collapse; }
.calendar thead th {
  background: var(--panel);
  padding: 14px 12px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: left;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.calendar thead th:first-child { border-left: none; padding-left: 18px; width: 96px; }

.calendar tbody th {
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  white-space: nowrap;
}
.calendar tbody td {
  padding: 13px 12px;
  border-left: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
/* availability dot + label are generated so the table markup stays data-only */
.calendar tbody td::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  vertical-align: 1px;
}
.calendar tbody td::after { content: attr(data-state); text-transform: capitalize; }

.calendar td[data-state="free"]::before  { background: var(--green); }
.calendar td[data-state="free"]          { color: var(--ink); }
.calendar td[data-state="held"]::before  { background: var(--ochre); }
.calendar td[data-state="held"]          { color: var(--muted); }
.calendar td[data-state="taken"]::before { background: var(--stone); }
.calendar td[data-state="taken"]         { color: var(--dim); }

.calendar-key {
  padding: 16px 18px;
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}
.calendar-key span { display: inline-flex; align-items: center; gap: 7px; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot-free  { background: var(--green); }
.dot-held  { background: var(--ochre); }
.dot-taken { background: var(--stone); }

/* ── Enquiry form ────────────────────────────────────────── */

.enquiry-card {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 32px;
}

.enquiry-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 8px;
}
.enquiry-note { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0 0 24px; }

#enquiry { display: flex; flex-direction: column; gap: 14px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.field input, .field select, .field textarea {
  border: 1px solid var(--stone);
  background: var(--card);
  padding: 11px 13px;
  font-size: 15px;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rust); }
.field input[aria-invalid="true"] { border-color: var(--rust); background: #FBEFEC; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field-error {
  font-size: 12px;
  color: var(--rust);
  min-height: 0;
}
.field-error:empty { display: none; }

.btn-submit {
  margin-top: 6px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 15px 20px;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.18s ease;
}
.btn-submit:hover { background: var(--rust); }
.btn-submit[disabled] { opacity: 0.6; cursor: default; }

.form-status { font-size: 13px; color: var(--muted); margin: 0; }
.form-status:empty { display: none; }
.form-status[data-tone="error"] { color: var(--rust); }

.enquiry-call { font-size: 12.5px; color: var(--faint); line-height: 1.5; margin: 0; }

.enquiry-sent { padding: 30px 0; }
.sent-title { font-family: var(--serif); font-size: 34px; line-height: 1.1; margin: 0 0 12px; }
.sent-copy { font-size: 15.5px; line-height: 1.6; color: var(--body); margin: 0 0 20px; }
.sent-phone { font-size: 15px; }

/* ── FAQ ─────────────────────────────────────────────────── */

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.faq-grid .eyebrow { margin-bottom: 14px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 17px;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--rust); }

.faq-list .sign {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--rust);
  flex: none;
  line-height: 1;
}
.faq-list .sign::before { content: "+"; }
.faq-list details[open] .sign::before { content: "–"; }

.faq-list details p {
  margin: 0;
  padding: 0 60px 22px 4px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body);
  text-wrap: pretty;
}

/* ── Gallery ─────────────────────────────────────────────── */

.gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
  align-items: end;
}
.gallery-item { margin: 0; }
.gallery-item img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.gallery-wide img { height: 300px; object-position: center 35%; }

/* ── Footer ──────────────────────────────────────────────── */

.site-footer {
  margin-top: 90px;
  background: var(--ink);
  color: #E7E0D3;
}
.footer-grid {
  padding-top: 64px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.footer-mark { font-family: var(--serif); font-size: 34px; line-height: 1; margin: 0; }
.footer-blurb { font-size: 15px; line-height: 1.6; color: #A9A093; margin: 14px 0 0; max-width: 34ch; }

.footer-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 16px;
}
.footer-links, .footer-facts { display: flex; flex-direction: column; gap: 9px; }
.footer-links { font-size: 15px; }
.footer-links a { color: #D9A46A; }
.footer-links a:hover { color: #F0C089; }
.footer-dim { color: #A9A093; }
.footer-facts { font-size: 14.5px; color: #A9A093; line-height: 1.5; }

.footer-base { border-top: 1px solid #3A332C; }
.footer-base-inner {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12.5px;
  color: #7C7367;
  flex-wrap: wrap;
}

/* ── Missing-image fallback ──────────────────────────────── */
/* Applied by main.js so an absent asset reads as intentional. */

.img-missing {
  background: repeating-linear-gradient(
    -45deg, var(--panel), var(--panel) 10px, var(--card) 10px, var(--card) 20px
  );
  border: 1px solid var(--line);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* Drop the box entirely — a broken 2400×1200 img would otherwise
   reserve its full aspect ratio and leave a huge void. */
.img-missing img { display: none; }
.hero-image-bleed.img-missing { height: 42vw; max-height: 460px; }
.about-image.img-missing { min-height: 380px; }
.img-missing::after {
  content: attr(data-missing-label);
  position: absolute;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--faint);
  background: var(--bg);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: 8px 20px;
  text-align: center;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  :root { --gutter: 24px; }

  .about,
  .hood-grid,
  .faq-grid,
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-image { max-width: 520px; }

  .room-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .corp { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-wide { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .plan-panel { padding: 28px; }
}

@media (max-width: 760px) {
  .section { padding-top: 68px; }

  /* nav collapses into a disclosure panel */
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 18px;
    font-size: 15px;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
  .site-nav .btn-dark {
    margin-top: 14px;
    text-align: center;
    padding: 14px 18px;
    border-bottom: none;
  }

  .hero { padding-top: 36px; }
  .hero-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .hero-price { text-align: left; padding-bottom: 0; }
  .display { max-width: none; }

  .hero-note { flex-direction: column; gap: 8px; }

  .room-grid { grid-template-columns: 1fr; }
  .tri-grid,
  .duo-grid { grid-template-columns: 1fr; }
  .duo-cell { padding: 28px 24px; }

  .section-head { flex-direction: column; gap: 16px; align-items: flex-start; }
  .section-head-note { text-align: left; max-width: none; }

  .faq-list details p { padding-right: 12px; }

  .gallery { grid-template-columns: 1fr; }
  .gallery-item img, .gallery-wide img { height: 240px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-base-inner { flex-direction: column; gap: 8px; }
}

@media (max-width: 520px) {
  :root { --gutter: 18px; }

  .stat-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .enquiry-card { padding: 24px 20px; }
  .plan-panel { padding: 22px 18px; }
  .wordmark { font-size: 22px; }
  .calendar thead th:first-child,
  .calendar tbody th { padding-left: 12px; }
  .calendar tbody td::after { font-size: 12px; }
}

/* ── Motion & print ──────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media print {
  .site-header, .nav-toggle, .btn-submit, .skip-link { display: none !important; }
  body { background: #fff; }
  .faq-list details { break-inside: avoid; }
  .faq-list details p { display: block !important; }
}
