/* ============================================================
   THE GRACECHURCH — CITY OF LONDON
   Design system for Gracechurch Hotel Operator Limited
   Palette: midnight navy / warm linen / terracotta copper
   Type: Fraunces (display serif) + Archivo (grotesque body)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy-900: #0c1524;
  --navy-800: #131f36;
  --navy-700: #1d2e4f;
  --navy-600: #2e4a7a;
  --navy-100: #d8e0ee;
  --linen: #f1eae0;
  --ivory: #f7f4ed;
  --sand: #eae3d5;
  --copper: #bc5b2e;
  --copper-soft: #e3a377;
  --ink: #1e1b17;
  --muted: #6e695f;
  --line: rgba(30, 27, 23, 0.14);
  --line-light: rgba(241, 234, 224, 0.22);
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --header-h: 84px;
  --ease: cubic-bezier(0.39, 0.575, 0.565, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style-position: inside; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--copper); color: var(--linen); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.08; }

h1 { font-size: clamp(2.9rem, 6.4vw, 6rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.2; }
h4 { font-size: 1.15rem; line-height: 1.3; }

p { max-width: 62ch; }
p + p { margin-top: 1em; }

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

/* ---------- Utilities ---------- */
.wrap { width: min(1200px, 92vw); margin-inline: auto; }
.wrap-wide { width: min(1440px, 94vw); margin-inline: auto; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--copper);
  display: inline-block;
}
.eyebrow--plain::before { display: none; }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
  line-height: 1.5;
  color: var(--navy-800);
  font-weight: 300;
}

.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; position: relative; }
.section--green { background: var(--navy-800); color: var(--linen); }
.section--green h2, .section--green h3 { color: var(--linen); }
.section--green .lead { color: var(--navy-100); }
.section--green p { color: rgba(241, 234, 224, 0.82); }
.section--ink { background: var(--ink); color: var(--ivory); }
.section--beige { background: var(--sand); }
.section--ivory { background: var(--ivory); }

/* Angled divider — top edge of a section clipped into a diagonal */
.angled-top { clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%); margin-top: -4vw; padding-top: calc(clamp(4.5rem, 9vw, 8.5rem) + 4vw); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--solid { background: var(--navy-600); color: var(--linen); }
.btn--solid:hover { background: var(--navy-700); transform: translateY(-2px); }

.btn--gold { background: var(--copper); color: var(--linen); }
.btn--gold:hover { background: var(--copper-soft); color: var(--navy-900); transform: translateY(-2px); }

.btn--outline { border-color: currentColor; color: inherit; background: transparent; }
.btn--outline:hover { background: var(--linen); color: var(--navy-900); border-color: var(--linen); }

.btn--outline-dark { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline-dark:hover { background: var(--ink); color: var(--ivory); }

.text-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-600);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 0.25rem;
  transition: color 0.25s, border-color 0.25s;
}
.text-link:hover { color: var(--copper); }

/* ---------- Image panels ---------- */
.ph {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  isolation: isolate;
  background: var(--navy-800);
}
.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Gradient scrim sits above photography where text overlays it */
.ph .ph-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 21, 36, 0.55), rgba(12, 21, 36, 0) 55%);
  pointer-events: none;
}

/* Fallback gradient texture (used where no photography is placed, e.g. legal page heroes) */
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(188, 91, 46, 0.3), transparent 55%),
    linear-gradient(155deg, var(--navy-600) 0%, var(--navy-800) 60%, var(--navy-900) 100%);
  z-index: 0;
}
.ph:has(img)::before { display: none; }

/* Tall/short aspect helpers */
.ph--hero { min-height: 100vh; }
.ph--tall { min-height: 560px; }
.ph--mid { min-height: 420px; }

/* Parallax: inner layer translates on scroll and carries the image */
.parallax { overflow: hidden; }
.parallax .ph-inner {
  position: absolute;
  inset: -12% 0;
  will-change: transform;
  z-index: 1;
}
.parallax .ph-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.parallax::before { display: none; }

/* ---------- Welcome popup ---------- */
.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(12, 21, 36, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.welcome-overlay.visible { opacity: 1; visibility: visible; }
.welcome-card {
  position: relative;
  width: min(760px, 100%);
  background: var(--ivory);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.6s var(--ease);
  box-shadow: 0 40px 90px -30px rgba(12, 21, 36, 0.6);
}
.welcome-overlay.visible .welcome-card { transform: none; }
.welcome-media { position: relative; min-height: 420px; }
.welcome-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.welcome-body { padding: clamp(1.8rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.welcome-body .eyebrow { margin-bottom: 1.2rem; }
.welcome-body h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1rem; }
.welcome-body p { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.8rem; }
.welcome-actions { display: flex; flex-direction: column; gap: 0.8rem; align-items: stretch; }
.welcome-actions .btn { justify-content: center; }
.welcome-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-light);
  background: rgba(12, 21, 36, 0.55);
  color: var(--linen);
  font-size: 1.15rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
  z-index: 2;
}
.welcome-close:hover { background: var(--copper); border-color: var(--copper); color: var(--linen); }
@media (max-width: 640px) {
  .welcome-card { grid-template-columns: 1fr; }
  .welcome-media { min-height: 200px; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
  color: var(--linen);
}
.site-header.scrolled {
  background: rgba(12, 21, 36, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-light);
  height: 66px;
}
.header-inner {
  width: min(1440px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.9rem; line-height: 1; }
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  transition: height 0.4s var(--ease);
  filter: drop-shadow(0 2px 6px rgba(12, 21, 36, 0.45));
}
.site-header.scrolled .brand-logo { height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.footer-logo {
  height: 96px;
  width: auto;
  display: block;
  margin-bottom: 1.3rem;
}
.welcome-logo {
  height: 74px;
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin-top: 0.3rem;
}
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--copper-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: currentColor;
  margin: 7px auto;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Mobile overlay nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
body.nav-open .mobile-nav { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  color: var(--linen);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.mobile-nav a small {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--copper-soft);
}
.mobile-nav .mobile-nav-meta {
  margin-top: 2.5rem;
  color: rgba(241, 234, 224, 0.65);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--linen);
}
.hero .ph { position: absolute; inset: 0; min-height: 100%; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 21, 36, 0.88) 0%, rgba(12, 21, 36, 0.3) 50%, rgba(12, 21, 36, 0.18) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 0 clamp(4rem, 8vw, 7rem);
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: end;
}
.hero h1 { animation: tracking-in 2.2s var(--ease) both 0.2s; }
.hero h1 em { font-style: italic; color: var(--copper-soft); }
.hero-aside {
  border-left: 1px solid var(--line-light);
  padding-left: 2rem;
  animation: fade-in 1.4s var(--ease) both 0.9s;
}
.hero-aside p { color: rgba(241, 234, 224, 0.88); font-size: 0.95rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; animation: fade-in 1.4s var(--ease) both 1.1s; }
.hero-eyebrow { animation: fade-in 1.2s var(--ease) both; margin-bottom: 1.4rem; }

@keyframes tracking-in {
  0% { letter-spacing: 0.35em; opacity: 0; }
  40% { opacity: 0.55; }
  100% { letter-spacing: -0.015em; opacity: 1; }
}
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  right: 4vw;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(241, 234, 224, 0.75);
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 3.4rem;
  background: linear-gradient(var(--copper-soft), transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.55); opacity: 0.5; }
}

/* ---------- Marquee ticker ---------- */
.ticker {
  background: var(--navy-900);
  color: var(--linen);
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  position: relative;
  z-index: 3;
}
.ticker-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.ticker-track span::after { content: "✦"; color: var(--copper-soft); font-size: 0.7rem; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Intro split (asymmetric editorial) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split--media-left .split-media { order: -1; }
.split-copy .eyebrow { margin-bottom: 1.4rem; }
.split-copy h2 { margin-bottom: 1.6rem; }
.split-copy .btn, .split-copy .text-link { margin-top: 2rem; }

.offset-media { position: relative; }
.offset-media .ph { width: 88%; }
.offset-media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2rem;
  width: 55%;
  height: 55%;
  border: 1px solid var(--copper);
  z-index: -1;
}
.offset-caption {
  position: absolute;
  right: 0;
  bottom: -3.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Big editorial statement */
.statement {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  line-height: 1.35;
  font-weight: 300;
  max-width: 22ch;
}
.statement strong { font-weight: 500; color: var(--copper); }
.section--green .statement { color: var(--linen); }

/* Oversized numeral watermark */
.numeral {
  font-family: var(--serif);
  font-size: clamp(9rem, 22vw, 20rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(188, 91, 46, 0.4);
  user-select: none;
  pointer-events: none;
}

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat { border-left: 1px solid var(--line-light); padding-left: 1.6rem; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1;
  color: var(--copper-soft);
  display: block;
}
.stat-label {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241, 234, 224, 0.75);
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(12, 21, 36, 0.35); }
.card .ph { min-height: 250px; }
.card .ph img { transition: transform 0.7s var(--ease); }
.card:hover .ph img { transform: scale(1.06); }
.card-body { padding: 1.8rem; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.card-body h3 { font-size: 1.45rem; }
.card-body p { font-size: 0.94rem; color: var(--muted); flex: 1; }
.card-meta {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-600);
  font-weight: 600;
}

/* Room split cards — 50/50 media + info */
.room-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.room-card + .room-card { margin-top: 2.4rem; }
.room-card:nth-child(even) .room-media { order: 2; }
.room-media { position: relative; min-height: 380px; overflow: hidden; }
.room-media .ph { position: absolute; inset: 0; min-height: 100%; }
.room-media .ph img { transition: transform 0.7s var(--ease); }
.room-card:hover .room-media .ph img { transform: scale(1.05); }
.room-info { padding: clamp(1.8rem, 3.5vw, 3.2rem); display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.room-info h3 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); }
.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.room-specs li {
  list-style: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.room-specs li::before { content: "✦"; color: var(--copper); font-size: 0.6rem; }

/* ---------- Feature list (icon-free, rule-based) ---------- */
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; }
.feature { border-top: 1px solid var(--line); padding-top: 1.3rem; }
.section--green .feature, .section--ink .feature { border-top-color: var(--line-light); }
.feature h4 { font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.6rem; color: var(--navy-600); }
.section--green .feature h4, .section--ink .feature h4 { color: var(--copper-soft); }
.feature p { font-size: 0.94rem; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 3rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: var(--copper);
}
.timeline-item { position: relative; padding-bottom: 2.6rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-3rem - 5px);
  top: 0.5rem;
  width: 11px;
  height: 11px;
  background: var(--navy-800);
  border: 2px solid var(--copper-soft);
  border-radius: 50%;
}
.timeline-year {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--copper-soft);
  display: block;
  margin-bottom: 0.3rem;
}
.timeline-item h4 { color: var(--linen); font-size: 1.2rem; margin-bottom: 0.4rem; }
.timeline-item p { font-size: 0.94rem; color: rgba(241, 234, 224, 0.78); }

/* ---------- Neighbourhood list ---------- */
.place-list { display: grid; gap: 0; }
.place {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  gap: 1.6rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease);
}
.place:hover { padding-left: 0.8rem; }
.section--green .place { border-bottom-color: var(--line-light); }
.place-dist {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--copper);
  white-space: nowrap;
}
.section--green .place-dist { color: var(--copper-soft); }
.place h3 { font-size: 1.35rem; margin-bottom: 0.25rem; }
.place p { font-size: 0.92rem; color: var(--muted); }
.place-tag {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-600);
  border: 1px solid var(--line);
  padding: 0.35rem 0.8rem;
  white-space: nowrap;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  color: var(--linen);
  padding-top: var(--header-h);
}
.page-hero .ph { position: absolute; inset: 0; min-height: 100%; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 21, 36, 0.88) 0%, rgba(12, 21, 36, 0.28) 60%);
  pointer-events: none;
  z-index: 2;
}
.page-hero-content { position: relative; z-index: 3; padding-bottom: clamp(3rem, 6vw, 5rem); width: 100%; }
.page-hero .eyebrow { margin-bottom: 1.2rem; color: var(--copper-soft); }
.page-hero .eyebrow::before { background: var(--copper-soft); }
.page-hero p { color: rgba(241, 234, 224, 0.88); margin-top: 1.4rem; font-size: 1.05rem; }

/* Breadcrumb */
.crumb {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 234, 224, 0.65);
  margin-bottom: 1.4rem;
  display: block;
}
.crumb a:hover { color: var(--copper-soft); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.6rem; }
.form-field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-700);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.9rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232e4a7a' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--copper);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }
.form-success {
  display: none;
  border: 1px solid var(--copper);
  background: rgba(188, 91, 46, 0.08);
  padding: 1.4rem 1.6rem;
  margin-top: 1.6rem;
  font-size: 0.95rem;
}
.form-success.visible { display: block; animation: fade-in 0.6s var(--ease) both; }

.contact-details { display: grid; gap: 2rem; }
.contact-block { border-top: 1px solid var(--line); padding-top: 1.3rem; }
.contact-block h3 { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy-600); margin-bottom: 0.7rem; }
.contact-block p, .contact-block address { font-style: normal; font-size: 1rem; line-height: 1.8; max-width: none; }
.contact-block a { border-bottom: 1px solid var(--copper); transition: color 0.25s; }
.contact-block a:hover { color: var(--navy-600); }

.map-frame {
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-frame iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  filter: grayscale(0.55) sepia(0.22) contrast(1.02);
}
.map-caption {
  background: var(--navy-900);
  color: var(--linen);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.map-caption em { color: var(--copper-soft); font-style: normal; }

/* ---------- Legal pages ---------- */
.legal-body h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 3rem 0 1.1rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.legal-body h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal-body h3 { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.06em; margin: 1.6rem 0 0.6rem; }
.legal-body p, .legal-body li { font-size: 0.97rem; max-width: 72ch; }
.legal-body ul, .legal-body ol { padding-left: 1.4rem; list-style-position: outside; margin: 0.8rem 0; }
.legal-body li { margin-bottom: 0.5rem; }
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 0.9rem;
}
.legal-body th {
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-700);
  padding: 0.8rem 1rem;
  border-bottom: 2px solid var(--navy-600);
}
.legal-body td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal-meta {
  background: var(--sand);
  border-left: 3px solid var(--copper);
  padding: 1.4rem 1.8rem;
  margin-bottom: 2.6rem;
  font-size: 0.92rem;
  line-height: 1.9;
}

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band .eyebrow { justify-content: center; }
.cta-band h2 { max-width: 18ch; margin: 1.4rem auto 2.4rem; }
.cta-band .numeral {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.5;
}
.cta-band > .wrap { position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(241, 234, 224, 0.8);
  padding: clamp(3.5rem, 7vw, 6rem) 0 0;
  border-top: 3px solid var(--copper);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}
.footer-brand .brand-name { font-size: 1.8rem; color: var(--linen); }
.footer-brand .brand-sub { margin-bottom: 1.4rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; }
.footer-col h3 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.92rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--copper-soft); }
.footer-col address { font-style: normal; font-size: 0.9rem; line-height: 1.9; }
.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(241, 234, 224, 0.55);
}
.footer-legal-links { display: flex; gap: 1.6rem; }
.footer-legal-links a:hover { color: var(--copper-soft); }

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal="left"] { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="blur"] { transform: none; filter: blur(14px); transition: opacity 1.1s var(--ease), filter 1.1s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: none; filter: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-aside { border-left: 0; border-top: 1px solid var(--line-light); padding: 1.4rem 0 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2.4rem; }
  .card-grid, .card-grid--2 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .split { grid-template-columns: 1fr; }
  .split--media-left .split-media { order: 0; }
  .card-grid, .card-grid--2 { grid-template-columns: 1fr; }
  .room-card { grid-template-columns: 1fr; }
  .room-card:nth-child(even) .room-media { order: 0; }
  .room-media { min-height: 300px; }
  .place { grid-template-columns: 1fr; gap: 0.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; }
  .offset-media .ph { width: 100%; }
  .offset-media::after { display: none; }
  .offset-caption { position: static; display: block; margin-top: 0.8rem; }
}
