/* ==========================================================================
   King’s Landing — public styles
   Premium black · antique gold · warm off-white · architectural calm
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --charcoal: #1a1a1a;
  --charcoal-mid: #242424;
  --border: #2e2a22;
  --border-soft: #3a3428;
  --gold: #c6a45a;
  --gold-soft: #d4b87a;
  --gold-muted: #8a7340;
  --gold-line: rgba(198, 164, 90, 0.45);
  --cream: #f3ead7;
  --cream-muted: #cfc3ad;
  --text: #f3ead7;
  --text-muted: #b8ab94;
  --danger: #e8a090;
  --success: #a8c9a0;
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", Tahoma, sans-serif;
  --header-h: 5.25rem;
  --header-h-compact: 4.25rem;
  --max: 72rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h-compact);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--cream);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100%;
  z-index: 1000;
  background: var(--gold);
  color: var(--black);
  padding: 0.6rem 1rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 0.75rem;
}

.container {
  width: min(100% - 2 * var(--gutter), var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section--charcoal {
  background: var(--charcoal);
}

.section--soft {
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--charcoal) 100%);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 0.85rem;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin: 0 0 1rem;
}

.section-lead {
  max-width: 40rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-size: 1.0625rem;
}

.gold-rule {
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 0 0 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-soft);
  color: var(--black);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold-line);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.88) 0%, rgba(8, 7, 6, 0.55) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease),
    opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.site-header.is-compact {
  border-bottom-color: rgba(198, 164, 90, 0.18);
  background: rgba(8, 7, 6, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
  transition: min-height 0.3s var(--ease);
}

.site-header.is-compact .header-inner {
  min-height: var(--header-h-compact);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--cream);
}

.brand:hover {
  color: var(--cream);
}

.brand img {
  width: 2.85rem;
  height: 2.85rem;
  object-fit: contain;
  transition: width 0.3s var(--ease), height 0.3s var(--ease);
}

.site-header.is-compact .brand img {
  width: 2.35rem;
  height: 2.35rem;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.05;
}

.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.28rem;
  opacity: 0.85;
  max-width: 14rem;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav ul a {
  color: rgba(243, 234, 215, 0.78);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 0.7rem;
  position: relative;
  transition: color 0.25s var(--ease);
}

.site-nav ul a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease);
}

.site-nav ul a:hover,
.site-nav ul a:focus-visible {
  color: var(--cream);
}

.site-nav ul a:hover::after,
.site-nav ul a:focus-visible::after {
  transform: scaleX(1);
}

.btn--header {
  min-height: 2.45rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: transparent;
  border: 1px solid rgba(198, 164, 90, 0.55);
  text-decoration: none;
}

.btn--header:hover {
  color: #1a140c;
  background: linear-gradient(180deg, #e8c988, #c6a45a);
  border-color: #f0d9a0;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  padding: 0;
}

.nav-toggle-lines {
  display: block;
  width: 1.15rem;
  height: 1px;
  margin: 0 auto;
  background: currentColor;
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem var(--gutter);
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
  }

  .site-header.is-compact .site-nav {
    inset-top: var(--header-h-compact);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .site-nav li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .site-nav ul a {
    display: block;
    padding: 1rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
  }

  .site-nav ul a::after {
    display: none;
  }

  .site-nav .btn--header {
    width: 100%;
  }
}

/* ---------- Hero — cinematic welcome ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, rgba(198, 164, 90, 0.14), transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(20, 16, 10, 0.9), transparent 50%),
    linear-gradient(180deg, #050505 0%, #100e0a 42%, #0a0a0a 100%);
  perspective: 1400px;
}

/* Continuous logo — one element from gate into hero */
.logo-morph {
  position: fixed;
  left: 50%;
  top: 48%;
  z-index: 210;
  width: clamp(10.5rem, 30vw, 15rem);
  height: clamp(10.5rem, 30vw, 15rem);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(1.12);
  transform-origin: center center;
  pointer-events: none;
  transition:
    left 2.45s cubic-bezier(0.22, 1, 0.36, 1),
    top 2.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2.45s cubic-bezier(0.22, 1, 0.36, 1),
    width 2.45s cubic-bezier(0.22, 1, 0.36, 1),
    height 2.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 2.45s ease;
  will-change: transform, left, top;
}

.logo-lock {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(32, 26, 18, 0.92) 0%, rgba(10, 8, 6, 0.96) 70%);
  box-shadow:
    0 0 0 1px rgba(198, 164, 90, 0.35),
    0 0 40px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(198, 164, 90, 0.18);
}

.logo-lock-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(224, 192, 120, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.45),
    0 0 0 6px rgba(12, 10, 8, 0.85),
    0 0 0 7px rgba(198, 164, 90, 0.55),
    0 0 28px rgba(198, 164, 90, 0.35);
  pointer-events: none;
  transition: opacity 0.85s ease, transform 0.85s ease, box-shadow 0.85s ease;
}

.logo-lock-ring--inner {
  inset: 9%;
  border-width: 1px;
  border-color: rgba(198, 164, 90, 0.45);
  box-shadow: inset 0 0 24px rgba(198, 164, 90, 0.08);
}

.logo-lock-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(224, 192, 120, 0.2) 0%,
    transparent 68%
  );
  pointer-events: none;
  transition: opacity 0.85s ease;
}

/* Pins where the lock meets each gate leaf */
.logo-lock-pin {
  position: absolute;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  border: 1.5px solid #f0d9a0;
  background: radial-gradient(circle at 35% 30%, #fff1c8, #c6a45a 50%, #6a5428);
  box-shadow: 0 0 12px rgba(198, 164, 90, 0.55);
  transform: translateY(-50%);
  z-index: 3;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.logo-lock-pin--left {
  left: -0.2rem;
}

.logo-lock-pin--right {
  right: -0.2rem;
}

.logo-morph-img {
  position: relative;
  z-index: 2;
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 16px rgba(198, 164, 90, 0.45));
  animation: crestPulse 3.2s ease-in-out infinite;
}

.logo-morph.is-zooming {
  width: clamp(8.5rem, 24vw, 12rem);
  height: clamp(8.5rem, 24vw, 12rem);
  transform: translate(-50%, -50%) scale(1);
  filter: none;
}

.logo-morph.is-zooming .logo-morph-img {
  animation: none;
  width: 100%;
  height: 100%;
  transition: width 2.45s cubic-bezier(0.22, 1, 0.36, 1), height 2.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-morph.is-zooming .logo-lock {
  background: transparent;
  box-shadow: none;
  transition: background 0.8s ease, box-shadow 0.8s ease;
}

.logo-morph.is-zooming .logo-lock-ring,
.logo-morph.is-zooming .logo-lock-glow,
.logo-morph.is-zooming .logo-lock-pin {
  opacity: 0;
  transform: scale(1.08);
}

.logo-morph.is-zooming .logo-lock-pin {
  transform: translateY(-50%) scale(0.6);
}

.logo-morph.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: none;
  animation: none;
}

body.gates-locked {
  overflow: hidden;
  overscroll-behavior: none;
  height: 100%;
}

body.gates-locked .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5rem);
}

/* ===== Royal gates ===== */
.hero-gates {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: stretch;
  justify-content: center;
  pointer-events: auto;
  touch-action: manipulation;
  background:
    radial-gradient(ellipse 55% 50% at 50% 42%, rgba(198, 164, 90, 0.12), transparent 70%),
    #070605;
}

.hero-gates.is-gone {
  pointer-events: none;
  visibility: hidden;
}

.gate-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.gate-lintel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(1.75rem, 4vh, 2.75rem);
  background: linear-gradient(180deg, #1c1712 0%, #0f0c0a 100%);
  border-bottom: 2px solid rgba(198, 164, 90, 0.65);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.gate-lintel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.55rem;
  width: min(18rem, 40vw);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #e0c078, transparent);
  box-shadow: 0 0 12px rgba(198, 164, 90, 0.45);
}

.gate-threshold {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(1.5rem, 3.5vh, 2.4rem);
  background: linear-gradient(0deg, #14110d 0%, #0c0a08 100%);
  border-top: 2px solid rgba(198, 164, 90, 0.55);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.4);
}

.gate {
  position: absolute;
  top: clamp(1.75rem, 4vh, 2.75rem);
  bottom: clamp(1.5rem, 3.5vh, 2.4rem);
  width: 50.6%;
  overflow: hidden;
  z-index: 2;
  transition: transform 1.85s cubic-bezier(0.7, 0.05, 0.15, 1);
  will-change: transform;
}

.gate--left {
  left: 0;
  transform-origin: left center;
}

.gate--right {
  right: 0;
  transform-origin: right center;
}

.gate-face {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2f261c 0%, #1a1510 42%, #100d0a 100%);
  border: 1px solid rgba(198, 164, 90, 0.55);
}

.gate--left .gate-face {
  border-right: 0;
  box-shadow:
    inset -40px 0 60px rgba(0, 0, 0, 0.35),
    inset 0 0 80px rgba(0, 0, 0, 0.25),
    12px 0 36px rgba(0, 0, 0, 0.4);
}

.gate--right .gate-face {
  border-left: 0;
  box-shadow:
    inset 40px 0 60px rgba(0, 0, 0, 0.35),
    inset 0 0 80px rgba(0, 0, 0, 0.25),
    -12px 0 36px rgba(0, 0, 0, 0.4);
}

.gate-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    rgba(224, 192, 120, 0.16) 0%,
    transparent 26%,
    transparent 68%,
    rgba(198, 164, 90, 0.08) 100%
  );
  pointer-events: none;
}

.gate-inner {
  position: absolute;
  inset: 6% 9%;
  border: 1.5px solid rgba(198, 164, 90, 0.7);
  box-shadow:
    inset 0 0 0 8px rgba(12, 10, 8, 0.55),
    inset 0 0 0 9px rgba(198, 164, 90, 0.28),
    0 0 40px rgba(0, 0, 0, 0.25);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(198, 164, 90, 0.06) 0 1px,
      transparent 1px 26px
    ),
    linear-gradient(180deg, rgba(198, 164, 90, 0.08), transparent 40%, rgba(0, 0, 0, 0.2));
}

.gate-corner {
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  border-color: #e0c078;
  border-style: solid;
  border-width: 0;
  opacity: 0.9;
}

.gate-corner--tl {
  top: 0.55rem;
  left: 0.55rem;
  border-top-width: 2px;
  border-left-width: 2px;
}

.gate-corner--tr {
  top: 0.55rem;
  right: 0.55rem;
  border-top-width: 2px;
  border-right-width: 2px;
}

.gate-corner--bl {
  bottom: 0.55rem;
  left: 0.55rem;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.gate-corner--br {
  bottom: 0.55rem;
  right: 0.55rem;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.gate-bar {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(138, 115, 64, 0.85) 10%,
    #e8c988 50%,
    rgba(138, 115, 64, 0.85) 90%,
    transparent
  );
  box-shadow: 0 0 12px rgba(198, 164, 90, 0.45);
}

.gate-bar--1 { top: 20%; }
.gate-bar--2 { top: 50%; transform: translateY(-50%); }
.gate-bar--3 { bottom: 20%; }

.gate-bar--v {
  top: 10%;
  bottom: 10%;
  left: auto;
  right: auto;
  width: 2px;
  height: auto;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(138, 115, 64, 0.85) 12%,
    #e8c988 50%,
    rgba(138, 115, 64, 0.85) 88%,
    transparent
  );
}

.gate--left .gate-bar--v1,
.gate--right .gate-bar--v1 { left: 24%; }
.gate--left .gate-bar--v2,
.gate--right .gate-bar--v2 { right: 24%; }

.gate-diamond {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.15rem;
  height: 1.15rem;
  border: 1.5px solid #f0d9a0;
  background: rgba(198, 164, 90, 0.22);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 18px rgba(198, 164, 90, 0.55);
}

.gate-arch {
  position: absolute;
  top: 8%;
  left: 16%;
  right: 16%;
  height: 26%;
  border: 1.5px solid rgba(224, 192, 120, 0.65);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 110% 110% 0 0;
  box-shadow: inset 0 14px 28px rgba(198, 164, 90, 0.07);
}

.gate-handle {
  position: absolute;
  top: 50%;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: 1.5px solid #f0d9a0;
  background: radial-gradient(circle at 35% 30%, #fff1c8, #c6a45a 55%, #6a5428);
  box-shadow: 0 0 14px rgba(198, 164, 90, 0.55);
  transform: translateY(-50%);
  z-index: 3;
}

.gate--left .gate-handle { right: 1.1rem; }
.gate--right .gate-handle { left: 1.1rem; }

.gate-hinges {
  position: absolute;
  top: 16%;
  bottom: 16%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1rem;
  z-index: 2;
}

.gate--left .gate-hinges { left: 0.55rem; }
.gate--right .gate-hinges { right: 0.55rem; }

.gate-hinges span {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1.5px solid #e0c078;
  background: radial-gradient(circle at 35% 35%, #f0d9a0, #c6a45a 45%, #6e5a30 100%);
  box-shadow: 0 0 10px rgba(198, 164, 90, 0.4);
}

.gate-edge-glow {
  position: absolute;
  top: 4%;
  bottom: 4%;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    #e0c078 20%,
    #fff3c8 50%,
    #e0c078 80%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(224, 192, 120, 0.7);
  opacity: 0.95;
}

.gate--left .gate-edge-glow { right: 0; }
.gate--right .gate-edge-glow { left: 0; }

.gate-seam {
  position: absolute;
  top: clamp(1.75rem, 4vh, 2.75rem);
  bottom: clamp(1.5rem, 3.5vh, 2.4rem);
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  z-index: 3;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(198, 164, 90, 0.4) 10%,
    #f5e2b0 50%,
    rgba(198, 164, 90, 0.4) 90%,
    transparent 100%
  );
  box-shadow:
    0 0 18px rgba(240, 217, 160, 0.5),
    0 0 50px rgba(198, 164, 90, 0.3);
  transition: opacity 0.8s ease, width 0.8s ease, box-shadow 0.8s ease;
}

.gate-bloom {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(
    ellipse 40% 65% at 50% 45%,
    rgba(240, 217, 160, 0.32),
    transparent 68%
  );
  opacity: 0;
  transition: opacity 0.55s ease;
}

.hero-gates.is-opening .gate-seam {
  width: 10px;
  box-shadow:
    0 0 36px rgba(255, 236, 180, 0.85),
    0 0 100px rgba(198, 164, 90, 0.55);
}

.hero-gates.is-opening .gate-bloom { opacity: 1; }

.hero-gates.is-open .gate-seam,
.hero-gates.is-open .gate-bloom { opacity: 0; }

.hero-gates.is-open .gate--left {
  transform: perspective(1800px) rotateY(-105deg);
}

.hero-gates.is-open .gate--right {
  transform: perspective(1800px) rotateY(105deg);
}

.gate-crest {
  position: relative;
  z-index: 6;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  gap: 0.85rem;
  padding: 0 1.5rem;
  /* Sit clearly below the circular lock */
  padding-top: clamp(13rem, 40vw, 18.5rem);
  pointer-events: none;
}

.gate-invite {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.2em;
  color: rgba(212, 184, 122, 0.85);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gate-invite::before,
.gate-invite::after {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 164, 90, 0.7), transparent);
}

.gate-enter-btn {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 2.6rem;
  padding: 0.65rem 1.55rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a140c;
  background: linear-gradient(180deg, #e8c988 0%, #c6a45a 100%);
  border: 1px solid #f0d9a0;
  border-radius: 1px;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.25s var(--ease);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 22px rgba(198, 164, 90, 0.35);
}

.gate-enter-btn:hover {
  background: linear-gradient(180deg, #f0d9a0 0%, #d4b87a 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 0 32px rgba(198, 164, 90, 0.55);
  transform: translateY(-1px);
}

.gate-enter-btn:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

.hero-gates.is-opening .gate-invite,
.hero-gates.is-open .gate-invite,
.hero-gates.is-opening .gate-enter-btn,
.hero-gates.is-open .gate-enter-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.35rem);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

@keyframes crestPulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(198, 164, 90, 0.35)); }
  50% { filter: drop-shadow(0 0 22px rgba(240, 217, 160, 0.55)); }
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: heroGlowPulse 10s ease-in-out infinite;
}

.hero-glow--a {
  width: min(55vw, 28rem);
  height: min(55vw, 28rem);
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(198, 164, 90, 0.22);
}

.hero-glow--b {
  width: min(40vw, 20rem);
  height: min(40vw, 20rem);
  bottom: 12%;
  left: 18%;
  background: rgba(140, 110, 50, 0.12);
  animation-delay: -4s;
}

.hero-rays {
  position: absolute;
  inset: -20%;
  background: conic-gradient(
    from 210deg at 50% 40%,
    transparent 0deg,
    rgba(198, 164, 90, 0.04) 20deg,
    transparent 40deg,
    rgba(198, 164, 90, 0.06) 70deg,
    transparent 100deg,
    rgba(198, 164, 90, 0.03) 140deg,
    transparent 180deg
  );
  opacity: 0;
  transition: opacity 1.2s ease 0.4s;
  animation: raysDrift 18s linear infinite;
}

.hero.is-ready .hero-rays {
  opacity: 1;
}

.hero-mist {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 28%, transparent 70%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-embers {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-embers span {
  position: absolute;
  bottom: -10%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(212, 184, 122, 0.7);
  box-shadow: 0 0 6px rgba(198, 164, 90, 0.6);
  opacity: 0;
}

.hero.is-ready .hero-embers span {
  animation: emberRise 7s ease-in infinite;
}

.hero-embers span:nth-child(1) { left: 12%; animation-delay: 0.2s; }
.hero-embers span:nth-child(2) { left: 28%; animation-delay: 1.4s; width: 3px; height: 3px; }
.hero-embers span:nth-child(3) { left: 44%; animation-delay: 0.8s; }
.hero-embers span:nth-child(4) { left: 58%; animation-delay: 2.1s; }
.hero-embers span:nth-child(5) { left: 71%; animation-delay: 1.1s; width: 3px; height: 3px; }
.hero-embers span:nth-child(6) { left: 83%; animation-delay: 2.8s; }
.hero-embers span:nth-child(7) { left: 36%; animation-delay: 3.4s; }
.hero-embers span:nth-child(8) { left: 64%; animation-delay: 4s; }

.hero-ridges {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(7rem, 22vh, 14rem);
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(3.5rem, 8vw, 5rem);
  width: min(100% - 2 * var(--gutter), 44rem);
  margin-inline: auto;
}

/* Staggered entrance — starts after gates open */
.hero [data-hero-step] {
  opacity: 0;
  transform: translateY(1.15rem);
  transition:
    opacity 0.95s var(--ease),
    transform 0.95s var(--ease);
}

.hero.is-ready [data-hero-step] {
  opacity: 1;
  transform: none;
}

.hero.is-ready [data-hero-step="1"] { transition-delay: 0.05s; }
.hero.is-ready [data-hero-step="2"] { transition-delay: 0.3s; }
.hero.is-ready [data-hero-step="3"] { transition-delay: 0.5s; }
.hero.is-ready [data-hero-step="4"] { transition-delay: 0.7s; }
.hero.is-ready [data-hero-step="5"] { transition-delay: 0.9s; }
.hero.is-ready [data-hero-step="6"] { transition-delay: 1.1s; }

/*
 * Connected logo handoff:
 * Keep in-flow hero logo invisible while the floating morph is the only logo.
 * Swap in one frame via .logo-settled — no opacity crossfade = no flash.
 */
.hero.from-gates [data-hero-step="1"] {
  opacity: 0;
  transform: none;
  transition: none;
}

.hero.from-gates.is-ready [data-hero-step="1"] {
  opacity: 0;
  transform: none;
  transition: none;
}

.hero.from-gates.logo-settled [data-hero-step="1"],
.hero.from-gates.is-ready.logo-settled [data-hero-step="1"] {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero.from-gates.is-ready [data-hero-step="2"] { transition-delay: 0.12s; }
.hero.from-gates.is-ready [data-hero-step="3"] { transition-delay: 0.32s; }
.hero.from-gates.is-ready [data-hero-step="4"] { transition-delay: 0.52s; }
.hero.from-gates.is-ready [data-hero-step="5"] { transition-delay: 0.72s; }
.hero.from-gates.is-ready [data-hero-step="6"] { transition-delay: 0.95s; }

.hero-emblem {
  position: relative;
  width: clamp(8.5rem, 24vw, 12rem);
  height: clamp(8.5rem, 24vw, 12rem);
  margin-bottom: 1.35rem;
  display: grid;
  place-items: center;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(198, 164, 90, 0.35));
}

.hero [data-hero-step="1"] {
  transform: none;
}

.hero.is-ready [data-hero-step="1"] {
  transform: none;
}

.hero-welcome {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(212, 184, 122, 0.92);
}

.hero-welcome-line {
  display: block;
  width: clamp(1.75rem, 5vw, 3rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 164, 90, 0.75), transparent);
  transform-origin: center;
}

.hero.is-ready .hero-welcome-line {
  animation: welcomeLine 1.4s var(--ease) 0.5s both;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.75rem, 8vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0.08em;
  margin: 0 0 0.65rem;
  color: #f7f0e2;
  text-shadow: 0 0 40px rgba(198, 164, 90, 0.12);
}

.hero-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.5vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(198, 164, 90, 0.9);
}

.hero-location {
  margin: 0 0 1.15rem;
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 1.4vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 234, 215, 0.72);
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: min(100%, 14rem);
  margin: 0 0 2.75rem;
  color: var(--gold);
}

.hero-ornament span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.hero-ornament svg {
  width: 0.7rem;
  height: 0.7rem;
  flex-shrink: 0;
  opacity: 0.8;
}

.hero-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.55rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 36rem;
}

.hero-summary li {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(198, 164, 90, 0.28);
  background: rgba(198, 164, 90, 0.04);
}

.intro-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  color: var(--gold-soft);
  margin: -0.35rem 0 1.25rem;
  max-width: 36rem;
}

/* ---------- About (first section after hero) ---------- */
.about-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, transparent 18%),
    var(--charcoal);
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.about-atmosphere {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-atmosphere-glow {
  position: absolute;
  top: -18%;
  left: 50%;
  width: min(72rem, 140vw);
  height: 28rem;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(198, 164, 90, 0.12) 0%, transparent 62%);
}

.about-atmosphere-frame {
  position: absolute;
  inset: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(198, 164, 90, 0.1);
  opacity: 0.7;
}

.about-atmosphere-frame::before,
.about-atmosphere-frame::after {
  content: "";
  position: absolute;
  width: 2.25rem;
  height: 2.25rem;
  border-color: rgba(198, 164, 90, 0.45);
  border-style: solid;
}

.about-atmosphere-frame::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.about-atmosphere-frame::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}

/* Colonnade side structure */
.about-colonnade {
  position: absolute;
  top: 8%;
  bottom: 8%;
  width: 2.75rem;
  opacity: 0.55;
  background:
    linear-gradient(90deg, transparent 0%, transparent 42%, rgba(198, 164, 90, 0.22) 42%, rgba(198, 164, 90, 0.22) 46%, transparent 46%, transparent 54%, rgba(198, 164, 90, 0.22) 54%, rgba(198, 164, 90, 0.22) 58%, transparent 58%),
    linear-gradient(180deg, rgba(198, 164, 90, 0.28) 0%, rgba(198, 164, 90, 0.28) 1px, transparent 1px, transparent calc(100% - 1px), rgba(198, 164, 90, 0.28) calc(100% - 1px));
}

.about-colonnade::before,
.about-colonnade::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 0.55rem;
  border: 1px solid rgba(198, 164, 90, 0.35);
  background: rgba(198, 164, 90, 0.06);
}

.about-colonnade::before {
  top: 0;
}

.about-colonnade::after {
  bottom: 0;
}

.about-colonnade--left {
  left: clamp(0.35rem, 2vw, 1.25rem);
}

.about-colonnade--right {
  right: clamp(0.35rem, 2vw, 1.25rem);
}

.about-cornice,
.about-plinth {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 164, 90, 0.35) 12%,
    rgba(198, 164, 90, 0.35) 88%,
    transparent
  );
}

.about-cornice {
  top: clamp(1.4rem, 3.5vw, 2.4rem);
  box-shadow: 0 4px 0 rgba(198, 164, 90, 0.08);
}

.about-plinth {
  bottom: clamp(1.4rem, 3.5vw, 2.4rem);
  box-shadow: 0 -3px 0 rgba(198, 164, 90, 0.07);
}

@media (max-width: 700px) {
  .about-colonnade {
    display: none;
  }
}

.about-section > .container {
  position: relative;
  z-index: 1;
}

.about-header {
  max-width: 42rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.about-header .section-heading {
  font-size: clamp(2.15rem, 5vw, 3.35rem);
  letter-spacing: 0.005em;
  margin-bottom: 0.85rem;
}

.about-break {
  display: none;
}

@media (min-width: 720px) {
  .about-break {
    display: block;
  }
}

.about-header .intro-tagline {
  margin-top: 0;
  margin-bottom: 1.35rem;
  max-width: 34rem;
}

.about-header .gold-rule {
  width: 4.5rem;
  margin-bottom: 0;
}

/* Architectural elevation drawing */
.about-elevation {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  padding: clamp(1rem, 2.5vw, 1.5rem) 0 clamp(0.75rem, 2vw, 1.1rem);
  border-top: 1px solid rgba(198, 164, 90, 0.14);
  border-bottom: 1px solid rgba(198, 164, 90, 0.14);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(198, 164, 90, 0.035), transparent 40%, rgba(198, 164, 90, 0.03));
}

.about-elevation-svg {
  display: block;
  width: min(100%, 40rem);
  margin-inline: auto;
  height: auto;
  color: var(--gold);
  filter: drop-shadow(0 0 24px rgba(198, 164, 90, 0.08));
}

.about-elevation-svg .el-stroke {
  stroke: rgba(198, 164, 90, 0.55);
  stroke-width: 1.25;
}

.about-elevation-svg .el-strong {
  stroke: rgba(198, 164, 90, 0.85);
  stroke-width: 1.5;
}

.about-elevation-svg .el-accent {
  stroke: var(--gold);
  stroke-width: 1.35;
}

.about-elevation-svg .el-guide {
  stroke: rgba(198, 164, 90, 0.28);
  stroke-width: 1;
}

.about-elevation-svg .el-window {
  stroke: rgba(198, 164, 90, 0.65);
  stroke-width: 1.15;
  fill: rgba(198, 164, 90, 0.04);
}

.about-elevation-svg .el-mullion {
  stroke: rgba(198, 164, 90, 0.35);
  stroke-width: 0.9;
}

.about-elevation-svg .el-arch {
  stroke: rgba(211, 184, 122, 0.9);
  stroke-width: 1.4;
}

.about-elevation-svg .el-dim {
  stroke: rgba(198, 164, 90, 0.3);
  stroke-width: 0.9;
}

.about-elevation-svg .el-stroke,
.about-elevation-svg .el-strong,
.about-elevation-svg .el-accent,
.about-elevation-svg .el-guide,
.about-elevation-svg .el-window,
.about-elevation-svg .el-mullion,
.about-elevation-svg .el-arch,
.about-elevation-svg .el-dim {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}

.about-elevation.is-visible .el-stroke,
.about-elevation.is-visible .el-strong,
.about-elevation.is-visible .el-accent,
.about-elevation.is-visible .el-guide,
.about-elevation.is-visible .el-window,
.about-elevation.is-visible .el-mullion,
.about-elevation.is-visible .el-arch,
.about-elevation.is-visible .el-dim {
  animation: about-draw 1.6s var(--ease) forwards;
}

.about-elevation.is-visible .el-window {
  animation-delay: 0.25s;
}

.about-elevation.is-visible .el-mullion {
  animation-delay: 0.4s;
}

.about-elevation.is-visible .el-arch {
  animation-delay: 0.35s;
}

.about-elevation.is-visible .el-dim {
  animation-delay: 0.7s;
}

@keyframes about-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.about-elevation-caption {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.about-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: start;
  padding-bottom: clamp(2rem, 4.5vw, 3rem);
  border-bottom: 1px solid rgba(198, 164, 90, 0.16);
}

@media (max-width: 820px) {
  .about-stage {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-copy {
  max-width: 36rem;
}

.about-copy p {
  font-size: clamp(1.05rem, 1.6vw, 1.125rem);
  line-height: 1.75;
}

.about-copy p:first-child {
  color: var(--cream-muted);
}

.about-aside {
  padding-top: 0.15rem;
}

.about-status {
  margin: 0 0 1.35rem;
  padding-left: 0.95rem;
  border-left: 1px solid var(--gold);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.45;
}

.about-facts {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(198, 164, 90, 0.18);
}

.about-facts > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(198, 164, 90, 0.14);
}

.about-facts dt {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.about-actions {
  margin-top: 1.6rem;
}

.about-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

@media (max-width: 700px) {
  .about-paths {
    grid-template-columns: 1fr;
  }
}

.about-path {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(0.85rem, 2.5vw, 1.35rem);
  text-decoration: none;
  color: inherit;
  border-top: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.about-path + .about-path {
  border-left: 1px solid rgba(198, 164, 90, 0.16);
}

@media (max-width: 700px) {
  .about-path + .about-path {
    border-left: 0;
    border-top: 1px solid rgba(198, 164, 90, 0.16);
  }
}

.about-path:hover {
  text-decoration: none;
  background: rgba(198, 164, 90, 0.05);
  border-top-color: rgba(198, 164, 90, 0.35);
}

.about-path-glyph {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--gold);
  border: 1px solid rgba(198, 164, 90, 0.28);
  background: rgba(198, 164, 90, 0.04);
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease);
}

.about-path-glyph svg {
  width: 1.45rem;
  height: 1.45rem;
}

.about-path:hover .about-path-glyph {
  border-color: rgba(198, 164, 90, 0.55);
  color: var(--gold-soft);
}

.about-path-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.about-path-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-path-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  color: var(--cream);
  line-height: 1.2;
}

.about-path-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-path-arrow {
  width: 1.35rem;
  height: 1px;
  background: var(--gold-line);
  position: relative;
  transition: width 0.35s var(--ease), background 0.35s var(--ease);
}

.about-path-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  color: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.about-path:hover .about-path-arrow {
  width: 1.85rem;
  background: var(--gold);
}

.about-elevation.reveal {
  transition-delay: 0.06s;
}

.about-copy.reveal {
  transition-delay: 0.12s;
}

.about-aside.reveal {
  transition-delay: 0.18s;
}

.about-paths.reveal {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .about-elevation-svg .el-stroke,
  .about-elevation-svg .el-strong,
  .about-elevation-svg .el-accent,
  .about-elevation-svg .el-guide,
  .about-elevation-svg .el-window,
  .about-elevation-svg .el-mullion,
  .about-elevation-svg .el-arch,
  .about-elevation-svg .el-dim,
  .about-elevation.is-visible .el-stroke,
  .about-elevation.is-visible .el-strong,
  .about-elevation.is-visible .el-accent,
  .about-elevation.is-visible .el-guide,
  .about-elevation.is-visible .el-window,
  .about-elevation.is-visible .el-mullion,
  .about-elevation.is-visible .el-arch,
  .about-elevation.is-visible .el-dim {
    animation: none;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}

/* ---------- Commercial shops ---------- */
.commercial-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--black-soft) 0%, var(--black) 48%, var(--black-soft) 100%);
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.commercial-atmosphere {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.commercial-atmosphere-glow {
  position: absolute;
  top: 12%;
  right: -8%;
  width: min(36rem, 70vw);
  height: min(36rem, 70vw);
  background: radial-gradient(circle, rgba(198, 164, 90, 0.09) 0%, transparent 68%);
}

.commercial-rail {
  position: absolute;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 164, 90, 0.28) 15%,
    rgba(198, 164, 90, 0.28) 85%,
    transparent
  );
}

.commercial-rail--top {
  top: clamp(1.25rem, 3vw, 2rem);
}

.commercial-rail--bottom {
  bottom: clamp(1.25rem, 3vw, 2rem);
}

.commercial-section > .container {
  position: relative;
  z-index: 1;
}

.commercial-header {
  max-width: 40rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.commercial-header .section-heading {
  font-size: clamp(2.05rem, 4.6vw, 3.1rem);
}

.commercial-header .section-lead {
  margin-bottom: 0;
}

.commercial-bays {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  padding: clamp(1rem, 2.5vw, 1.4rem) 0 clamp(0.7rem, 2vw, 1rem);
  border-top: 1px solid rgba(198, 164, 90, 0.14);
  border-bottom: 1px solid rgba(198, 164, 90, 0.14);
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(198, 164, 90, 0.03),
    transparent 45%,
    rgba(198, 164, 90, 0.025)
  );
}

.commercial-bays-svg {
  display: block;
  width: min(100%, 44rem);
  margin-inline: auto;
  height: auto;
  color: var(--gold);
}

.commercial-bays-svg .bay-plate {
  stroke: rgba(198, 164, 90, 0.5);
  stroke-width: 1.25;
  fill: rgba(198, 164, 90, 0.03);
}

.commercial-bays-svg .bay-unit {
  stroke: rgba(198, 164, 90, 0.55);
  stroke-width: 1.1;
  fill: rgba(198, 164, 90, 0.045);
}

.commercial-bays-svg .bay-div {
  stroke: rgba(198, 164, 90, 0.28);
  stroke-width: 1;
  stroke-dasharray: 4 5;
}

.commercial-bays-svg .bay-strong {
  stroke: rgba(198, 164, 90, 0.85);
  stroke-width: 1.45;
}

.commercial-bays-svg .bay-guide {
  stroke: rgba(198, 164, 90, 0.28);
  stroke-width: 1;
}

.commercial-bays-svg .bay-arch {
  stroke: rgba(211, 184, 122, 0.92);
  stroke-width: 1.4;
}

.commercial-bays-svg .bay-accent {
  stroke: var(--gold);
  stroke-width: 1.25;
}

.commercial-bays-svg .bay-mullion {
  stroke: rgba(198, 164, 90, 0.35);
  stroke-width: 0.9;
}

.commercial-bays-svg .bay-dim {
  stroke: rgba(198, 164, 90, 0.3);
  stroke-width: 0.9;
}

.commercial-bays-svg .bay-label {
  fill: rgba(198, 164, 90, 0.7);
  font-family: var(--font-display), Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.commercial-bays-svg .bay-dim-text {
  fill: rgba(198, 164, 90, 0.55);
  font-family: var(--font-body), sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.commercial-bays-svg .bay-plate,
.commercial-bays-svg .bay-unit,
.commercial-bays-svg .bay-div,
.commercial-bays-svg .bay-strong,
.commercial-bays-svg .bay-guide,
.commercial-bays-svg .bay-arch,
.commercial-bays-svg .bay-accent,
.commercial-bays-svg .bay-mullion,
.commercial-bays-svg .bay-dim {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}

.commercial-bays.is-visible .bay-plate,
.commercial-bays.is-visible .bay-unit,
.commercial-bays.is-visible .bay-div,
.commercial-bays.is-visible .bay-strong,
.commercial-bays.is-visible .bay-guide,
.commercial-bays.is-visible .bay-arch,
.commercial-bays.is-visible .bay-accent,
.commercial-bays.is-visible .bay-mullion,
.commercial-bays.is-visible .bay-dim {
  animation: about-draw 1.45s var(--ease) forwards;
}

.commercial-bays.is-visible .bay-unit,
.commercial-bays.is-visible .bay-arch {
  animation-delay: 0.22s;
}

.commercial-bays.is-visible .bay-dim {
  animation-delay: 0.55s;
}

.commercial-bays-caption {
  margin: 0.6rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.commercial-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 820px) {
  .commercial-stage {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.commercial-schedule {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(198, 164, 90, 0.2);
}

.commercial-schedule > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.88rem 0;
  border-bottom: 1px solid rgba(198, 164, 90, 0.14);
}

.commercial-schedule dt {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.commercial-schedule dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  text-align: right;
  letter-spacing: 0.02em;
}

.commercial-uses-lead {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.commercial-use-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.35rem;
}

@media (max-width: 560px) {
  .commercial-use-list {
    grid-template-columns: 1fr;
  }
}

.commercial-use-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.05rem;
  color: var(--cream-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(198, 164, 90, 0.08);
}

.commercial-use-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 0.45rem;
  height: 1px;
  background: var(--gold);
}

.commercial-note {
  margin: 1.5rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(198, 164, 90, 0.16);
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  font-style: italic;
}

.commercial-actions {
  margin-top: 1.5rem;
}

.commercial-bays.reveal {
  transition-delay: 0.06s;
}

.commercial-schedule.reveal {
  transition-delay: 0.12s;
}

.commercial-uses.reveal {
  transition-delay: 0.18s;
}

@media (prefers-reduced-motion: reduce) {
  .commercial-bays-svg .bay-plate,
  .commercial-bays-svg .bay-unit,
  .commercial-bays-svg .bay-div,
  .commercial-bays-svg .bay-strong,
  .commercial-bays-svg .bay-guide,
  .commercial-bays-svg .bay-arch,
  .commercial-bays-svg .bay-accent,
  .commercial-bays-svg .bay-mullion,
  .commercial-bays-svg .bay-dim,
  .commercial-bays.is-visible .bay-plate,
  .commercial-bays.is-visible .bay-unit,
  .commercial-bays.is-visible .bay-div,
  .commercial-bays.is-visible .bay-strong,
  .commercial-bays.is-visible .bay-guide,
  .commercial-bays.is-visible .bay-arch,
  .commercial-bays.is-visible .bay-accent,
  .commercial-bays.is-visible .bay-mullion,
  .commercial-bays.is-visible .bay-dim {
    animation: none;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}

/* ---------- Rental apartments ---------- */
.apartments-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, transparent 16%),
    var(--charcoal);
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.apartments-atmosphere {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.apartments-atmosphere-glow {
  position: absolute;
  top: 18%;
  left: -10%;
  width: min(34rem, 68vw);
  height: min(34rem, 68vw);
  background: radial-gradient(circle, rgba(198, 164, 90, 0.08) 0%, transparent 68%);
}

.apartments-rail {
  position: absolute;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 164, 90, 0.28) 15%,
    rgba(198, 164, 90, 0.28) 85%,
    transparent
  );
}

.apartments-rail--top {
  top: clamp(1.25rem, 3vw, 2rem);
}

.apartments-rail--bottom {
  bottom: clamp(1.25rem, 3vw, 2rem);
}

.apartments-section > .container {
  position: relative;
  z-index: 1;
}

.apartments-header {
  max-width: 40rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.apartments-header .section-heading {
  font-size: clamp(2.05rem, 4.6vw, 3.1rem);
}

.apartments-header .section-lead {
  margin-bottom: 0;
}

.apartments-plan {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  padding: clamp(1rem, 2.5vw, 1.4rem) 0 clamp(0.7rem, 2vw, 1rem);
  border-top: 1px solid rgba(198, 164, 90, 0.14);
  border-bottom: 1px solid rgba(198, 164, 90, 0.14);
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(198, 164, 90, 0.03),
    transparent 45%,
    rgba(198, 164, 90, 0.025)
  );
}

.apartments-plan-svg {
  display: block;
  width: min(100%, 38rem);
  margin-inline: auto;
  height: auto;
  color: var(--gold);
}

.apartments-plan-svg .plan-wall {
  stroke: rgba(198, 164, 90, 0.35);
  stroke-width: 1;
  fill: rgba(198, 164, 90, 0.02);
}

.apartments-plan-svg .plan-strong {
  stroke: rgba(198, 164, 90, 0.85);
  stroke-width: 1.5;
}

.apartments-plan-svg .plan-room {
  stroke: rgba(198, 164, 90, 0.55);
  stroke-width: 1.15;
  fill: rgba(198, 164, 90, 0.035);
}

.apartments-plan-svg .plan-balcony {
  stroke: rgba(211, 184, 122, 0.75);
  stroke-width: 1.2;
  fill: rgba(198, 164, 90, 0.02);
  stroke-dasharray: 5 4;
}

.apartments-plan-svg .plan-fixture {
  stroke: rgba(198, 164, 90, 0.4);
  stroke-width: 1;
  fill: rgba(198, 164, 90, 0.05);
}

.apartments-plan-svg .plan-guide {
  stroke: rgba(198, 164, 90, 0.25);
  stroke-width: 0.9;
}

.apartments-plan-svg .plan-accent {
  stroke: var(--gold);
  stroke-width: 1.2;
}

.apartments-plan-svg .plan-window {
  stroke: rgba(211, 184, 122, 0.85);
  stroke-width: 1.35;
}

.apartments-plan-svg .plan-dim {
  stroke: rgba(198, 164, 90, 0.3);
  stroke-width: 0.9;
}

.apartments-plan-svg .plan-label {
  fill: rgba(198, 164, 90, 0.72);
  font-family: var(--font-display), Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.apartments-plan-svg .plan-dim-text {
  fill: rgba(198, 164, 90, 0.55);
  font-family: var(--font-body), sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.apartments-plan-svg .plan-wall,
.apartments-plan-svg .plan-strong,
.apartments-plan-svg .plan-room,
.apartments-plan-svg .plan-balcony,
.apartments-plan-svg .plan-fixture,
.apartments-plan-svg .plan-guide,
.apartments-plan-svg .plan-accent,
.apartments-plan-svg .plan-window,
.apartments-plan-svg .plan-dim {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}

.apartments-plan.is-visible .plan-wall,
.apartments-plan.is-visible .plan-strong,
.apartments-plan.is-visible .plan-room,
.apartments-plan.is-visible .plan-balcony,
.apartments-plan.is-visible .plan-fixture,
.apartments-plan.is-visible .plan-guide,
.apartments-plan.is-visible .plan-accent,
.apartments-plan.is-visible .plan-window,
.apartments-plan.is-visible .plan-dim {
  animation: about-draw 1.5s var(--ease) forwards;
}

.apartments-plan.is-visible .plan-room,
.apartments-plan.is-visible .plan-balcony {
  animation-delay: 0.2s;
}

.apartments-plan.is-visible .plan-window,
.apartments-plan.is-visible .plan-accent {
  animation-delay: 0.4s;
}

.apartments-plan.is-visible .plan-dim {
  animation-delay: 0.6s;
}

.apartments-plan-caption {
  margin: 0.6rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.apartments-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 820px) {
  .apartments-stage {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.apartments-schedule {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(198, 164, 90, 0.2);
}

.apartments-schedule > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.88rem 0;
  border-bottom: 1px solid rgba(198, 164, 90, 0.14);
}

.apartments-schedule dt {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.apartments-schedule dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  text-align: right;
  letter-spacing: 0.02em;
}

.apartments-amenities-lead {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.apartments-amenity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(198, 164, 90, 0.16);
}

.apartments-amenity-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(198, 164, 90, 0.12);
  color: var(--cream-muted);
  font-size: 0.98rem;
}

.apartments-amenity-icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--gold);
  border: 1px solid rgba(198, 164, 90, 0.28);
  background: rgba(198, 164, 90, 0.04);
}

.apartments-amenity-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.apartments-actions {
  margin-top: 1.5rem;
}

.apartments-plan.reveal {
  transition-delay: 0.06s;
}

.apartments-schedule.reveal {
  transition-delay: 0.12s;
}

.apartments-amenities.reveal {
  transition-delay: 0.18s;
}

@media (prefers-reduced-motion: reduce) {
  .apartments-plan-svg .plan-wall,
  .apartments-plan-svg .plan-strong,
  .apartments-plan-svg .plan-room,
  .apartments-plan-svg .plan-balcony,
  .apartments-plan-svg .plan-fixture,
  .apartments-plan-svg .plan-guide,
  .apartments-plan-svg .plan-accent,
  .apartments-plan-svg .plan-window,
  .apartments-plan-svg .plan-dim,
  .apartments-plan.is-visible .plan-wall,
  .apartments-plan.is-visible .plan-strong,
  .apartments-plan.is-visible .plan-room,
  .apartments-plan.is-visible .plan-balcony,
  .apartments-plan.is-visible .plan-fixture,
  .apartments-plan.is-visible .plan-guide,
  .apartments-plan.is-visible .plan-accent,
  .apartments-plan.is-visible .plan-window,
  .apartments-plan.is-visible .plan-dim {
    animation: none;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }

  .apartments-plan-svg .plan-balcony {
    stroke-dasharray: 5 4;
  }
}

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.25rem;
  text-decoration: none;
  color: rgba(198, 164, 90, 0.7);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease);
}

.hero-scroll:hover {
  color: var(--gold-soft);
}

.hero-scroll-chevron {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  animation: scrollNudge 2.2s ease-in-out infinite;
  opacity: 0.85;
}

.gold-line-anim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% 100%;
  animation: goldSweep 8s linear infinite;
  z-index: 2;
}

@keyframes goldSweep {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.28; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.45; transform: translateX(-50%) scale(1.06); }
}

.hero-glow--b {
  animation-name: heroGlowPulseB;
}

@keyframes heroGlowPulseB {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50% { opacity: 0.32; transform: scale(1.08); }
}

@keyframes welcomeLine {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes scrollNudge {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.55; }
  50% { transform: rotate(45deg) translateY(0.25rem); opacity: 1; }
}

@keyframes emberRise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  15% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(-85vh) scale(0.4);
  }
}

@keyframes raysDrift {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ----- Hero / gates — tablet & mobile ----- */
@media (max-width: 900px) {
  .logo-morph {
    top: 42%;
    width: clamp(9rem, 34vw, 12.5rem);
    height: clamp(9rem, 34vw, 12.5rem);
    transition-duration: 2.05s;
  }

  .logo-morph.is-zooming {
    width: clamp(7.25rem, 22vw, 10rem);
    height: clamp(7.25rem, 22vw, 10rem);
  }

  .logo-morph.is-zooming .logo-morph-img {
    transition-duration: 2.05s;
  }

  .gate {
    transition-duration: 1.45s;
  }

  .hero-gates {
    min-height: 100svh;
    min-height: 100dvh;
  }

  /* Keep CTA clear of the lock and phone home bar */
  .gate-crest {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: max(1.75rem, env(safe-area-inset-bottom, 0px));
    align-self: auto;
    padding: 0 1.25rem max(0.5rem, env(safe-area-inset-bottom, 0px));
    gap: 0.65rem;
  }

  .gate-enter-btn {
    min-height: 3rem;
    padding: 0.75rem 1.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    width: min(100%, 18rem);
  }

  .gate-invite {
    font-size: 0.88rem;
    letter-spacing: 0.16em;
  }

  .gate {
    width: 52%;
  }

  .gate-inner {
    inset: 5% 7%;
    box-shadow:
      inset 0 0 0 5px rgba(12, 10, 8, 0.55),
      inset 0 0 0 6px rgba(198, 164, 90, 0.28),
      0 0 28px rgba(0, 0, 0, 0.25);
  }

  .gate-arch {
    height: 22%;
    left: 14%;
    right: 14%;
  }

  .gate-handle {
    display: none;
  }

  .hero-gates.is-open .gate--left {
    transform: translateX(-110%);
  }

  .hero-gates.is-open .gate--right {
    transform: translateX(110%);
  }

  .hero-inner {
    padding: calc(var(--header-h-compact) + 0.75rem) 0 max(2.25rem, env(safe-area-inset-bottom, 0px));
    width: min(100% - 2 * var(--gutter), 36rem);
  }

  .hero-emblem {
    width: clamp(7.25rem, 28vw, 10rem);
    height: clamp(7.25rem, 28vw, 10rem);
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.75rem);
    letter-spacing: 0.04em;
  }

  .hero-welcome {
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    margin-bottom: 0.65rem;
  }

  .hero-kicker {
    letter-spacing: 0.22em;
    margin-bottom: 0.35rem;
  }

  .hero-location {
    letter-spacing: 0.14em;
    margin-bottom: 0.9rem;
    font-size: 0.66rem;
  }

  .hero-ornament {
    margin-bottom: 1.75rem;
    width: min(100%, 11rem);
  }

  .hero-scroll {
    margin-top: 0;
  }

  /* Lighter atmosphere on mid-size screens */
  .hero-embers {
    display: none;
  }

  .hero-rays {
    animation: none;
  }

  .hero-glow {
    filter: blur(40px);
    animation: none;
  }
}

@media (max-width: 560px) {
  .hero-summary {
    gap: 0.45rem;
  }

  .hero-summary li {
    font-size: 0.7rem;
    padding: 0.4rem 0.65rem;
  }

  .logo-morph {
    top: 40%;
    width: clamp(8.25rem, 46vw, 10.5rem);
    height: clamp(8.25rem, 46vw, 10.5rem);
    transform: translate(-50%, -50%) scale(1.04);
  }

  .logo-morph.is-gate {
    transform: translate(-50%, -50%) scale(1.04);
  }

  .logo-lock-ring {
    box-shadow:
      inset 0 0 0 1px rgba(0, 0, 0, 0.45),
      0 0 0 4px rgba(12, 10, 8, 0.85),
      0 0 0 5px rgba(198, 164, 90, 0.55),
      0 0 18px rgba(198, 164, 90, 0.3);
  }

  .logo-lock-pin {
    width: 0.55rem;
    height: 0.55rem;
  }

  .gate {
    width: 51.5%;
  }

  .gate-inner {
    inset: 4% 5%;
    background:
      repeating-linear-gradient(
        90deg,
        rgba(198, 164, 90, 0.05) 0 1px,
        transparent 1px 18px
      ),
      linear-gradient(180deg, rgba(198, 164, 90, 0.08), transparent 40%, rgba(0, 0, 0, 0.2));
  }

  .gate-bar--v,
  .gate-diamond,
  .gate-corner {
    display: none;
  }

  .gate-hinges span {
    width: 0.75rem;
    height: 0.75rem;
  }

  .gate--left .gate-hinges,
  .gate--right .gate-hinges {
    width: 0.75rem;
  }

  .gate-lintel,
  .gate-threshold {
    height: 1.15rem;
  }

  .gate {
    top: 1.15rem;
    bottom: 1.15rem;
  }

  .gate-seam {
    top: 1.15rem;
    bottom: 1.15rem;
  }

  .gate-lintel::after {
    width: min(12rem, 55vw);
    bottom: -0.35rem;
  }

  .gate-crest {
    bottom: max(1.35rem, env(safe-area-inset-bottom, 0px));
  }

  .hero-gates.is-opening .gate--left,
  .hero-gates.is-open .gate--left {
    transform: translateX(-112%);
  }

  .hero-gates.is-opening .gate--right,
  .hero-gates.is-open .gate--right {
    transform: translateX(112%);
  }

  .hero-ridges {
    height: 5.5rem;
  }
}

/* Short phones & landscape — keep lock + CTA on screen */
@media (max-height: 700px) {
  .logo-morph {
    top: 36%;
    width: clamp(6.5rem, 28vh, 9.5rem);
    height: clamp(6.5rem, 28vh, 9.5rem);
  }

  .gate-crest {
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    gap: 0.45rem;
  }

  .gate-invite {
    font-size: 0.8rem;
  }

  .gate-enter-btn {
    min-height: 2.65rem;
    padding: 0.55rem 1.2rem;
  }

  .hero-inner {
    padding-top: calc(var(--header-h-compact) + 0.35rem);
    padding-bottom: 1.5rem;
  }

  .hero-emblem {
    width: clamp(5.75rem, 18vh, 8rem);
    height: clamp(5.75rem, 18vh, 8rem);
    margin-bottom: 0.65rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.85rem);
    margin-bottom: 0.4rem;
  }

  .hero-ornament {
    margin-bottom: 1.15rem;
  }

  .hero-welcome-line {
    width: 1.75rem;
  }
}

@media (max-height: 480px) and (orientation: landscape) {
  .logo-morph {
    top: 42%;
    left: 50%;
    width: 5.25rem;
    height: 5.25rem;
  }

  .logo-lock-pin {
    display: none;
  }

  .gate-crest {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    bottom: 0.65rem;
  }

  .gate-invite {
    display: none;
  }

  .gate-enter-btn {
    width: auto;
    min-height: 2.4rem;
    font-size: 0.72rem;
  }

  .gate-arch,
  .gate-bar--1,
  .gate-bar--3 {
    display: none;
  }

  .hero-inner {
    padding: 0.75rem var(--gutter) 1rem;
  }

  .hero-scroll {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero [data-hero-step] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-glow,
  .hero-scroll-chevron,
  .gold-line-anim,
  .hero-rays,
  .hero-embers span,
  .logo-morph-img {
    animation: none;
  }

  .logo-morph,
  .gate {
    transition: none;
  }

  .hero.is-ready .hero-welcome-line {
    animation: none;
  }
}

/* ---------- Content grids ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 780px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.prose p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
}

.fact-list span:first-child {
  color: var(--cream-muted);
}

.fact-list span:last-child {
  color: var(--cream);
  text-align: right;
  font-weight: 600;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.25rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.use-grid li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-left: 1rem;
  position: relative;
}

.use-grid li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold);
}

@media (max-width: 560px) {
  .use-grid {
    grid-template-columns: 1fr;
  }
}

.note-box {
  margin-top: 1.75rem;
  padding: 1.15rem 1.25rem;
  border-left: 2px solid var(--gold);
  background: rgba(198, 164, 90, 0.05);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  list-style: none;
  padding: 0;
}

.amenity-grid li {
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  color: var(--cream-muted);
  font-size: 0.95rem;
}

@media (max-width: 560px) {
  .amenity-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Why King’s Landing ---------- */
.why-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--black-soft) 0%, var(--black) 50%, var(--black-soft) 100%);
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.why-atmosphere {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-atmosphere-glow {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(48rem, 90vw);
  height: 22rem;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(198, 164, 90, 0.09) 0%, transparent 68%);
}

.why-rail {
  position: absolute;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 164, 90, 0.28) 15%,
    rgba(198, 164, 90, 0.28) 85%,
    transparent
  );
}

.why-rail--top {
  top: clamp(1.25rem, 3vw, 2rem);
}

.why-rail--bottom {
  bottom: clamp(1.25rem, 3vw, 2rem);
}

.why-section > .container {
  position: relative;
  z-index: 1;
}

.why-header {
  max-width: 40rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.why-header .section-heading {
  font-size: clamp(2.05rem, 4.6vw, 3.1rem);
}

.why-header .section-lead {
  margin-bottom: 0;
}

.why-diagram {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  padding: clamp(1rem, 2.5vw, 1.4rem) 0 clamp(0.7rem, 2vw, 1rem);
  border-top: 1px solid rgba(198, 164, 90, 0.14);
  border-bottom: 1px solid rgba(198, 164, 90, 0.14);
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(198, 164, 90, 0.03),
    transparent 45%,
    rgba(198, 164, 90, 0.025)
  );
}

.why-diagram-svg {
  display: block;
  width: min(100%, 44rem);
  margin-inline: auto;
  height: auto;
  color: var(--gold);
}

.why-diagram-svg .why-line,
.why-diagram-svg .why-strong {
  stroke: rgba(198, 164, 90, 0.85);
  stroke-width: 1.45;
}

.why-diagram-svg .why-guide {
  stroke: rgba(198, 164, 90, 0.28);
  stroke-width: 1;
}

.why-diagram-svg .why-dash {
  stroke: rgba(198, 164, 90, 0.45);
  stroke-width: 1.1;
  stroke-dasharray: 8 7;
}

.why-diagram-svg .why-link {
  stroke: rgba(198, 164, 90, 0.4);
  stroke-width: 1;
}

.why-diagram-svg .why-soft {
  stroke: rgba(198, 164, 90, 0.22);
  stroke-width: 1;
  stroke-dasharray: 3 5;
}

.why-diagram-svg .why-node,
.why-diagram-svg .why-build,
.why-diagram-svg .why-bay,
.why-diagram-svg .why-window {
  stroke: rgba(198, 164, 90, 0.55);
  stroke-width: 1.15;
  fill: rgba(198, 164, 90, 0.035);
}

.why-diagram-svg .why-arch {
  stroke: rgba(211, 184, 122, 0.9);
  stroke-width: 1.35;
}

.why-diagram-svg .why-accent {
  stroke: var(--gold);
  stroke-width: 1.25;
}

.why-diagram-svg .why-accent-fill {
  fill: var(--gold);
  stroke: none;
}

.why-diagram-svg .why-tag {
  fill: rgba(198, 164, 90, 0.62);
  font-family: var(--font-body), sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why-diagram-svg .why-line,
.why-diagram-svg .why-strong,
.why-diagram-svg .why-guide,
.why-diagram-svg .why-link,
.why-diagram-svg .why-node,
.why-diagram-svg .why-build,
.why-diagram-svg .why-bay,
.why-diagram-svg .why-window,
.why-diagram-svg .why-arch,
.why-diagram-svg .why-accent {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}

.why-diagram.is-visible .why-line,
.why-diagram.is-visible .why-strong,
.why-diagram.is-visible .why-guide,
.why-diagram.is-visible .why-link,
.why-diagram.is-visible .why-node,
.why-diagram.is-visible .why-build,
.why-diagram.is-visible .why-bay,
.why-diagram.is-visible .why-window,
.why-diagram.is-visible .why-arch,
.why-diagram.is-visible .why-accent {
  animation: about-draw 1.45s var(--ease) forwards;
}

.why-diagram.is-visible .why-build,
.why-diagram.is-visible .why-bay,
.why-diagram.is-visible .why-arch {
  animation-delay: 0.2s;
}

.why-diagram.is-visible .why-window {
  animation-delay: 0.4s;
}

.why-diagram-caption {
  margin: 0.6rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.why-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(198, 164, 90, 0.2);
}

@media (max-width: 720px) {
  .why-pillars {
    grid-template-columns: 1fr;
  }
}

.why-pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: clamp(1.25rem, 3vw, 1.65rem) clamp(0.85rem, 2.5vw, 1.35rem);
  border-bottom: 1px solid rgba(198, 164, 90, 0.14);
}

.why-pillar:nth-child(odd) {
  border-right: 1px solid rgba(198, 164, 90, 0.14);
}

@media (max-width: 720px) {
  .why-pillar:nth-child(odd) {
    border-right: 0;
  }
}

.why-pillar-index {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--gold-muted);
  padding-top: 0.2rem;
}

.why-pillar-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.45rem);
  font-weight: 500;
  margin: 0 0 0.4rem;
  color: var(--cream);
  line-height: 1.25;
}

.why-pillar-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 28rem;
}

.why-diagram.reveal {
  transition-delay: 0.06s;
}

.why-pillar.reveal:nth-child(1) {
  transition-delay: 0.1s;
}
.why-pillar.reveal:nth-child(2) {
  transition-delay: 0.14s;
}
.why-pillar.reveal:nth-child(3) {
  transition-delay: 0.18s;
}
.why-pillar.reveal:nth-child(4) {
  transition-delay: 0.22s;
}
.why-pillar.reveal:nth-child(5) {
  transition-delay: 0.26s;
}
.why-pillar.reveal:nth-child(6) {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .why-diagram-svg .why-line,
  .why-diagram-svg .why-strong,
  .why-diagram-svg .why-guide,
  .why-diagram-svg .why-link,
  .why-diagram-svg .why-node,
  .why-diagram-svg .why-build,
  .why-diagram-svg .why-bay,
  .why-diagram-svg .why-window,
  .why-diagram-svg .why-arch,
  .why-diagram-svg .why-accent,
  .why-diagram.is-visible .why-line,
  .why-diagram.is-visible .why-strong,
  .why-diagram.is-visible .why-guide,
  .why-diagram.is-visible .why-link,
  .why-diagram.is-visible .why-node,
  .why-diagram.is-visible .why-build,
  .why-diagram.is-visible .why-bay,
  .why-diagram.is-visible .why-window,
  .why-diagram.is-visible .why-arch,
  .why-diagram.is-visible .why-accent {
    animation: none;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}

/* ---------- Location ---------- */
.location-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, transparent 16%),
    var(--charcoal);
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.location-atmosphere {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.location-atmosphere-glow {
  position: absolute;
  top: 20%;
  right: -6%;
  width: min(36rem, 70vw);
  height: min(36rem, 70vw);
  background: radial-gradient(circle, rgba(198, 164, 90, 0.09) 0%, transparent 68%);
}

.location-rail {
  position: absolute;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 164, 90, 0.28) 15%,
    rgba(198, 164, 90, 0.28) 85%,
    transparent
  );
}

.location-rail--top {
  top: clamp(1.25rem, 3vw, 2rem);
}

.location-rail--bottom {
  bottom: clamp(1.25rem, 3vw, 2rem);
}

.location-section > .container {
  position: relative;
  z-index: 1;
}

.location-header {
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.location-header .section-heading {
  font-size: clamp(2.05rem, 4.6vw, 3.1rem);
}

.location-header .section-lead {
  margin-bottom: 0;
}

.location-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 860px) {
  .location-stage {
    grid-template-columns: 1fr;
  }
}

.location-plaque-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.location-plaque {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0 0 1.5rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(198, 164, 90, 0.28);
  border-left: 2px solid var(--gold);
  background: rgba(198, 164, 90, 0.04);
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.55;
}

.location-plaque strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.location-facts {
  margin: 0 0 1.35rem;
  padding: 0;
  border-top: 1px solid rgba(198, 164, 90, 0.18);
}

.location-facts > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(198, 164, 90, 0.12);
}

.location-facts dt {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.location-facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  text-align: right;
}

.location-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.location-actions {
  margin-top: 1.35rem;
}

.location-map {
  position: relative;
  border: 1px solid rgba(198, 164, 90, 0.28);
  background:
    linear-gradient(180deg, rgba(198, 164, 90, 0.04), transparent 40%),
    var(--black-soft);
  overflow: hidden;
  min-height: 22rem;
}

.location-map-svg {
  display: block;
  width: 100%;
  height: auto;
  color: var(--gold);
  opacity: 0.95;
}

.location-map-svg .loc-frame {
  stroke: rgba(198, 164, 90, 0.55);
  stroke-width: 1.35;
}

.location-map-svg .loc-frame-inner {
  stroke: rgba(198, 164, 90, 0.28);
  stroke-width: 1;
}

.location-map-svg .loc-grid {
  stroke: rgba(198, 164, 90, 0.12);
  stroke-width: 0.9;
}

.location-map-svg .loc-contour {
  stroke: rgba(198, 164, 90, 0.28);
  stroke-width: 1.1;
}

.location-map-svg .loc-road {
  stroke: rgba(198, 164, 90, 0.75);
  stroke-width: 2;
}

.location-map-svg .loc-road-dash {
  stroke: rgba(10, 10, 10, 0.65);
  stroke-width: 1.1;
  stroke-dasharray: 7 6;
}

.location-map-svg .loc-pin {
  stroke: rgba(211, 184, 122, 0.95);
  stroke-width: 1.4;
  fill: rgba(198, 164, 90, 0.08);
}

.location-map-svg .loc-pin-core {
  stroke: rgba(198, 164, 90, 0.7);
  stroke-width: 1.2;
  fill: rgba(198, 164, 90, 0.12);
}

.location-map-svg .loc-pin-dot {
  fill: var(--gold);
  stroke: none;
}

.location-map-svg .loc-cross {
  stroke: rgba(198, 164, 90, 0.45);
  stroke-width: 1;
}

.location-map-svg .loc-compass {
  stroke: rgba(198, 164, 90, 0.45);
  stroke-width: 1.1;
}

.location-map-svg .loc-compass-n {
  fill: var(--gold);
  stroke: none;
}

.location-map-svg .loc-compass-label,
.location-map-svg .loc-label,
.location-map-svg .loc-label-soft {
  font-family: var(--font-body), sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-map-svg .loc-compass-label {
  fill: rgba(198, 164, 90, 0.7);
  font-size: 9px;
}

.location-map-svg .loc-label {
  fill: rgba(243, 234, 215, 0.88);
  font-size: 12px;
}

.location-map-svg .loc-label-soft {
  fill: rgba(198, 164, 90, 0.55);
  font-size: 9px;
}

.location-map-svg .loc-frame,
.location-map-svg .loc-frame-inner,
.location-map-svg .loc-grid,
.location-map-svg .loc-contour,
.location-map-svg .loc-road,
.location-map-svg .loc-pin,
.location-map-svg .loc-pin-core,
.location-map-svg .loc-cross,
.location-map-svg .loc-compass {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
}

.location-map.is-visible .loc-frame,
.location-map.is-visible .loc-frame-inner,
.location-map.is-visible .loc-grid,
.location-map.is-visible .loc-contour,
.location-map.is-visible .loc-road,
.location-map.is-visible .loc-pin,
.location-map.is-visible .loc-pin-core,
.location-map.is-visible .loc-cross,
.location-map.is-visible .loc-compass {
  animation: about-draw 1.55s var(--ease) forwards;
}

.location-map.is-visible .loc-contour,
.location-map.is-visible .loc-road {
  animation-delay: 0.18s;
}

.location-map.is-visible .loc-pin,
.location-map.is-visible .loc-pin-core,
.location-map.is-visible .loc-cross {
  animation-delay: 0.35s;
}

.location-map-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(198, 164, 90, 0.22);
  background: rgba(10, 10, 10, 0.78);
  text-align: center;
}

.location-map-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.location-map-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.location-details.reveal {
  transition-delay: 0.06s;
}

.location-map.reveal {
  transition-delay: 0.14s;
}

@media (prefers-reduced-motion: reduce) {
  .location-map-svg .loc-frame,
  .location-map-svg .loc-frame-inner,
  .location-map-svg .loc-grid,
  .location-map-svg .loc-contour,
  .location-map-svg .loc-road,
  .location-map-svg .loc-pin,
  .location-map-svg .loc-pin-core,
  .location-map-svg .loc-cross,
  .location-map-svg .loc-compass,
  .location-map.is-visible .loc-frame,
  .location-map.is-visible .loc-frame-inner,
  .location-map.is-visible .loc-grid,
  .location-map.is-visible .loc-contour,
  .location-map.is-visible .loc-road,
  .location-map.is-visible .loc-pin,
  .location-map.is-visible .loc-pin-core,
  .location-map.is-visible .loc-cross,
  .location-map.is-visible .loc-compass {
    animation: none;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}

/* ---------- Project progress ---------- */
.progress-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--black-soft) 0%, var(--black) 48%, var(--black-soft) 100%);
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.progress-atmosphere {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.progress-atmosphere-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  width: min(46rem, 90vw);
  height: 20rem;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(198, 164, 90, 0.08) 0%, transparent 68%);
}

.progress-rail {
  position: absolute;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 164, 90, 0.28) 15%,
    rgba(198, 164, 90, 0.28) 85%,
    transparent
  );
}

.progress-rail--top {
  top: clamp(1.25rem, 3vw, 2rem);
}

.progress-rail--bottom {
  bottom: clamp(1.25rem, 3vw, 2rem);
}

.progress-section > .container {
  position: relative;
  z-index: 1;
}

.progress-header {
  max-width: 40rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.progress-header .section-heading {
  font-size: clamp(2.05rem, 4.6vw, 3.1rem);
}

.progress-header .section-lead {
  margin-bottom: 0;
}

.progress-phases {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: clamp(1.1rem, 3vw, 1.5rem) 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  border-top: 1px solid rgba(198, 164, 90, 0.14);
  border-bottom: 1px solid rgba(198, 164, 90, 0.14);
  background: linear-gradient(
    180deg,
    rgba(198, 164, 90, 0.03),
    transparent 45%,
    rgba(198, 164, 90, 0.025)
  );
  position: relative;
}

.progress-phases::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: calc(50% + 0.15rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 164, 90, 0.45) 12%,
    rgba(198, 164, 90, 0.45) 88%,
    transparent
  );
  pointer-events: none;
}

.progress-phase {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  padding: 0.25rem 0.35rem;
}

.progress-phase-index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--gold-muted);
}

.progress-phase-mark {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  border: 1.5px solid rgba(224, 192, 120, 0.9);
  background: radial-gradient(circle at 35% 30%, #fff1c8, #c6a45a 55%, #6a5428);
  box-shadow: 0 0 12px rgba(198, 164, 90, 0.4);
}

.progress-phase-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.progress-timeline-caption {
  margin: 0 0 clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.progress-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.15rem);
}

.progress-shot {
  margin: 0;
  border-top: 1px solid rgba(198, 164, 90, 0.28);
  background: transparent;
  min-width: 0;
}

.progress-shot img,
.progress-shot .progress-ph {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  display: block;
  background:
    linear-gradient(180deg, rgba(198, 164, 90, 0.04), transparent 50%),
    var(--black-soft);
  border: 1px solid rgba(198, 164, 90, 0.16);
  border-top: 0;
}

.progress-ph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--gold);
  padding: 1rem;
}

.progress-ph svg {
  width: min(70%, 9rem);
  height: auto;
  opacity: 0.9;
}

.progress-ph .ph-frame {
  stroke: rgba(198, 164, 90, 0.55);
  stroke-width: 1.4;
}

.progress-ph .ph-accent {
  stroke: rgba(211, 184, 122, 0.9);
  stroke-width: 1.4;
}

.progress-ph .ph-guide {
  stroke: rgba(198, 164, 90, 0.35);
  stroke-width: 1;
}

.progress-ph .ph-soft {
  stroke: rgba(198, 164, 90, 0.28);
  stroke-width: 1;
}

.progress-ph-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.progress-shot figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: baseline;
  padding: 0.85rem 0.15rem 0.25rem;
  border-bottom: 1px solid rgba(198, 164, 90, 0.14);
}

.progress-shot-index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--gold-muted);
}

.progress-shot-title {
  font-size: 0.92rem;
  color: var(--cream-muted);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.progress-footnote {
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
}

.progress-phases.reveal {
  transition-delay: 0.06s;
}

.progress-timeline-caption.reveal {
  transition-delay: 0.1s;
}

.progress-shot.reveal:nth-child(1) {
  transition-delay: 0.12s;
}
.progress-shot.reveal:nth-child(2) {
  transition-delay: 0.16s;
}
.progress-shot.reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.progress-shot.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.progress-footnote.reveal {
  transition-delay: 0.28s;
}

/* Progress — tablet & mobile */
@media (max-width: 900px) {
  .progress-section {
    padding-top: clamp(3rem, 8vw, 4.5rem);
    padding-bottom: clamp(3rem, 8vw, 4.5rem);
  }

  .progress-rail {
    left: 4%;
    right: 4%;
  }

  .progress-header {
    margin-bottom: 1.35rem;
  }

  .progress-header .section-heading {
    font-size: clamp(1.85rem, 7vw, 2.6rem);
  }

  .progress-header .section-lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .progress-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .progress-ph {
    gap: 0.45rem;
    padding: 0.75rem;
  }

  .progress-ph svg {
    width: min(62%, 7rem);
  }

  .progress-ph-label {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .progress-shot figcaption {
    gap: 0.45rem;
    padding: 0.7rem 0.1rem 0.15rem;
  }

  .progress-shot-title {
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .progress-phases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    background: none;
  }

  .progress-phases::before {
    display: none;
  }

  .progress-phase {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    justify-items: start;
    gap: 0.65rem;
    text-align: left;
    padding: 0.85rem 0.15rem;
    border-bottom: 1px solid rgba(198, 164, 90, 0.14);
  }

  .progress-phase:nth-child(-n + 2) {
    border-top: 1px solid rgba(198, 164, 90, 0.14);
  }

  .progress-phase:nth-child(odd) {
    padding-right: 0.75rem;
    border-right: 1px solid rgba(198, 164, 90, 0.12);
  }

  .progress-phase:nth-child(even) {
    padding-left: 0.75rem;
  }

  .progress-phase-label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .progress-timeline-caption {
    letter-spacing: 0.12em;
    font-size: 0.68rem;
    line-height: 1.5;
    padding-inline: 0.25rem;
  }

  .progress-footnote {
    font-size: 0.88rem;
  }
}

@media (max-width: 420px) {
  .progress-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .progress-phases {
    grid-template-columns: 1fr;
  }

  .progress-phase,
  .progress-phase:nth-child(odd),
  .progress-phase:nth-child(even) {
    grid-template-columns: auto auto 1fr;
    border-right: 0;
    padding-left: 0.1rem;
    padding-right: 0.1rem;
  }

  .progress-phase:nth-child(-n + 2) {
    border-top: 0;
  }

  .progress-phase:first-child {
    border-top: 1px solid rgba(198, 164, 90, 0.14);
  }

  .progress-shot .progress-ph {
    aspect-ratio: 16 / 10;
  }

  .progress-ph-label {
    font-size: 0.68rem;
  }
}

/* Dedicated enquire page — form is the focus */
.page-enquire .site-header {
  background: rgba(8, 7, 6, 0.94);
  border-bottom-color: rgba(198, 164, 90, 0.18);
}

.enquire-page {
  padding-top: calc(var(--header-h-compact) + clamp(2rem, 5vw, 3rem));
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.enquire-page-shell {
  width: min(100% - 2 * var(--gutter), 40rem);
}

.enquire-page-intro {
  text-align: center;
  margin-bottom: 1.75rem;
}

.enquire-page-intro .eyebrow {
  margin-bottom: 0.65rem;
}

.enquire-page-intro .section-heading {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin-bottom: 0.85rem;
}

.enquire-page-intro .gold-rule {
  margin-inline: auto;
  margin-bottom: 0;
}

.enquire-form-panel {
  padding: clamp(1.35rem, 3.5vw, 2rem);
  border: 1px solid rgba(198, 164, 90, 0.28);
  background:
    linear-gradient(180deg, rgba(198, 164, 90, 0.04), transparent 28%),
    var(--charcoal);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.enquire-form-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.enquire-form-links a {
  color: var(--cream-muted);
  text-decoration: none;
}

.enquire-form-links a:hover {
  color: var(--gold-soft);
}

/* ---------- Homepage enquire CTA ---------- */
.enquire-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.95) 0%, var(--charcoal) 45%, rgba(10, 10, 10, 0.98) 100%);
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
  text-align: center;
}

.enquire-atmosphere {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.enquire-atmosphere-glow {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(42rem, 90vw);
  height: 18rem;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(198, 164, 90, 0.12) 0%, transparent 68%);
}

.enquire-rail {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 164, 90, 0.3) 18%,
    rgba(198, 164, 90, 0.3) 82%,
    transparent
  );
}

.enquire-rail--top {
  top: clamp(1.25rem, 3vw, 2rem);
}

.enquire-rail--bottom {
  bottom: clamp(1.25rem, 3vw, 2rem);
}

.enquire-frame {
  position: absolute;
  inset: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid rgba(198, 164, 90, 0.12);
}

.enquire-frame::before,
.enquire-frame::after {
  content: "";
  position: absolute;
  width: 1.75rem;
  height: 1.75rem;
  border-color: rgba(198, 164, 90, 0.45);
  border-style: solid;
}

.enquire-frame::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.enquire-frame::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}

.enquire-section > .container {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.enquire-cta-header {
  margin-bottom: 1.75rem;
}

.enquire-cta-header .section-heading {
  font-size: clamp(2.05rem, 5vw, 3.1rem);
}

.enquire-cta-header .intro-tagline {
  margin-inline: auto;
}

.enquire-cta-header .gold-rule {
  margin-inline: auto;
}

.enquire-cta-header .section-lead {
  margin-inline: auto;
  margin-bottom: 0;
}

.enquire-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.enquire-cta-primary {
  min-width: min(100%, 14rem);
}

.enquire-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(198, 164, 90, 0.18);
  border-bottom: 1px solid rgba(198, 164, 90, 0.18);
  text-align: left;
}

.enquire-path {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 1.15rem 1rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s var(--ease);
}

.enquire-path + .enquire-path {
  border-left: 1px solid rgba(198, 164, 90, 0.16);
}

.enquire-path:hover {
  text-decoration: none;
  background: rgba(198, 164, 90, 0.05);
}

.enquire-path-glyph {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
  border: 1px solid rgba(198, 164, 90, 0.28);
  background: rgba(198, 164, 90, 0.04);
}

.enquire-path-glyph svg {
  width: 1.3rem;
  height: 1.3rem;
}

.enquire-path-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.enquire-path-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.enquire-path-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.25;
}

.enquire-path-arrow {
  width: 1.2rem;
  height: 1px;
  background: var(--gold-line);
  position: relative;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}

.enquire-path-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.35rem;
  height: 0.35rem;
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.enquire-path:hover .enquire-path-arrow {
  width: 1.65rem;
  background: var(--gold);
}

.enquire-cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  margin: 1.35rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.enquire-cta-links a {
  color: var(--cream-muted);
  text-decoration: none;
}

.enquire-cta-links a:hover {
  color: var(--gold-soft);
}

@media (max-width: 700px) {
  .enquire-section {
    padding-top: clamp(3rem, 8vw, 4.5rem);
    padding-bottom: clamp(3rem, 8vw, 4.5rem);
  }

  .enquire-frame {
    inset: 1rem;
  }

  .enquire-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .enquire-cta-actions .btn {
    width: 100%;
  }

  .enquire-paths {
    grid-template-columns: 1fr;
  }

  .enquire-path + .enquire-path {
    border-left: 0;
    border-top: 1px solid rgba(198, 164, 90, 0.16);
  }

  .enquire-path {
    padding: 1rem 0.65rem;
  }

  .enquire-path-title {
    font-size: 1.1rem;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.25rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--cream-muted);
  margin-bottom: 0.4rem;
}

.field .req {
  color: var(--gold);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 0.85rem;
  font: inherit;
  color: var(--cream);
  background: var(--black);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  appearance: none;
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 1px var(--gold);
}

.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 11px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}

.checkbox-field {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.checkbox-field input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.checkbox-field label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-fineprint {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-status {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.form-status--loading {
  color: var(--cream-muted);
  border-color: var(--border-soft);
}

.form-status--success {
  color: var(--success);
  border-color: rgba(168, 201, 160, 0.35);
  background: rgba(168, 201, 160, 0.06);
}

.form-status--error {
  color: var(--danger);
  border-color: rgba(232, 160, 144, 0.35);
  background: rgba(232, 160, 144, 0.06);
}

.turnstile-setup-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.75rem;
  border: 1px dashed var(--border-soft);
}

#turnstile-widget {
  min-height: 1.5rem;
}

/* ---------- FAQ (local SEO) ---------- */
.faq-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, transparent 14%),
    var(--charcoal);
  padding-top: clamp(4rem, 9vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.faq-atmosphere {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.faq-atmosphere-glow {
  position: absolute;
  top: 12%;
  right: -10%;
  width: min(30rem, 65vw);
  height: min(30rem, 65vw);
  background: radial-gradient(circle, rgba(198, 164, 90, 0.07) 0%, transparent 68%);
}

.faq-rail {
  position: absolute;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 164, 90, 0.26) 15%,
    rgba(198, 164, 90, 0.26) 85%,
    transparent
  );
}

.faq-rail--top {
  top: clamp(1.25rem, 3vw, 2rem);
}

.faq-rail--bottom {
  bottom: clamp(1.25rem, 3vw, 2rem);
}

.faq-section > .container {
  position: relative;
  z-index: 1;
}

.faq-header {
  max-width: 40rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.faq-header .section-heading {
  font-size: clamp(2rem, 4.4vw, 3rem);
}

.faq-header .section-lead {
  margin-bottom: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 44rem;
  border-top: 1px solid rgba(198, 164, 90, 0.22);
}

.faq-item {
  border-bottom: 1px solid rgba(198, 164, 90, 0.18);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2rem 1.15rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.35;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0.15rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq-item p {
  margin: 0 0 1.2rem;
  max-width: 38rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-item a {
  color: var(--gold-soft);
}

@media (max-width: 820px) {
  .faq-section {
    padding-top: clamp(3rem, 8vw, 4.5rem);
    padding-bottom: clamp(3rem, 8vw, 4.5rem);
  }

  .faq-header .section-heading {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }
}

/* ---------- Contact ---------- */
.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, transparent 16%),
    var(--charcoal);
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.contact-atmosphere {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-atmosphere-glow {
  position: absolute;
  top: 18%;
  left: -8%;
  width: min(32rem, 70vw);
  height: min(32rem, 70vw);
  background: radial-gradient(circle, rgba(198, 164, 90, 0.08) 0%, transparent 68%);
}

.contact-rail {
  position: absolute;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 164, 90, 0.28) 15%,
    rgba(198, 164, 90, 0.28) 85%,
    transparent
  );
}

.contact-rail--top {
  top: clamp(1.25rem, 3vw, 2rem);
}

.contact-rail--bottom {
  bottom: clamp(1.25rem, 3vw, 2rem);
}

.contact-section > .container {
  position: relative;
  z-index: 1;
}

.contact-header {
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.contact-header .section-heading {
  font-size: clamp(2.05rem, 4.6vw, 3.1rem);
}

.contact-header .section-lead {
  margin-bottom: 0;
}

.contact-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.contact-plaque {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(198, 164, 90, 0.28);
  border-left: 2px solid var(--gold);
  background: rgba(198, 164, 90, 0.04);
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-plaque-label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-plaque strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(198, 164, 90, 0.2);
}

.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.1rem 1rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(198, 164, 90, 0.14);
  border-right: 1px solid rgba(198, 164, 90, 0.14);
  transition: background 0.3s var(--ease);
  min-height: 4.5rem;
}

.contact-channel:nth-child(2n) {
  border-right: 0;
}

.contact-channel:hover {
  text-decoration: none;
  background: rgba(198, 164, 90, 0.05);
}

.contact-channel-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-channel-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .contact-section {
    padding-top: clamp(3rem, 8vw, 4.5rem);
    padding-bottom: clamp(3rem, 8vw, 4.5rem);
  }

  .contact-stage {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-header .section-heading {
    font-size: clamp(1.85rem, 7vw, 2.6rem);
  }
}

@media (max-width: 560px) {
  .contact-channels {
    grid-template-columns: 1fr;
  }

  .contact-channel,
  .contact-channel:nth-child(2n) {
    border-right: 0;
    padding: 1rem 0.35rem;
    min-height: 3.75rem;
  }

  .contact-channel-value {
    font-size: 1.15rem;
  }

  .contact-plaque {
    padding: 1.1rem 1rem;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(198, 164, 90, 0.16);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 max(2rem, env(safe-area-inset-bottom, 0px));
  background:
    linear-gradient(180deg, rgba(198, 164, 90, 0.03), transparent 28%),
    var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.85rem;
  color: var(--cream);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  padding: 0.15rem 0;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(198, 164, 90, 0.14);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.footer-bottom a {
  color: var(--cream-muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold-soft);
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-col {
    padding-top: 0.25rem;
    border-top: 1px solid rgba(198, 164, 90, 0.1);
  }

  .footer-brand + .footer-col {
    border-top: 0;
  }

  .footer-col ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 1rem;
  }

  .footer-col li {
    margin-bottom: 0;
  }

  .footer-col a {
    padding: 0.4rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .footer-col ul {
    grid-template-columns: 1fr;
  }
}

/* Legal pages */
.legal-page {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.legal-page .section-heading {
  margin-bottom: 0.5rem;
}

.legal-content {
  max-width: 44rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
  color: var(--cream);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.legal-content ul {
  padding-left: 1.2rem;
}

/* 404 */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0 0 0.75rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .gold-line-anim {
    animation: none;
  }
}
