@font-face {
  font-family: "Belgravia Display";
  src: url("assets/fonts/belgravia-display.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Belgravia Sans";
  src: url("assets/fonts/belgravia-sans.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --stone: #e3e1dc;
  --paper: #f6f2ea;
  --ink: #121212;
  --moss: #374336;
  --gold: #a38a5e;
  --clay: #8b6f55;
  --muted: #6f6a62;
  --line: rgba(18, 18, 18, 0.14);
  --white-line: rgba(255, 255, 255, 0.16);
  --display: "Belgravia Display", Georgia, serif;
  --sans: "Belgravia Sans", Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--stone);
  font-family: var(--sans);
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 4vw, 64px);
  color: white;
  transition: background 300ms ease, padding 300ms ease, color 300ms ease;
  mix-blend-mode: difference;
}

.site-header.is-scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(18, 18, 18, 0.76);
  backdrop-filter: blur(18px);
  mix-blend-mode: normal;
}

.brand {
  display: block;
  width: clamp(132px, 12vw, 190px);
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.brand small,
.site-nav,
.section-kicker,
.hero-strip,
.intro-meta,
.video-feature span,
.video-tile span,
.plan-copy span,
.footer-content span,
.footer-content small {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 58px);
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
  transition: opacity 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 240ms ease, opacity 180ms ease;
  transform-origin: center;
}

.whatsapp-float {
  position: fixed;
  right: clamp(24px, 3vw, 42px);
  top: 50%;
  bottom: auto;
  z-index: 90;
  width: clamp(54px, 5vw, 70px);
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.24));
  animation: whatsapp-float 4.8s ease-in-out infinite;
  transition: transform 180ms ease, filter 180ms ease;
  transform: translateY(-50%);
}

.whatsapp-float:hover {
  transform: translateY(calc(-50% - 5px)) scale(1.035);
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.3));
}

@keyframes whatsapp-float {
  0%,
  100% {
    translate: 0 -3px;
  }
  50% {
    translate: 0 5px;
  }
}

.page-shell {
  position: relative;
  z-index: 10;
  background: var(--stone);
  box-shadow: 0 60px 110px rgba(0, 0, 0, 0.38);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.hero-media,
.lead-bg {
  position: absolute;
  inset: -8% 0 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(18, 18, 18, 0.02) 50%, rgba(18, 18, 18, 0.14)),
    rgba(0, 0, 0, 0.02);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  text-align: center;
  mix-blend-mode: normal;
  display: grid;
  justify-items: center;
  align-content: center;
}

.hero-logo {
  width: min(62vw, 760px);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.32));
}

.hero-location {
  margin: clamp(14px, 2vw, 24px) 0 0;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: clamp(0.82rem, 1.1vw, 1.12rem);
  font-weight: 300;
}

.hero-plaenge-logo {
  width: clamp(74px, 7vw, 108px);
  height: auto;
  margin-top: clamp(14px, 1.6vw, 20px);
  opacity: 0.84;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.hero-copy[data-hero-intro] .hero-logo,
.hero-copy[data-hero-intro] .hero-location,
.hero-copy[data-hero-intro] .hero-plaenge-logo {
  opacity: 0;
}

.hero-copy[data-hero-intro] .hero-logo {
  transform: translateY(18px) scale(0.985);
}

.hero-copy[data-hero-intro] .hero-location {
  clip-path: inset(0 100% 0 0);
}

.hero-copy[data-hero-intro] .hero-plaenge-logo {
  transform: translateY(24px);
}

.hero-copy.is-animated .hero-logo {
  animation: hero-logo-enter 1100ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-copy.is-animated .hero-location {
  animation: hero-location-write 1050ms 620ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-copy.is-animated .hero-plaenge-logo {
  animation: hero-plaenge-enter 900ms 1450ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes hero-logo-enter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-location-write {
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hero-plaenge-enter {
  to {
    opacity: 0.84;
    transform: translateY(0);
  }
}

.hero-boulevard {
  position: absolute;
  top: calc(50% + clamp(110px, 16vw, 210px));
  left: 50%;
  width: min(620px, 82vw);
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.55vw, 1.45rem);
  font-style: italic;
  line-height: 1.45;
  text-align: center;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-weight: 800;
}

.display-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.4rem, 14vw, 13rem);
  line-height: 0.9;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 300;
}

.hero-strip {
  position: absolute;
  left: clamp(20px, 4vw, 64px);
  right: clamp(20px, 4vw, 64px);
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--white-line);
  color: white;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.hero-strip span {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  border-right: 1px solid var(--white-line);
}

.section-grid,
.video-section,
.plans-section,
.gallery-section,
.visit-section {
  padding: clamp(84px, 12vw, 170px) clamp(20px, 6vw, 90px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(36px, 8vw, 120px);
  max-width: 1680px;
  margin: 0 auto;
}

.section-title,
.lead-copy h2,
.visit-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 6vw, 6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.intro-text {
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  line-height: 1.55;
  font-weight: 300;
  color: #37342f;
}

.intro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--moss);
  font-weight: 800;
}

.lead-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
}

.lead-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.86), rgba(18, 18, 18, 0.42));
}

.lead-content {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.lead-copy p:last-child {
  max-width: 560px;
  margin: 26px 0 0;
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  color: var(--ink);
  background: rgba(246, 242, 234, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--moss);
}

.contact-form input {
  width: 100%;
  border: 1px solid rgba(18, 18, 18, 0.18);
  border-radius: 0;
  padding: 15px 16px;
  background: white;
  color: var(--ink);
  outline: none;
}

.contact-form input:focus {
  border-color: var(--gold);
}

.contact-form button,
.visit-copy a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  border: 1px solid var(--ink);
  padding: 0 24px;
  color: white;
  background: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.78rem;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.contact-form button:hover,
.visit-copy a:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.contact-form p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.video-section {
  background: var(--ink);
  color: var(--stone);
}

.section-heading {
  max-width: 1080px;
  margin: 0 auto clamp(42px, 7vw, 90px);
  text-align: center;
}

.video-feature {
  position: relative;
  width: min(1180px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--white-line);
}

.video-feature video,
.video-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease, opacity 220ms ease;
}

.video-feature:hover video,
.video-tile:hover video {
  transform: scale(1.045);
  opacity: 0.9;
}

.video-feature > div {
  position: absolute;
  left: clamp(22px, 5vw, 70px);
  bottom: clamp(22px, 5vw, 60px);
  display: grid;
  gap: 12px;
}

.video-feature strong {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 5.3rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.video-grid {
  width: min(1180px, 100%);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.video-tile {
  position: relative;
  aspect-ratio: 9 / 12;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--white-line);
  color: white;
  background: #000;
}

.video-tile span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-weight: 800;
}

.video-tile em {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.video-tile:hover em {
  opacity: 1;
  transform: translateY(0);
}

.plans-section {
  background: var(--paper);
}

.plan-stack {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.plan-card {
  position: sticky;
  top: 96px;
  min-height: 72vh;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  margin-bottom: 34px;
  overflow: hidden;
  color: var(--stone);
  background: #1a1a1a;
  border: 1px solid var(--white-line);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.plan-card:nth-child(2) {
  top: 116px;
}

.plan-card:nth-child(3) {
  top: 136px;
}

.plan-card-featured {
  background: var(--moss);
}

.plan-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 70px);
}

.plan-copy span {
  color: rgba(227, 225, 220, 0.42);
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
}

.plan-copy h3 {
  margin: auto 0 20px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.plan-copy p {
  margin: 0;
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
}

.plan-card button {
  display: grid;
  place-items: center;
  min-height: 100%;
  border: 0;
  padding: clamp(22px, 5vw, 70px);
  background: #f8f4eb;
}

.plan-card img {
  width: 100%;
  max-height: 62vh;
  object-fit: contain;
}

.gallery-section {
  background: var(--stone);
  overflow: hidden;
}

.gallery-marquee {
  display: flex;
  gap: 18px;
  width: max-content;
  margin-bottom: 18px;
  animation: gallery-scroll 80s linear infinite;
}

.gallery-marquee:hover {
  animation-play-state: paused;
}

.gallery-marquee button,
.gallery-grid button {
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #111;
}

.gallery-marquee button {
  width: clamp(250px, 28vw, 470px);
  aspect-ratio: 4 / 3;
}

.gallery-grid {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid button {
  aspect-ratio: 1 / 1;
}

.gallery-marquee img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease, filter 200ms ease;
}

.gallery-marquee button:hover img,
.gallery-grid button:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.04);
}

@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  background: var(--paper);
}

.visit-image {
  min-height: 620px;
  overflow: hidden;
}

.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-copy {
  max-width: 700px;
}

.visit-copy p:not(.section-kicker) {
  margin: 28px 0 34px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.65;
  color: #38342f;
}

.site-footer {
  position: relative;
  min-height: 76svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: #080808;
}

.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.footer-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
}

.footer-logo {
  width: min(250px, 72vw);
  opacity: 0.9;
}

.footer-content p {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 1.2rem;
}

.footer-block {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.footer-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
  line-height: 1.7;
}

.footer-content a {
  color: var(--gold);
  font-size: clamp(2rem, 7vw, 5.4rem);
  font-weight: 300;
}

.footer-content small {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.8;
}

/* Footer redesign: architectural closing grid inspired by the design system. */
.site-footer {
  min-height: 72svh;
  background: #0c0c0b;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 12, 11, 0.94), rgba(12, 12, 11, 0.72) 44%, rgba(12, 12, 11, 0.9)),
    linear-gradient(180deg, rgba(12, 12, 11, 0.72), rgba(12, 12, 11, 0.97));
}

.footer-bg {
  opacity: 0.16;
  filter: grayscale(0.25) contrast(0.88);
}

.footer-content {
  width: min(calc(100vw - (var(--site-inline) * 2)), var(--site-max));
  max-width: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: end;
  justify-items: stretch;
  text-align: left;
  padding: clamp(88px, 11vh, 130px) 0 clamp(34px, 5vh, 58px);
}

.footer-brand-block {
  display: grid;
  align-content: end;
  gap: 18px;
  min-height: 300px;
}

.footer-eyebrow,
.footer-contact-block span,
.footer-meta span {
  margin: 0;
  color: rgba(227, 225, 220, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 800;
}

.footer-brand-block h2 {
  margin: 0;
  color: var(--stone);
  font-family: var(--display);
  font-size: clamp(4.2rem, 11vw, 11rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-brand-block > p:not(.footer-eyebrow) {
  margin: -8px 0 18px;
  color: rgba(227, 225, 220, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.86rem;
  font-weight: 800;
}

.footer-logo {
  width: min(176px, 52vw);
  opacity: 0.74;
}

.footer-contact-block {
  display: grid;
  justify-items: start;
  gap: 22px;
  padding-bottom: 18px;
}

.footer-phone {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.2vw, 6rem);
  line-height: 0.98;
  font-weight: 400;
  transition: color 180ms ease;
}

.footer-phone:hover {
  color: var(--stone);
}

.footer-action {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid rgba(227, 225, 220, 0.42);
  color: rgba(227, 225, 220, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.footer-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding-top: clamp(28px, 5vh, 56px);
  border-top: 1px solid rgba(227, 225, 220, 0.14);
}

.footer-meta p {
  margin: 0;
  color: rgba(227, 225, 220, 0.68);
  font-weight: 300;
  line-height: 1.65;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
}

.footer-meta small {
  justify-self: end;
  max-width: 460px;
  color: rgba(227, 225, 220, 0.42);
  text-align: right;
  line-height: 1.7;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.94);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img,
.lightbox video {
  display: none;
  max-width: min(94vw, 1500px);
  max-height: 86svh;
  background: black;
  border: 1px solid rgba(163, 138, 94, 0.72);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox img.is-active,
.lightbox video.is-active {
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font-size: 2rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-copy[data-hero-intro] .hero-logo,
  .hero-copy[data-hero-intro] .hero-location,
  .hero-copy[data-hero-intro] .hero-plaenge-logo {
    opacity: 1;
    transform: none;
    clip-path: none;
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 20px;
    display: grid;
    min-width: 220px;
    padding: 22px;
    color: white;
    background: rgba(18, 18, 18, 0.92);
    border: 1px solid var(--white-line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-strip,
  .section-grid,
  .lead-content,
  .visit-section,
  .plan-card {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 40px);
    margin: -98px auto 0;
    z-index: 3;
  }

  .lead-section {
    padding: 120px 0;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-tile {
    aspect-ratio: 16 / 10;
  }

  .plan-card,
  .plan-card:nth-child(2),
  .plan-card:nth-child(3) {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-image {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px 16px;
  }

  .display-title {
    font-size: clamp(3.6rem, 22vw, 5.4rem);
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -132px;
  }

  .hero-strip span {
    min-height: 56px;
    font-size: 0.62rem;
  }

  .section-grid,
  .video-section,
  .plans-section,
  .gallery-section,
  .visit-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .lead-content {
    width: calc(100% - 32px);
  }

  .contact-form {
    padding: 22px;
  }

  .gallery-grid {
    gap: 10px;
  }
}

/* Refinement pass: proportion, alignment, and calmer luxury rhythm. */
:root {
  --content: 1180px;
  --wide: 1360px;
  --section-y: clamp(88px, 10vw, 136px);
  --edge: clamp(22px, 5vw, 72px);
  --hairline: rgba(18, 18, 18, 0.1);
}

body {
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

.noise-overlay {
  opacity: 0.028;
}

.site-header {
  padding: 24px var(--edge);
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(15, 15, 14, 0.82);
}

.brand span {
  font-size: clamp(1rem, 1.4vw, 1.28rem);
}

.brand small,
.site-nav,
.section-kicker,
.hero-strip,
.intro-meta,
.video-feature span,
.video-tile span,
.plan-copy span,
.footer-content span,
.footer-content small {
  letter-spacing: 0.11em;
  font-size: 0.68rem;
}

.site-nav {
  gap: clamp(18px, 3vw, 42px);
}

.page-shell {
  box-shadow: none;
}

.hero {
  min-height: 94svh;
  align-items: flex-end;
  padding: 0 var(--edge) clamp(104px, 13vh, 142px);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(18, 18, 18, 0.1) 42%, rgba(18, 18, 18, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.04) 52%, rgba(0, 0, 0, 0.18));
}

.hero-copy {
  width: min(var(--wide), 100%);
  text-align: left;
  mix-blend-mode: normal;
}

.eyebrow,
.section-kicker {
  margin-bottom: 18px;
}

.display-title {
  font-size: clamp(4.2rem, 10vw, 9rem);
  line-height: 0.96;
  font-weight: 700;
}

.hero-subtitle {
  max-width: 520px;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.hero-strip {
  left: var(--edge);
  right: var(--edge);
  bottom: 28px;
  width: min(var(--wide), calc(100% - (var(--edge) * 2)));
  margin: 0 auto;
  background: rgba(14, 14, 13, 0.5);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-strip span {
  min-height: 54px;
  padding: 10px 14px;
}

.section-grid,
.video-section,
.plans-section,
.gallery-section,
.visit-section {
  padding: var(--section-y) var(--edge);
}

.section-grid {
  max-width: var(--content);
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(44px, 7vw, 92px);
}

.section-title,
.lead-copy h2,
.visit-copy h2 {
  font-size: clamp(2.15rem, 4.8vw, 4.8rem);
  line-height: 1.07;
}

.intro-text {
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.72;
  color: #403c36;
}

.intro-meta {
  margin-top: 32px;
  padding-top: 24px;
}

.lead-section {
  min-height: 88svh;
  padding: var(--section-y) var(--edge);
}

.lead-content {
  width: min(var(--content), 100%);
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 420px);
  gap: clamp(42px, 7vw, 86px);
}

.lead-copy p:last-child {
  max-width: 500px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.contact-form {
  gap: 14px;
  padding: clamp(24px, 3.2vw, 34px);
  background: rgba(248, 244, 235, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.contact-form input {
  padding: 13px 14px;
}

.contact-form button,
.visit-copy a {
  min-height: 50px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(36px, 6vw, 68px);
}

.video-feature,
.video-grid {
  width: min(var(--content), 100%);
}

.video-feature {
  aspect-ratio: 16 / 8.6;
  border-color: rgba(255, 255, 255, 0.13);
}

.video-feature > div {
  left: clamp(24px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 46px);
}

.video-feature strong {
  font-size: clamp(1.85rem, 3.8vw, 4rem);
  line-height: 1.02;
}

.video-grid {
  margin-top: 14px;
  gap: 14px;
}

.video-tile {
  aspect-ratio: 4 / 5;
}

.plans-section {
  background: #f2eee5;
}

.plan-stack {
  width: min(var(--content), 100%);
}

.plan-card {
  top: 86px;
  min-height: 560px;
  grid-template-columns: 0.48fr 0.52fr;
  margin-bottom: 22px;
  color: var(--ink);
  background: #fbf8f0;
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 44px rgba(34, 29, 22, 0.1);
  opacity: 1;
  isolation: isolate;
}

.plan-card:nth-child(1) {
  z-index: 1;
}

.plan-card:nth-child(2) {
  top: 104px;
  z-index: 2;
}

.plan-card:nth-child(3) {
  top: 122px;
  z-index: 3;
}

.plan-card-featured {
  background: #e8e3d8;
}

.plan-copy {
  padding: clamp(28px, 4.4vw, 54px);
  border-right: 1px solid var(--hairline);
}

.plan-copy span {
  color: rgba(18, 18, 18, 0.22);
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
}

.plan-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3.4vw, 3.5rem);
  line-height: 1.08;
}

.plan-copy p {
  color: var(--clay);
  font-size: clamp(1.7rem, 3.6vw, 3.2rem);
}

.plan-card button {
  padding: clamp(24px, 4.2vw, 54px);
  background: #fbf8f0;
  opacity: 1;
}

.plan-card img {
  max-height: 470px;
}

.gallery-marquee {
  gap: 12px;
  margin-bottom: 12px;
}

.gallery-marquee button {
  width: clamp(220px, 24vw, 380px);
  aspect-ratio: 1.28 / 1;
}

.gallery-grid {
  width: min(var(--wide), 100%);
  gap: 12px;
}

.visit-section {
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 0.9fr);
  gap: clamp(42px, 7vw, 88px);
}

.visit-image {
  min-height: 520px;
}

.visit-copy {
  max-width: 580px;
}

.visit-copy p:not(.section-kicker) {
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.7;
}

.site-footer {
  min-height: 68svh;
}

.footer-content {
  width: min(760px, calc(100% - 40px));
  gap: 24px;
}

.footer-logo {
  width: min(210px, 64vw);
}

.footer-content a {
  font-size: clamp(1.65rem, 4.6vw, 3.8rem);
}

@media (max-width: 980px) {
  .hero {
    min-height: 92svh;
    padding-bottom: 142px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-strip {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 22px;
    width: auto;
    margin: 0;
  }

  .lead-content,
  .section-grid,
  .visit-section,
  .plan-card {
    grid-template-columns: 1fr;
  }

  .plan-card,
  .plan-card:nth-child(2),
  .plan-card:nth-child(3) {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .plan-copy {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }
}

@media (max-width: 640px) {
  :root {
    --edge: 18px;
    --section-y: 74px;
  }

  .display-title {
    font-size: clamp(3.55rem, 18vw, 5.1rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-strip {
    grid-template-columns: 1fr 1fr;
    bottom: 18px;
  }

  .hero-strip span {
    min-height: 48px;
    font-size: 0.58rem;
  }

  .section-title,
  .lead-copy h2,
  .visit-copy h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .video-feature {
    aspect-ratio: 4 / 5;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Fold alignment system: every major composition sits on a centered optical axis. */
.intro.section-grid,
.lead-section,
.video-section,
.gallery-section,
.visit-section {
  min-height: 100svh;
  align-content: center;
}

.intro.section-grid {
  align-items: center;
  padding-top: clamp(76px, 9vh, 112px);
  padding-bottom: clamp(76px, 9vh, 112px);
}

.lead-section,
.video-section,
.gallery-section {
  padding-top: clamp(76px, 9vh, 112px);
  padding-bottom: clamp(76px, 9vh, 112px);
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.section-heading .section-kicker {
  margin-bottom: 0;
}

.section-title,
.lead-copy h2,
.visit-copy h2 {
  max-width: 780px;
  font-size: clamp(2rem, 3.8vw, 4.05rem);
  line-height: 1.08;
}

.lead-content {
  align-items: center;
}

.video-section {
  display: grid;
}

.video-feature {
  max-height: 58vh;
}

.gallery-section {
  display: grid;
  min-height: auto;
}

.gallery-section .gallery-marquee,
.gallery-section .gallery-grid {
  opacity: 1;
  transform: none;
}

.gallery-grid:empty,
.gallery-marquee:empty {
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(18, 18, 18, 0.04), rgba(18, 18, 18, 0.01)),
    rgba(246, 242, 234, 0.5);
  border: 1px solid var(--hairline);
}

.visit-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(360px, 560px);
  justify-content: center;
  align-items: center;
  gap: clamp(58px, 7vw, 106px);
  padding-top: clamp(72px, 8vh, 104px);
  padding-bottom: clamp(72px, 8vh, 104px);
}

.visit-image {
  width: 100%;
  min-height: 0;
  height: clamp(330px, 43vh, 480px);
}

.visit-image img {
  height: 100%;
}

.visit-copy {
  display: grid;
  align-content: center;
  max-width: 560px;
  min-height: clamp(330px, 43vh, 480px);
}

.visit-copy .section-kicker {
  margin-bottom: clamp(18px, 2.4vh, 28px);
}

.visit-copy h2 {
  max-width: 560px;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  line-height: 1.05;
}

.visit-copy p:not(.section-kicker) {
  margin: clamp(22px, 3vh, 30px) 0 clamp(28px, 4vh, 42px);
  max-width: 520px;
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  line-height: 1.62;
}

.visit-copy a {
  width: max-content;
  min-width: 236px;
}

.plans-section {
  padding-top: clamp(86px, 10vh, 128px);
  padding-bottom: clamp(86px, 10vh, 128px);
}

@media (max-width: 980px) {
  .intro.section-grid,
  .lead-section,
  .video-section,
  .gallery-section,
  .visit-section {
    min-height: auto;
  }

  .visit-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .visit-image,
  .visit-copy {
    height: auto;
    min-height: 0;
  }

  .visit-image {
    aspect-ratio: 1.32 / 1;
  }
}

@media (max-width: 640px) {
  .section-title,
  .lead-copy h2,
  .visit-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .visit-copy a {
    width: 100%;
  }
}

/* Global alignment grid: one horizontal ruler for the whole landing. */
:root {
  --site-max: 1720px;
  --site-gutter: clamp(24px, 5.5vw, 112px);
  --site-inline: max(var(--site-gutter), calc((100vw - var(--site-max)) / 2));
}

.site-header {
  padding-left: var(--site-inline);
  padding-right: var(--site-inline);
}

.hero {
  padding-left: var(--site-inline);
  padding-right: var(--site-inline);
}

.hero-copy,
.hero-strip,
.section-grid,
.lead-content,
.section-heading,
.video-feature,
.video-grid,
.plan-stack,
.gallery-grid,
.visit-section {
  width: min(calc(100vw - (var(--site-inline) * 2)), var(--site-max));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy {
  width: min(calc(100vw - (var(--site-inline) * 2)), var(--site-max));
}

.hero-strip {
  left: var(--site-inline);
  right: var(--site-inline);
  width: auto;
}

.section-grid,
.lead-section,
.video-section,
.plans-section,
.gallery-section,
.visit-section {
  padding-left: var(--site-inline);
  padding-right: var(--site-inline);
}

.section-grid {
  padding-left: 0;
  padding-right: 0;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
  justify-content: center;
}

.intro.section-grid {
  width: min(calc(100vw - (var(--site-inline) * 2)), var(--site-max));
}

.intro .section-title {
  max-width: 760px;
}

.intro-text {
  max-width: 620px;
  justify-self: end;
}

.lead-content {
  grid-template-columns: minmax(0, 0.58fr) minmax(340px, 420px);
}

.section-heading {
  width: min(calc(100vw - (var(--site-inline) * 2)), var(--site-max));
}

.section-heading .section-title {
  max-width: 920px;
}

.video-feature,
.video-grid,
.plan-stack,
.gallery-grid {
  width: min(calc(100vw - (var(--site-inline) * 2)), var(--site-max));
}

.visit-section {
  box-sizing: border-box;
  grid-template-columns: minmax(420px, 0.52fr) minmax(360px, 0.38fr);
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.visit-copy {
  justify-self: end;
}

@media (max-width: 980px) {
  :root {
    --site-gutter: clamp(20px, 5vw, 42px);
  }

  .section-grid,
  .lead-content,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .intro-text,
  .visit-copy {
    justify-self: start;
    max-width: 720px;
  }

  .hero-strip {
    left: var(--site-inline);
    right: var(--site-inline);
  }
}

@media (max-width: 640px) {
  :root {
    --site-gutter: 18px;
  }
}

@media (max-width: 760px) {
  .hero-logo {
    width: min(78vw, 520px);
  }

  .hero-location {
    letter-spacing: 0.18em;
  }

  .hero-boulevard {
    top: calc(50% + 92px);
    font-size: 0.98rem;
  }
}

@media (max-width: 980px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 78px;
  }

  .footer-brand-block {
    min-height: 0;
  }

  .footer-contact-block {
    padding-bottom: 0;
  }

  .footer-meta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-meta small {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .footer-brand-block h2 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .footer-phone {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }
}

/* Spacing normalization: tighter, consistent rhythm between and inside folds. */
:root {
  --section-y: clamp(58px, 6.2vw, 92px);
  --fold-y: clamp(64px, 7vw, 104px);
  --section-gap: clamp(30px, 4vw, 56px);
}

.section-grid,
.video-section,
.plans-section,
.gallery-section,
.visit-section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.intro.section-grid,
.lead-section,
.video-section,
.gallery-section,
.visit-section {
  min-height: auto;
  align-content: center;
}

.intro.section-grid {
  padding-top: var(--fold-y);
  padding-bottom: var(--fold-y);
  gap: clamp(36px, 5vw, 72px);
}

.lead-section {
  min-height: 76svh;
  padding-top: var(--fold-y);
  padding-bottom: var(--fold-y);
}

.lead-content {
  gap: clamp(34px, 5vw, 72px);
}

.section-heading {
  margin-bottom: var(--section-gap);
}

.video-feature {
  max-height: 54vh;
}

.video-grid {
  margin-top: 12px;
}

.plans-section {
  padding-top: var(--fold-y);
  padding-bottom: var(--fold-y);
}

.plan-card {
  min-height: clamp(460px, 58vh, 540px);
  margin-bottom: 18px;
}

.gallery-marquee {
  margin-bottom: 10px;
}

.visit-section {
  min-height: auto;
  gap: clamp(48px, 6vw, 96px);
  padding-top: var(--fold-y);
  padding-bottom: var(--fold-y);
}

.visit-image,
.visit-copy {
  height: clamp(320px, 42vh, 460px);
  min-height: 0;
}

.visit-image {
  overflow: hidden;
  background: #111;
}

.visit-copy {
  justify-self: start;
  padding: clamp(10px, 1.2vw, 18px) 0;
}

.visit-copy h2 {
  max-width: 620px;
  font-size: clamp(2.15rem, 3.5vw, 3.8rem);
}

.visit-copy p:not(.section-kicker) {
  max-width: 540px;
  margin-top: clamp(18px, 2vw, 26px);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.visit-copy a {
  min-width: 220px;
}

.site-footer {
  min-height: auto;
}

.footer-content {
  padding-top: clamp(68px, 8vw, 104px);
  padding-bottom: clamp(34px, 4.8vw, 56px);
  gap: clamp(38px, 6vw, 100px);
}

@media (max-width: 980px) {
  :root {
    --section-y: clamp(52px, 8vw, 74px);
    --fold-y: clamp(58px, 9vw, 82px);
  }

  .lead-section {
    min-height: auto;
  }

  .visit-image,
  .visit-copy {
    height: auto;
  }
}

/* Gallery refinement: slower motion and no oversized empty tail. */
.gallery-section {
  display: block;
  min-height: 0;
  padding-top: clamp(48px, 5.2vw, 76px);
  padding-bottom: clamp(34px, 4vw, 56px);
}

.gallery-section .section-heading {
  margin-bottom: clamp(26px, 3vw, 42px);
}

.gallery-marquee {
  gap: clamp(10px, 1.2vw, 16px);
  margin-bottom: 0;
  animation-duration: 170s;
}

.gallery-marquee button {
  width: clamp(420px, 42vw, 780px);
  aspect-ratio: 1600 / 816;
}

.gallery-grid {
  display: none;
}

.gallery-grid:empty,
.gallery-marquee:empty {
  min-height: 0;
  border: 0;
  background: transparent;
}

/* Refined top navigation. */
.site-header {
  padding-top: clamp(20px, 2.4vw, 34px);
  padding-bottom: clamp(20px, 2.4vw, 34px);
  color: white;
  mix-blend-mode: normal;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(12, 12, 11, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header .brand {
  width: clamp(118px, 10vw, 168px);
}

.site-nav {
  gap: clamp(22px, 3.6vw, 52px);
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  opacity: 1;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 800;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: white;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 980px) {
  .site-header .brand {
    width: 136px;
  }
}

/* Premium Belgravia editorial fold. */
.signature-section {
  width: min(calc(100vw - (var(--site-inline) * 2)), var(--site-max));
  margin: 0 auto;
  padding: clamp(64px, 7vw, 104px) 0;
  display: grid;
  grid-template-columns: minmax(420px, 0.56fr) minmax(360px, 0.44fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.signature-media {
  position: relative;
  min-height: clamp(460px, 58vw, 720px);
  overflow: hidden;
  background: #171513;
}

.signature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.signature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.signature-content {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
  align-content: center;
}

.signature-logo {
  width: min(100%, 560px);
  height: auto;
}

.signature-copy {
  max-width: 620px;
  padding-top: clamp(14px, 2vw, 24px);
  border-top: 1px solid var(--hairline);
}

.signature-copy h2 {
  margin: 0 0 18px;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 800;
}

.signature-copy p {
  margin: 0;
  color: #3c3833;
  font-size: clamp(1rem, 1.26vw, 1.16rem);
  line-height: 1.76;
  font-weight: 300;
}

.signature-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(8px, 1.4vw, 20px);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.signature-specs article {
  min-height: 118px;
  display: grid;
  align-content: end;
  gap: 9px;
  padding: clamp(20px, 2.4vw, 30px);
  background: rgba(246, 242, 234, 0.36);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.signature-specs strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.3vw, 2.45rem);
  line-height: 1;
  font-weight: 400;
}

.signature-specs span {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

@media (max-width: 980px) {
  .signature-section {
    grid-template-columns: 1fr;
  }

  .signature-media {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .signature-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .signature-specs {
    grid-template-columns: 1fr;
  }
}

/* True final footer reset. Keep this block after every legacy footer rule. */
.site-footer {
  position: relative;
  min-height: 0;
  padding: 0 var(--site-inline);
  background: #e7e2d8;
  color: #413c36;
  overflow: hidden;
}

.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer::before,
.site-footer .footer-bg {
  display: none !important;
  content: none !important;
}

.site-footer .footer-content {
  width: min(100%, var(--site-max));
  margin: 0 auto;
  padding: clamp(34px, 4.5vw, 54px) 0 26px;
  display: grid;
  gap: clamp(24px, 3vw, 34px);
  text-align: left;
}

.site-footer .footer-main {
  display: block;
  max-width: 360px;
}

.site-footer .footer-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px clamp(24px, 3.2vw, 46px);
  padding-top: clamp(14px, 2vw, 22px);
  align-items: start;
}

.site-footer .footer-brand-block {
  max-width: 360px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.site-footer .footer-belgravia-logo {
  width: clamp(152px, 13vw, 228px);
  height: auto;
  display: block;
  filter: invert(1);
  opacity: 0.68;
}

.site-footer .footer-brand-block p {
  max-width: 340px;
  margin: 0;
  color: rgba(20, 18, 16, 0.56);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-footer .footer-nav a {
  color: rgba(20, 18, 16, 0.5);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-footer .footer-nav a:hover {
  color: var(--clay);
}

.site-footer .footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 18, 16, 0.1);
}

.site-footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 20px;
  align-items: center;
  color: rgba(20, 18, 16, 0.45);
  font-family: var(--sans);
  font-size: 0.69rem;
  line-height: 1.5;
}

.site-footer .footer-legal span,
.site-footer .footer-legal small {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: 0.01em;
  text-transform: none;
}

.site-footer .footer-criar-logo {
  width: clamp(96px, 8vw, 136px);
  height: auto;
  display: block;
  filter: invert(1) grayscale(1);
  opacity: 0.36;
}

.site-footer .footer-criar-link {
  display: block;
  width: fit-content;
  justify-self: end;
  line-height: 0;
  text-decoration: none;
}

.site-footer .footer-criar-link:hover .footer-criar-logo {
  opacity: 0.54;
}

@media (max-width: 980px) {
  .site-footer .footer-main,
  .site-footer .footer-bottom {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-nav {
    justify-content: flex-start;
    padding-top: 0;
  }

  .site-footer .footer-criar-link {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-content {
    padding: 32px 0 24px;
  }

  .site-footer .footer-main {
    gap: 26px;
  }

  .site-footer .footer-nav {
    gap: 14px 20px;
  }

  .site-footer .footer-bottom {
    gap: 18px;
  }

  .site-footer .footer-legal {
    display: grid;
    gap: 5px;
  }
}

/* Absolute final footer reset: this must stay at the end of the file. */
.site-footer {
  position: relative;
  min-height: 0;
  padding: 0 var(--site-inline);
  background: #e7e2d8;
  color: #413c36;
  overflow: hidden;
}

.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer::before,
.site-footer .footer-bg {
  display: none !important;
  content: none !important;
}

.site-footer .footer-content {
  width: min(100%, var(--site-max));
  margin: 0 auto;
  padding: clamp(34px, 4.5vw, 54px) 0 26px;
  display: grid;
  gap: clamp(24px, 3vw, 34px);
  text-align: left;
}

.site-footer .footer-main {
  display: block;
  max-width: 360px;
}

.site-footer .footer-brand-block {
  max-width: 360px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.site-footer .footer-belgravia-logo {
  width: clamp(152px, 13vw, 228px);
  height: auto;
  display: block;
  filter: invert(1);
  opacity: 0.68;
}

.site-footer .footer-brand-block p {
  max-width: 340px;
  margin: 0;
  color: rgba(20, 18, 16, 0.56);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-footer .footer-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px clamp(24px, 3.2vw, 46px);
  padding-top: clamp(14px, 2vw, 22px);
}

.site-footer .footer-nav a {
  color: rgba(20, 18, 16, 0.5);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-footer .footer-nav a:hover {
  color: var(--clay);
}

.site-footer .footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 18, 16, 0.1);
}

.site-footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 20px;
  align-items: center;
  color: rgba(20, 18, 16, 0.45);
  font-family: var(--sans);
  font-size: 0.69rem;
  line-height: 1.5;
}

.site-footer .footer-legal span,
.site-footer .footer-legal small {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: 0.01em;
  text-transform: none;
}

.site-footer .footer-criar-logo {
  width: clamp(96px, 8vw, 136px);
  height: auto;
  display: block;
  filter: invert(1) grayscale(1);
  opacity: 0.36;
}

@media (max-width: 980px) {
  .site-footer .footer-bottom {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-nav {
    justify-content: flex-start;
    padding-top: 12px;
  }

  .site-footer .footer-criar-logo {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-content {
    padding: 32px 0 24px;
  }

  .site-footer .footer-main {
    gap: 26px;
  }

  .site-footer .footer-nav {
    gap: 14px 20px;
  }

  .site-footer .footer-bottom {
    gap: 18px;
  }

  .site-footer .footer-legal {
    display: grid;
    gap: 5px;
  }
}

/* Final footer reset: compact, aligned and protected from old footer styles. */
.site-footer {
  position: relative;
  min-height: 0;
  padding: 0 var(--site-inline);
  background: #e7e2d8;
  color: #413c36;
  overflow: hidden;
}

.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer::before,
.site-footer .footer-bg {
  display: none !important;
  content: none !important;
}

.site-footer .footer-content {
  width: min(100%, var(--site-max));
  margin: 0 auto;
  padding: clamp(34px, 4.5vw, 54px) 0 26px;
  display: grid;
  gap: clamp(24px, 3vw, 34px);
  text-align: left;
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: clamp(52px, 9vw, 150px);
  align-items: start;
}

.site-footer .footer-brand-block {
  max-width: 360px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.site-footer .footer-belgravia-logo {
  width: clamp(152px, 13vw, 228px);
  height: auto;
  display: block;
  filter: invert(1);
  opacity: 0.68;
}

.site-footer .footer-brand-block p {
  max-width: 340px;
  margin: 0;
  color: rgba(20, 18, 16, 0.56);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-footer .footer-nav {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px clamp(24px, 3.4vw, 48px);
  padding-top: 7px;
}

.site-footer .footer-nav a {
  color: rgba(20, 18, 16, 0.5);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-footer .footer-nav a:hover {
  color: var(--clay);
}

.site-footer .footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 18, 16, 0.1);
}

.site-footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 20px;
  align-items: center;
  color: rgba(20, 18, 16, 0.45);
  font-family: var(--sans);
  font-size: 0.69rem;
  line-height: 1.5;
}

.site-footer .footer-legal span,
.site-footer .footer-legal small {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: 0.01em;
  text-transform: none;
}

.site-footer .footer-criar-logo {
  width: clamp(96px, 8vw, 136px);
  height: auto;
  display: block;
  filter: invert(1) grayscale(1);
  opacity: 0.36;
}

@media (max-width: 980px) {
  .site-footer .footer-main,
  .site-footer .footer-bottom {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-nav {
    justify-content: flex-start;
    padding-top: 0;
  }

  .site-footer .footer-criar-logo {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-content {
    padding: 32px 0 24px;
  }

  .site-footer .footer-main {
    gap: 26px;
  }

  .site-footer .footer-nav {
    gap: 14px 20px;
  }

  .site-footer .footer-bottom {
    gap: 18px;
  }

  .site-footer .footer-legal {
    display: grid;
    gap: 5px;
  }
}

/* Dual curated gallery: decorado + diferenciais. */
.gallery-section {
  display: block;
  width: auto;
  min-height: 0;
  padding-top: clamp(58px, 6vw, 92px);
  padding-bottom: clamp(58px, 6vw, 92px);
  background: var(--stone);
  overflow: hidden;
}

.gallery-section .section-heading {
  width: min(calc(100vw - (var(--site-inline) * 2)), var(--site-max));
  margin: 0 auto clamp(34px, 4vw, 58px);
}

.gallery-duo {
  width: min(calc(100vw - (var(--site-inline) * 2)), var(--site-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

.gallery-panel {
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 18px;
  padding: clamp(20px, 2.5vw, 34px);
  border: 1px solid var(--hairline);
  background: rgba(246, 242, 234, 0.5);
}

.gallery-panel-copy {
  display: grid;
  gap: 10px;
  min-height: 118px;
  align-content: start;
}

.gallery-panel-copy span {
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
}

.gallery-panel-copy h3 {
  max-width: 620px;
  margin: 0;
  color: #36322d;
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  line-height: 1.5;
  font-weight: 300;
}

.gallery-stage {
  width: 100%;
  aspect-ratio: 1600 / 1000;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #171513;
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease, filter 220ms ease;
}

.gallery-stage:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.gallery-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.gallery-controls button {
  border: 0;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.18);
  color: rgba(18, 18, 18, 0.58);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  font-weight: 800;
}

.gallery-controls button:first-child {
  justify-self: start;
}

.gallery-controls button:last-child {
  justify-self: end;
}

.gallery-controls span {
  color: rgba(18, 18, 18, 0.48);
  font-family: var(--display);
  font-size: 1rem;
}

.gallery-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(74px, 6.8vw, 112px);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.gallery-thumbs button {
  aspect-ratio: 1.34 / 1;
  padding: 0;
  border: 1px solid transparent;
  overflow: hidden;
  background: #171513;
  opacity: 0.5;
  transition: opacity 180ms ease, border-color 180ms ease;
}

.gallery-thumbs button.is-active,
.gallery-thumbs button:hover {
  opacity: 1;
  border-color: var(--gold);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-marquee,
.gallery-grid {
  display: none;
}

@media (max-width: 980px) {
  .gallery-duo {
    grid-template-columns: 1fr;
  }
}

/* Hero lock: center the brand group in the viewport. */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 0 var(--site-inline);
}

.hero-copy {
  position: relative;
  width: min(calc(100vw - (var(--site-inline) * 2)), 980px);
  height: auto;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  transform: translateY(-2vh);
}

.hero-logo {
  width: min(48vw, 620px);
}

.hero-location {
  margin-top: clamp(14px, 2vw, 26px);
}

.hero-boulevard {
  top: calc(100% + clamp(46px, 7vh, 82px));
}

@media (max-width: 760px) {
  .hero-copy {
    transform: translateY(-3vh);
  }

  .hero-logo {
    width: min(68vw, 420px);
  }

  .hero-boulevard {
    top: calc(100% + 38px);
  }
}

/* Minimal footer inspired by the reference: quiet, aligned, and low profile. */
.site-footer {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0 var(--site-inline);
  color: rgba(18, 18, 18, 0.68);
  background: #e7e2d8;
  overflow: hidden;
}

.site-footer::before,
.site-footer .footer-bg {
  display: none;
}

.site-footer .footer-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--site-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 42px 0 28px;
  text-align: left;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(520px, 1fr);
  gap: clamp(64px, 10vw, 180px);
  align-items: start;
}

.site-footer .footer-brand-block {
  display: grid;
  gap: 16px;
  min-height: 0;
}

.footer-belgravia-logo {
  width: clamp(132px, 12vw, 190px);
  height: auto;
  filter: invert(1);
  opacity: 0.72;
}

.site-footer .footer-brand-block p {
  max-width: 330px;
  margin: 0;
  color: rgba(18, 18, 18, 0.58);
  font-size: 0.88rem;
  line-height: 1.65;
  font-weight: 300;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(28px, 4vw, 58px);
  padding-top: 6px;
  min-width: 0;
}

.footer-nav a {
  color: rgba(18, 18, 18, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(18, 18, 18, 0.1);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: rgba(18, 18, 18, 0.46);
  font-size: 0.72rem;
  line-height: 1.6;
}

.footer-criar-logo {
  width: clamp(106px, 9vw, 148px);
  height: auto;
  filter: invert(1) grayscale(1);
  opacity: 0.44;
}

@media (max-width: 980px) {
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-content {
    padding: 34px 0 24px;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-nav {
    gap: 14px 20px;
  }
}

/* Footer hard reset: prevent legacy link sizing and lock the composition. */
.site-footer {
  display: block;
  padding: 0 var(--site-inline);
}

.site-footer .footer-content {
  width: min(100%, var(--site-max));
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(42px, 7vw, 118px);
  padding: clamp(72px, 8vw, 112px) 0 clamp(34px, 4vw, 54px);
  align-items: end;
  justify-items: stretch;
  text-align: left;
}

.site-footer .footer-brand-block {
  min-height: 0;
  gap: 14px;
}

.site-footer .footer-brand-block h2 {
  max-width: 980px;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.9;
}

.site-footer .footer-brand-block > p:not(.footer-eyebrow) {
  margin: -4px 0 18px;
}

.site-footer .footer-logo {
  width: clamp(150px, 15vw, 220px);
}

.site-footer .footer-contact-block {
  align-self: end;
  gap: 18px;
  padding-bottom: 8px;
}

.site-footer .footer-phone {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.7rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer .footer-action {
  width: max-content;
  min-height: 0;
  padding: 0 0 9px;
  border: 0;
  border-bottom: 1px solid rgba(227, 225, 220, 0.42);
  color: rgba(227, 225, 220, 0.82);
  background: transparent;
  font-family: var(--sans);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer .footer-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(220px, 0.72fr) minmax(280px, 1fr);
  gap: clamp(24px, 4vw, 64px);
  padding-top: clamp(26px, 4vw, 46px);
}

.site-footer .footer-meta small {
  justify-self: end;
  text-align: right;
}

@media (max-width: 980px) {
  .site-footer .footer-content,
  .site-footer .footer-meta {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-meta small {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-brand-block h2 {
    font-size: clamp(3.1rem, 18vw, 5rem);
  }

  .site-footer .footer-phone {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }
}

/* Enriched editorial section. */
.signature-section {
  width: min(calc(100vw - (var(--site-inline) * 2)), var(--site-max));
  margin: 0 auto;
  padding: var(--section-y) 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(420px, 0.58fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.signature-heading {
  position: sticky;
  top: 96px;
}

.signature-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.signature-heading span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 800;
}

.signature-content {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
}

.signature-copy {
  max-width: 720px;
}

.signature-copy p:not(.section-kicker) {
  margin: 0;
  color: #3c3833;
  font-size: clamp(1.08rem, 1.45vw, 1.26rem);
  line-height: 1.72;
  font-weight: 300;
}

.signature-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.signature-specs article {
  min-height: 154px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: rgba(246, 242, 234, 0.46);
}

.signature-specs strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  line-height: 1;
  font-weight: 400;
}

.signature-specs span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* Delicate footer scale. */
.site-footer {
  padding: 0 var(--site-inline);
}

.site-footer .footer-content {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  gap: clamp(36px, 5.6vw, 88px);
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(28px, 3.6vw, 44px);
}

.site-footer .footer-brand-block {
  gap: 10px;
}

.site-footer .footer-brand-block h2 {
  font-size: clamp(3.1rem, 6.4vw, 7.2rem);
}

.site-footer .footer-brand-block > p:not(.footer-eyebrow) {
  margin: -2px 0 14px;
  font-size: 0.72rem;
}

.site-footer .footer-logo {
  width: clamp(120px, 11vw, 168px);
}

.site-footer .footer-contact-block {
  gap: 14px;
}

.site-footer .footer-phone {
  font-size: clamp(1.65rem, 3.1vw, 3.4rem);
}

.site-footer .footer-action {
  font-size: 0.66rem;
  padding-bottom: 7px;
}

.site-footer .footer-meta {
  gap: clamp(20px, 3.2vw, 48px);
  padding-top: clamp(22px, 3vw, 34px);
}

.site-footer .footer-meta p {
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .signature-section {
    grid-template-columns: 1fr;
  }

  .signature-heading {
    position: static;
  }

  .site-footer .footer-content,
  .site-footer .footer-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .signature-section {
    padding: var(--fold-y) 0;
  }

  .signature-specs {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-brand-block h2 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .site-footer .footer-phone {
    font-size: clamp(1.75rem, 9vw, 2.6rem);
  }

  .whatsapp-float {
    right: 20px;
    top: 50%;
    bottom: auto;
  }
}

/* Final override: premium Belgravia fold with building image. */
.signature-section {
  width: min(calc(100vw - (var(--site-inline) * 2)), var(--site-max));
  margin: 0 auto;
  padding: clamp(64px, 7vw, 104px) 0;
  display: grid;
  grid-template-columns: minmax(420px, 0.56fr) minmax(360px, 0.44fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.signature-media {
  position: relative;
  min-height: clamp(460px, 58vw, 720px);
  overflow: hidden;
  background: #171513;
}

.signature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.signature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.signature-content {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
  align-content: center;
}

.signature-logo {
  width: min(100%, 560px);
  height: auto;
}

.signature-copy {
  max-width: 620px;
  padding-top: clamp(14px, 2vw, 24px);
  border-top: 1px solid var(--hairline);
}

.signature-copy h2 {
  margin: 0 0 18px;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 800;
}

.signature-copy p,
.signature-copy p:not(.section-kicker) {
  margin: 0;
  color: #3c3833;
  font-size: clamp(1rem, 1.26vw, 1.16rem);
  line-height: 1.76;
  font-weight: 300;
}

.signature-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(8px, 1.4vw, 20px);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.signature-specs article {
  min-height: 118px;
  display: grid;
  align-content: end;
  gap: 9px;
  padding: clamp(20px, 2.4vw, 30px);
  background: rgba(246, 242, 234, 0.36);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.signature-specs strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.3vw, 2.45rem);
  line-height: 1;
  font-weight: 400;
}

.signature-specs span {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

@media (max-width: 980px) {
  .signature-section {
    grid-template-columns: 1fr;
  }

  .signature-media {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .signature-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .signature-specs {
    grid-template-columns: 1fr;
  }
}

/* True final footer reset. Keep this block after every legacy footer rule. */
.site-footer {
  position: relative;
  min-height: 0;
  padding: 0 var(--site-inline);
  background: #e7e2d8;
  color: #413c36;
  overflow: hidden;
}

.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer::before,
.site-footer .footer-bg {
  display: none !important;
  content: none !important;
}

.site-footer .footer-content {
  width: min(100%, var(--site-max));
  margin: 0 auto;
  padding: clamp(34px, 4.5vw, 54px) 0 26px;
  display: grid;
  gap: clamp(24px, 3vw, 34px);
  text-align: left;
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: clamp(52px, 9vw, 150px);
  align-items: start;
}

.site-footer .footer-brand-block {
  max-width: 360px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.site-footer .footer-belgravia-logo {
  width: clamp(152px, 13vw, 228px);
  height: auto;
  display: block;
  filter: invert(1);
  opacity: 0.68;
}

.site-footer .footer-brand-block p {
  max-width: 340px;
  margin: 0;
  color: rgba(20, 18, 16, 0.56);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-footer .footer-nav {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px clamp(24px, 3.4vw, 48px);
  padding-top: 7px;
}

.site-footer .footer-nav a {
  color: rgba(20, 18, 16, 0.5);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-footer .footer-nav a:hover {
  color: var(--clay);
}

.site-footer .footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 18, 16, 0.1);
}

.site-footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 20px;
  align-items: center;
  color: rgba(20, 18, 16, 0.45);
  font-family: var(--sans);
  font-size: 0.69rem;
  line-height: 1.5;
}

.site-footer .footer-legal span,
.site-footer .footer-legal small {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: 0.01em;
  text-transform: none;
}

.site-footer .footer-criar-logo {
  width: clamp(96px, 8vw, 136px);
  height: auto;
  display: block;
  filter: invert(1) grayscale(1);
  opacity: 0.36;
}

.site-credit {
  min-height: 0;
  padding: clamp(14px, 1.8vw, 22px) var(--site-inline);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: #17220d;
  color: rgba(255, 255, 255, 0.72);
}

.site-credit span,
.site-credit small {
  margin: 0;
  color: inherit;
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0;
}

.site-credit span {
  font-size: clamp(0.66rem, 0.82vw, 0.78rem);
}

.site-credit .narro-credit-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 180ms ease;
}

.site-credit .narro-credit-link:hover {
  opacity: 1;
}

.site-credit img {
  width: clamp(54px, 4.8vw, 78px);
  height: auto;
  display: block;
}

.site-credit small {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.56rem, 0.68vw, 0.66rem);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .site-footer .footer-main,
  .site-footer .footer-bottom {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-nav {
    justify-content: flex-start;
    padding-top: 0;
  }

  .site-footer .footer-criar-logo {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-content {
    padding: 32px 0 24px;
  }

  .site-footer .footer-main {
    gap: 26px;
  }

  .site-footer .footer-nav {
    gap: 14px 20px;
  }

  .site-footer .footer-bottom {
    gap: 18px;
  }

  .site-footer .footer-legal {
    display: grid;
    gap: 5px;
  }

  .site-credit {
    min-height: 34px;
    padding-top: 6px;
    padding-bottom: 6px;
    gap: 7px;
    flex-wrap: wrap;
  }
}

/* =====================================================
   FOOTER — Layout profissional definitivo
   Mantém este bloco sempre por último no arquivo.
   ===================================================== */

.site-footer {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 var(--site-inline);
  background: #e8e3d8;
  color: #413c36;
}

.site-footer::before,
.site-footer .footer-bg {
  display: none !important;
  content: none !important;
}

/* Grade de conteúdo: [brand] | [nav] / [barra legal] */
.site-footer .footer-content {
  width: min(100%, var(--site-max));
  margin: 0 auto;
  padding: clamp(28px, 3.2vw, 42px) 0 clamp(18px, 2.2vw, 28px);
  display: grid;
  grid-template-columns: minmax(200px, 300px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(44px, 6.5vw, 108px);
  row-gap: clamp(18px, 2.4vw, 28px);
  text-align: left;
  align-items: center;
}

/* --- Linha 1 esquerda: bloco da marca --- */
.site-footer .footer-main {
  grid-column: 1;
  grid-row: 1;
  display: block;
}

.site-footer .footer-brand-block {
  display: grid;
  gap: 14px;
  align-content: start;
}

.site-footer .footer-belgravia-logo {
  width: clamp(136px, 11.5vw, 190px);
  height: auto;
  display: block;
  filter: invert(1);
  opacity: 0.68;
}

.site-footer .footer-brand-block p {
  max-width: 290px;
  margin: 0;
  color: rgba(20, 18, 16, 0.52);
  font-family: var(--sans);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* --- Linha 1 direita: navegação --- */
.site-footer .footer-nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 18px clamp(24px, 3.2vw, 46px);
  padding-top: 4px;
}

.site-footer .footer-nav a {
  color: rgba(20, 18, 16, 0.5);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-footer .footer-nav a:hover {
  color: var(--clay);
}

/* --- Linha 2: barra legal (full width) --- */
.site-footer .footer-bottom {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: clamp(20px, 2.6vw, 32px);
  border-top: 1px solid rgba(20, 18, 16, 0.1);
}

.site-footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  color: rgba(20, 18, 16, 0.44);
  font-family: var(--sans);
  font-size: 0.68rem;
  line-height: 1.6;
}

.site-footer .footer-legal span {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: 0.01em;
  text-transform: none;
}

.site-footer .footer-legal span + span::before {
  content: "·";
  margin: 0 10px;
  color: rgba(20, 18, 16, 0.24);
}

.site-footer .footer-criar-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.site-footer .footer-criar-logo {
  width: clamp(88px, 7.5vw, 124px);
  height: auto;
  display: block;
  filter: invert(1) grayscale(1);
  opacity: 0.36;
  transition: opacity 180ms ease;
}

.site-footer .footer-criar-link:hover .footer-criar-logo {
  opacity: 0.56;
}

/* --- Responsivo --- */
@media (max-width: 980px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 0;
    row-gap: clamp(26px, 5vw, 40px);
  }

  .site-footer .footer-main  { grid-column: 1; grid-row: 1; }
  .site-footer .footer-nav   { grid-column: 1; grid-row: 2; justify-content: flex-start; padding-top: 0; }
  .site-footer .footer-bottom { grid-column: 1; grid-row: 3; }

  .site-footer .footer-criar-logo {
    width: clamp(84px, 12vw, 110px);
  }
}

@media (max-width: 640px) {
  .site-footer .footer-content {
    padding: 38px 0 26px;
    row-gap: 22px;
  }

  .site-footer .footer-nav {
    gap: 14px 20px;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-footer .footer-legal {
    display: grid;
    gap: 4px;
  }

  .site-footer .footer-legal span + span::before {
    display: none;
  }
}

/* =====================================================
   MOBILE REFINEMENTS — layout, nav, espaçamento
   ===================================================== */

/* --- Mobile nav --- */
.mobile-nav {
  display: none;
}

@media (max-width: 980px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .site-header {
    z-index: 10000;
  }

  .menu-toggle {
    color: var(--ink);
    background: var(--paper);
    border-color: rgba(246, 242, 234, 0.78);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #0d0d0c;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav-inner {
    width: 100%;
    min-height: 100%;
    padding: 88px 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-nav nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateY(-34px);
  }

  .mobile-nav nav a {
    display: block;
    width: min(100%, 320px);
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav nav a:last-child {
    border-bottom: none;
  }

  .mobile-nav nav a:active {
    color: #a38a5e;
  }
}

/* --- WhatsApp float: canto inferior direito no mobile --- */
@media (max-width: 640px) {
  .whatsapp-float {
    right: 20px;
    bottom: 22px;
    top: auto;
    transform: none;
    animation: none;
    width: clamp(46px, 12vw, 58px);
  }
}

/* --- Hero: proporções mobile --- */
@media (max-width: 640px) {
  .hero {
    padding-bottom: clamp(110px, 18vh, 148px);
  }

  .hero-logo {
    width: min(76vw, 440px);
  }

  .hero-location {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    margin-top: 12px;
  }

  .hero-plaenge-logo {
    width: 76px;
    margin-top: 12px;
  }

  .hero-strip {
    grid-template-columns: 1fr 1fr;
    bottom: 16px;
  }

  .hero-strip span {
    min-height: 52px;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    padding: 10px 10px;
  }
}

/* --- Plan cards: altura e imagem corrigidas no mobile --- */
@media (max-width: 640px) {
  .plan-card {
    min-height: 0;
    margin-bottom: 14px;
  }

  .plan-copy {
    padding: 28px 22px 22px;
  }

  .plan-card button {
    padding: 22px;
  }

  .plan-card img {
    max-height: clamp(180px, 42vw, 260px);
    object-fit: contain;
  }
}

/* --- Signature specs: coluna única e altura reduzida --- */
@media (max-width: 640px) {
  .signature-specs article {
    min-height: 88px;
    padding: 18px 20px;
  }

  .signature-media {
    min-height: 0;
  }
}

/* --- Gallery panels: padding ajustado --- */
@media (max-width: 640px) {
  .gallery-panel {
    padding: 16px;
    gap: 14px;
  }

  .gallery-panel-copy {
    min-height: 0;
  }

  .gallery-panel-copy h3 {
    font-size: 1rem;
  }

  .gallery-thumbs {
    grid-auto-columns: clamp(58px, 17vw, 80px);
    gap: 7px;
  }
}

/* --- Contact form: legibilidade mobile --- */
@media (max-width: 640px) {
  .lead-section {
    padding-top: clamp(80px, 14vh, 110px);
    padding-bottom: clamp(60px, 10vh, 88px);
  }

  .lead-copy p:last-child {
    display: none;
  }

  .contact-form {
    padding: 20px 18px;
    gap: 12px;
  }

  .contact-form button {
    min-height: 54px;
    font-size: 0.74rem;
  }
}

/* --- Visit section: imagem proporcionada --- */
@media (max-width: 640px) {
  .visit-image {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .visit-copy a {
    width: 100%;
    justify-content: center;
  }
}

/* --- Video tiles: proporção melhorada --- */
@media (max-width: 640px) {
  .video-feature {
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .video-feature > div {
    left: 18px;
    bottom: 18px;
  }

  .video-feature strong {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .lightbox {
    padding: 112px 16px 24px;
  }

  .lightbox video {
    max-width: calc(100vw - 32px);
    max-height: calc(100svh - 180px);
  }

  .lightbox-close {
    top: 92px;
    right: 18px;
    z-index: 2;
    width: 42px;
    height: 42px;
    color: var(--ink);
    background: var(--paper);
    border-color: rgba(246, 242, 234, 0.78);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    font-size: 1.7rem;
  }
}

/* --- Hambúrguer → X quando menu aberto --- */
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}


/* --- Site credit: wrap limpo --- */
@media (max-width: 480px) {
  .site-credit {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-credit img {
    width: 50px;
  }

}
