:root {
  --ivory: #f4eddf;
  --ivory-2: #fbf7ef;
  --paper: #efe4d2;
  --ink: #1d241f;
  --muted: #706c62;
  --green: #153b2c;
  --green-2: #0f2c21;
  --green-3: #28533e;
  --terracotta: #9f4e2b;
  --bronze: #b48a4a;
  --blue: #789daa;
  --line: rgba(43, 49, 42, .16);
  --shadow: 0 24px 70px rgba(20, 31, 24, .15);
  --soft-shadow: 0 12px 34px rgba(20, 31, 24, .10);
  --radius: 22px;
  --radius-sm: 13px;
  --shell: min(1240px, calc(100vw - 48px));
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory-2);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: rgba(180, 138, 74, .35); color: var(--green-2); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(78px, 9vw, 140px) 0; position: relative; }
.dark-section { background: var(--green-2); color: var(--ivory-2); }

.skip-link {
  position: fixed; left: 14px; top: 14px; z-index: 9999;
  padding: 10px 14px; background: white; border-radius: 8px;
  transform: translateY(-160%); transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.scroll-progress {
  position: fixed; inset: 0 auto auto 0; width: 0; height: 3px; z-index: 2000;
  background: linear-gradient(90deg, var(--terracotta), var(--bronze));
  box-shadow: 0 0 18px rgba(180, 138, 74, .65);
}

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 1000;
  color: white; transition: background .35s ease, color .35s ease, box-shadow .35s ease, transform .35s ease;
}
.site-header.scrolled {
  background: rgba(247, 241, 230, .94); color: var(--green-2);
  box-shadow: 0 10px 35px rgba(22, 37, 29, .10); backdrop-filter: blur(18px);
}
.header-inner { height: 88px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 210px; }
.brand-mark { width: 43px; height: 43px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.brand-mark path { stroke-dasharray: 100; stroke-dashoffset: 100; animation: drawMark 1.5s ease .25s forwards; }
@keyframes drawMark { to { stroke-dashoffset: 0; } }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: .02em; }
.brand-copy small { margin-top: 5px; text-transform: uppercase; font-size: 9px; letter-spacing: .32em; opacity: .75; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.desktop-nav a { font-size: 12px; letter-spacing: .11em; text-transform: uppercase; position: relative; padding: 12px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: 6px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer; padding: 10px; }
.menu-toggle span { display: block; width: 23px; height: 1px; margin: 6px auto; background: currentColor; transition: .3s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { display: none; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 25px; border: 1px solid var(--bronze);
  border-radius: 999px; background: var(--bronze); color: #17231c;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; position: relative; overflow: hidden; transition: transform .3s ease, color .3s ease, box-shadow .3s ease;
}
.button::before { content: ""; position: absolute; inset: 0; background: var(--ivory-2); transform: translateX(-102%); transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.button > span, .button { isolation: isolate; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(180,138,74,.24); }
.button:hover::before { transform: translateX(0); }
.button::after { content: "↗"; position: relative; z-index: 1; font-size: 15px; }
.button-small { min-height: 42px; padding-inline: 20px; }
.button-dark { background: var(--green); color: white; border-color: var(--green); }
.button-dark::before { background: var(--terracotta); }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(4px,-2px); }
.light-link { color: white; }

.hero { min-height: 100svh; position: relative; color: white; display: flex; align-items: flex-end; overflow: hidden; background: #19271f; }
.hero-media { position: absolute; inset: 0; display: block; overflow: hidden; transform: scale(1.035); animation: heroZoom 16s ease-out both; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
@keyframes heroZoom { from { transform: scale(1.10); } to { transform: scale(1.035); } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,20,14,.82) 0%, rgba(8,20,14,.42) 48%, rgba(8,20,14,.13) 74%), linear-gradient(0deg, rgba(7,18,12,.76) 0%, transparent 55%); }
.hero-noise { position: absolute; inset: 0; opacity: .1; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.confluence-lines { position: absolute; width: min(880px, 70vw); right: -10vw; top: 12%; opacity: .32; pointer-events: none; }
.confluence-lines path { fill: none; stroke: rgba(231,201,148,.7); stroke-width: 1; stroke-dasharray: 520; stroke-dashoffset: 520; animation: riverLine 4s ease 1s forwards; }
.confluence-lines path:nth-child(2) { animation-delay: 1.35s; }
.confluence-lines path:nth-child(3) { animation-delay: 1.7s; }
@keyframes riverLine { to { stroke-dashoffset: 0; } }
.hero-content { position: relative; z-index: 3; padding-top: 145px; padding-bottom: 42px; }
.hero-copy { max-width: 790px; padding-bottom: clamp(60px, 8vh, 100px); }
.eyebrow { display: inline-block; margin-bottom: 20px; font-size: 11px; line-height: 1.2; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--terracotta); }
.eyebrow.light { color: #e9c992; }
.status-pill { width: fit-content; display: flex; align-items: center; gap: 10px; margin-bottom: 22px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(9,27,18,.28); backdrop-filter: blur(12px); font-size: 10px; letter-spacing: .17em; text-transform: uppercase; }
.status-pill i { width: 7px; height: 7px; border-radius: 50%; background: #e3b565; box-shadow: 0 0 0 0 rgba(227,181,101,.8); animation: pulseStatus 2s infinite; }
@keyframes pulseStatus { 70% { box-shadow: 0 0 0 9px rgba(227,181,101,0); } 100% { box-shadow: 0 0 0 0 rgba(227,181,101,0); } }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
.hero h1 { font-size: clamp(52px, 7.3vw, 108px); max-width: 1000px; line-height: .94; letter-spacing: -.04em; margin-bottom: 28px; text-wrap: balance; }
.hero-copy > p { max-width: 690px; font-size: clamp(17px, 1.6vw, 22px); line-height: 1.55; color: rgba(255,255,255,.84); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 35px; }
.hero-statbar { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.25); }
.hero-statbar > div { min-height: 120px; padding: 28px 24px 14px 0; display: grid; align-content: start; grid-template-columns: 38px 1fr; column-gap: 15px; border-right: 1px solid rgba(255,255,255,.18); }
.hero-statbar > div:not(:first-child) { padding-left: 24px; }
.hero-statbar > div:last-child { border-right: 0; }
.stat-icon { grid-row: span 2; width: 32px; height: 32px; color: #e9c992; }
.hero-statbar strong { display: block; font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1.05; }
.hero-statbar span { max-width: 190px; margin-top: 8px; font-size: 11px; line-height: 1.35; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.66); }
.scroll-cue { position: absolute; z-index: 5; right: 32px; bottom: 42px; writing-mode: vertical-rl; display: flex; align-items: center; gap: 12px; font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.68); }
.scroll-cue span { display: block; width: 1px; height: 42px; background: rgba(255,255,255,.45); position: relative; overflow: hidden; }
.scroll-cue span::after { content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: white; animation: scrollCue 2s infinite; }
@keyframes scrollCue { to { top: 100%; } }

.section-heading h2 { font-size: clamp(43px, 5.1vw, 78px); line-height: 1.03; letter-spacing: -.035em; margin-bottom: 0; }
.section-heading h2 em, h2 em { color: var(--terracotta); font-weight: 400; }
.dark-section h2 em { color: #e2b36c; }
.split-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(40px, 9vw, 120px); align-items: end; margin-bottom: clamp(48px, 6vw, 82px); }
.split-heading > p { margin-bottom: 7px; color: var(--muted); }
.dark-section .split-heading > p { color: rgba(255,255,255,.62); }

.intro-section { padding-bottom: 0; overflow: hidden; }
.intro-grid { display: grid; grid-template-columns: 1.1fr .75fr; gap: clamp(55px, 10vw, 145px); align-items: start; margin-bottom: 80px; }
.intro-copy .lead { font-family: var(--serif); font-size: clamp(24px, 2.7vw, 37px); line-height: 1.35; color: var(--green-2); }
.intro-copy > p:not(.lead) { color: var(--muted); }
.feature-line { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 35px; color: var(--green); text-transform: uppercase; font-size: 10px; letter-spacing: .18em; font-weight: 700; }
.feature-line i { width: 4px; height: 4px; background: var(--bronze); border-radius: 50%; }
.panorama { min-height: 640px; position: relative; overflow: hidden; }
.panorama img { width: 100%; height: 640px; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.panorama:hover img { transform: scale(1.025); }
.panorama::after { content: ""; position: absolute; inset: auto 0 0; height: 38%; background: linear-gradient(transparent, rgba(8,22,15,.68)); }
.panorama-caption { position: absolute; z-index: 2; left: 50%; bottom: 42px; transform: translateX(-50%); color: white; display: flex; align-items: end; justify-content: space-between; }
.panorama-caption p { margin: 0; font-family: var(--serif); font-size: clamp(30px, 4vw, 62px); }
.panorama-caption span { font-size: 10px; letter-spacing: .13em; text-transform: uppercase; opacity: .72; }

.masterplan-section { overflow: hidden; }
.masterplan-section::before { content: ""; position: absolute; width: 900px; height: 900px; border: 1px solid rgba(213,179,117,.1); border-radius: 50%; right: -450px; top: 80px; box-shadow: 0 0 0 100px rgba(213,179,117,.025), 0 0 0 200px rgba(213,179,117,.02); }
.masterplan-wrap { display: grid; grid-template-columns: minmax(0,1fr) 350px; background: #0c2118; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); overflow: hidden; box-shadow: 0 45px 90px rgba(0,0,0,.25); }
.masterplan-image { min-height: 620px; position: relative; overflow: hidden; }
.masterplan-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 72%, rgba(8,24,16,.32)); pointer-events: none; }
.masterplan-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(1.04); transition: transform .8s ease; }
.masterplan-wrap:hover .masterplan-image img { transform: scale(1.012); }
.hotspot { position: absolute; z-index: 4; left: var(--x); top: var(--y); transform: translate(-50%,-50%); border: 0; background: transparent; color: white; cursor: pointer; padding: 0; }
.hotspot span { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: rgba(11,38,26,.68); backdrop-filter: blur(12px); font-size: 10px; transition: transform .3s ease, background .3s ease; }
.hotspot span::before { content: ""; position: absolute; width: 56px; height: 56px; border: 1px solid rgba(229,188,116,.55); border-radius: 50%; animation: hotspotPulse 2.3s infinite; }
@keyframes hotspotPulse { 0%,100% { transform: scale(.78); opacity: 0; } 45% { opacity: .8; } 100% { transform: scale(1.25); opacity: 0; } }
.hotspot b { position: absolute; left: 51px; top: 11px; white-space: nowrap; padding: 5px 8px; background: rgba(11,38,26,.8); font-size: 9px; font-family: var(--sans); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: 5px; opacity: 0; transform: translateX(-5px); transition: .25s ease; }
.hotspot:hover b, .hotspot.active b { opacity: 1; transform: none; }
.hotspot:hover span, .hotspot.active span { transform: scale(1.12); background: var(--terracotta); border-color: var(--terracotta); }
.place-panel { padding: 48px 38px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, rgba(31,69,49,.86), rgba(10,31,21,.96)); }
.place-index { font-size: 10px; letter-spacing: .2em; color: #dab274; }
.place-panel h3 { margin: 18px 0; font-size: 44px; line-height: 1.05; }
.place-panel p { color: rgba(255,255,255,.68); }
.place-panel .text-link { margin-top: 25px; }
.place-panel.is-changing > * { animation: panelChange .4s ease; }
@keyframes panelChange { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
.disclaimer { margin-top: 18px; font-size: 10px; line-height: 1.5; color: var(--muted); }
.dark-section .disclaimer { color: rgba(255,255,255,.42); }

.residences-section { background: var(--ivory); }
.residence-explorer { display: grid; grid-template-columns: 290px minmax(0,1fr); background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.residence-tabs { display: grid; align-content: center; padding: 22px; background: #eee3d0; }
.res-tab { position: relative; padding: 26px 20px; border: 0; border-bottom: 1px solid rgba(33,46,36,.13); background: transparent; text-align: left; cursor: pointer; transition: background .3s ease, transform .3s ease; }
.res-tab::before { content: ""; position: absolute; left: -22px; top: 0; bottom: 0; width: 3px; background: var(--terracotta); transform: scaleY(0); transition: transform .3s ease; }
.res-tab small { display: block; margin-bottom: 8px; color: var(--terracotta); letter-spacing: .18em; }
.res-tab strong { display: block; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.res-tab span { font-size: 11px; color: var(--muted); }
.res-tab:hover { transform: translateX(4px); }
.res-tab.active { background: rgba(255,255,255,.62); }
.res-tab.active::before { transform: scaleY(1); }
.residence-stage { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(330px,.85fr); min-height: 660px; }
.residence-image-frame { min-height: 660px; position: relative; overflow: hidden; background: #d8d0c3; }
.residence-image-frame img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s ease, transform .7s ease; }
.residence-image-frame:hover img { transform: scale(1.025); }
.residence-image-frame span { position: absolute; left: 22px; bottom: 20px; padding: 7px 10px; background: rgba(19,36,26,.58); color: white; backdrop-filter: blur(12px); border-radius: 6px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.residence-details { padding: clamp(38px,5vw,70px); display: flex; flex-direction: column; justify-content: center; }
.residence-details h3 { font-size: clamp(38px,4.2vw,59px); line-height: 1.05; margin-bottom: 24px; }
.residence-details > p { color: var(--muted); }
.residence-details.is-changing { animation: panelChange .4s ease; }
.check-list { list-style: none; padding: 0; margin: 24px 0 34px; }
.check-list li { padding: 11px 0 11px 30px; position: relative; border-bottom: 1px solid var(--line); font-size: 14px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 17px; width: 13px; height: 7px; border-left: 1.5px solid var(--terracotta); border-bottom: 1.5px solid var(--terracotta); transform: rotate(-45deg); }
.interior-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 42px; }
.image-card { height: 500px; position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; }
.image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.image-card::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(7,18,12,.76)); }
.image-card:hover img { transform: scale(1.045); }
.image-card > div { position: absolute; z-index: 2; inset: auto 24px 24px; color: white; }
.image-card span, .amenity-label span { font-size: 9px; letter-spacing: .19em; text-transform: uppercase; color: #e4bc7c; }
.image-card h3, .amenity-label h3 { margin: 4px 0 0; font-size: 29px; }

.commercial-section { padding-top: 0; }
.commercial-hero { min-height: 720px; position: relative; display: flex; align-items: center; overflow: hidden; }
.commercial-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.commercial-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,24,16,.86), rgba(8,24,16,.26) 70%); }
.commercial-copy { position: relative; z-index: 2; color: white; }
.commercial-copy h2 { max-width: 750px; font-size: clamp(52px, 7vw, 96px); line-height: .98; }
.commercial-copy p { max-width: 540px; font-size: 19px; color: rgba(255,255,255,.76); }
.commercial-copy .button { margin-top: 25px; }
.commercial-cards { display: grid; grid-template-columns: repeat(3,1fr); margin-top: -58px; position: relative; z-index: 4; }
.commercial-cards article { min-height: 290px; padding: 38px; background: var(--ivory-2); border-right: 1px solid var(--line); box-shadow: var(--soft-shadow); transition: transform .35s ease, background .35s ease; }
.commercial-cards article:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.commercial-cards article:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; border-right: 0; }
.commercial-cards article:hover { transform: translateY(-8px); background: white; }
.card-icon { width: 40px; height: 40px; margin-bottom: 25px; color: var(--terracotta); }
.commercial-cards article > span { font-size: 10px; letter-spacing: .17em; color: var(--terracotta); }
.commercial-cards h3 { font-size: 31px; margin: 13px 0; }
.commercial-cards p { color: var(--muted); font-size: 14px; }
.commercial-gallery { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2,330px); gap: 16px; margin-top: 70px; }
.commercial-gallery figure { margin: 0; position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; }
.commercial-gallery .large { grid-row: 1 / 3; }
.commercial-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.commercial-gallery figure:hover img { transform: scale(1.035); }
.commercial-gallery figure::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent,rgba(7,19,12,.75)); }
.commercial-gallery figcaption { position: absolute; z-index: 2; left: 25px; bottom: 23px; color: white; display: grid; }
.commercial-gallery strong { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.commercial-gallery span { font-size: 11px; opacity: .75; }

.lifestyle-section { background: #ecdfca; overflow: hidden; }
.lifestyle-section::after { content: "CONFLUENCE"; position: absolute; right: -38px; top: 40%; writing-mode: vertical-rl; font-family: var(--serif); font-size: clamp(90px,14vw,190px); letter-spacing: .05em; color: rgba(72,72,54,.035); }
.amenity-feature { display: grid; grid-template-columns: 1.25fr .75fr; gap: 16px; position: relative; z-index: 2; }
.amenity-feature article { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; }
.amenity-main { min-height: 620px; }
.amenity-side { display: grid; grid-template-rows: repeat(2,302px); gap: 16px; }
.amenity-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.amenity-feature article:hover img { transform: scale(1.035); }
.amenity-feature article::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent,rgba(7,19,12,.76)); }
.amenity-label { position: absolute; z-index: 2; left: 25px; bottom: 22px; color: white; }
.amenity-list { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; margin-top: 42px; background: rgba(63,66,52,.16); border: 1px solid rgba(63,66,52,.16); }
.amenity-list span { min-height: 105px; padding: 20px 13px; background: var(--ivory-2); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.amenity-list .icon { color: var(--terracotta); }

.signature-section { overflow: hidden; }
.signature-scroller { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(350px, 42vw); gap: 22px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; padding: 0 max(24px,calc((100vw - 1240px)/2)) 24px; scrollbar-width: thin; scrollbar-color: var(--bronze) transparent; }
.signature-scroller article { scroll-snap-align: center; min-height: 590px; position: relative; border-radius: var(--radius); overflow: hidden; background: #0a2017; }
.signature-scroller img { width: 100%; height: 100%; object-fit: cover; opacity: .88; transition: transform .8s ease, opacity .5s ease; }
.signature-scroller article:hover img { transform: scale(1.04); opacity: 1; }
.signature-scroller article::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(transparent,rgba(4,15,10,.92)); }
.signature-scroller article > div { position: absolute; z-index: 2; inset: auto 34px 34px; }
.signature-scroller article span { color: #e1b46e; font-size: 10px; letter-spacing: .2em; }
.signature-scroller h3 { margin: 12px 0; font-size: 42px; }
.signature-scroller p { color: rgba(255,255,255,.65); }

.story-section { min-height: 850px; padding: 0; background: var(--green-2); color: white; display: grid; grid-template-columns: 1.05fr .95fr; }
.story-media { min-height: 850px; overflow: hidden; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-copy { padding: clamp(60px,8vw,130px); display: flex; flex-direction: column; justify-content: center; background: radial-gradient(circle at 90% 15%,rgba(171,123,67,.16),transparent 38%); }
.story-copy h2 { font-size: clamp(48px,6vw,82px); line-height: 1; }
.story-copy > p { max-width: 600px; color: rgba(255,255,255,.66); }
.story-copy blockquote { margin: 60px 0 0; padding-left: 28px; border-left: 1px solid var(--bronze); font-family: var(--serif); font-size: clamp(28px,3.5vw,48px); line-height: 1.2; color: #e8c486; }

.location-section { background: var(--ivory-2); }
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px,9vw,120px); align-items: center; }
.location-copy h2 { font-size: clamp(47px,5.5vw,78px); line-height: 1.02; }
.location-copy > p { color: var(--muted); }
.location-categories { margin-top: 38px; }
.location-categories article { display: grid; grid-template-columns: 85px 160px 1fr; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line); align-items: start; }
.location-categories article > span { font-size: 9px; letter-spacing: .17em; text-transform: uppercase; color: var(--terracotta); }
.location-categories h3 { margin: 0; font-size: 20px; }
.location-categories p { margin: 0; font-size: 13px; color: var(--muted); }
.network-map { aspect-ratio: 1; position: relative; border-radius: 50%; background: radial-gradient(circle at center,rgba(180,138,74,.12),transparent 22%), #e9dfcf; box-shadow: inset 0 0 0 1px rgba(50,61,49,.11); }
.network-map::before { content: ""; position: absolute; inset: 7%; border: 1px solid rgba(36,61,45,.12); border-radius: 50%; }
.network-ring { position: absolute; border: 1px dashed rgba(48,67,51,.16); border-radius: 50%; animation: rotateRing 30s linear infinite; }
.ring-one { inset: 17%; }
.ring-two { inset: 31%; animation-direction: reverse; animation-duration: 22s; }
@keyframes rotateRing { to { transform: rotate(360deg); } }
.network-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.network-lines line { stroke: rgba(47,78,57,.32); stroke-width: 1; stroke-dasharray: 5 7; animation: dashLine 18s linear infinite; }
@keyframes dashLine { to { stroke-dashoffset: -120; } }
.network-node { position: absolute; z-index: 2; width: 112px; min-height: 70px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--ivory-2); border: 1px solid rgba(44,67,51,.18); box-shadow: var(--soft-shadow); transition: transform .3s ease; }
.network-node:hover { transform: scale(1.08); }
.network-node strong { font-family: var(--serif); font-size: 15px; font-weight: 400; }
.network-node span { font-size: 8px; letter-spacing: .09em; color: var(--muted); text-transform: uppercase; }
.network-node.main { width: 145px; height: 145px; left: 50%; top: 50%; transform: translate(-50%,-50%); background: var(--green); color: white; border: 7px solid rgba(255,255,255,.58); }
.network-node.main:hover { transform: translate(-50%,-50%) scale(1.05); }
.network-node.main strong { font-size: 25px; }
.network-node.main span { color: rgba(255,255,255,.65); }
.n1 { left: 15%; top: 12%; }.n2 { right: 12%; top: 13%; }.n3 { right: 5%; top: 55%; }.n4 { left: 53%; bottom: 3%; }.n5 { left: 5%; bottom: 18%; }

.gallery-section { background: #e9dfcf; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 7px; justify-content: flex-end; }
.gallery-filters button { padding: 9px 15px; border: 1px solid rgba(50,61,49,.19); border-radius: 999px; background: transparent; cursor: pointer; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; transition: .25s ease; }
.gallery-filters button:hover, .gallery-filters button.active { background: var(--green); color: white; border-color: var(--green); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 240px; gap: 14px; }
.gallery-item { position: relative; border: 0; padding: 0; overflow: hidden; border-radius: var(--radius-sm); cursor: zoom-in; background: #ccc; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .35s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: brightness(.88); }
.gallery-item span { position: absolute; z-index: 2; left: 17px; bottom: 15px; color: white; font-family: var(--serif); font-size: 19px; text-shadow: 0 2px 10px rgba(0,0,0,.4); transform: translateY(8px); opacity: 0; transition: .3s ease; }
.gallery-item:hover span { transform: none; opacity: 1; }
.gallery-item.is-hidden { display: none; }

.register-section { min-height: 850px; color: white; overflow: hidden; }
.register-bg, .register-overlay { position: absolute; inset: 0; }
.register-bg img { width: 100%; height: 100%; object-fit: cover; }
.register-overlay { background: linear-gradient(90deg,rgba(8,25,16,.92),rgba(8,25,16,.56)); }
.register-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 520px; gap: clamp(55px,9vw,120px); align-items: center; }
.register-copy h2 { max-width: 650px; font-size: clamp(52px,6.7vw,88px); line-height: .98; }
.register-copy p { max-width: 550px; color: rgba(255,255,255,.7); }
.register-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 35px; }
.register-meta span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.interest-form { padding: 34px; border-radius: var(--radius); background: rgba(246,239,226,.94); color: var(--ink); backdrop-filter: blur(14px); box-shadow: 0 30px 80px rgba(0,0,0,.24); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }
.interest-form label { display: grid; gap: 7px; margin-bottom: 15px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.interest-form input, .interest-form select, .interest-form textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(35,49,39,.24); border-radius: 0; background: transparent; color: var(--ink); outline: none; text-transform: none; letter-spacing: normal; transition: border-color .2s ease; }
.interest-form input:focus, .interest-form select:focus, .interest-form textarea:focus { border-color: var(--terracotta); }
.interest-form textarea { resize: vertical; }
.consent { grid-template-columns: 18px 1fr !important; align-items: start; gap: 9px !important; font-size: 10px !important; line-height: 1.45; font-weight: 400 !important; text-transform: none !important; letter-spacing: normal !important; }
.consent input { margin-top: 2px; }
.form-note { margin: 12px 0 0; font-size: 10px; color: var(--muted); text-align: center; }
.form-note.success { color: var(--green); font-weight: 700; }

.site-footer { padding: 70px 0 30px; background: #091b13; color: white; }
.footer-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding-bottom: 45px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-statement { font-family: var(--serif); font-size: clamp(24px,3vw,40px); color: #ddb473; }
.footer-links { justify-self: end; display: flex; gap: 22px; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 50px; padding-top: 28px; color: rgba(255,255,255,.45); font-size: 9px; line-height: 1.55; }
.footer-bottom p:first-child { max-width: 850px; }

.lightbox { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 34px; background: rgba(4,11,7,.92); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: .3s ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-figure { margin: 0; display: grid; gap: 12px; justify-items: center; }
.lightbox img { max-width: min(1380px,92vw); max-height: 84vh; object-fit: contain; box-shadow: 0 30px 90px rgba(0,0,0,.55); transform: scale(.96); transition: transform .35s ease; }
.lightbox figcaption { color: rgba(255,255,255,.68); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; text-align: center; }
.lightbox.open img { transform: scale(1); }
.lightbox-close { position: absolute; top: 22px; right: 28px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.28); background: transparent; color: white; font-size: 28px; cursor: pointer; }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.js .reveal.in-view { opacity: 1; transform: none; }
.js .stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.js .stagger.in-view > * { opacity: 1; transform: none; }
.js .stagger.in-view > *:nth-child(2) { transition-delay: .08s; }
.js .stagger.in-view > *:nth-child(3) { transition-delay: .16s; }
.js .stagger.in-view > *:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto auto; }
  .menu-toggle { display: block; }
  .mobile-nav { position: fixed; inset: 88px 0 auto; min-height: calc(100dvh - 88px); overflow-y: auto; overscroll-behavior: contain; padding: 40px 24px 70px; background: rgba(245,238,225,.98); color: var(--green-2); display: grid; align-content: start; gap: 0; transform: translateY(-120%); opacity: 0; transition: .4s cubic-bezier(.2,.8,.2,1); }
  .mobile-nav.open { transform: none; opacity: 1; }
  .mobile-nav a { padding: 17px max(0px,calc((100vw - 800px)/2)); border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 29px; }
  .masterplan-wrap { grid-template-columns: 1fr; }
  .place-panel { min-height: 310px; }
  .residence-explorer { grid-template-columns: 1fr; }
  .residence-tabs { grid-template-columns: repeat(3,1fr); padding: 0; }
  .res-tab { border-right: 1px solid var(--line); border-bottom: 0; }
  .res-tab::before { left: 0; right: 0; top: auto; bottom: 0; width: auto; height: 3px; transform: scaleX(0); }
  .res-tab.active::before { transform: scaleX(1); }
  .register-grid { grid-template-columns: 1fr 480px; }
}

@media (max-width: 850px) {
  :root { --shell: min(100% - 32px, 720px); }
  .section { padding: 82px 0; }
  .header-inner { height: 74px; gap: 12px; }
  .site-header .header-cta { display: none; }
  .mobile-nav { top: 74px; min-height: calc(100dvh - 74px); }
  .brand { min-width: 0; }
  .brand-copy strong { font-size: 18px; }
  .brand-mark { width: 37px; }
  .hero-content { padding-top: 120px; }
  .hero-copy { padding-bottom: 60px; }
  .hero-statbar { grid-template-columns: repeat(2,1fr); }
  .hero-statbar > div { border-bottom: 1px solid rgba(255,255,255,.18); }
  .hero-statbar > div:nth-child(2) { border-right: 0; }
  .scroll-cue { display: none; }
  .confluence-lines { width: 100vw; right: -35vw; }
  .split-heading, .intro-grid, .location-grid { grid-template-columns: 1fr; gap: 38px; }
  .panorama, .panorama img { height: 520px; min-height: 520px; }
  .panorama-caption { display: block; }
  .panorama-caption span { display: block; margin-top: 10px; }
  .masterplan-image { min-height: 500px; }
  .hotspot b { display: none; }
  .residence-tabs { grid-template-columns: 1fr; }
  .res-tab { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 21px; }
  .residence-stage { grid-template-columns: 1fr; }
  .residence-image-frame { min-height: 630px; }
  .interior-strip { grid-template-columns: 1fr 1fr; }
  .interior-strip article:first-child { grid-column: span 2; }
  .commercial-cards { grid-template-columns: 1fr; margin-top: -30px; }
  .commercial-cards article, .commercial-cards article:first-child, .commercial-cards article:last-child { border-radius: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .commercial-cards article:first-child { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
  .commercial-cards article:last-child { border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
  .commercial-gallery, .amenity-feature { grid-template-columns: 1fr; grid-template-rows: auto; }
  .commercial-gallery .large { grid-row: auto; min-height: 500px; }
  .commercial-gallery figure:not(.large) { min-height: 380px; }
  .amenity-main { min-height: 500px; }
  .amenity-side { grid-template-rows: repeat(2,380px); }
  .amenity-list { grid-template-columns: repeat(2,1fr); }
  .signature-scroller { grid-auto-columns: minmax(320px,82vw); }
  .story-section { grid-template-columns: 1fr; }
  .story-media { min-height: 570px; }
  .story-copy { min-height: 650px; }
  .network-map { max-width: 650px; width: 100%; margin-inline: auto; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .register-grid { grid-template-columns: 1fr; }
  .interest-form { max-width: 580px; }
  .footer-top { grid-template-columns: 1fr; text-align: left; }
  .footer-links { justify-self: start; }
  .footer-bottom { display: block; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 28px); }
  .hero h1 { font-size: clamp(42px, 13.5vw, 51px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-statbar > div { padding: 20px 12px 20px 0; grid-template-columns: 28px 1fr; }
  .hero-statbar > div:not(:first-child) { padding-left: 12px; }
  .stat-icon { width: 23px; height: 23px; }
  .hero-statbar strong { font-size: 20px; }
  .hero-statbar span { font-size: 8px; }
  .section-heading h2 { font-size: 43px; }
  .masterplan-image { min-height: 420px; }
  .hotspot span { width: 37px; height: 37px; }
  .place-panel { padding: 36px 27px; }
  .residence-image-frame { min-height: 480px; }
  .residence-details { padding: 38px 25px; }
  .interior-strip { grid-template-columns: 1fr; }
  .interior-strip article:first-child { grid-column: auto; }
  .image-card { height: 500px; }
  .commercial-hero { min-height: 680px; }
  .commercial-copy h2 { font-size: 52px; }
  .commercial-cards article { padding: 30px 25px; min-height: 240px; }
  .amenity-list { grid-template-columns: repeat(2,1fr); }
  .location-categories article { grid-template-columns: 75px 1fr; }
  .location-categories p { grid-column: 2; }
  .network-node { width: 85px; min-height: 60px; }
  .network-node.main { width: 112px; height: 112px; }
  .n1 { left: 8%; top: 8%; }.n2 { right: 5%; top: 9%; }.n3 { right: 0; top: 56%; }.n4 { left: 51%; bottom: 0; }.n5 { left: 0; bottom: 16%; }
  .gallery-grid { grid-auto-rows: 190px; gap: 9px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 2; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .interest-form { padding: 26px 20px; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal, .js .stagger > * { opacity: 1; transform: none; }
}

/* Launch refinement layer */
:focus-visible {
  outline: 3px solid rgba(214, 171, 96, .95);
  outline-offset: 4px;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 72px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, .44);
}
.project-facts > div {
  min-height: 126px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.project-facts dt {
  margin-bottom: 9px;
  color: var(--terracotta);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.project-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  color: var(--green-2);
}

.residence-lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.residence-lifestyle-card {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  background: #ccc;
}
.residence-lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}
.residence-lifestyle-card::after {
  content: "";
  position: absolute;
  inset: 36% 0 0;
  background: linear-gradient(transparent, rgba(5, 18, 12, .88));
}
.residence-lifestyle-card:hover img { transform: scale(1.035); }
.residence-lifestyle-card > div {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 32px;
  color: white;
}
.residence-lifestyle-card span,
.lifestyle-story-grid span {
  color: #ebc485;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.residence-lifestyle-card h3 {
  margin: 8px 0 10px;
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.04;
}
.residence-lifestyle-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .73);
}

.lifestyle-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
  position: relative;
  z-index: 2;
}
.lifestyle-story-grid article {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  background: var(--green-2);
}
.lifestyle-story-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.lifestyle-story-grid article:hover img { transform: scale(1.045); }
.lifestyle-story-grid article::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(4, 17, 10, .91));
}
.lifestyle-story-grid article > div {
  position: absolute;
  z-index: 2;
  left: 25px;
  right: 25px;
  bottom: 24px;
  color: white;
}
.lifestyle-story-grid h3 {
  margin: 8px 0 10px;
  font-size: 31px;
  line-height: 1.08;
}
.lifestyle-story-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
}

.night-feature {
  min-height: min(88vh, 900px);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: var(--green-2);
}
.night-feature > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2, .8, .2, 1);
}
.night-feature:hover > img { transform: scale(1.018); }
.night-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 16, 10, .92), rgba(4, 16, 10, .08) 68%), linear-gradient(90deg, rgba(4, 16, 10, .5), transparent 65%);
}
.night-feature-copy {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(60px, 8vw, 115px);
}
.night-feature-copy h2 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(55px, 7.5vw, 110px);
  line-height: .95;
  letter-spacing: -.04em;
}
.night-feature-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, .73);
  font-size: 18px;
}

.faq-section { background: var(--ivory-2); }
.faq-list {
  max-width: 1020px;
  border-top: 1px solid var(--line);
}
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  position: relative;
  padding: 25px 58px 25px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.25;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--terracotta);
  transition: transform .25s ease;
}
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list p {
  max-width: 850px;
  margin: -5px 0 28px;
  color: var(--muted);
}

.hidden-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-sticky-cta { display: none; }

/* Faster perceived loading and stable media layout */
.gallery-item img,
.signature-scroller img,
.amenity-feature img,
.commercial-gallery img,
.image-card img,
.residence-lifestyle-card img,
.lifestyle-story-grid img {
  background: #c9c0b0;
}

@media (max-width: 1000px) {
  .project-facts { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-story-grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-story-grid article:first-child { grid-column: span 2; min-height: 600px; }
}

@media (max-width: 850px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .project-facts { margin-bottom: 54px; }
  .project-facts dd { font-size: 19px; }
  .residence-lifestyle-grid { grid-template-columns: 1fr; }
  .residence-lifestyle-card { min-height: 620px; }
  .night-feature { min-height: 700px; }
  .mobile-sticky-cta {
    position: fixed;
    z-index: 1800;
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    min-height: 56px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(237, 197, 128, .55);
    border-radius: 999px;
    background: rgba(11, 42, 30, .94);
    color: white;
    box-shadow: 0 16px 45px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
  }
  .mobile-sticky-cta span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .mobile-sticky-cta strong {
    color: #e8bd78;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
  }
}

@media (max-width: 620px) {
  .project-facts { grid-template-columns: 1fr; }
  .project-facts > div { min-height: 96px; padding: 20px; }
  .residence-lifestyle-card { min-height: 540px; }
  .residence-lifestyle-card > div { left: 23px; right: 23px; bottom: 23px; }
  .lifestyle-story-grid { grid-template-columns: 1fr; }
  .lifestyle-story-grid article,
  .lifestyle-story-grid article:first-child { grid-column: auto; min-height: 500px; }
  .night-feature { min-height: 610px; }
  .night-feature-copy h2 { font-size: 49px; }
  .faq-list summary { padding-right: 46px; font-size: 23px; }
}

.signature-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: -44px;
  margin-bottom: 24px;
}
.signature-controls p {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.signature-controls > div { display: flex; gap: 9px; }
.signature-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: white;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.signature-controls button:hover {
  background: var(--bronze);
  color: var(--green-2);
  transform: translateY(-2px);
}
@media (max-width: 850px) {
  .signature-controls { margin-top: -28px; }
  .gallery-item span { opacity: 1; transform: none; }
}


/* Final launch legal, map and responsive refinements */
.artist-badge {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 16px;
  max-width: calc(100% - 36px);
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(7,22,14,.62);
  color: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  font-size: 8px;
  line-height: 1.25;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-artist-badge { bottom: 22px; right: 24px; }
.visual-notice {
  position: relative;
  z-index: 4;
  background: #102d22;
  color: white;
  border-top: 1px solid rgba(224,184,116,.25);
  border-bottom: 1px solid rgba(224,184,116,.25);
}
.visual-notice-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 20px;
  padding-block: 20px;
}
.visual-notice .icon { width: 31px; height: 31px; color: #dfb777; }
.visual-notice strong {
  display: block;
  margin-bottom: 4px;
  color: #e8c487;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}
.visual-notice p {
  max-width: 1080px;
  margin: 0;
  color: rgba(255,255,255,.67);
  font-size: 11px;
  line-height: 1.55;
}
.site-map-feature {
  display: grid;
  grid-template-columns: minmax(0,1.45fr) minmax(300px,.55fr);
  gap: clamp(28px,5vw,70px);
  align-items: center;
  margin-top: clamp(62px,8vw,110px);
  padding-top: clamp(48px,6vw,82px);
  border-top: 1px solid var(--line);
}
.site-map-media {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #152019;
  cursor: zoom-in;
  box-shadow: var(--shadow);
}
.site-map-media img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
.site-map-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(36px,4vw,58px);
  line-height: 1.03;
}
.site-map-copy p { color: var(--muted); }
.site-map-copy .text-link { margin-top: 16px; color: var(--terracotta); }
.legal-notice {
  padding: clamp(64px,8vw,108px) 0;
  background: #e8dcc8;
  border-top: 1px solid rgba(35,49,39,.13);
}
.legal-notice-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(40px,8vw,110px);
  align-items: start;
}
.legal-notice h2 {
  max-width: 520px;
  margin: 0;
  color: var(--green-2);
  font-size: clamp(42px,5vw,72px);
  line-height: 1;
}
.legal-notice-copy {
  padding-left: clamp(0px,3vw,42px);
  border-left: 1px solid rgba(35,49,39,.18);
}
.legal-notice-copy p { margin-bottom: 16px; color: #55594f; font-size: 13px; }
.legal-notice-copy p:first-child { color: var(--ink); font-size: 14px; }
.gallery-filters button { min-height: 42px; }
.res-tab { touch-action: manipulation; }

@media (max-width: 850px) {
  .hero-artist-badge { top: 86px; bottom: auto; right: 16px; }
  .visual-notice-inner { grid-template-columns: 30px 1fr; gap: 15px; }
  .visual-notice p { font-size: 10px; }
  .residence-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 2px 10px;
    background: transparent;
  }
  .residence-tabs::-webkit-scrollbar { display: none; }
  .res-tab {
    flex: 0 0 min(78vw, 480px);
    min-height: 122px;
    border: 1px solid var(--line) !important;
    border-radius: 13px;
    background: rgba(255,255,255,.5);
    scroll-snap-align: start;
  }
  .res-tab::before { border-radius: 0 0 12px 12px; }
  .site-map-feature { grid-template-columns: 1fr; }
  .site-map-copy { max-width: 650px; }
  .legal-notice-grid { grid-template-columns: 1fr; gap: 30px; }
  .legal-notice-copy { padding-left: 0; padding-top: 26px; border-left: 0; border-top: 1px solid rgba(35,49,39,.18); }
}
@media (max-width: 560px) {
  .artist-badge { right: 10px; bottom: 10px; max-width: calc(100% - 20px); font-size: 7px; }
  .hero-artist-badge { top: 82px; bottom: auto; }
  .visual-notice-inner { grid-template-columns: 1fr; gap: 8px; padding-block: 18px; }
  .visual-notice .icon { width: 24px; height: 24px; }
  .visual-notice strong { font-size: 16px; }
  .res-tab { flex-basis: 86vw; }
  .site-map-feature { margin-top: 58px; padding-top: 44px; }
  .site-map-media { border-radius: 10px; }
  .site-map-copy h3 { font-size: 38px; }
  .legal-notice { padding: 62px 0; }
  .legal-notice h2 { font-size: 42px; }
  .footer-bottom { font-size: 8px; }
}
.signature-controls button:disabled {
  opacity: .35;
  cursor: default;
  transform: none;
  background: transparent;
  color: white;
}
.consent a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 2px; }
