:root {
  --onyx: #060503;
  --black: #0b0805;
  --black-2: #151006;
  --black-3: #211708;
  --gold: #d4af37;
  --gold-2: #f6dc86;
  --gold-3: #8a6415;
  --cream: #fff6dc;
  --ivory: #fff9ed;
  --muted: #b9a777;
  --bronze: #6f4310;
  --wine: #260506;
  --glass: rgba(255, 246, 220, .08);
  --glass-2: rgba(255, 246, 220, .13);
  --stroke: rgba(246, 220, 134, .24);
  --stroke-strong: rgba(246, 220, 134, .42);
  --shadow: 0 34px 100px rgba(0,0,0,.55);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 18% 0%, rgba(212, 175, 55, .18), transparent 32rem),
    radial-gradient(circle at 90% 18%, rgba(111, 67, 16, .22), transparent 30rem),
    linear-gradient(135deg, var(--onyx), #130d06 50%, #050403);
  color: var(--ivory);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: var(--onyx); }
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .05;
  z-index: 1000;
  mix-blend-mode: soft-light;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency=".85" numOctaves="3" stitchTiles="stitch"/></filter><rect width="160" height="160" filter="url(%23n)" opacity=".7"/></svg>');
}
.shell { width: min(1200px, calc(100vw - 34px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  transition: transform .28s ease, background .28s ease, border-color .28s ease;
}
.site-header.scrolled .main-nav { background: rgba(7, 6, 4, .76); border-color: rgba(246, 220, 134, .32); box-shadow: 0 20px 80px rgba(0,0,0,.34); }
.top-strip {
  background: linear-gradient(90deg, rgba(212,175,55,.16), rgba(255,246,220,.06), rgba(212,175,55,.16));
  border-bottom: 1px solid rgba(246,220,134,.18);
  color: rgba(255,249,237,.72);
  font-size: 12px;
  letter-spacing: .06em;
}
.strip-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.strip-inner a { color: var(--gold-2); font-weight: 800; }
.main-nav {
  margin-top: 12px;
  margin-bottom: 12px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(246,220,134,.2);
  border-radius: 999px;
  background: rgba(7,6,4,.58);
  backdrop-filter: blur(24px);
}
.brand { display: flex; align-items: center; gap: 13px; min-width: 245px; }
.brand img { width: 54px; height: 54px; border-radius: 18px; box-shadow: 0 16px 38px rgba(212,175,55,.18); }
.brand strong { display: block; font-family: var(--font-display); font-size: 20px; letter-spacing: .015em; line-height: .95; }
.brand em { display: block; margin-top: 4px; color: var(--muted); font-style: normal; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.nav-panel { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex: 1; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 4px; flex: 1; }
.nav-links > a, .nav-more summary {
  color: rgba(255,249,237,.72);
  border: 1px solid transparent;
  padding: 11px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: .25s ease;
  list-style: none;
}
.nav-more summary::-webkit-details-marker { display: none; }
.nav-links > a:hover, .nav-links > a.active, .nav-more[open] summary {
  color: #090702;
  background: linear-gradient(135deg, #fff4b2, var(--gold));
  border-color: rgba(255,255,255,.18);
}
.nav-more { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 245px;
  padding: 12px;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  background: rgba(8,7,4,.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.dropdown-menu a {
  display: block;
  color: rgba(255,249,237,.74);
  padding: 13px 14px;
  border-radius: 16px;
  transition: .2s ease;
}
.dropdown-menu a:hover, .dropdown-menu a.active { color: var(--gold-2); background: rgba(255,246,220,.08); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.text-link { color: var(--gold-2); font-weight: 800; font-size: 13px; }
.nav-toggle { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,246,220,.06);
  color: var(--ivory);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); background: rgba(255,246,220,.1); }
.btn.gold { color: #090702; border: 0; background: linear-gradient(135deg, #fff5b6 0%, #d4af37 48%, #8e6410 100%); box-shadow: 0 20px 52px rgba(212,175,55,.25); }
.btn.soft { background: rgba(7,6,4,.36); }
.btn.full { width: 100%; }
.home-hero, .page-hero { position: relative; min-height: 790px; overflow: hidden; display: grid; align-items: center; }
.home-media, .hero-bg { position: absolute; inset: 0; overflow: hidden; }
.home-bg, .hero-img { width: 100%; height: 100%; object-fit: cover; opacity: .42; filter: saturate(1.05) contrast(1.08); transform: scale(1.04); }
.home-media::after, .hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 40%, rgba(212,175,55,.22), transparent 20rem), linear-gradient(90deg, rgba(6,5,3,.98) 0%, rgba(6,5,3,.72) 40%, rgba(6,5,3,.38) 100%), linear-gradient(180deg, rgba(6,5,3,.35), #060503 96%); }
.home-hero-inner, .hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 54px; align-items: center; padding: 95px 0 70px; }
.home-copy, .hero-copy { max-width: 790px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: 12px;
  font-weight: 900;
}
.eyebrow::before { content: ''; width: 38px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: .98; }
h1 { margin-top: 22px; font-size: clamp(52px, 8vw, 116px); max-width: 950px; letter-spacing: -.06em; }
h2 { font-size: clamp(36px, 5vw, 72px); letter-spacing: -.045em; }
h3 { font-size: 28px; letter-spacing: -.025em; }
.lead { max-width: 740px; color: rgba(255,249,237,.78); font-size: clamp(17px, 2vw, 21px); line-height: 1.8; margin: 26px 0 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-metrics, .mini-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 38px; max-width: 790px; }
.hero-metrics div, .mini-proof div {
  padding: 18px;
  border: 1px solid var(--stroke);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,246,220,.09), rgba(255,246,220,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-metrics strong, .mini-proof strong { display: block; color: var(--gold-2); font-family: var(--font-display); font-size: 24px; }
.hero-metrics span, .mini-proof span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.45; text-transform: uppercase; letter-spacing: .08em; }
.luxury-device, .quote-card {
  position: relative;
  min-height: 535px;
  padding: 26px;
  border: 1px solid var(--stroke-strong);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,246,220,.13), rgba(255,246,220,.035));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.12);
  transform-style: preserve-3d;
  overflow: hidden;
}
.luxury-device::before, .quote-card::before { content: ''; position: absolute; inset: -30%; background: radial-gradient(circle, rgba(212,175,55,.18), transparent 36%); transform: translate3d(var(--mx,0), var(--my,0), 0); transition: .12s linear; }
.device-top, .card-label { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; color: var(--gold-2); text-transform: uppercase; letter-spacing: .15em; font-size: 12px; font-weight: 900; }
.device-top b { color: #090702; background: var(--gold-2); border-radius: 999px; padding: 8px 11px; }
.gold-orbit { position: relative; z-index: 1; width: 290px; height: 290px; margin: 38px auto 28px; border: 1px solid rgba(246,220,134,.25); border-radius: 50%; transform: rotateX(62deg) rotateZ(var(--scroll-rot, 0deg)); transform-style: preserve-3d; box-shadow: inset 0 0 70px rgba(212,175,55,.11); }
.gold-orbit span { position: absolute; border-radius: 50%; background: radial-gradient(circle at 35% 25%, #fff8c9, #d4af37 42%, #6f4b0d); box-shadow: 0 12px 36px rgba(212,175,55,.3); }
.gold-orbit span:nth-child(1) { width: 82px; height: 82px; left: 14px; top: 25px; }
.gold-orbit span:nth-child(2) { width: 64px; height: 64px; right: 20px; bottom: 36px; }
.gold-orbit span:nth-child(3) { width: 44px; height: 44px; right: 118px; top: 113px; }
.device-panel { position: relative; z-index: 1; border: 1px solid var(--stroke); border-radius: 26px; padding: 22px; background: rgba(4,4,3,.46); }
.device-panel p, .quote-card p { color: rgba(255,249,237,.72); line-height: 1.7; }
.quote-card h3 { position: relative; z-index: 1; margin-top: 30px; }
.quote-card > p, .mini-form { position: relative; z-index: 1; }
.mini-form, .contact-form { display: grid; gap: 14px; margin-top: 24px; }
label { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .13em; font-weight: 900; }
input, select, textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(246,220,134,.18);
  border-radius: 16px;
  background: rgba(7,6,4,.58);
  color: var(--ivory);
  padding: 14px 14px;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,.12); }
.marquee { overflow: hidden; border-block: 1px solid rgba(246,220,134,.18); background: rgba(255,246,220,.03); }
.marquee-track { display: flex; gap: 34px; width: max-content; padding: 17px 0; animation: marquee 34s linear infinite; }
.marquee span { color: rgba(255,249,237,.72); text-transform: uppercase; letter-spacing: .2em; font-size: 12px; font-weight: 900; }
@keyframes marquee { to { transform: translateX(-50%); } }
.section { position: relative; padding: 96px 0; }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 34px; }
.section-head h2 { max-width: 790px; }
.section-head p { max-width: 450px; color: rgba(255,249,237,.67); line-height: 1.8; }
.card-grid { display: grid; gap: 18px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.service-card, .info-card, .process-card, .big-card, .location-card, .service-areas, .warning-panel {
  border: 1px solid var(--stroke);
  border-radius: 30px;
  padding: 26px;
  background: linear-gradient(150deg, rgba(255,246,220,.1), rgba(255,246,220,.028));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transform-style: preserve-3d;
}
.service-card .num, .process-card b { color: var(--gold-2); font-family: var(--font-display); font-size: 34px; }
.service-card h3, .info-card h3, .process-card h3 { margin-top: 34px; }
.service-card p, .info-card p, .process-card p, .big-card p, .warning-panel p, .location-card p, .service-areas p { color: rgba(255,249,237,.68); line-height: 1.75; }
.service-card a { color: var(--gold-2); font-weight: 900; }
.content-band { display: grid; grid-template-columns: .96fr 1.04fr; gap: 42px; align-items: center; }
.content-band.flip .image-frame { order: 2; }
.image-frame { border: 1px solid var(--stroke); border-radius: 38px; padding: 10px; background: rgba(255,246,220,.06); box-shadow: var(--shadow); }
.image-frame img { width: 100%; height: 560px; object-fit: cover; border-radius: 30px; }
.band-copy p, .gallery-copy p, .pricing-copy p { color: rgba(255,249,237,.72); line-height: 1.8; font-size: 18px; }
.band-copy h2, .gallery-copy h2 { margin-top: 16px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; color: rgba(255,249,237,.76); line-height: 1.65; }
.check-list li::before { content: ''; position: absolute; left: 0; top: .45em; width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, #fff5b6, var(--gold)); box-shadow: 0 0 20px rgba(212,175,55,.26); }
.scroll-suite { position: relative; min-height: 1180px; padding: 100px 0; }
.sticky-showcase { position: sticky; top: 130px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 45px; }
.showcase-copy p { color: rgba(255,249,237,.7); line-height: 1.8; font-size: 18px; }
.vault-scene { position: relative; min-height: 650px; perspective: 1300px; }
.vault-ring { position: absolute; inset: 70px 30px auto auto; width: 470px; height: 470px; border-radius: 50%; border: 1px solid rgba(246,220,134,.25); background: conic-gradient(from 0deg, rgba(246,220,134,.08), rgba(246,220,134,.44), rgba(111,67,16,.16), rgba(246,220,134,.3)); transform: rotateX(64deg) rotateZ(var(--scroll-rot, 0deg)); box-shadow: inset 0 0 80px rgba(0,0,0,.42), 0 30px 100px rgba(0,0,0,.4); }
.bar-stack { position: absolute; right: 68px; top: 210px; transform: rotateX(62deg) rotateZ(-24deg) translateZ(120px); transform-style: preserve-3d; }
.bar-stack i { display: block; width: 260px; height: 74px; margin-top: -12px; border-radius: 18px; background: linear-gradient(135deg, #fff5b6, #d4af37 42%, #77500f); border: 1px solid rgba(255,246,220,.35); box-shadow: 0 22px 48px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.44); }
.bar-stack i:nth-child(2) { transform: translate3d(-45px, 0, 42px); width: 236px; }
.bar-stack i:nth-child(3) { transform: translate3d(28px, 0, 82px); width: 210px; }
.photo-float { position: absolute; width: 225px; border: 1px solid var(--stroke); border-radius: 28px; padding: 8px; background: rgba(6,5,3,.65); box-shadow: var(--shadow); transform: translateY(calc(var(--scroll-y, 0) * -.035px)) rotate(-6deg); }
.photo-float img { height: 270px; width: 100%; object-fit: cover; border-radius: 22px; }
.photo-float.one { left: 20px; top: 48px; }
.photo-float.two { right: 0; bottom: 24px; transform: translateY(calc(var(--scroll-y, 0) * -.055px)) rotate(8deg); }
.process-rail { position: absolute; left: 0; right: 0; bottom: 78px; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.process-rail div { border: 1px solid var(--stroke); border-radius: 22px; padding: 20px; background: rgba(7,6,4,.72); backdrop-filter: blur(18px); }
.process-rail strong { display: block; color: var(--gold-2); font-family: var(--font-display); font-size: 30px; }
.process-rail span { color: rgba(255,249,237,.76); }
.dark-panel-section { padding-top: 30px; }
.editorial-panel, .vip-panel {
  border: 1px solid var(--stroke-strong);
  border-radius: 42px;
  padding: clamp(28px, 6vw, 72px);
  background: radial-gradient(circle at 80% 20%, rgba(212,175,55,.18), transparent 28rem), linear-gradient(145deg, rgba(255,246,220,.11), rgba(255,246,220,.026));
  box-shadow: var(--shadow);
}
.editorial-panel h2, .vip-panel h2 { margin-top: 18px; }
.editorial-columns { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 28px; }
.editorial-columns p, .editorial-panel p, .vip-panel p { color: rgba(255,249,237,.72); line-height: 1.8; font-size: 18px; }
.gallery-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.gallery-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gallery-stack figure { margin: 0; border: 1px solid var(--stroke); border-radius: 32px; padding: 8px; background: rgba(255,246,220,.05); }
.gallery-stack img { height: 520px; width: 100%; object-fit: cover; border-radius: 25px; }
.gallery-stack figure:nth-child(2) { transform: translateY(72px); }
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.big-card h2 { font-size: clamp(34px, 4vw, 58px); }
.gold-glass { background: radial-gradient(circle at 90% 10%, rgba(212,175,55,.2), transparent 17rem), linear-gradient(150deg, rgba(255,246,220,.12), rgba(255,246,220,.028)); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.timeline-lux { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; position: relative; }
.timeline-lux::before { content: ''; position: absolute; left: 8%; right: 8%; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.timeline-lux div { position: relative; min-height: 180px; display: grid; place-items: center; border: 1px solid var(--stroke); border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,.15), rgba(255,246,220,.035)); }
.timeline-lux span { font-weight: 900; color: var(--gold-2); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.pricing-layout { display: grid; grid-template-columns: 1fr 420px; gap: 42px; align-items: start; }
.estimator, .contact-form, .contact-aside {
  border: 1px solid var(--stroke-strong);
  border-radius: 34px;
  padding: 28px;
  background: linear-gradient(150deg, rgba(255,246,220,.12), rgba(255,246,220,.035));
  box-shadow: var(--shadow);
}
.estimator p, .form-note { color: rgba(255,249,237,.65); line-height: 1.7; }
.estimate-output { margin: 22px 0; padding: 20px; border-radius: 22px; border: 1px solid var(--stroke); background: rgba(7,6,4,.4); }
.estimate-output span { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .13em; font-size: 12px; font-weight: 900; }
.estimate-output strong { display: block; margin-top: 8px; color: var(--gold-2); font-size: 38px; font-family: var(--font-display); }
.location-layout, .contact-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 26px; }
.map-placeholder { min-height: 460px; border: 1px solid var(--stroke); border-radius: 34px; display: grid; place-items: center; text-align: center; padding: 30px; background: radial-gradient(circle at 40% 30%, rgba(212,175,55,.22), transparent 20rem), repeating-linear-gradient(45deg, rgba(255,246,220,.04) 0 1px, transparent 1px 20px), rgba(255,246,220,.04); }
.map-placeholder span { color: var(--gold-2); font-family: var(--font-display); font-size: 42px; }
.map-placeholder p { max-width: 360px; color: rgba(255,249,237,.68); line-height: 1.7; }
.faq-list { display: grid; gap: 14px; max-width: 940px; }
.faq-item { border: 1px solid var(--stroke); border-radius: 24px; padding: 0 22px; background: rgba(255,246,220,.055); }
.faq-item summary { cursor: pointer; padding: 24px 0; color: var(--gold-2); font-family: var(--font-display); font-size: 24px; font-weight: 800; }
.faq-item p { color: rgba(255,249,237,.72); line-height: 1.8; margin: 0 0 24px; }
.contact-form h2 { margin-top: 16px; }
.contact-aside h3 { margin-bottom: 8px; }
.contact-photo { margin-top: 28px; border-radius: 26px; overflow: hidden; }
.contact-photo img { height: 340px; width: 100%; object-fit: cover; }
.footer { padding: 70px 0 32px; border-top: 1px solid var(--stroke); background: linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.58)); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .8fr); gap: 34px; }
.footer img { width: 58px; height: 58px; border-radius: 18px; }
.footer h3 { margin-top: 15px; }
.footer p { color: rgba(255,249,237,.62); line-height: 1.7; max-width: 360px; }
.footer strong { display: block; color: var(--gold-2); margin-bottom: 14px; }
.footer a { display: block; color: rgba(255,249,237,.62); margin: 10px 0; }
.footer a:hover { color: var(--gold-2); }
.legal-row { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; color: rgba(255,249,237,.42); font-size: 12px; line-height: 1.6; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; } .reveal { opacity: 1; transform: none; } }
@media (max-width: 1080px) {
  .top-strip { display: none; }
  .main-nav { border-radius: 28px; margin-top: 10px; }
  .nav-toggle { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--stroke); border-radius: 999px; min-height: 48px; padding: 0 15px; background: rgba(255,246,220,.06); color: var(--ivory); font-weight: 900; }
  .nav-toggle span { width: 16px; height: 2px; background: var(--gold-2); display: block; }
  .nav-toggle b { margin-left: 3px; font-size: 13px; }
  .nav-panel { position: fixed; inset: 96px 16px auto 16px; display: none; padding: 18px; border: 1px solid var(--stroke); border-radius: 30px; background: rgba(7,6,4,.96); box-shadow: var(--shadow); }
  .nav-panel.open { display: block; }
  .nav-links, .nav-actions { display: grid; gap: 8px; }
  .nav-links > a, .nav-more summary { padding: 14px 16px; }
  .dropdown-menu { position: static; transform: none; box-shadow: none; margin-top: 8px; }
  .nav-actions { margin-top: 14px; }
  .home-hero-inner, .hero-layout, .sticky-showcase, .content-band, .gallery-grid, .pricing-layout, .location-layout, .contact-layout { grid-template-columns: 1fr; }
  .quote-card { min-height: auto; }
  .card-grid.four, .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .content-band.flip .image-frame { order: initial; }
  .process-rail { position: static; margin-top: 24px; grid-template-columns: repeat(2,1fr); }
  .scroll-suite { min-height: auto; }
  .sticky-showcase { position: static; }
}
@media (max-width: 720px) {
  .shell { width: min(100% - 24px, 1200px); }
  .brand { min-width: 0; }
  .brand span { display: none; }
  .home-hero, .page-hero { min-height: auto; }
  .home-hero-inner, .hero-layout { padding-top: 54px; }
  h1 { font-size: clamp(46px, 14vw, 72px); }
  .lead { font-size: 17px; }
  .hero-metrics, .mini-proof, .card-grid.four, .card-grid.three, .split-cards, .process-grid, .editorial-columns, .gallery-stack, .process-rail, .timeline-lux, .footer-grid { grid-template-columns: 1fr; }
  .luxury-device { min-height: 430px; }
  .gold-orbit { width: 230px; height: 230px; }
  .section { padding: 68px 0; }
  .section-head { display: block; }
  .image-frame img, .gallery-stack img { height: 390px; }
  .gallery-stack figure:nth-child(2) { transform: none; }
  .vault-scene { min-height: 520px; transform: scale(.82); transform-origin: top center; }
  .pricing-layout { gap: 22px; }
  .legal-row { display: block; }
}
