:root {
  --ink: #081722;
  --ink-deep: #030b11;
  --ink-soft: #102632;
  --gold: #c99b4e;
  --gold-light: #f0d494;
  --gold-ink: #76531a;
  --paper: #f5f7f6;
  --paper-alt: #e8edef;
  --text: #10212a;
  --muted: #4c5d65;
  --line: rgba(16, 33, 42, .18);
  --serif: Georgia, "Songti SC", "STSong", "Noto Serif SC", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --ease: cubic-bezier(.32, .72, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.menu-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-underline-position: from-font; text-decoration-skip-ink: auto; }
img { display: block; max-width: 100%; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
section[id] { scroll-margin-top: 96px; }
::selection { color: #fff; background: #76531a; }
.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.skip-link { position: fixed; z-index: 300; left: 16px; top: -64px; padding: 12px 16px; color: #fff; background: var(--ink); text-decoration: none; }
.skip-link:focus { top: 16px; }
.section { padding: 128px 0; }
h2 { margin-bottom: 0; font: 400 clamp(36px, 5vw, 64px)/1.14 var(--serif); letter-spacing: -.025em; }
.section-number { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; color: var(--gold-ink); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.section-number::after { content: ""; width: 40px; height: 1px; background: currentColor; opacity: .48; }
.section-number-light { color: var(--gold-light); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  right: max(16px, calc((100vw - 1320px) / 2));
  left: max(16px, calc((100vw - 1320px) / 2));
  height: 72px;
  padding: 0 16px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: rgba(3, 11, 17, .54);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 3px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
  backdrop-filter: blur(16px);
  transition: background-color 500ms var(--ease), border-color 500ms var(--ease), box-shadow 500ms var(--ease);
}
.site-header.scrolled { background: rgba(3, 11, 17, .94); border-color: rgba(240, 212, 148, .22); box-shadow: 0 16px 44px rgba(0, 0, 0, .24); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.brand-mark { flex: 0 0 38px; width: 38px; height: 38px; color: var(--gold-light); fill: currentColor; }
.brand b, .brand small { display: block; }
.brand b { font: 500 18px/1 var(--serif); letter-spacing: .18em; }
.brand small { margin-top: 5px; color: rgba(255, 255, 255, .76); font-size: 12px; letter-spacing: .08em; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.site-nav a { position: relative; text-decoration: none; transition: color 500ms var(--ease), background-color 500ms var(--ease), transform 500ms var(--ease); }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--gold-light); transform: scaleX(0); transform-origin: right; transition: transform 500ms var(--ease); }
.site-nav > a:not(.nav-cta):hover { color: var(--gold-light); }
.site-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-cta { min-height: 42px; padding: 0 18px; display: inline-flex; align-items: center; color: #101418; background: var(--gold-light); font-weight: 600; }
.site-nav .nav-cta:hover { background: #fff0bd; transform: translateY(-1px); }
.menu-button { display: none; position: relative; width: 44px; height: 44px; border: 0; background: transparent; color: #fff; cursor: pointer; }
.menu-button span { position: absolute; left: 10px; width: 24px; height: 1px; background: currentColor; transition: transform 500ms var(--ease), top 500ms var(--ease); }
.menu-button span:first-child { top: 17px; }
.menu-button span:last-child { top: 26px; }

.hero { position: relative; min-height: 760px; height: 100svh; padding: 112px 0 0; display: flex; align-items: flex-end; isolation: isolate; overflow: hidden; color: #fff; background: var(--ink); }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { z-index: -2; background: url("images/home/hero-fireworks.webp") center 48% / cover no-repeat; animation: heroReveal 1200ms var(--ease) both; }
.hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(3, 11, 17, .9) 0%, rgba(3, 11, 17, .58) 44%, rgba(3, 11, 17, .12) 76%), linear-gradient(0deg, rgba(3, 11, 17, .78), transparent 58%); }
.hero-content { padding-bottom: clamp(88px, 12vh, 128px); }
.hero-identity { margin-bottom: 24px; color: var(--gold-light); font-size: 14px; font-weight: 600; letter-spacing: .12em; }
.hero h1 { max-width: 680px; margin: 0 0 24px; font: 400 clamp(52px, 6.2vw, 88px)/1.04 var(--serif); letter-spacing: -.035em; }
.hero h1 span { display: block; margin-bottom: 20px; color: var(--gold-light); font: 600 16px/1.5 var(--sans); letter-spacing: .08em; }
.hero-lead { max-width: 680px; margin-bottom: 32px; color: rgba(255, 255, 255, .84); font-size: 16px; line-height: 1.75; }
.hero-actions, .location-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.button { min-height: 50px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; text-decoration: none; font-size: 16px; font-weight: 600; transition: transform 500ms var(--ease), background-color 500ms var(--ease), border-color 500ms var(--ease), color 500ms var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:active, .site-nav .nav-cta:active { transform: scale(.98); }
.button-gold { color: #101418; background: var(--gold); }
.button-gold:hover { background: var(--gold-light); }
.button-line { color: var(--gold-light); border-color: rgba(240, 212, 148, .56); }
.button-line:hover { color: var(--ink-deep); background: var(--gold-light); }
.hero-text-link { display: inline-flex; align-items: center; gap: 12px; padding: 12px 0; color: #fff; font-size: 16px; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .48); transition: color 500ms var(--ease), border-color 500ms var(--ease), transform 500ms var(--ease); }
.hero-text-link:hover { color: var(--gold-light); border-color: var(--gold-light); transform: translateX(3px); }
.hero-proof { margin: 28px 0 0; color: rgba(255, 255, 255, .68); font-size: 14px; letter-spacing: .04em; }
.scroll-cue { position: absolute; right: 4vw; bottom: 40px; display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .68); font-size: 12px; letter-spacing: .1em; text-decoration: none; writing-mode: vertical-rl; }
.scroll-cue span { width: 1px; height: 48px; background: var(--gold); }

.trust-rail { color: #fff; background: var(--ink-deep); border-top: 1px solid rgba(255, 255, 255, .1); }
.trust-grid { min-height: 112px; display: grid; grid-template-columns: .9fr 1.45fr .9fr 1fr; align-items: stretch; }
.trust-grid > div { padding: 24px 24px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255, 255, 255, .12); }
.trust-grid > div:last-child { border-right: 1px solid rgba(255, 255, 255, .12); }
.trust-grid span { margin-bottom: 8px; color: var(--gold-light); font-size: 12px; }
.trust-grid strong, .trust-grid a { color: rgba(255, 255, 255, .88); font-size: 14px; font-weight: 500; line-height: 1.6; text-decoration: none; }
.trust-grid a { font-variant-numeric: tabular-nums; }

.intro { position: relative; overflow: hidden; }
.intro::after { content: "GIANNI"; position: absolute; right: -18px; bottom: -52px; color: rgba(8, 23, 34, .04); font: 400 clamp(100px, 18vw, 250px)/1 var(--serif); letter-spacing: .02em; pointer-events: none; }
.intro-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 11vw; align-items: start; }
.intro-copy { padding-top: 8px; position: relative; z-index: 1; }
.intro-copy p { max-width: 65ch; color: var(--muted); font-size: 16px; line-height: 1.75; }
.intro-copy .lead { color: var(--text); font: 400 20px/1.7 var(--serif); }
.fact-list { margin: 48px 0 0; border-top: 1px solid var(--line); }
.fact-list div { padding: 18px 0; display: grid; grid-template-columns: 120px 1fr; border-bottom: 1px solid var(--line); }
.fact-list dt { color: var(--muted); font-size: 14px; }
.fact-list dd { margin: 0; font-size: 14px; font-weight: 600; }
.source-note { margin-top: 20px; color: var(--muted); font-size: 12px !important; line-height: 1.7 !important; }
.source-note a { color: var(--gold-ink); text-underline-offset: 3px; }

.signature { padding-top: 0; background: var(--paper); }
.signature-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 7vw; align-items: center; }
.signature-main { margin: 0; position: relative; }
.signature-main::before { content: ""; position: absolute; inset: -16px auto 48px -16px; z-index: -1; width: 28%; border: 1px solid rgba(118, 83, 26, .5); }
.signature-main img { width: 100%; height: auto; aspect-ratio: 1.45; object-fit: cover; }
.signature-main figcaption { margin-top: 16px; color: var(--muted); font-size: 12px; }
.signature-copy p { max-width: 48ch; margin: 28px 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.text-link { display: inline-flex; gap: 14px; padding-bottom: 6px; color: var(--text); font-size: 14px; font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold-ink); transition: color 500ms var(--ease), transform 500ms var(--ease); }
.text-link span { color: var(--gold-ink); }
.text-link:hover { color: var(--gold-ink); transform: translateX(3px); }

.brand-statement { padding: 112px 0; color: #fff; background: var(--ink-deep); }
.brand-statement p { max-width: 940px; margin: 0; font: 400 clamp(36px, 5vw, 60px)/1.25 var(--serif); letter-spacing: -.025em; }
.brand-statement span { color: rgba(255, 255, 255, .42); transition: color 900ms var(--ease); }
.brand-statement span.active { color: #fff; }

.spaces { color: #fff; background: var(--ink); }
.spaces .section-number { color: var(--gold-light); }
.section-topline { margin-bottom: 56px; display: flex; justify-content: space-between; align-items: end; gap: 48px; }
.section-topline > p { max-width: 48ch; margin: 0; color: rgba(255, 255, 255, .68); font-size: 14px; line-height: 1.7; }
.space-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; }
.space-card { position: relative; min-height: 360px; overflow: hidden; background: var(--ink-soft); }
.space-card-wide { grid-row: span 2; min-height: 740px; }
.space-card a, .space-card img { position: absolute; inset: 0; width: 100%; height: 100%; }
.space-card a { color: #fff; }
.space-card img { object-fit: cover; transition: transform 700ms var(--ease); }
.space-card a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3, 11, 17, .94), rgba(3, 11, 17, .02) 68%); }
.space-card:hover img { transform: scale(1.035); }
.space-card:active img { transform: scale(1.015); }
.space-card-copy { position: absolute; z-index: 2; inset: auto 32px 32px; }
.space-card-copy small { color: var(--gold-light); font-size: 12px; font-weight: 600; letter-spacing: .08em; }
.space-card-copy h3 { margin: 12px 0 8px; font: 400 30px/1.2 var(--serif); }
.space-card-copy p { margin: 0; color: rgba(255, 255, 255, .76); font-size: 14px; }

.visit { background: var(--paper-alt); }
.visit-grid { display: grid; grid-template-columns: .74fr 1.26fr; gap: 9vw; }
.visit-heading { align-self: start; position: sticky; top: 112px; }
.visit-heading > p { max-width: 42ch; margin: 28px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.visit-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.visit-steps li { padding: 32px 0; display: grid; grid-template-columns: 48px 1fr; gap: 24px; border-bottom: 1px solid var(--line); }
.visit-steps > li > span { color: var(--gold-ink); font-size: 14px; font-weight: 700; }
.visit-steps h3 { margin-bottom: 12px; font: 400 24px/1.3 var(--serif); }
.visit-steps p { max-width: 55ch; margin-bottom: 16px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.visit-steps a { display: inline-flex; color: var(--gold-ink); font-size: 14px; font-weight: 600; text-underline-offset: 5px; }

.location { padding: 0; display: grid; grid-template-columns: 1.2fr .8fr; min-height: 720px; color: #fff; background: var(--ink-deep); }
.location-image { min-height: 580px; background: url("images/home/venue-grounds.webp") center / cover no-repeat; }
.location-panel { padding: 96px clamp(40px, 6vw, 88px); display: flex; flex-direction: column; justify-content: center; }
.location-panel h2 { margin-bottom: 40px; }
.location-panel address { margin-bottom: 32px; font: normal 20px/1.7 var(--serif); }
.location-panel address span, .contact-row span { display: block; margin-bottom: 8px; color: var(--gold-light); font: 600 12px/1.5 var(--sans); }
.contact-row { padding: 28px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; border-block: 1px solid rgba(255, 255, 255, .18); }
.contact-row a, .contact-row p { margin: 0; color: #fff; font-size: 14px; line-height: 1.6; text-decoration: none; }
.contact-row a { font-variant-numeric: tabular-nums; }
.location-actions { margin-top: 32px; gap: 12px; }
.fine-print { margin: 20px 0 0; color: rgba(255, 255, 255, .64); font-size: 12px; line-height: 1.6; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 10vw; }
.faq-heading { position: sticky; top: 112px; align-self: start; }
.faq-heading > p { max-width: 42ch; margin-top: 28px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.faq-list { padding-top: 8px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 76px; padding: 24px 4px; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font: 400 18px/1.5 var(--serif); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 18px; height: 18px; margin-top: 4px; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; inset: 8px 0 auto; height: 1px; background: var(--gold-ink); }
.faq-list summary span::after { transform: rotate(90deg); transition: transform 500ms var(--ease); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 65ch; padding: 0 44px 24px 4px; color: var(--muted); font-size: 16px; line-height: 1.7; }

.closing { position: relative; min-height: 620px; padding: 96px 0; display: flex; align-items: center; isolation: isolate; overflow: hidden; color: #fff; background: var(--ink); }
.closing-image { position: absolute; inset: 0; z-index: -2; background: url("images/home/closing-ceremony.webp") center / cover no-repeat; }
.closing::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(3, 11, 17, .9), rgba(3, 11, 17, .52) 58%, rgba(3, 11, 17, .14)); }
.closing h2 { max-width: 680px; margin-bottom: 40px; font-size: clamp(48px, 7vw, 80px); }
.closing-content > div { display: flex; align-items: center; gap: 32px; }
.text-link.light { color: #fff; border-color: rgba(255, 255, 255, .52); }
.text-link.light span { color: var(--gold-light); }

.booking-dialog { width: min(560px, calc(100% - 32px)); max-width: none; padding: 0; color: #fff; background: transparent; border: 0; overflow: visible; }
.booking-dialog::backdrop { background: rgba(1, 8, 13, .82); backdrop-filter: blur(10px); }
.booking-dialog-card { position: relative; padding: 64px; background: var(--ink); border: 1px solid rgba(240, 212, 148, .32); box-shadow: 0 32px 80px rgba(0, 0, 0, .42); }
.booking-dialog-card::before { content: "GIANNI"; position: absolute; right: 24px; bottom: 16px; color: rgba(255, 255, 255, .035); font: 400 72px/1 var(--serif); pointer-events: none; }
.booking-dialog-close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; color: #fff; background: transparent; border: 0; cursor: pointer; }
.booking-dialog-close span::before, .booking-dialog-close span::after { content: ""; position: absolute; top: 21px; left: 10px; width: 24px; height: 1px; background: currentColor; }
.booking-dialog-close span::before { transform: rotate(45deg); }
.booking-dialog-close span::after { transform: rotate(-45deg); }
.booking-dialog-kicker { margin-bottom: 20px; color: var(--gold-light); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.booking-dialog h2 { margin-bottom: 24px; font-size: clamp(40px, 7vw, 56px); }
.booking-dialog-copy { max-width: 42ch; margin-bottom: 32px; color: rgba(255, 255, 255, .7); font-size: 15px; line-height: 1.75; }
.booking-dialog-phone { display: block; padding: 24px 0; text-decoration: none; border-block: 1px solid rgba(255, 255, 255, .16); }
.booking-dialog-phone small, .booking-dialog-phone strong { display: block; }
.booking-dialog-phone small { margin-bottom: 8px; color: var(--gold-light); font-size: 12px; }
.booking-dialog-phone strong { color: #fff; font: 400 clamp(28px, 6vw, 40px)/1.2 var(--serif); letter-spacing: .04em; font-variant-numeric: tabular-nums; }
.booking-dialog-call { position: relative; z-index: 1; width: 100%; margin-top: 32px; }

.site-footer { padding: 64px 0 24px; color: rgba(255, 255, 255, .76); background: #030a10; }
.footer-grid { padding-bottom: 48px; display: grid; grid-template-columns: 1.2fr 1.3fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-brand svg { flex: 0 0 40px; width: 40px; height: 40px; color: var(--gold-light); fill: currentColor; }
.footer-brand b, .footer-brand span { display: block; }
.footer-brand b { color: var(--gold-light); font: 400 24px/1 var(--serif); letter-spacing: .16em; }
.footer-brand span { margin-top: 8px; font-size: 12px; }
.site-footer small { color: var(--gold-light); font-size: 12px; }
.site-footer p { margin: 8px 0 0; font-size: 12px; line-height: 1.6; }
.site-footer a { text-decoration: none; }
.footer-links { display: flex; flex-direction: column; gap: 12px; font-size: 12px; }
.footer-links a:hover, .site-footer a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 12px; }
.footer-bottom p { margin: 0; }

a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
@keyframes heroReveal { from { opacity: .6; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 960px) {
  .section { padding: 96px 0; }
  .site-header { top: 12px; right: 12px; left: 12px; height: 64px; padding-inline: 14px; }
  .menu-button { display: block; z-index: 2; }
  .menu-button[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
  .site-nav { position: absolute; top: -12px; right: -12px; left: -12px; height: 100dvh; padding: 112px 32px 40px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: rgba(3, 11, 17, .96); backdrop-filter: blur(28px); opacity: 0; visibility: hidden; transform: translateY(-16px); transition: opacity 500ms var(--ease), transform 500ms var(--ease), visibility 500ms; }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, .14); font: 400 22px/1.3 var(--serif); opacity: 0; transform: translateY(24px); }
  .site-nav.open a { opacity: 1; transform: none; }
  .site-nav.open a:nth-child(1) { transition-delay: 80ms; }
  .site-nav.open a:nth-child(2) { transition-delay: 130ms; }
  .site-nav.open a:nth-child(3) { transition-delay: 180ms; }
  .site-nav.open a:nth-child(4) { transition-delay: 230ms; }
  .site-nav.open a:nth-child(5) { transition-delay: 280ms; }
  .site-nav > a::after { display: none; }
  .site-nav .nav-cta { margin-top: 24px; padding: 16px; justify-content: center; font-family: var(--sans); font-size: 16px; }
  .hero { min-height: 700px; }
  .hero-media { background-position: 58% center; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, .12); }
  .trust-grid > div:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, .12); border-right: 1px solid rgba(255, 255, 255, .12); }
  .intro-grid, .signature-grid, .faq-grid, .visit-grid { grid-template-columns: 1fr; gap: 52px; }
  .signature-main { width: 92%; }
  .space-grid { grid-template-columns: 1fr 1fr; }
  .space-card-wide { grid-column: 1 / -1; grid-row: auto; min-height: 520px; }
  .visit-heading, .faq-heading { position: static; }
  .location { grid-template-columns: 1fr; }
  .location-image { min-height: 52vw; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .wrap { width: min(100% - 32px, 1180px); }
  .section { padding: 80px 0; }
  h2 { font-size: 36px; }
  .brand small { display: none; }
  .brand-mark { width: 36px; height: 36px; }
  .hero { min-height: 720px; padding-top: 92px; }
  .hero-media { background-position: 62% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(3, 11, 17, .96), rgba(3, 11, 17, .38) 72%, rgba(3, 11, 17, .28)); }
  .hero-content { padding-bottom: 64px; }
  .hero-identity { margin-bottom: 20px; font-size: 12px; }
  .hero h1 { margin-bottom: 22px; font-size: 48px; line-height: 1.08; }
  .hero h1 span { font-size: 14px; }
  .hero-lead { font-size: 16px; line-height: 1.65; }
  .hero-actions { align-items: stretch; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .hero-text-link { justify-content: center; }
  .hero-proof { margin-top: 24px; font-size: 12px; line-height: 1.7; }
  .scroll-cue { display: none; }
  .trust-grid { width: 100%; grid-template-columns: 1fr; }
  .trust-grid > div { padding: 18px 20px; border-right: 0 !important; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .intro-copy .lead { font-size: 20px; }
  .fact-list div { grid-template-columns: 88px 1fr; }
  .signature-main { width: 100%; }
  .signature-main::before { display: none; }
  .signature-main img { aspect-ratio: .92; object-position: center; }
  .brand-statement { padding: 80px 0; }
  .brand-statement p { font-size: 36px; line-height: 1.3; }
  .space-grid { grid-template-columns: 1fr; }
  .space-card, .space-card-wide { grid-column: auto; min-height: 420px; }
  .section-topline { display: block; }
  .section-topline > p { margin-top: 24px; }
  .space-card-copy { inset: auto 24px 24px; }
  .visit-steps li { grid-template-columns: 36px 1fr; gap: 16px; }
  .location-image { min-height: 74vw; }
  .location-panel { padding: 72px 24px; }
  .contact-row { grid-template-columns: 1fr; }
  .location-actions .button { width: 100%; }
  .closing { min-height: 580px; padding: 80px 0; }
  .closing::after { background: linear-gradient(0deg, rgba(3, 11, 17, .92), rgba(3, 11, 17, .36)); }
  .closing-content > div { align-items: stretch; flex-direction: column; gap: 24px; }
  .closing h2 { font-size: 48px; }
  .closing .text-link { align-self: center; }
  .booking-dialog-card { padding: 56px 24px 32px; }
  .booking-dialog-card::before { right: 12px; font-size: 52px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .brand-statement span { color: #fff; }
}
