/* ==========================================================================
   HIVE — 15 Vena Way, Toronto
   Design system. Written by hand; no framework, no build step.

   Palette is drawn from the site itself: the pale lichen-sage of the Humber
   valley in late autumn, the dusk slate of the towers at blue hour, the amber
   of lit windows, and the gold of a goldfinch.
   ========================================================================== */

/* ---------- Tokens ------------------------------------------------------- */
:root {
  /* Surface */
  --paper:      #E9ECE4;
  --paper-hi:   #F5F7F1;
  --paper-lo:   #DDE2D6;
  --rule:       #C6CDBC;
  --rule-soft:  #D6DBCD;

  /* Depth */
  --slate:      #142129;
  --slate-hi:   #1D2F39;
  --slate-lo:   #0D171D;

  /* Ink */
  --ink:        #17201C;
  --ink-soft:   #59665E;
  --ink-faint:  #83907F;

  /* Accent */
  --gold:       #C98A22;
  --gold-hi:    #E3AB40;
  --gold-wash:  #F2E4C7;
  --moss:       #35604D;
  --moss-hi:    #4B7E66;

  /* Type */
  --display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --body:    "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --editor:  "Instrument Serif", Georgia, "Times New Roman", serif;

  /* Rhythm */
  --gap:      clamp(1.25rem, 3vw, 2rem);
  --band:     clamp(3.75rem, 9vw, 7.5rem);
  --shell:    1240px;
  --shell-narrow: 780px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.62;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

button, input, select, textarea { font: inherit; color: inherit; }

ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- Utility ------------------------------------------------------ */
.shell   { width: min(100% - 2.5rem, var(--shell)); margin-inline: auto; }
.shell--narrow { width: min(100% - 2.5rem, var(--shell-narrow)); margin-inline: auto; }
.band    { padding-block: var(--band); }
.band--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }

.skip {
  position: absolute; left: 0; top: 0; z-index: 200;
  background: var(--slate); color: var(--paper);
  padding: .7rem 1.2rem; transform: translateY(-120%);
  transition: transform .2s var(--ease);
}
.skip:focus { transform: translateY(0); }

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

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

/* ---------- Typographic roles -------------------------------------------- */
.tag {
  font-family: var(--body);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 1.1rem;
}
.tag--gold { color: var(--gold); }

.lede {
  font-size: clamp(1.125rem, 1.9vw, 1.3125rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 58ch;
}

.note {
  font-family: var(--editor);
  font-style: italic;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.32;
  letter-spacing: -.01em;
  color: var(--ink);
}

.h-xl { font-size: clamp(2.9rem, 7.4vw, 5.6rem); font-weight: 800; letter-spacing: -.035em; }
.h-l  { font-size: clamp(2.1rem, 4.4vw, 3.3rem); font-weight: 700; letter-spacing: -.028em; }
.h-m  { font-size: clamp(1.55rem, 2.8vw, 2.1rem); font-weight: 700; letter-spacing: -.022em; }
.h-s  { font-size: 1.1875rem; font-weight: 700; letter-spacing: -.012em; }

.num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* ---------- Signature: the wire ------------------------------------------
   A hairline that runs the width of the page with a small bird resting on it.
   It marks the start of every major section, so the page reads as one
   continuous line with stops along it.
   ------------------------------------------------------------------------- */
.wire {
  position: relative;
  height: 22px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}
.wire::before {
  content: "";
  position: absolute; inset-inline: 0; bottom: 0;
  height: 5px;
  background-image: linear-gradient(to right, var(--rule) 1px, transparent 1px);
  background-size: 44px 100%;
  opacity: .55;
}
.wire__bird {
  position: absolute;
  bottom: 0; left: 0;
  width: 17px; height: 21px;
  color: var(--slate);
  transition: left 1.2s var(--ease);
}
.wire__bird::after {
  content: "";
  display: block; width: 100%; height: 100%;
  background: currentColor;
  -webkit-mask: var(--bird-mask) center/contain no-repeat;
  mask: var(--bird-mask) center/contain no-repeat;
}
.wire.is-lit .wire__bird { left: var(--perch, 34%); }
.wire--gold .wire__bird { color: var(--gold); }

:root {
  --bird-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 26'%3E%3Cpath d='M9.4 25.4c-.2-1.9-.5-3.3-1-4.4-.8-1.8-2-2.7-3.6-3.9C2.6 15.5 1 13.2 1 10.2 1 6 4.3 2.2 8.8.7c.6-.2 1 .4.7.9-.7 1.1-1 2.1-1 3 0 1.4.7 2.4 2.2 3.4l2.6 1.7c2.9 1.9 4.3 3.9 4.3 6.5 0 3.1-2 5.5-5 6.6-1 .4-1.6 1.1-1.9 2.6-.1.5-.9.5-1.3 0z'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wire__bird { transition: none; }
}

/* ---------- Feather texture ----------------------------------------------
   Barbs off a central shaft. Used only on dark bands, at very low contrast.
   ------------------------------------------------------------------------- */
.barbs { position: relative; isolation: isolate; }
.barbs::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image:
    repeating-linear-gradient(74deg, rgba(233,236,228,.055) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(106deg, rgba(233,236,228,.035) 0 1px, transparent 1px 9px);
  pointer-events: none;
}

/* ---------- Navigation --------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--rule); }

/* Over a full-bleed hero the bar floats until the page moves. */
.nav--float { position: fixed; top: 0; left: 0; right: 0; }
.nav--float:not(.is-stuck) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav--float:not(.is-stuck) .brand,
.nav--float:not(.is-stuck) .nav__link { color: rgba(233,236,228,.86); }
.nav--float:not(.is-stuck) .brand__mark { color: var(--gold-hi); }
.nav--float:not(.is-stuck) .brand__word { color: var(--paper-hi); }
.nav--float:not(.is-stuck) .nav__link:hover,
.nav--float:not(.is-stuck) .nav__link[aria-current="page"] { color: #fff; }
.nav--float:not(.is-stuck) .brand__at {
  color: rgba(233,236,228,.6); border-left-color: rgba(233,236,228,.32);
}
.nav--float:not(.is-stuck) .btn--ghost {
  border-color: rgba(233,236,228,.38); color: var(--paper);
}
.nav--float:not(.is-stuck) .btn--ghost:hover {
  background: rgba(233,236,228,.12); border-color: var(--paper);
}
.nav--float:not(.is-stuck) .nav__burger { border-color: rgba(233,236,228,.38); }
.nav--float:not(.is-stuck) .nav__burger span { background: var(--paper); }

.nav__inner {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
  display: flex; align-items: center; gap: 1.5rem;
  height: 74px;
}

.brand {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; color: var(--ink);
  margin-right: auto;
}
.brand__mark { width: 26px; height: 26px; color: var(--slate); flex: none; }
.brand__word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.brand__at {
  font-size: .7rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 500;
  padding-left: .6rem; margin-left: .1rem;
  border-left: 1px solid var(--rule);
}

.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__link {
  text-decoration: none;
  font-size: .9375rem; font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-block: .3rem;
  transition: color .18s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--ink); }

.nav__cta { display: flex; align-items: center; gap: .6rem; }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  background: none; border: 1px solid var(--rule); border-radius: 4px;
  cursor: pointer; position: relative;
}
.nav__burger span {
  position: absolute; left: 11px; right: 11px; height: 1.5px;
  background: var(--ink); transition: transform .28s var(--ease), opacity .18s;
}
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 25px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: block; }
  .nav__inner { gap: .75rem; }
}
@media (max-width: 560px) {
  .brand__at { display: none; }
  .nav__cta .btn { padding: .5rem .85rem; font-size: .8125rem; }
}

.drawer {
  position: fixed; top: 74px; left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height .36s var(--ease), visibility 0s .36s;
}
.drawer.is-open {
  max-height: calc(100dvh - 74px);
  overflow-y: auto;
  visibility: visible;
  border-bottom-color: var(--rule);
  transition: max-height .36s var(--ease), visibility 0s;
}
.drawer__list { padding: 1rem 1.25rem 1.75rem; }
.drawer__list a {
  display: block; padding: .85rem 0;
  border-bottom: 1px solid var(--rule-soft);
  text-decoration: none;
  font-family: var(--display); font-size: 1.35rem; font-weight: 600;
  letter-spacing: -.02em;
}
.drawer__cta { display: flex; gap: .6rem; padding: 1.25rem 0 0; }
.drawer__cta .btn { flex: 1; justify-content: center; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .9375rem; font-weight: 600; letter-spacing: -.005em;
  text-decoration: none; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--solid  { background: var(--slate); color: var(--paper-hi); }
.btn--solid:hover { background: var(--moss); }

.btn--gold   { background: var(--gold); color: #241705; }
.btn--gold:hover { background: var(--gold-hi); }

.btn--ghost  { border-color: var(--rule); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--slate); background: var(--paper-hi); }

.btn--on-dark {
  border-color: rgba(233,236,228,.42);
  color: var(--paper-hi);
  background: rgba(13,23,29,.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--on-dark:hover { background: rgba(233,236,228,.16); border-color: var(--paper); }

.btn--wide { padding-inline: 1.9rem; }
.btn--sm { padding: .55rem 1rem; font-size: .875rem; }

.btn svg { width: 15px; height: 15px; flex: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  text-decoration: none; font-weight: 600; font-size: .9375rem;
  color: var(--moss);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.link-arrow:hover { gap: .75rem; color: var(--ink); }
.link-arrow svg { width: 14px; height: 14px; }

/* ---------- Hero --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(94svh, 900px);
  padding-top: 74px;                 /* clears the floating bar */
  display: flex; align-items: flex-end;
  background: var(--slate-lo);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroDrift 26s var(--ease) forwards;
}
@keyframes heroDrift { from { transform: scale(1.07); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero__media img { animation: none; } }

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(9,17,22,.94) 0%, rgba(9,17,22,.6) 36%, rgba(9,17,22,.16) 70%, rgba(9,17,22,.5) 100%),
    linear-gradient(to right, rgba(9,17,22,.78) 0%, rgba(9,17,22,.42) 40%, rgba(9,17,22,0) 74%);
}
.hero__inner {
  position: relative;
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--paper);
}
.hero__eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .6875rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 1.4rem;
}
.hero__eyebrow::before {
  content: ""; width: 34px; height: 1px; background: currentColor; flex: none;
}
.hero h1 {
  font-size: clamp(2.9rem, 7.6vw, 5.9rem);
  font-weight: 800;
  letter-spacing: -.038em;
  max-width: 15ch;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-family: var(--editor);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--gold-hi);
}
.hero__sub {
  font-size: clamp(1.0625rem, 1.7vw, 1.25rem);
  color: rgba(233,236,228,.82);
  max-width: 48ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }

.hero__facts {
  display: flex; flex-wrap: wrap;
  gap: 0;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid rgba(233,236,228,.22);
  padding-top: 1.5rem;
}
.hero__fact {
  padding-right: clamp(1.5rem, 4vw, 3.25rem);
  margin-right: clamp(1.5rem, 4vw, 3.25rem);
  border-right: 1px solid rgba(233,236,228,.18);
}
.hero__fact:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__fact dt {
  font-size: .6875rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(233,236,228,.55); margin-bottom: .3rem;
}
.hero__fact dd {
  margin: 0;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.5rem); letter-spacing: -.02em;
}
@media (max-width: 700px) {
  .hero__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1rem; }
  .hero__fact { border-right: 0; margin-right: 0; padding-right: 0; }
  .hero h1 { max-width: none; }
}

/* flight path drawn across the hero on load */
.flightpath {
  position: absolute; inset: 0;
  pointer-events: none;
  color: rgba(227,171,64,.34);
}
.flightpath path {
  fill: none; stroke: currentColor; stroke-width: 1;
  stroke-dasharray: 3 8;
  stroke-dashoffset: 900;
  animation: fly 3.4s 0.5s var(--ease) forwards;
}
@keyframes fly { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .flightpath path { animation: none; stroke-dashoffset: 0; } }

/* page hero (interior pages) */
.phero {
  background: var(--slate);
  color: var(--paper);
  padding-block: clamp(3.25rem, 8vw, 6rem) clamp(3rem, 7vw, 5rem);
}
.phero h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); letter-spacing: -.035em; max-width: 18ch; }
.phero .lede { color: rgba(233,236,228,.72); margin-top: 1.25rem; }
.phero .tag { color: var(--gold-hi); }
.phero .wire { border-bottom-color: rgba(233,236,228,.24); margin-bottom: 2rem; }
.phero .wire::before { background-image: linear-gradient(to right, rgba(233,236,228,.3) 1px, transparent 1px); }
.phero .wire__bird { color: var(--gold-hi); }

.phero__split {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, .8fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: end;
}
@media (max-width: 860px) { .phero__split { grid-template-columns: 1fr; align-items: start; } }
.phero__price { padding-bottom: .35rem; }
.phero__amount { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .35rem; }
.phero__amount b {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.4rem, 4.4vw, 3.2rem); letter-spacing: -.045em; line-height: 1;
  color: var(--gold-hi);
}
.phero__amount span { font-size: .875rem; color: rgba(233,236,228,.62); }
.phero__meta { font-size: .875rem; color: rgba(233,236,228,.62); margin-bottom: 1.1rem; }

/* ---------- Prev / next -------------------------------------------------- */
.pager {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.pager__link {
  display: block; text-decoration: none;
  border: 1px solid rgba(233,236,228,.2);
  padding: 1rem 1.15rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.pager__link:hover { border-color: var(--gold-hi); background: rgba(233,236,228,.05); }
.pager__link span {
  display: block; font-size: .6875rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(233,236,228,.5); margin-bottom: .25rem;
}
.pager__link b {
  font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em;
}
.pager__link--prev b::before { content: "\2190\00a0\00a0"; color: var(--gold-hi); }
.pager__link--next { text-align: right; }
.pager__link--next b::after { content: "\00a0\00a0\2192"; color: var(--gold-hi); }
@media (max-width: 520px) { .pager { grid-template-columns: 1fr; } }

/* ---------- Sections ----------------------------------------------------- */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--gap);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}
.section-head__aside { padding-bottom: .35rem; }
@media (max-width: 780px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

.dark {
  background: var(--slate);
  color: var(--paper);
}
.dark .tag { color: var(--gold-hi); }
.dark .lede { color: rgba(233,236,228,.72); }
.dark .wire { border-bottom-color: rgba(233,236,228,.22); }
.dark .wire::before { background-image: linear-gradient(to right, rgba(233,236,228,.28) 1px, transparent 1px); }
.dark .wire__bird { color: var(--gold-hi); }
.dark .link-arrow { color: var(--gold-hi); }
.dark .link-arrow:hover { color: var(--paper); }

/* ---------- Field-guide plates (room types) -------------------------------
   Room types are a taxonomy, so they are presented the way a field guide
   presents specimens: a numbered plate, a name, a designation line, and a
   short table of measurements.
   ------------------------------------------------------------------------- */
.plates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.plate {
  display: flex; flex-direction: column;
  background: var(--paper-hi);
  border: 1px solid var(--rule-soft);
  text-decoration: none;
  /* Not `inherit`: plates sit on both paper and slate bands, and the card is
     always light, so the text must always be dark. */
  color: var(--ink);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.plate:hover {
  border-color: var(--slate);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -28px rgba(20,33,41,.55);
}
.plate__frame {
  position: relative;
  margin: 10px 10px 0;
  overflow: hidden;
  background: var(--paper-lo);
}
.plate__frame img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .6s var(--ease);
}
.plate:hover .plate__frame img { transform: scale(1.035); }
.plate__no {
  position: absolute; top: 0; left: 0;
  background: var(--paper-hi);
  padding: .4rem .7rem .35rem;
  font-size: .625rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.plate__flag {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: #241705;
  padding: .4rem .7rem .35rem;
  font-size: .625rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.plate__body { padding: 1.15rem 1.15rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.plate__name { font-size: 1.5rem; font-weight: 700; letter-spacing: -.025em; color: var(--ink); }
.plate__desig {
  font-family: var(--editor); font-style: italic;
  font-size: 1rem; color: var(--ink-soft);
  margin-top: .2rem;
}
.plate__spec {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin: .95rem 0 1.15rem;
}
.plate__spec li {
  font-size: .75rem; letter-spacing: .02em;
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  padding: .22rem .55rem;
  border-radius: 999px;
}
.plate__foot {
  margin-top: auto;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--rule-soft);
  padding-top: .9rem;
}
.plate__price { display: flex; align-items: baseline; gap: .35rem; }
.plate__price b {
  font-family: var(--display); font-weight: 700;
  font-size: 1.55rem; letter-spacing: -.03em;
  color: var(--ink);
}
.plate__price span { font-size: .8125rem; color: var(--ink-soft); }
.plate__more {
  font-size: .8125rem; font-weight: 600; color: var(--moss);
  display: inline-flex; align-items: center; gap: .35rem;
}
.plate__more svg { width: 13px; height: 13px; transition: transform .25s var(--ease); }
.plate:hover .plate__more svg { transform: translateX(3px); }

/* ---------- Room detail -------------------------------------------------- */
.room-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .9fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: start;
}
@media (max-width: 980px) { .room-layout { grid-template-columns: 1fr; } }

.spec-table { width: 100%; border-collapse: collapse; margin-top: .5rem; }
.spec-table th, .spec-table td {
  text-align: left; padding: .72rem 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: .9375rem;
  vertical-align: top;
}
.spec-table th { font-weight: 500; color: var(--ink-soft); width: 44%; }
.spec-table td { font-weight: 600; }

.booking-card {
  position: sticky; top: 96px;
  background: var(--paper-hi);
  border: 1px solid var(--rule);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
@media (max-width: 980px) { .booking-card { position: static; } }
.booking-card__price { display: flex; align-items: baseline; gap: .5rem; }
.booking-card__price b {
  font-family: var(--display); font-weight: 800;
  font-size: 2.6rem; letter-spacing: -.04em; line-height: 1;
}
.booking-card__price span { color: var(--ink-soft); font-size: .9375rem; }
.booking-card__alt { font-size: .875rem; color: var(--ink-soft); margin-top: .45rem; }
.booking-card__list { margin: 1.15rem 0; border-top: 1px solid var(--rule-soft); }
.booking-card__list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .6rem 0; border-bottom: 1px solid var(--rule-soft);
  font-size: .875rem;
}
.booking-card__list li span:first-child { color: var(--ink-soft); }
.booking-card__list li span:last-child { font-weight: 600; text-align: right; }
.booking-card .btn { width: 100%; justify-content: center; }
.booking-card .btn + .btn { margin-top: .6rem; }
.booking-card__fine {
  font-size: .75rem; color: var(--ink-faint);
  margin-top: 1rem; text-align: center; line-height: 1.5;
}

/* ---------- Gallery ------------------------------------------------------ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery__item {
  position: relative; overflow: hidden;
  border: 0; padding: 0; background: var(--paper-lo);
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease), opacity .25s;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--lead { grid-column: span 2; grid-row: span 2; }
.gallery__item--lead img { aspect-ratio: 1 / 1; }
.gallery__item img { aspect-ratio: 4 / 3; }
.gallery__more {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  background: linear-gradient(to top, rgba(13,23,29,.85), rgba(13,23,29,0));
  color: var(--paper);
  padding: 1.6rem .5rem .6rem;
  font-size: .8125rem; font-weight: 600; letter-spacing: .03em;
}
.gallery__more svg { width: 14px; height: 14px; }
@media (max-width: 780px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--lead { grid-column: span 2; grid-row: span 1; }
  .gallery__item--lead img { aspect-ratio: 4 / 3; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(9,17,22,.95);
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 100%; max-height: 84vh;
  object-fit: contain;
  animation: lbIn .3s var(--ease);
}
@keyframes lbIn { from { opacity: 0; transform: scale(.985); } to { opacity: 1; transform: none; } }
.lightbox__count {
  position: absolute; bottom: clamp(1rem, 3vw, 2rem); left: 50%; transform: translateX(-50%);
  color: rgba(233,236,228,.7); font-size: .8125rem; letter-spacing: .1em;
}
.lightbox__btn {
  position: absolute;
  background: rgba(233,236,228,.1); border: 1px solid rgba(233,236,228,.25);
  color: var(--paper);
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  transition: background .2s var(--ease);
}
.lightbox__btn:hover { background: rgba(233,236,228,.22); }
.lightbox__btn svg { width: 18px; height: 18px; }
.lightbox__btn--prev { left: clamp(.5rem, 2.5vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: clamp(.5rem, 2.5vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__btn--close { top: clamp(.75rem, 2.5vw, 1.75rem); right: clamp(.75rem, 2.5vw, 1.75rem); }

/* ---------- Amenity grid ------------------------------------------------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
}
.tile {
  background: var(--paper-hi);
  border: 1px solid var(--rule-soft);
  border-top: 2px solid var(--gold);
  padding: 1.35rem 1.35rem 1.5rem;
}
.dark .tile { background: var(--slate-hi); border-color: rgba(233,236,228,.13); border-top-color: var(--gold); }
.tile h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.tile p { font-size: .9375rem; color: var(--ink-soft); }
.dark .tile p { color: rgba(233,236,228,.68); }

/* editorial two-up */
.duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.duo--reverse .duo__media { order: 2; }
@media (max-width: 860px) {
  .duo { grid-template-columns: 1fr; }
  .duo--reverse .duo__media { order: 0; }
}
.duo__media img { width: 100%; object-fit: cover; }

.banner {
  width: 100%;
  aspect-ratio: 24 / 10;
  object-fit: cover;
}
@media (max-width: 700px) { .banner { aspect-ratio: 3 / 2; } }

.figure-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.figure-pair img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.figure-pair figcaption {
  font-size: .8125rem; color: var(--ink-faint); margin-top: .6rem;
}
@media (max-width: 640px) { .figure-pair { grid-template-columns: 1fr; } }

.stack-figures {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.stack-figures img:first-child { grid-column: span 2; aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.stack-figures img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }

/* ---------- Numbers band ------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.stat__v {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3rem); letter-spacing: -.04em;
  line-height: 1;
  color: var(--gold-hi);
}
.dark .stat__v { color: var(--gold-hi); }
.stat__k {
  margin-top: .6rem; font-size: .875rem;
  color: rgba(233,236,228,.68);
  max-width: 26ch;
}

/* ---------- Steps -------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.4rem, 3vw, 2.1rem) 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.step__n {
  font-family: var(--display); font-weight: 800;
  font-size: 1rem; letter-spacing: .04em;
  color: var(--gold);
  padding-top: .25rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: .45rem; }
.step p { color: var(--ink-soft); max-width: 62ch; }
@media (max-width: 640px) { .step { grid-template-columns: 1fr; gap: .5rem; } }

/* ---------- Accordion (FAQ) ---------------------------------------------- */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 1.25rem 2.5rem 1.25rem 0;
  position: relative;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.05rem, 1.9vw, 1.25rem); letter-spacing: -.018em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .4rem; top: 1.55rem;
  width: 13px; height: 13px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v16M4 12h16' stroke='%23000' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v16M4 12h16' stroke='%23000' stroke-width='2.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .3s var(--ease);
  color: var(--gold);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details > div { padding: 0 3rem 1.5rem 0; color: var(--ink-soft); }
.faq details > div p { max-width: 72ch; }

/* ---------- Neighbourhood list ------------------------------------------- */
.routes { border-top: 1px solid var(--rule); }
.routes li {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding: .95rem 0;
  border-bottom: 1px solid var(--rule-soft);
}
.routes b { font-weight: 600; font-size: .9875rem; }
.routes span { color: var(--ink-soft); font-size: .9rem; }
.routes em {
  font-style: normal; font-family: var(--display); font-weight: 700;
  font-size: 1rem; white-space: nowrap; letter-spacing: -.015em;
}
.dark .routes { border-top-color: rgba(233,236,228,.22); }
.dark .routes li { border-bottom-color: rgba(233,236,228,.12); }
.dark .routes span { color: rgba(233,236,228,.62); }
.dark .routes em { color: var(--gold-hi); }
@media (max-width: 680px) {
  .routes li { grid-template-columns: 1fr auto; }
  .routes span { grid-column: 1 / -1; }
}

/* ---------- Forms -------------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.15rem;
}
.field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: .8125rem; font-weight: 600; letter-spacing: .01em;
  margin-bottom: .4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .78rem .9rem;
  background: var(--paper-hi);
  border: 1px solid var(--rule);
  border-radius: 3px;
  font-size: .9375rem;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--slate); background: #fff;
  box-shadow: 0 0 0 3px rgba(201,138,34,.16);
}
.field textarea { min-height: 118px; resize: vertical; }
.field__hint { font-size: .75rem; color: var(--ink-faint); margin-top: .35rem; }

.form-note {
  font-size: .8125rem; color: var(--ink-faint);
  margin-top: 1rem; line-height: 1.55;
}

.done {
  text-align: center; padding: 2.5rem 1rem;
}
.done__mark {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold-wash); color: var(--moss);
  display: grid; place-items: center; margin: 0 auto 1.15rem;
}
.done__mark svg { width: 26px; height: 26px; }
.done h3 { font-size: 1.6rem; margin-bottom: .5rem; }
.done p { color: var(--ink-soft); max-width: 44ch; margin-inline: auto; }

.form-panel {
  background: var(--paper-hi);
  border: 1px solid var(--rule);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}

/* ---------- Modal -------------------------------------------------------- */
.modal {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(9,17,22,.72);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-start; justify-content: center;
  padding: clamp(1rem, 4vh, 3rem) 1rem;
  overflow-y: auto;
}
.modal.is-open { display: flex; }
.modal__panel {
  background: var(--paper);
  width: min(100%, 620px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  animation: modalIn .28s var(--ease);
  border-top: 3px solid var(--gold);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute; top: .85rem; right: .85rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: none; border: 1px solid var(--rule);
  display: grid; place-items: center; cursor: pointer;
}
.modal__close:hover { background: var(--paper-lo); }
.modal__close svg { width: 15px; height: 15px; }
.modal__head { margin-bottom: 1.5rem; padding-right: 2.5rem; }
.modal__head h2 { font-size: clamp(1.5rem, 3vw, 1.9rem); margin-bottom: .4rem; }
.modal__head p { color: var(--ink-soft); font-size: .9375rem; }

.pick {
  display: flex; align-items: center; gap: .9rem;
  background: var(--paper-lo);
  padding: .8rem .95rem;
  margin-bottom: 1.25rem;
}
.pick img { width: 62px; height: 48px; object-fit: cover; flex: none; }
.pick b { display: block; font-size: .9375rem; }
.pick span { font-size: .8125rem; color: var(--ink-soft); }

/* ---------- Callout band ------------------------------------------------- */
.callout {
  background: var(--slate);
  color: var(--paper);
  padding: clamp(2.5rem, 6vw, 4.25rem) clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.callout h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); letter-spacing: -.03em; }
.callout p { color: rgba(233,236,228,.7); margin-top: .75rem; max-width: 52ch; }
.callout__actions { display: flex; gap: .7rem; flex-wrap: wrap; }
@media (max-width: 780px) { .callout { grid-template-columns: 1fr; } }

/* ---------- Footer ------------------------------------------------------- */
.foot {
  background: var(--slate-lo);
  color: rgba(233,236,228,.72);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: .9rem;
}
.foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}
@media (max-width: 860px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__grid { grid-template-columns: 1fr; } }

.foot .brand { color: var(--paper); margin-bottom: 1rem; }
.foot .brand__mark { color: var(--gold-hi); }
.foot .brand__at { color: rgba(233,236,228,.5); border-left-color: rgba(233,236,228,.25); }
.foot h4 {
  font-family: var(--body); font-size: .6875rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(233,236,228,.45);
  margin-bottom: .95rem;
}
.foot li { margin-bottom: .55rem; }
.foot a { text-decoration: none; transition: color .18s var(--ease); }
.foot a:hover { color: var(--gold-hi); }
.foot__bar {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(233,236,228,.13);
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  justify-content: space-between;
  font-size: .8125rem; color: rgba(233,236,228,.5);
}
.foot__bar nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ---------- WhatsApp button -----------------------------------------------
   Fixed bottom right on every page. z-index sits under the modals and the
   lightbox so it can never cover a form or a photo.
   ------------------------------------------------------------------------- */
.wa {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: inline-flex; align-items: center; gap: .55rem;
  height: 54px; padding: 0 1.15rem 0 1.05rem;
  border-radius: 999px;
  background: var(--slate);
  color: #F5F7F1;
  text-decoration: none;
  font-size: .9375rem; font-weight: 600; letter-spacing: -.005em;
  box-shadow: 0 12px 30px -12px rgba(13, 23, 29, .55), 0 0 0 1px rgba(233, 236, 228, .1) inset;
  transition: background .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.wa svg { width: 25px; height: 25px; flex: none; color: #4BD07C; }
.wa:hover {
  background: #0D171D;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -14px rgba(13, 23, 29, .65), 0 0 0 1px rgba(75, 208, 124, .35) inset;
}
.wa:active { transform: translateY(0); }

/* Collapse to a disc where the label would crowd the layout. */
@media (max-width: 640px) {
  .wa { height: 52px; width: 52px; padding: 0; justify-content: center; }
  .wa span { display: none; }
  .wa svg { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .wa, .wa:hover { transition: none; transform: none; }
}

/* ---------- Reveal on scroll --------------------------------------------- */
.rise { opacity: 0; transform: translateY(14px); }
.rise.is-in { opacity: 1; transform: none; transition: opacity .45s var(--ease), transform .45s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; }
  .rise.is-in { transition: none; }
}

/* ---------- Prose (legal, guides) ---------------------------------------- */
.prose h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin: 2.5rem 0 .9rem; }
.prose h3 { font-size: 1.2rem; margin: 1.9rem 0 .5rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { list-style: none; margin: 0 0 1.25rem; }
.prose ul li {
  position: relative; padding-left: 1.35rem; margin-bottom: .5rem;
}
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 1px; background: var(--gold);
}
.prose ol { counter-reset: p; margin: 0 0 1.25rem; }
.prose ol li { counter-increment: p; position: relative; padding-left: 1.9rem; margin-bottom: .5rem; }
.prose ol li::before {
  content: counter(p) "."; position: absolute; left: 0;
  font-weight: 600; color: var(--gold);
}
.prose a { color: var(--moss); text-underline-offset: 3px; }
.prose--split { columns: 2; column-gap: clamp(1.5rem, 4vw, 3rem); }
.prose--split li { break-inside: avoid; }
@media (max-width: 720px) { .prose--split { columns: 1; } }

/* ---------- Map ---------------------------------------------------------- */
.map-frame {
  border: 1px solid var(--rule);
  background: var(--paper-lo);
  aspect-ratio: 16 / 9;
  width: 100%;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 640px) { .map-frame { aspect-ratio: 4 / 3; } }
