/* ==========================================================================
   Team Wong Hawaiʻi rebuild - Direction B, warm-modern
   Palette and typefaces are fixed by docs/design-system.md. No hex is invented.
   Roboto has no U+02BB glyph, so Montserrat sits second in every body stack.
   ========================================================================== */

:root {
  /* Brand, sampled from the live stylesheet. */
  --blue: #215b8f;
  --blue-dark: #1a4a73;
  --accent: #9cd4fc;
  --ocean: #4b9bb2;
  --ocean-deep: #246679;
  --gold: #b9904f;
  --leaf: #5f8d74;
  --paper: #fbfaf7;
  --ink: #24272d;
  --body: #363636;
  --line: #e1e3e2;

  /* Derived text variants. PAPER GROUND ONLY - see design-system.md. */
  --gold-text: #8d6d3c;
  --ocean-text: #3c7c8e;
  --leaf-text: #547c66;

  /* Roles */
  --ground: var(--paper);
  --text: var(--body);
  --heading: var(--ink);
  --focus: var(--blue);

  /* Type roles. Eight steps, adjacent ratio 1.16 minimum, spread 0.34. */
  --fs-100: 0.75rem;
  --fs-200: 0.875rem;
  --fs-300: 1.0625rem;
  --fs-400: 1.25rem;
  --fs-500: clamp(1.5rem, 1.2rem + 1vw, 1.875rem);
  --fs-600: clamp(1.875rem, 1.4rem + 2vw, 2.75rem);
  --fs-700: clamp(2.5rem, 1.6rem + 3.6vw, 4.25rem);
  --fs-800: clamp(3rem, 1.9rem + 5vw, 5.75rem);

  --sans: Roboto, Montserrat, system-ui, sans-serif;
  --display: Montserrat, system-ui, sans-serif;
  --serif: "Cormorant Garamond", Montserrat, Georgia, serif;

  /* Structure */
  --shell: 1560px;
  --gutter: clamp(1.25rem, 5vw, 6rem);
  --band: clamp(3.25rem, 7vw, 7rem);
  --r: 4px;
  --r-lg: 10px;
}

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

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

body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font: 400 var(--fs-300)/1.65 var(--sans);
  overflow-wrap: break-word;
}

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  color: var(--heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--blue-dark); }

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

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

.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 60;
  background: var(--blue); color: var(--paper);
  padding: 0.85rem 1.25rem; font-family: var(--display); font-weight: 600;
  text-decoration: none; transition: top 0.15s ease;
}
.skip:focus { top: 1rem; color: var(--paper); }

.shell { width: min(100% - (var(--gutter) * 2), var(--shell)); margin-inline: auto; }
.shell-wide { width: min(100% - (var(--gutter) * 2), 1760px); margin-inline: auto; }
@media (min-width: 1200px) {
  .shell-wide { width: min(100% - 5rem, 1760px); }
}

/* Grounds that carry paper-coloured text. Focus ring flips with them. */
.on-dark { color: var(--paper); --focus: var(--paper); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--paper); }
.on-dark a { color: var(--paper); }

.eyebrow {
  font-family: var(--display); font-weight: 600; font-size: var(--fs-100);
  letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 0.9rem;
}
.eyebrow--ink { color: var(--gold-text); }

.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.005em; }

.h2--tight { font-size: var(--fs-500); }

.stamp { font-size: var(--fs-200); color: var(--body); margin: 0.5rem 0 0; }

.link-u {
  font-family: var(--display); font-weight: 600; font-size: var(--fs-200);
  letter-spacing: 0.09em; text-transform: uppercase;
  text-decoration: underline; text-decoration-thickness: 2px;
  text-decoration-color: var(--gold); text-underline-offset: 6px;
  display: inline-block; padding-block: 11px;
}
.link-u:hover { text-decoration-color: currentColor; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0.6rem 1.6rem;
  font-family: var(--display); font-weight: 600; font-size: var(--fs-200);
  letter-spacing: 0.06em; border: 2px solid transparent; border-radius: var(--r);
  cursor: pointer; text-decoration: none;
  transition: background-color 0.16s ease, transform 0.12s ease, border-color 0.16s ease;
}
.btn--solid { background: var(--blue); color: var(--paper); border-color: var(--blue); }
.btn--solid:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--paper); }
.btn--paper { background: var(--paper); color: var(--blue); border-color: var(--paper); }
.btn--paper:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn:active { transform: translateY(1px); }

/* --- Fields -------------------------------------------------------------- */
input, select {
  font: 400 var(--fs-300)/1.4 var(--sans);
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--body); border-radius: var(--r);
  padding: 0.85rem 1rem; min-height: 52px; width: 100%;
}
input::placeholder { color: var(--body); opacity: 1; }
input:focus-visible, select:focus-visible { outline-offset: 1px; border-color: var(--blue); }

.field { display: grid; gap: 0.35rem; }
.field label {
  font-family: var(--display); font-weight: 600; font-size: var(--fs-100);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--body);
}

/* --- Header -------------------------------------------------------------- */
.site-head {
  background: var(--ink); color: var(--paper); --focus: var(--paper);
  border-bottom: 3px solid var(--gold);
  position: relative; z-index: 30;
}
.site-head__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 92px; padding-block: 0.75rem;
}
.brand {
  display: block; line-height: 0; border-radius: var(--r);
  /* The mark's own ground decodes opaque at rgb(51,51,51), so the plate behind it
     is lifted to within 1.02:1 of that value and the rectangle stops reading. */
  background: rgba(251, 250, 247, 0.06);
  padding: 8px 12px;
}
.brand img { width: auto; height: 62px; }
.foot__id {
  display: inline-block; justify-self: start; align-self: start; border-radius: var(--r);
  background: rgba(251, 250, 247, 0.06); padding: 14px 20px;
}

.navtoggle {
  display: none; align-items: center; gap: 0.6rem;
  min-height: 48px; min-width: 48px; padding: 0.5rem 0.9rem;
  background: transparent; border: 1px solid rgba(251, 250, 247, 0.55); border-radius: var(--r);
  font-family: var(--display); font-weight: 600; font-size: var(--fs-200);
  color: var(--paper); cursor: pointer;
}
.navtoggle__bars { display: grid; gap: 4px; }
.navtoggle__bars i { display: block; width: 20px; height: 2px; background: var(--paper); }
.js .navtoggle[aria-expanded="true"] { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.js .navtoggle[aria-expanded="true"] i { background: var(--ink); }

.sitenav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.5rem); }
.sitenav__list { display: flex; flex-wrap: wrap; gap: clamp(0.75rem, 1.8vw, 1.9rem); }
.sitenav__list a {
  display: inline-block; padding-block: 12px;
  font-family: var(--display); font-weight: 500; font-size: var(--fs-200);
  color: var(--paper); text-decoration: underline;
  text-decoration-color: rgba(251, 250, 247, 0.35); text-decoration-thickness: 2px; text-underline-offset: 7px;
}
.sitenav__list a:hover { color: var(--paper); text-decoration-color: var(--gold); }
.sitenav__side { display: flex; align-items: center; gap: 1rem; }
.sitenav__acct {
  font-family: var(--display); font-weight: 500; font-size: var(--fs-200);
  color: var(--paper); text-decoration: underline; text-decoration-color: rgba(251, 250, 247, 0.35);
  text-decoration-thickness: 2px; text-underline-offset: 7px;
  display: inline-block; padding-block: 12px;
}
.sitenav__acct:hover { color: var(--paper); text-decoration-color: var(--gold); }
.sitenav__tel { white-space: nowrap; }

@media (max-width: 1179px) {
  /* Every mobile nav rule below is scoped `.js`, because with scripting the nav becomes a drawer
     behind the toggle. With scripting OFF none of them applied, so the nav stayed a rigid
     horizontal flex row: 362px of links and a 174px button starting at x=68, giving a right edge of
     430 in a 390 viewport and 40px of sideways scroll on the whole page. Invisible with scripting
     on, because the drawer is closed and nothing overflows, which is why it shipped. These two
     declarations are deliberately UNSCOPED so the no-JS nav can wrap; the `.js` rules still win
     wherever they apply. */
  .sitenav { flex-wrap: wrap; }
  .sitenav__side { flex-wrap: wrap; }

  .js .navtoggle { display: inline-flex; }
  .js .sitenav {
    position: absolute; left: 0; right: 0; top: 100%;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-bottom: 3px solid var(--gold);
    box-shadow: 0 18px 40px -22px rgba(36, 39, 45, 0.65);
    padding: 0.5rem var(--gutter) 1.75rem;
  }
  .js .sitenav[data-open="true"] { display: flex; }
  .js .sitenav__list { flex-direction: column; gap: 0; }
  .js .sitenav__list a { padding-block: 13px; font-size: var(--fs-400); min-height: 44px; }
  .js .sitenav__side { flex-direction: column; align-items: stretch; gap: 1rem; margin-top: 1rem; }
  .js .sitenav__acct { padding-block: 13px; min-height: 44px; }
}

/* --- 1. Hero ------------------------------------------------------------- */
.hero { position: relative; background: var(--paper); overflow: hidden; }
.hero__inner { display: grid; padding-block: clamp(2.5rem, 5vw, 5.5rem); }
.hero__spacer { display: none; }
.hero__text { max-width: 46rem; }

.hero__h1 {
  font-size: var(--fs-700); letter-spacing: -0.035em;
  max-width: 16ch; margin-bottom: 0.5rem;
}
.hero__count {
  font-family: var(--display); font-weight: 600; font-size: var(--fs-200);
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold-text);
  margin-bottom: 1.75rem;
}

.hsearch {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0.6rem;
  background: var(--paper); border: 1px solid var(--body); border-radius: var(--r-lg);
  padding: 0.5rem; box-shadow: 0 22px 44px -30px rgba(33, 91, 143, 0.5);
}
.hsearch__field { border: 0; box-shadow: none; background: transparent; font-size: var(--fs-300); }
.hsearch__field:focus-visible { outline-offset: -2px; }
.hsearch__go { white-space: nowrap; }
@media (max-width: 520px) { .hsearch { grid-template-columns: minmax(0, 1fr); } }

.refiners { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.refiner { position: relative; }
.refiner > summary {
  display: flex; align-items: center; min-height: 48px; padding: 0.5rem 1.25rem;
  list-style: none; cursor: pointer;
  font-family: var(--display); font-weight: 600; font-size: var(--fs-200);
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--body); border-radius: 999px;
}
.refiner > summary::-webkit-details-marker { display: none; }
.refiner > summary::marker { content: ""; }
.refiner > summary:hover { border-color: var(--blue); color: var(--blue); }
.refiner[open] > summary {
  background: var(--blue); color: var(--paper); border-color: var(--blue);
  border-bottom: 3px solid var(--gold);
}
.refiner__panel {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem;
  margin-top: 0.75rem; padding: 1.25rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
}
.refiner__panel--links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.refiner__panel--links a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0.4rem 1rem;
  font-family: var(--display); font-weight: 500; font-size: var(--fs-200);
  color: var(--ink); text-decoration: none;
  border: 1px solid var(--body); border-radius: 999px;
}
.refiner__panel--links a:hover { border-color: var(--blue); color: var(--blue); }

.hero__tools { display: flex; flex-wrap: wrap; gap: 0 1.5rem; margin-top: 1.5rem; }
.hero__tools a {
  display: inline-block; padding-block: 11px; font-size: var(--fs-200);
  color: var(--blue); text-decoration: underline;
  text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 5px;
}

.hero__media { line-height: 0; }
.hero__media img { width: 100%; height: clamp(300px, 68vw, 460px); object-fit: cover; object-position: 50% 34%; }

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
    align-items: center; padding-block: clamp(3rem, 5vw, 6rem);
    min-height: 620px;
  }
  .hero__spacer { display: block; }
  .hero__text { max-width: none; padding-right: clamp(2rem, 3vw, 3.5rem); }
  .hero__media {
    position: absolute; top: 0; bottom: 0; right: 0;
    width: 52%; max-width: 1100px;
  }
  .hero__media img { height: 100%; object-position: 50% 30%; }
}

/* --- 2. Home-worth strip ------------------------------------------------- */
.worth { background: var(--ocean-deep); }
.worth__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem clamp(1.5rem, 3vw, 3rem); padding-block: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
}
.worth__h { font-size: var(--fs-500); font-weight: 600; }
.worth__form { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.worth__form input { width: 22rem; max-width: 100%; border-color: transparent; }
@media (min-width: 760px) { .worth__form { flex-wrap: nowrap; } }

/* --- 3. Listings --------------------------------------------------------- */
.listings { padding-block: var(--band); }
.listings__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line);
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}
.tabrail { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tabrail a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0.35rem 1rem;
  font-family: var(--display); font-weight: 500; font-size: var(--fs-200);
  color: var(--body); text-decoration: none;
  border: 1px solid var(--body); border-radius: 999px; background: var(--paper);
}
.tabrail a:hover { border-color: var(--blue); color: var(--blue); }
.tabrail a[aria-current="true"] {
  background: var(--ink); border-color: var(--ink); color: var(--paper); font-weight: 600;
}

.cards { display: grid; gap: clamp(1.25rem, 2.2vw, 2rem); }
.cards--wide { margin-bottom: clamp(1.25rem, 2.2vw, 2rem); }
@media (min-width: 700px) {
  .cards--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .cards--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.card { display: flex; }
.card__hit {
  display: grid; align-content: start;
  width: 100%; text-decoration: none; color: var(--body);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.card__hit:hover {
  border-color: var(--ocean); transform: translateY(-3px);
  box-shadow: 0 26px 44px -30px rgba(36, 102, 121, 0.65);
}
.card__frame { position: relative; display: block; line-height: 0; background: var(--line); }
.card__frame img { width: 100%; height: clamp(180px, 21vw, 276px); object-fit: cover; }
.cards--wide .card__frame img { height: clamp(210px, 27vw, 394px); }
.card__flag {
  position: absolute; left: 0.85rem; top: 0.85rem;
  background: var(--gold); color: var(--ink);
  font-family: var(--display); font-weight: 700; font-size: var(--fs-100);
  letter-spacing: 0.09em; text-transform: uppercase; line-height: 1.25;
  padding: 0.4rem 0.7rem; border-radius: var(--r);
}
.card__type {
  font-family: var(--display); font-weight: 600; font-size: var(--fs-100);
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--ocean-text);
  padding: 1.1rem 1.25rem 0;
}
.card__status {
  font-size: var(--fs-200); color: var(--body); padding: 0.2rem 1.25rem 0;
}
.card__price {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-500);
  color: var(--ink); letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
  padding: 0.55rem 1.25rem 0.65rem;
}
.card__facts {
  display: flex; flex-wrap: wrap; gap: 0.2rem 0;
  margin: 0 1.25rem; padding-block: 0.65rem;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: var(--fs-200);
}
.card__facts > span { padding-inline: 0.85rem; }
.card__facts > span:first-child { padding-left: 0; }
.card__facts > span + span { border-left: 1px solid var(--line); }
.card__facts b { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.card__addr { padding: 0.8rem 1.25rem 1.25rem; font-size: var(--fs-200); color: var(--body); }
.listings__more { margin: clamp(1.5rem, 2.5vw, 2.25rem) 0 0; }

/* --- 4. Communities ----------------------------------------------------- */
.communities { position: relative; background: var(--ink); overflow: hidden; }
.communities__plate { line-height: 0; width: min(100%, 746px); }
.communities__plate img { width: 100%; height: clamp(220px, 46vw, 380px); object-fit: cover; }
.communities__inner { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.communities__body h2 { font-size: var(--fs-600); max-width: 22ch; }
.communities__lede { margin: 1rem 0 2rem; color: var(--paper); max-width: 44ch; }

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chips a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0.4rem 1.15rem;
  font-family: var(--display); font-weight: 500; font-size: var(--fs-200);
  color: var(--paper); text-decoration: none;
  border: 1px solid rgba(251, 250, 247, 0.55); border-radius: 999px;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
.chips a:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.communities__more { margin: 2rem 0 0; }
.communities__more .link-u { text-decoration-color: var(--gold); }

@media (min-width: 900px) {
  .communities__plate {
    position: absolute; top: 0; left: 0;
    width: min(42%, 746px); height: min(100%, 560px);
  }
  .communities__plate img { width: 100%; height: 100%; }
  .communities { min-height: 640px; }
  .communities__inner { padding-block: clamp(3.5rem, 6vw, 6rem); }
  .communities__body { width: 57%; margin-left: 43%; }
}

/* --- 5. SIGNATURE: market at a glance ----------------------------------- */
.market { background: var(--blue); padding-block: clamp(3.5rem, 7vw, 7rem); }
.market__head { max-width: 60rem; }
.market .eyebrow { color: var(--paper); }
.market__h { font-size: var(--fs-600); letter-spacing: -0.03em; }
.market__src {
  margin: 1.1rem 0 0; font-size: var(--fs-400); line-height: 1.45;
  color: var(--paper); max-width: 56ch;
}
.market__rule {
  height: 7px; background: var(--gold); border-radius: 1px;
  margin: clamp(2rem, 4vw, 3.25rem) 0 clamp(2rem, 3.5vw, 3rem);
}
.stats { display: grid; gap: clamp(1.75rem, 3vw, 2.5rem); margin: 0; }
@media (min-width: 620px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.stat { display: grid; gap: 0.35rem; }
@media (min-width: 620px) {
  .stat + .stat { padding-left: clamp(1.5rem, 2.5vw, 2.5rem); border-left: 1px solid rgba(251, 250, 247, 0.3); }
}
@media (min-width: 620px) and (max-width: 1079px) {
  .stat:nth-child(odd) { padding-left: 0; border-left: 0; }
}
.stat__label {
  font-family: var(--display); font-weight: 600; font-size: var(--fs-100);
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--paper);
}
.stat__value {
  margin: 0; font-family: var(--display); font-weight: 700; font-size: var(--fs-800);
  line-height: 0.92; letter-spacing: -0.045em; color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.stat__unit { font-size: 0.42em; font-weight: 600; letter-spacing: -0.01em; }
.stat__qual { margin: 0.55rem 0 0; font-size: var(--fs-200); color: var(--paper); }
.market__attr {
  margin: clamp(2.25rem, 4vw, 3.25rem) 0 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(251, 250, 247, 0.3);
  font-size: var(--fs-300); color: var(--paper);
}
.market__attr span { display: block; max-width: 74ch; }

/* Reveal: the one orchestrated moment. Settled by default; the pre-state
   exists only when scripting is on, so a JS-off page ships fully visible. */
.js .reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--d, 0ms);
}
.js .is-in .reveal { opacity: 1; transform: none; }
.js .reveal-rule {
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js .is-in .reveal-rule { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .is-in .reveal { opacity: 1; transform: translateY(0); transition: none; }
  .js .reveal-rule, .js .is-in .reveal-rule { transform: scaleX(1); transition: none; }
  .btn, .card__hit, .chips a, a, .skip { transition: none; }
}

/* --- 6. Blog ------------------------------------------------------------- */
.blog { padding-block: var(--band); }
.blog__inner { display: grid; gap: clamp(1.75rem, 3vw, 2.75rem); }
.blog__rail { max-width: 34ch; }
.posts { display: grid; gap: clamp(1.25rem, 2.2vw, 1.75rem); }
@media (min-width: 620px) { .posts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
/* Two across tops out at 999px: past that a column exceeds the 450px sources and
   the featured images start upscaling. Measured, not assumed. */
@media (min-width: 1000px) {
  .blog__rail {
    max-width: none; text-align: right;
    padding-bottom: 1.25rem; border-bottom: 1px solid var(--line);
  }
  .blog__rail h2 { max-width: none; }
  .posts { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .post__title { min-height: calc(3.75em + 0.4rem); }
}
@media (min-width: 1280px) {
  .post__title { min-height: calc(2.5em + 0.4rem); }
}

.post { display: flex; }
.post__hit {
  display: grid; align-content: start; width: 100%; text-decoration: none; color: var(--body);
  border-top: 2px solid var(--ink); padding-top: 1rem;
  transition: border-color 0.18s ease;
}
.post__hit:hover { border-color: var(--gold); }
.post__frame { display: block; line-height: 0; overflow: hidden; border-radius: var(--r); }
.post__frame img { width: 100%; aspect-ratio: 450 / 245; object-fit: cover; object-position: 50% 22%; transition: transform 0.4s ease; }
.post__hit:hover .post__frame img { transform: scale(1.03); }
.post__cat {
  font-family: var(--display); font-weight: 600; font-size: var(--fs-100);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--leaf-text);
  padding-top: 1rem;
}
.post__title {
  font-family: var(--display); font-weight: 600; font-size: var(--fs-400);
  color: var(--ink); line-height: 1.25; padding-top: 0.4rem;
}
.post__meta {
  display: flex; flex-wrap: wrap; gap: 0.15rem 0.85rem; padding-top: 0.7rem;
  font-size: var(--fs-200); color: var(--body);
}
.post__meta time { font-variant-numeric: tabular-nums; }

/* --- 7. Get to know us -------------------------------------------------- */
.know { padding-block: var(--band) 0; }
.know__plate { line-height: 0; border-radius: var(--r-lg); overflow: hidden; }
.know__plate img { width: 100%; height: clamp(220px, 34vw, 520px); object-fit: cover; object-position: 50% 40%; }
.know__block {
  position: relative; background: var(--paper);
  border-top: 5px solid var(--gold);
  margin-top: clamp(-5.5rem, -5vw, -1.5rem);
  padding: clamp(1.75rem, 3.5vw, 3rem) clamp(1.25rem, 3vw, 3rem) 0 0;
  max-width: 68ch;
}
.know__block h2 { font-size: var(--fs-600); margin-bottom: 1.1rem; }
.know__block p { max-width: 64ch; }
.know__cta { margin-top: 1.5rem; }

/* --- 8. About ledger ---------------------------------------------------- */
.about { padding-block: var(--band); }
.about__inner { display: grid; gap: clamp(2rem, 4vw, 4.5rem); }
.about__h { font-size: var(--fs-600); font-weight: 600; letter-spacing: -0.01em; margin-bottom: 1.2rem; }
.about__say p { max-width: 58ch; }
.about__nap { display: flex; flex-wrap: wrap; gap: 0 1.75rem; margin-top: 0.5rem; }

.ledger { border-top: 1px solid var(--line); }
.ledger li { border-bottom: 1px solid var(--line); }
.ledger a {
  display: grid; gap: 0.25rem; padding: 1.1rem 0.25rem;
  text-decoration: none; color: var(--ink);
  transition: padding-left 0.18s ease, background-color 0.18s ease;
}
.ledger a:hover { padding-left: 0.9rem; background: rgba(185, 144, 79, 0.1); }
.ledger span {
  font-family: var(--display); font-weight: 600; font-size: var(--fs-100);
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold-text);
}
.ledger b { font-family: var(--display); font-weight: 500; font-size: var(--fs-400); letter-spacing: -0.01em; }

@media (min-width: 940px) {
  .about__inner { grid-template-columns: minmax(0, 44fr) minmax(0, 56fr); align-items: start; }
  .ledger { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(1.5rem, 3vw, 3rem); }
  .ledger li:nth-child(-n+2) { border-top: 1px solid var(--line); }
  .ledger { border-top: 0; }
}

/* --- 9. Review wall ---------------------------------------------------- */
.says { padding-block: var(--band); border-top: 1px solid var(--line); }
.says__head { text-align: center; max-width: 46rem; margin: 0 auto clamp(2rem, 4vw, 3.25rem); }
.says__head h2 { font-size: var(--fs-600); }
.says__lede { margin: 1rem 0 0; font-size: var(--fs-400); }

.wall { columns: 1; column-gap: clamp(1.25rem, 2.2vw, 2rem); }
@media (min-width: 700px) { .wall { columns: 2; } }
@media (min-width: 1100px) { .wall { columns: 3; } }

.rev {
  break-inside: avoid; margin: 0 0 clamp(1.25rem, 2.2vw, 2rem);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--ocean);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
/* Was nth-child(3n+2) gold and nth-child(3n) leaf, so the rail colour was keyed to DOM position
   modulo 3. Three colours across twelve reviews, encoding nothing: a reader looks for the difference
   between a gold review and a green one and there is none. A structural device that implies a
   distinction the content does not have is decoration. One rail, one colour. */
.rev blockquote { margin: 0; }
.rev p { margin: 0; font-size: var(--fs-300); }
.rev figcaption {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.2rem 0.75rem;
  margin-top: 1.1rem; padding-top: 0.9rem; border-top: 1px solid var(--line);
  font-family: var(--display); font-weight: 600; font-size: var(--fs-200); color: var(--ink);
}
.rev figcaption span { font-family: var(--sans); font-weight: 400; color: var(--body); }

.says__foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1.75rem;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0; padding-top: 1.5rem;
  border-top: 1px solid var(--line); font-size: var(--fs-200);
}

/* --- Footer ------------------------------------------------------------- */
.site-foot { background: var(--ink); padding-block: clamp(2.5rem, 5vw, 4.5rem) 2.5rem; }
.stay {
  display: grid; gap: 1.5rem; padding-bottom: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(251, 250, 247, 0.22);
}
.stay__say h2 { font-size: var(--fs-500); }
.stay__say p { margin: 0.6rem 0 0; color: var(--paper); }
.stay__form { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.stay__form input { width: 20rem; max-width: 100%; border-color: transparent; }
@media (min-width: 620px) { .stay__form { flex-wrap: nowrap; } }
@media (min-width: 860px) {
  .stay { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 2.5rem; }
}

.foot__grid {
  display: grid; gap: clamp(1.75rem, 3vw, 2.75rem);
  padding-block: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 620px) { .foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .foot__grid { grid-template-columns: auto repeat(4, minmax(0, 1fr)); } }
.foot__id img { width: auto; height: 132px; }
.foot__col h3 {
  font-size: var(--fs-100); letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 600; color: var(--accent); margin-bottom: 0.5rem;
}
.foot__plain li { font-size: var(--fs-200); line-height: 1.5; }
.foot__plain a, .foot__plain li {
  color: var(--paper);
}
.foot__plain a {
  display: inline-block; padding-block: 12px; text-decoration: underline;
  text-decoration-color: rgba(251, 250, 247, 0.6); text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.foot__plain a:hover { text-decoration-color: var(--gold); }
.foot__plain li:not(:has(a)) { padding-block: 6px; }

.foot__legal {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(251, 250, 247, 0.22);
  font-size: var(--fs-200); color: var(--paper);
}
.foot__legal p { margin: 0 0 0.6rem; max-width: 80ch; }
.foot__eho { font-family: var(--display); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.foot__utility { display: flex; flex-wrap: wrap; gap: 0 1.5rem; margin-bottom: 0.6rem; }
.foot__utility a {
  display: inline-block; padding-block: 11px; color: var(--paper);
  text-decoration: underline; text-decoration-color: rgba(251, 250, 247, 0.6);
  text-underline-offset: 4px;
}
.foot__utility a:hover { text-decoration-color: var(--gold); }
