:root {
  --paper: #f4f1e8;
  --surface: #fffdf8;
  --surface-alt: #ced8cc;
  --ink: #19201d;
  --muted: #5d6963;
  --river: #173f35;
  --river-hover: #0d3028;
  --plum: #34282c;
  --copper: #b84c35;
  --copper-hover: #8f3526;
  --border: #cbd3cd;
  --border-strong: #89968e;
  --focus: #176f73;
  --footer: #e2e9e3;
  --error: #a12f2f;
  --success: #246440;
  --font-heading: "Space Grotesk", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-body: Karla, "Gill Sans", "Trebuchet MS", Arial, sans-serif;
  --font-accent: "IBM Plex Serif", Georgia, serif;
  --step--1: clamp(.84rem, .82rem + .08vw, .92rem);
  --step-0: clamp(1rem, .98rem + .15vw, 1.075rem);
  --step-1: clamp(1.22rem, 1.13rem + .32vw, 1.46rem);
  --step-2: clamp(1.55rem, 1.38rem + .62vw, 2rem);
  --step-3: clamp(2rem, 1.68rem + 1.18vw, 2.85rem);
  --step-4: clamp(2.7rem, 2rem + 2.5vw, 4.25rem);
  --space-1: .5rem;
  --space-2: .8rem;
  --space-3: 1.3rem;
  --space-4: 2.1rem;
  --space-5: 3.4rem;
  --space-6: 5.5rem;
  --space-7: 8.8rem;
  --rail: 112px;
  --shell: min(1220px, calc(100% - 3rem));
  --shell-wide: min(1420px, calc(100% - 3rem));
  --shell-narrow: min(820px, calc(100% - 3rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-left: var(--rail);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-underline-offset: .22em; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-heading); font-weight: 600; line-height: 1.04; text-wrap: balance; }
h1 { font-size: var(--step-4); letter-spacing: -.045em; }
h2 { font-size: var(--step-3); letter-spacing: -.035em; }
h3 { font-size: var(--step-2); letter-spacing: -.02em; }
p { max-width: 68ch; }
address { font-style: normal; }
.shell { width: var(--shell); margin-inline: auto; }
.shell-wide { width: var(--shell-wide); margin-inline: auto; }
.shell-narrow { width: var(--shell-narrow); margin-inline: auto; }
.section { padding-block: var(--space-6); }
.section--roomy { padding-block: var(--space-7); }
.surface-section { background: var(--surface); }
.dark-section { background: var(--river); color: var(--surface); }
.plum-section { background: var(--plum); color: var(--surface); }
.ruled-section { border-top: 1px solid var(--border-strong); }
.skip-link { position: fixed; top: .5rem; left: calc(var(--rail) + .5rem); z-index: 1000; transform: translateY(-160%); background: var(--surface); padding: .7rem 1rem; }
.skip-link:focus { transform: none; }
.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; }
.kicker, .eyebrow, .footer-label {
  margin: 0 0 var(--space-3);
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}
.kicker::before { content: ""; display: inline-block; width: .62rem; height: .62rem; margin: 0 .68rem -.02rem 0; background: var(--copper); }
.lead { font-family: var(--font-accent); font-size: var(--step-1); line-height: 1.55; }
.muted { color: var(--muted); }
.measure { max-width: 64ch; }
.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  width: fit-content;
  padding: .3rem 0 .2rem;
  color: var(--river);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--copper);
  transition: color .18s ease, gap .18s ease;
}
.editorial-link::after { content: "↗"; font-size: .9em; }
.editorial-link:hover { color: var(--copper-hover); gap: .85rem; }
.editorial-link--light { color: var(--surface); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  min-height: 3.25rem;
  padding: .82rem 1.4rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button--ink { background: var(--river); border-color: var(--river); color: #fff; }
.button--ink:hover { background: var(--river-hover); }
.button--copper { background: var(--copper); border-color: var(--copper); color: #fff; }
.button--copper:hover { background: var(--copper-hover); border-color: var(--copper-hover); }
.button--outline { background: transparent; color: var(--ink); }
.button--light { background: var(--surface); border-color: var(--surface); color: var(--ink); }
.text-list { margin: var(--space-3) 0 0; padding: 0; list-style: none; }
.text-list li { position: relative; padding: .48rem 0 .48rem 1.35rem; border-top: 1px solid color-mix(in srgb, currentColor 26%, transparent); }
.text-list li::before { content: ""; position: absolute; left: 0; top: 1.1rem; width: .55rem; height: .55rem; background: var(--copper); transform: rotate(45deg); }

/* Architectural rail and full-screen directory */
.site-header { position: relative; z-index: 50; background: var(--paper); border-bottom: 1px solid var(--border); }
.side-rail { position: fixed; z-index: 70; inset: 0 auto 0 0; width: var(--rail); display: grid; grid-template-rows: auto auto 1fr auto; justify-items: center; align-items: start; padding: 1.1rem .8rem; background: var(--river); color: var(--surface); }
.rail-mark { display: grid; place-items: center; width: 62px; height: 62px; }
.rail-mark img { width: 52px; }
.menu-toggle { width: 54px; height: 54px; margin-top: 2rem; padding: .82rem; background: transparent; color: inherit; border: 1px solid color-mix(in srgb, currentColor 55%, transparent); border-radius: 50%; cursor: pointer; transition: background .18s ease, color .18s ease; }
.menu-toggle:hover, .menu-toggle[aria-expanded="true"] { background: var(--surface); color: var(--river); }
.menu-toggle span:not(.sr-only) { display: block; border-top: 1px solid currentColor; margin: .27rem 0; transition: transform .18s ease, opacity .18s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(.34rem) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-.34rem) rotate(-45deg); }
.rail-name { align-self: center; writing-mode: vertical-rl; transform: rotate(180deg); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.rail-contact { align-self: end; display: grid; place-items: center; gap: .25rem; color: inherit; text-decoration: none; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.rail-contact strong { display: grid; place-items: center; width: 42px; height: 42px; background: var(--copper); border-radius: 50%; font-size: 1.15rem; transition: transform .18s ease; }
.rail-contact:hover strong { transform: translateX(3px); }
.utility-line { min-height: 86px; display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: clamp(1rem, 2.5vw, 2.7rem); }
.brand-lockup { width: fit-content; color: var(--river); }
.brand-lockup img { width: min(286px, 100%); }
.location-note, .utility-phone { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-decoration: none; }
.utility-cta { padding: .7rem 1rem; color: var(--river); border: 1px solid var(--river); border-radius: 999px; font-size: .84rem; font-weight: 700; text-decoration: none; transition: background .18s ease, color .18s ease; }
.utility-cta:hover { background: var(--river); color: #fff; }
.mobile-menu { position: fixed; inset: 0 0 0 var(--rail); z-index: 60; overflow-y: auto; background: var(--river); color: var(--surface); }
.mobile-menu[hidden] { display: none; }
.mobile-menu__inner { min-height: 100%; display: grid; grid-template-columns: minmax(220px,.6fr) minmax(0,1.4fr); grid-template-rows: 1fr auto; gap: var(--space-6); width: var(--shell-wide); margin-inline: auto; padding: clamp(4rem, 8vh, 7rem) 0 2rem; }
.menu-panel__brand { padding-right: var(--space-5); border-right: 1px solid rgba(255,255,255,.25); }
.menu-panel__brand img { width: min(320px, 100%); margin-bottom: 2rem; }
.menu-panel__brand p { max-width: 26ch; font-family: var(--font-accent); font-size: 1.25rem; }
.menu-directory { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--space-5); align-content: start; }
.menu-group { display: flex; flex-direction: column; align-items: flex-start; gap: .42rem; }
.menu-group > p { margin: 0 0 .75rem; color: #b8c8be; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.menu-group > a { position: relative; display: inline-flex; gap: .4rem; align-items: baseline; padding: .18rem 0; font-family: var(--font-heading); font-size: clamp(1.35rem, 2.1vw, 2.15rem); font-weight: 500; line-height: 1.16; text-decoration: none; }
.menu-group > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; border-bottom: 3px solid var(--copper); transition: right .18s ease; }
.menu-group > a:hover::after, .menu-group > a.is-active::after { right: 0; }
.menu-group small { color: #b8c8be; font-family: var(--font-body); font-size: .68rem; letter-spacing: .08em; }
.menu-group--contact .menu-email { font-family: var(--font-body); font-size: 1rem; word-break: break-word; }
.mobile-menu__contact { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.25); color: #c9d5ce; font-size: .78rem; }

/* Home hero: text-first city hub */
.hero { min-height: 730px; display: grid; grid-template-columns: minmax(320px,.76fr) minmax(560px,1.24fr); gap: clamp(2.5rem, 5vw, 6rem); align-items: center; padding-block: clamp(3.5rem, 7vw, 6.8rem); }
.hero__copy { position: relative; z-index: 2; }
.hero__location { margin: 0 0 var(--space-4); color: var(--river); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero__copy h1 { max-width: 9ch; }
.hero__copy .lead { max-width: 35ch; margin-block: var(--space-4); }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.4rem; }
.hero__mosaic { min-height: 620px; display: grid; grid-template-columns: repeat(10, 1fr); grid-template-rows: repeat(10, 1fr); gap: .8rem; }
.hero__mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.hero__mosaic figure { overflow: hidden; }
.hero__mosaic figure:hover img { transform: scale(1.025); }
.hero__main-photo { grid-column: 1 / 7; grid-row: 2 / 11; border-radius: 110px 8px 110px 8px; }
.hero__city-photo { grid-column: 7 / 11; grid-row: 1 / 7; border-radius: 8px 76px 8px 76px; }
.hero__fact { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1rem, 2vw, 1.7rem); color: #fff; }
.hero__fact strong { font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.hero__fact span { max-width: 13ch; margin-top: .5rem; font-size: .88rem; line-height: 1.3; }
.hero__fact--terra { grid-column: 7 / 9; grid-row: 7 / 11; background: var(--copper); }
.hero__fact--forest { grid-column: 9 / 11; grid-row: 7 / 11; background: var(--river); }
.trust-strip { width: var(--shell-wide); margin: 0 auto var(--space-5); display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--border-strong); }
.trust-strip > div { padding: 1.25rem 1.4rem; border-right: 1px solid var(--border); }
.trust-strip > div:nth-child(2) { background: var(--surface-alt); }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip strong { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.trust-strip span { font-family: var(--font-accent); font-size: 1.08rem; }

/* Internal hero systems */
.page-hero { position: relative; overflow: hidden; padding: clamp(4rem, 8vw, 7.5rem) 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.page-hero::after { content: ""; position: absolute; right: -5rem; bottom: -8rem; width: 15rem; height: 19rem; background: var(--surface-alt); border-radius: 9rem 0 0 0; }
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(12,1fr); gap: var(--space-4); align-items: end; }
.page-hero__grid > div:first-child { grid-column: 1 / 8; }
.page-hero__grid > div:last-child { grid-column: 9 / 13; padding-left: var(--space-3); border-left: 5px solid var(--copper); }
.page-hero__grid > div:last-child p { margin-top: 0; }
.page-hero--image { min-height: 650px; display: block; padding: clamp(3rem, 6vw, 5rem) max(1.5rem, calc((100vw - 1420px)/2)); background: var(--paper); color: var(--ink); }
.page-hero--image::after { display: none; }
.page-hero--image > img { width: 63%; height: 570px; margin-left: auto; object-fit: cover; border-radius: 130px 8px 130px 8px; }
.page-hero--image .page-hero__content { position: absolute; z-index: 2; top: 50%; left: max(1.5rem, calc((100vw - 1420px)/2)); width: min(610px, 51%); margin: 0; padding: clamp(2.2rem, 4.2vw, 4.5rem); background: var(--river); color: #fff; transform: translateY(-50%); }
.page-hero--image .page-hero__content .lead { max-width: 36ch; }
.breadcrumbs { padding-block: .85rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; font-size: .78rem; }
.breadcrumbs li + li::before { content: "→"; margin-right: .5rem; color: var(--copper); }

/* Main composition system */
.editorial-intro { display: grid; grid-template-columns: minmax(170px,.48fr) minmax(0,1.52fr); gap: clamp(2rem, 6vw, 7rem); align-items: start; }
.editorial-intro__aside { position: sticky; top: 2rem; padding: 1rem 0 1rem 1.2rem; border-left: 5px solid var(--copper); font-size: .86rem; color: var(--muted); }
.editorial-intro__aside span { font-weight: 700; }
.editorial-intro__body > p:first-of-type { margin-top: var(--space-4); }
.image-band { position: relative; width: var(--shell-wide); margin-inline: auto; }
.image-band img { width: 100%; height: clamp(330px, 45vw, 620px); object-fit: cover; border-radius: 8px 150px 8px 150px; }
.image-band figcaption { max-width: 70%; margin: .7rem 0 0 auto; padding-right: 1rem; text-align: right; font-size: .8rem; color: var(--muted); }
.visual-index { display: grid; grid-template-columns: repeat(2,1fr); margin-top: var(--space-4); border-top: 1px solid var(--border-strong); }
.visual-index a { min-height: 10rem; display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 1.1rem; padding: var(--space-4); text-decoration: none; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border-strong); transition: background .18s ease, color .18s ease, padding .18s ease; }
.visual-index a:nth-child(even) { border-right: 0; }
.visual-index a:hover { padding-left: calc(var(--space-4) + .55rem); background: var(--river); color: #fff; }
.visual-index small { color: var(--copper); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.visual-index strong { font-family: var(--font-heading); font-size: var(--step-2); font-weight: 500; }
.room-catalogue { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; margin-top: var(--space-4); }
.room-entry { display: grid; grid-template-columns: 2.8rem 1fr; align-content: start; gap: .8rem 1.2rem; padding: clamp(1.3rem, 3vw, 2.3rem); background: var(--paper); border-top: 5px solid var(--river); }
.room-entry:first-child { grid-column: 1 / -1; grid-template-columns: 3rem minmax(0,1.25fr) minmax(190px,.55fr); }
.room-entry__index { color: var(--copper); font-size: .74rem; font-weight: 700; letter-spacing: .14em; }
.room-entry__body p { margin: .75rem 0; }
.room-entry__body .text-list { columns: 2; column-gap: 1.3rem; font-size: .9rem; }
.room-entry__price { grid-column: 2; display: flex; flex-direction: column; align-items: flex-start; gap: .25rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.room-entry:first-child .room-entry__price { grid-column: auto; padding: 0 0 0 var(--space-3); border-top: 0; border-left: 1px solid var(--border); }
.room-entry__price small { margin-bottom: 1rem; color: var(--muted); }
.price-tag { display: inline-block; padding: .35rem .62rem; background: var(--river); color: #fff; font-family: var(--font-heading); font-size: var(--step-1); }
.room-entry--premium { grid-column: 1 / -1; grid-template-columns: 3rem minmax(0,1.25fr) minmax(190px,.55fr); background: var(--copper); color: #fff; border-top-color: var(--ink); }
.room-entry--premium .room-entry__price { grid-column: auto; padding: 0 0 0 var(--space-3); border-top: 0; border-left: 1px solid rgba(255,255,255,.4); }
.room-entry--premium .room-entry__price small { color: rgba(255,255,255,.82); }
.room-entry--premium .editorial-link { color: #fff; border-color: #fff; }
.room-entry--premium .price-tag { background: var(--ink); }
.chapter-grid { display: grid; grid-template-columns: repeat(16,1fr); align-items: start; min-height: 510px; }
.chapter-grid__image { grid-column: 1 / 11; grid-row: 1; }
.chapter-grid__image img { width: 100%; min-height: 500px; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px 130px 8px 130px; }
.chapter-grid__copy { position: relative; z-index: 2; grid-column: 10 / 17; grid-row: 1; margin-top: 4.5rem; padding: clamp(1.8rem, 4vw, 3.5rem); background: var(--surface); border-left: 6px solid var(--copper); }
.chapter-grid--reverse .chapter-grid__image { grid-column: 7 / 17; }
.chapter-grid--reverse .chapter-grid__copy { grid-column: 1 / 8; }
.chapter-grid__copy .service-facts { margin-top: var(--space-4); }
.dark-section .chapter-grid__copy { background: var(--river-hover); color: #fff; }
.plum-section .chapter-grid__copy { background: #241d20; color: #fff; }
.service-facts { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid currentColor; }
.service-facts > div { padding: .85rem 0; border-bottom: 1px solid color-mix(in srgb, currentColor 32%, transparent); }
.service-facts > div:nth-child(even) { padding-left: 1rem; border-left: 1px solid color-mix(in srgb, currentColor 32%, transparent); }
.service-facts strong { display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.service-ribbons { margin-top: var(--space-4); border-top: 1px solid var(--border-strong); }
.service-ribbon { display: grid; grid-template-columns: minmax(170px,.7fr) minmax(0,1.5fr) minmax(100px,auto); gap: 2rem; align-items: center; padding: 1.35rem .5rem; border-bottom: 1px solid color-mix(in srgb, currentColor 26%, transparent); }
.service-ribbon h3 { font-size: 1.35rem; }
.service-ribbon p { margin: 0; }
.service-ribbon > span { justify-self: end; font-weight: 700; }
.planning-steps { counter-reset: steps; display: grid; grid-template-columns: repeat(5,1fr); gap: .65rem; margin-top: var(--space-4); }
.planning-steps article { counter-increment: steps; min-height: 15rem; padding: var(--space-3); background: var(--surface); color: var(--ink); }
.planning-steps article:nth-child(even) { background: var(--surface-alt); }
.planning-steps article::before { content: "0" counter(steps); display: grid; place-items: center; width: 3.1rem; height: 3.1rem; margin-bottom: var(--space-4); background: var(--copper); color: #fff; border-radius: 50%; font-size: .75rem; font-weight: 700; letter-spacing: .1em; }
.planning-steps h3 { font-size: 1.28rem; }
.planning-steps p { font-size: .9rem; }
.price-preview { display: grid; grid-template-columns: .7fr 1.3fr; gap: var(--space-6); }
.price-preview__list { border-top: 1px solid currentColor; }
.price-line { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: baseline; padding: .95rem 0; border-bottom: 1px solid color-mix(in srgb, currentColor 30%, transparent); }
.price-line strong { font-family: var(--font-heading); font-size: 1.08rem; font-weight: 500; }
.price-line span { font-size: .88rem; font-weight: 700; }
.gallery-stagger { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: auto auto; gap: var(--space-3); }
.gallery-stagger figure { margin: 0; }
.gallery-stagger figure:first-child { grid-row: 1 / 3; }
.gallery-stagger img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; border-radius: 6px 58px 6px 58px; }
.gallery-stagger figure:first-child img { min-height: 620px; border-radius: 8px 120px 8px 120px; }
.gallery-stagger figcaption { margin-top: .45rem; font-size: .78rem; }
.note-plaque { position: relative; padding: var(--space-4); background: var(--surface); color: var(--ink); border-left: 6px solid var(--copper); }
.note-plaque .editorial-link--light { color: var(--river); }
.enquiry-strip { padding: var(--space-5) 0; background: var(--surface-alt); }
.enquiry-strip__grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; }
.enquiry-strip h2 { max-width: 20ch; }

/* Price guide */
.price-anchor-bar { position: sticky; top: 0; z-index: 20; display: flex; gap: .4rem; overflow-x: auto; padding: .7rem max(1.5rem, calc((100vw - 1220px)/2)); background: var(--river); scrollbar-width: thin; }
.price-anchor-bar a { flex: 0 0 auto; padding: .55rem .9rem; color: #fff; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; font-size: .76rem; font-weight: 700; text-decoration: none; }
.price-anchor-bar a:hover { background: #fff; color: var(--river); }
.price-group { scroll-margin-top: 4rem; padding-block: var(--space-5); border-bottom: 1px solid var(--border-strong); }
.price-group__head { display: grid; grid-template-columns: .55fr 1.45fr; gap: var(--space-4); margin-bottom: var(--space-4); }
.price-table { width: 100%; border-collapse: collapse; border-top: 4px solid var(--river); background: var(--surface); }
.price-table th, .price-table td { padding: 1rem .8rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
.price-table th { color: var(--muted); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }
.price-table td:nth-child(1) { width: 27%; font-family: var(--font-heading); font-size: 1.03rem; font-weight: 600; }
.price-table td:nth-child(3) { width: 18%; white-space: nowrap; color: var(--river); font-weight: 700; }
.price-table td:last-child { width: 10%; }

/* Forms */
.enquiry-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: var(--space-6); align-items: start; }
.enquiry-form { padding: clamp(1.4rem, 4vw, 3rem); background: var(--surface); border-top: 6px solid var(--copper); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem 1.7rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { font-size: .8rem; font-weight: 700; letter-spacing: .04em; }
.field input, .field select, .field textarea { width: 100%; min-height: 3.1rem; padding: .72rem .1rem; color: var(--ink); background: transparent; border: 0; border-bottom: 2px solid var(--border-strong); border-radius: 0; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--focus); box-shadow: none; outline: 0; }
.contact-method { margin: 0; padding: 0; border: 0; }
.contact-method label { display: inline-flex; align-items: center; gap: .45rem; margin-right: .85rem; margin-top: .55rem; font-weight: 400; }
.contact-method input { width: auto; min-height: auto; }
.check-row { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; margin-top: 1.2rem; font-size: .88rem; }
.check-row input { width: 1.1rem; height: 1.1rem; margin-top: .2rem; accent-color: var(--river); }
.form-action { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.form-action span { font-size: .8rem; color: var(--muted); }
.field-error { color: var(--error); font-size: .82rem; }
.form-message { padding: 1rem; margin-bottom: 1rem; border-left: 5px solid currentColor; }
.form-message--error { color: var(--error); background: #fff3f2; }
.trap-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* FAQ and legal */
.faq-section h2 { margin-bottom: var(--space-4); }
.faq-list { border-top: 1px solid var(--border-strong); }
.faq-item { border-bottom: 1px solid var(--border-strong); }
.faq-item h3 { font-family: var(--font-body); }
.faq-item button { width: 100%; display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1.3rem 0; background: none; border: 0; color: inherit; text-align: left; cursor: pointer; }
.faq-item button span { font-family: var(--font-heading); font-size: 1.12rem; font-weight: 600; }
.faq-item button i { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; background: var(--surface-alt); border: 0; border-radius: 50%; font-style: normal; transition: transform .18s; }
.faq-item button[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-answer { padding: 0 3rem 1.35rem 0; }
.legal-layout { display: grid; grid-template-columns: 14rem minmax(0,1fr); gap: var(--space-6); align-items: start; }
.legal-nav { position: sticky; top: 1rem; padding-top: .5rem; border-top: 5px solid var(--copper); }
.legal-nav a { display: block; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .84rem; text-decoration: none; }
.legal-copy { max-width: 78ch; font-size: 1.03rem; }
.legal-copy section { margin-bottom: var(--space-5); scroll-margin-top: 2rem; }
.legal-copy h2 { font-size: var(--step-2); margin-bottom: .85rem; }
.legal-copy h3 { font-size: var(--step-1); margin-top: 1.5rem; }
.legal-copy li { margin-bottom: .45rem; }
.legal-facts { border-top: 1px solid var(--border-strong); }
.legal-facts div { display: grid; grid-template-columns: 13rem 1fr; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--border); }

/* Footer and consent */
.site-footer { background: var(--footer); color: var(--ink); }
.footer-invite { background: var(--copper); color: #fff; }
.footer-invite__grid { display: grid; grid-template-columns: .35fr 1.25fr auto; gap: var(--space-4); align-items: center; padding-block: var(--space-5); }
.footer-invite p { margin: 0; font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-invite h2 { max-width: 22ch; font-size: clamp(1.7rem, 3vw, 2.7rem); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: end; padding-block: var(--space-6) var(--space-5); }
.footer-brand img { width: min(360px,100%); margin-bottom: 1.4rem; color: var(--river); }
.footer-brand p { max-width: 44ch; }
.footer-location { display: grid; grid-template-columns: 8rem 1fr; gap: var(--space-3); align-items: center; justify-self: end; }
.footer-location__marker { display: grid; place-items: center; width: 8rem; height: 8rem; background: var(--river); color: #fff; border-radius: 50%; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; }
.footer-location > div { display: flex; flex-direction: column; align-items: flex-start; gap: .3rem; }
.footer-location a { text-decoration: none; }
.footer-directory { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-4); padding-block: var(--space-5); border-top: 1px solid var(--border-strong); }
.footer-directory > div { display: flex; flex-direction: column; align-items: flex-start; gap: .45rem; }
.footer-directory a { text-decoration: none; }
.footer-directory a:hover { text-decoration: underline; }
.footer-legal { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding-block: 1rem; color: #eaf1ec; background: var(--river); box-shadow: 0 0 0 100vmax var(--river); clip-path: inset(0 -100vmax); font-size: .72rem; }
.footer-legal > div, .footer-legal nav { display: flex; flex-wrap: wrap; gap: .5rem 1rem; }
.footer-legal span + span::before { content: "·"; margin-right: 1rem; color: #e79a84; }
.footer-legal a, .link-button { color: inherit; background: none; border: 0; padding: 0; cursor: pointer; text-decoration: underline; text-underline-offset: .2rem; font: inherit; }
.cookie-banner { position: fixed; z-index: 90; inset: auto 1rem 1rem calc(var(--rail) + 1rem); display: grid; grid-template-columns: 1fr auto; gap: 2rem; max-width: 1320px; margin-inline: auto; padding: 1.4rem; background: var(--river); color: #fff; border-left: 8px solid var(--copper); }
.cookie-banner[hidden], .cookie-modal[hidden] { display: none; }
.cookie-banner h2 { font-size: 1.65rem; }
.cookie-banner p { margin: .45rem 0; font-size: .86rem; }
.cookie-banner a { font-size: .75rem; }
.cookie-banner .button--ink { background: #fff; border-color: #fff; color: var(--river); }
.cookie-banner .button--outline { color: #fff; }
.cookie-banner__actions { display: grid; grid-template-columns: 1fr; gap: .5rem; align-content: center; min-width: 215px; }
.cookie-modal { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 1rem; background: rgba(10,35,29,.78); }
.cookie-modal__panel { position: relative; width: min(650px,100%); max-height: 90vh; overflow-y: auto; padding: var(--space-4); background: var(--surface); border-top: 7px solid var(--copper); }
.cookie-modal__close { position: absolute; top: .75rem; right: .75rem; width: 2.5rem; height: 2.5rem; background: var(--surface-alt); border: 0; border-radius: 50%; cursor: pointer; font-size: 1.4rem; }
.cookie-choice { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.cookie-choice p { margin: .2rem 0 0; font-size: .85rem; }
.cookie-choice input { width: 1.25rem; height: 1.25rem; accent-color: var(--river); }
.cookie-modal__actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.cookie-policy-note { font-size: .8rem; }

@media (max-width: 1180px) {
  :root { --rail: 88px; --shell-wide: min(100% - 2rem, 1420px); }
  .rail-name { font-size: .65rem; }
  .utility-line { grid-template-columns: 1fr auto auto; }
  .location-note { display: none; }
  .hero { grid-template-columns: minmax(290px,.8fr) minmax(460px,1.2fr); gap: 2rem; }
  .planning-steps { grid-template-columns: repeat(3,1fr); }
  .footer-invite__grid { grid-template-columns: .3fr 1.1fr auto; }
}

@media (max-width: 900px) {
  :root { --rail: 0px; --shell: min(100% - 1.5rem,1220px); --shell-wide: min(100% - 1.5rem,1420px); --shell-narrow: min(100% - 1.5rem,820px); --space-6: 4.2rem; --space-7: 6rem; }
  body { padding-left: 0; }
  .site-header { padding-top: 64px; }
  .side-rail { inset: 0 0 auto 0; width: 100%; height: 64px; grid-template-columns: auto 1fr auto; grid-template-rows: 1fr; align-items: center; justify-items: start; padding: .45rem .75rem; }
  .rail-mark { width: 48px; height: 48px; }
  .rail-mark img { width: 44px; }
  .menu-toggle { grid-column: 2; justify-self: center; width: 45px; height: 45px; margin: 0; padding: .7rem; }
  .rail-name { display: none; }
  .rail-contact { grid-column: 3; display: flex; align-items: center; }
  .rail-contact strong { width: 38px; height: 38px; }
  .utility-line { min-height: 72px; grid-template-columns: 1fr auto; }
  .brand-lockup img { width: 230px; }
  .utility-phone { display: none; }
  .utility-cta { font-size: .78rem; }
  .mobile-menu { inset: 64px 0 0; }
  .mobile-menu__inner { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: var(--space-4); padding: 2.5rem 0 1.2rem; }
  .menu-panel__brand { padding: 0 0 1.5rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .menu-panel__brand img { width: 250px; margin-bottom: .8rem; }
  .menu-panel__brand p { margin-bottom: 0; }
  .menu-directory { gap: var(--space-4); }
  .mobile-menu__contact { grid-column: auto; }
  .hero { min-height: 0; grid-template-columns: 1fr; padding-block: 3.5rem 4.8rem; }
  .hero__copy h1 { max-width: 11ch; }
  .hero__mosaic { min-height: 560px; }
  .page-hero__grid > div:first-child { grid-column: 1 / 8; }
  .page-hero__grid > div:last-child { grid-column: 8 / 13; }
  .chapter-grid { display: block; min-height: 0; }
  .chapter-grid__copy { margin: -3.5rem 1rem 0; }
  .chapter-grid--reverse .chapter-grid__copy { margin: -3.5rem 1rem 0; }
  .footer-invite__grid { grid-template-columns: 1fr auto; }
  .footer-invite__grid p { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-location { justify-self: start; }
  .footer-directory { grid-template-columns: repeat(2,1fr); }
  .footer-legal { grid-template-columns: 1fr; }
  .cookie-banner { inset: auto .6rem .6rem; }
}

@media (max-width: 680px) {
  .utility-line { grid-template-columns: 1fr; justify-items: center; }
  .utility-cta { display: none; }
  .brand-lockup img { width: 215px; }
  .rail-contact span { display: none; }
  .menu-directory { grid-template-columns: 1fr; }
  .menu-group > a { font-size: 1.38rem; }
  .mobile-menu__contact { flex-direction: column; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__mosaic { min-height: 500px; grid-template-rows: repeat(12,1fr); }
  .hero__main-photo { grid-column: 1 / 8; grid-row: 1 / 10; border-radius: 70px 6px 70px 6px; }
  .hero__city-photo { grid-column: 7 / 11; grid-row: 1 / 6; border-radius: 6px 45px 6px 45px; }
  .hero__fact--terra { grid-column: 1 / 6; grid-row: 10 / 13; }
  .hero__fact--forest { grid-column: 6 / 11; grid-row: 10 / 13; }
  .hero__fact strong { font-size: 2rem; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div { border-right: 0; border-bottom: 1px solid var(--border); }
  .page-hero__grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .page-hero__grid > div:first-child, .page-hero__grid > div:last-child { grid-column: auto; }
  .page-hero--image { min-height: 0; display: flex; flex-direction: column; padding: .75rem .75rem var(--space-5); }
  .page-hero--image > img { width: 100%; height: 360px; border-radius: 70px 6px 70px 6px; }
  .page-hero--image .page-hero__content { position: relative; top: auto; left: auto; width: calc(100% - 1rem); margin: -2.2rem auto 0; padding: 1.7rem; transform: none; }
  .editorial-intro { grid-template-columns: 1fr; gap: var(--space-3); }
  .editorial-intro__aside { position: static; }
  .image-band { width: calc(100% - 1rem); }
  .image-band img { border-radius: 6px 70px 6px 70px; }
  .visual-index { grid-template-columns: 1fr; }
  .visual-index a { border-right: 0; }
  .room-catalogue { grid-template-columns: 1fr; }
  .room-entry, .room-entry:first-child, .room-entry--premium { grid-column: auto; grid-template-columns: 2.4rem 1fr; }
  .room-entry:first-child .room-entry__price, .room-entry--premium .room-entry__price { grid-column: 2; padding: 1rem 0 0; border-top: 1px solid currentColor; border-left: 0; }
  .room-entry__body .text-list { columns: 1; }
  .chapter-grid__image img { min-height: 360px; border-radius: 6px 70px 6px 70px; }
  .chapter-grid__copy, .chapter-grid--reverse .chapter-grid__copy { margin: -2rem .5rem 0; padding: 1.5rem; }
  .service-ribbon { grid-template-columns: 1fr auto; gap: .6rem 1rem; }
  .service-ribbon p { grid-column: 1 / -1; }
  .planning-steps { grid-template-columns: 1fr; }
  .planning-steps article { min-height: 0; }
  .price-preview, .price-group__head, .enquiry-layout { grid-template-columns: 1fr; gap: var(--space-3); }
  .gallery-stagger { display: block; }
  .gallery-stagger figure { margin-bottom: 1.5rem; }
  .gallery-stagger figure:first-child img { min-height: 380px; }
  .enquiry-strip__grid { grid-template-columns: 1fr; align-items: start; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; }
  .price-table thead { display: none; }
  .price-table tr { padding: 1rem; border-bottom: 1px solid var(--border-strong); }
  .price-table td { width: 100% !important; padding: .25rem 0; border: 0; white-space: normal !important; }
  .price-table td:nth-child(3) { margin-top: .4rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .form-action { align-items: stretch; flex-direction: column; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: grid; grid-template-columns: repeat(2,1fr); gap: 0 1rem; }
  .legal-facts div { grid-template-columns: 1fr; gap: .15rem; }
  .footer-invite__grid { grid-template-columns: 1fr; align-items: start; }
  .footer-location { grid-template-columns: 5.5rem 1fr; }
  .footer-location__marker { width: 5.5rem; height: 5.5rem; }
  .footer-directory { grid-template-columns: 1fr; gap: var(--space-4); }
  .footer-legal > div, .footer-legal nav { display: grid; grid-template-columns: 1fr; }
  .footer-legal span + span::before { display: none; }
  .cookie-banner { max-height: 92vh; overflow-y: auto; grid-template-columns: 1fr; }
  .cookie-banner__actions { grid-template-columns: 1fr; min-width: 0; }
}

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