@font-face { font-family: "Century Gothic"; src: url("../fonts/century-gothic.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Century Gothic"; src: url("../fonts/century-gothic-bold.woff2") format("woff2"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Century Gothic"; src: url("../fonts/century-gothic-italic.woff2") format("woff2"); font-style: italic; font-weight: 400; font-display: swap; }
@font-face { font-family: "Century Gothic"; src: url("../fonts/century-gothic-bold-italic.woff2") format("woff2"); font-style: italic; font-weight: 700; font-display: swap; }
@font-face { font-family: "Golden Plains"; src: url("../fonts/golden-plains.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }

:root {
  --pc-forest: #00401f;
  --pc-forest-muted: #324d3b;
  --pc-taupe: #7b6a58;
  --pc-gold: #d1ac66;
  --pc-cream: #f7e4bc;
  --pc-sand: #edd0a3;
  --pc-white: #ffffff;
  --pc-ink: #14281c;
  --pc-error: #982f24;
  --pc-success: #236a43;
  --color-background: var(--pc-white);
  --color-surface: #fffaf0;
  --color-foreground: var(--pc-ink);
  --color-primary: var(--pc-forest);
  --color-primary-soft: var(--pc-forest-muted);
  --color-accent: var(--pc-gold);
  --color-accent-soft: var(--pc-cream);
  --color-muted: var(--pc-taupe);
  --color-border: rgb(0 64 31 / 0.17);
  --focus-ring: 0 0 0 3px var(--pc-white), 0 0 0 6px var(--pc-gold);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 7rem;
  --space-10: 10rem;
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;
  --radius-pill: 999px;
  --shadow-soft: 0 1.5rem 4rem rgb(0 64 31 / 0.12);
  --shadow-deep: 0 2rem 6rem rgb(0 30 15 / 0.28);
  --duration-fast: 180ms;
  --duration-base: 360ms;
  --duration-slow: 760ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --content-width: 86rem;
  --section-space: clamp(5rem, 9vw, 9rem);
  --z-header: 30;
  --z-floating: 40;
  --z-modal: 60;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body { margin: 0; overflow-x: clip; background: var(--color-background) url("../images/texture-white.webp") center top / 900px auto repeat; color: var(--color-foreground); font-family: "Century Gothic", Arial, sans-serif; line-height: 1.55; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; }
:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.container { width: min(calc(100% - 2rem), var(--content-width)); margin-inline: auto; }
.section { position: relative; padding-block: var(--section-space); }
.section-block { padding-block: clamp(4.5rem, 8vw, 8rem); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 0.75rem; left: 0.75rem; padding: 0.75rem 1rem; border-radius: var(--radius-pill); background: var(--pc-white); color: var(--pc-forest); transform: translateY(-180%); transition: transform var(--duration-fast); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin: 0 0 0.8rem; color: var(--pc-gold); font-size: 0.73rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; text-wrap: balance; }
h1 { margin-bottom: 1.5rem; font-size: clamp(2.4rem, 5.2vw, 5.6rem); font-weight: 400; letter-spacing: -0.05em; }
h2 { margin-bottom: 1.2rem; font-size: clamp(2rem, 4vw, 4rem); font-weight: 400; letter-spacing: -0.04em; }
h3 { margin-bottom: 1rem; font-size: clamp(1.55rem, 3vw, 2.9rem); font-weight: 400; letter-spacing: -0.03em; }

.site-header { position: fixed; z-index: var(--z-header); inset: 0 0 auto; padding-top: 0.8rem; will-change: opacity, transform; transition: padding var(--duration-base) var(--ease-out), opacity var(--duration-base), transform var(--duration-base) var(--ease-out); }
.header-shell { display: flex; width: max-content; max-width: calc(100% - 2rem); min-height: 4.65rem; align-items: center; justify-content: flex-start; gap: 1.4rem; padding: 0.62rem 0.72rem 0.62rem 1.1rem; border: 1px solid rgb(209 172 102 / 0.46); border-radius: 1.35rem; background: rgb(247 228 188 / 0.94); box-shadow: 0 1rem 3rem rgb(0 30 15 / 0.17); backdrop-filter: blur(18px) saturate(125%); transition: min-height var(--duration-base) var(--ease-out), background var(--duration-base), box-shadow var(--duration-base); }
.site-header.is-scrolled { padding-top: 0.45rem; }
.site-header.is-scrolled .header-shell { min-height: 4.15rem; background: rgb(247 228 188 / 0.98); box-shadow: 0 0.75rem 2.2rem rgb(0 30 15 / 0.2); }
.site-header.is-hidden, .site-header.is-over-footer { opacity: 0; pointer-events: none; transform: translate3d(0, calc(-100% - 1rem), 0); }
.brand { display: flex; width: 11.8rem; flex: 0 0 auto; align-items: center; padding-right: 1.4rem; border-right: 1px solid rgb(0 64 31 / 0.18); }
.brand-logo { width: 10.4rem; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(0.85rem, 1.35vw, 1.35rem); font-size: 0.86rem; font-weight: 700; letter-spacing: 0.025em; }
.main-nav a { position: relative; padding: 0.8rem 0.08rem; white-space: nowrap; }
.main-nav a:not(.nav-contact)::after { content: ""; position: absolute; inset: auto 0.08rem 0.38rem; height: 2px; background: var(--pc-gold); transform: scaleX(0); transform-origin: left; transition: transform var(--duration-base) var(--ease-out); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.social-link { color: var(--pc-forest-muted); }
.nav-contact { padding: 0.85rem 1.2rem !important; border-radius: 0.9rem; background: var(--pc-forest); color: var(--pc-white); font-size: 0.82rem; box-shadow: 0 0.5rem 1.2rem rgb(0 64 31 / 0.17); transition: transform var(--duration-fast), background var(--duration-fast); }
.nav-contact:hover { background: var(--pc-forest-muted); transform: translateY(-1px); }
.menu-toggle { display: none; width: 2.9rem; height: 2.9rem; place-items: center; border: 0; border-radius: 50%; background: var(--pc-forest); color: var(--pc-white); }
.menu-toggle__icon { display: grid; width: 1.25rem; gap: 0.27rem; }
.menu-toggle__icon i { display: block; width: 100%; height: 1.5px; border-radius: 1px; background: currentColor; transition: opacity var(--duration-fast), transform var(--duration-fast); }
.menu-backdrop { display: none; }

.hero { padding-bottom: 0; background: var(--pc-white); }
.hero-stage { position: relative; min-height: clamp(46rem, 88vh, 55rem); overflow: hidden; border-radius: 0 0 clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem); background: var(--pc-forest); box-shadow: 0 1.2rem 3rem rgb(0 42 21 / 0.12); }
.hero-primary, .hero-primary img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-primary { transform: translate3d(0, var(--hero-shift, 0), 0); will-change: transform; }
.hero-primary img { object-fit: cover; object-position: center 52%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(0 39 20 / 0.86) 0%, rgb(0 47 24 / 0.58) 34%, rgb(0 36 18 / 0.15) 61%, transparent 78%), linear-gradient(0deg, rgb(0 34 17 / 0.52), transparent 42%); }
.hero-overlay::after { content: ""; position: absolute; inset: 0; background: url("../images/element-11.webp") center bottom / 100% 35% no-repeat; opacity: 0.18; }
.hero-content { position: relative; z-index: 2; display: flex; min-height: clamp(46rem, 88vh, 55rem); flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 7.5rem; padding-bottom: 4.5rem; color: var(--pc-white); }
.hero-content h1 { max-width: 17ch; margin-bottom: 1.8rem; font-size: clamp(2.65rem, 3.55vw, 4.15rem); text-shadow: 0 0.2rem 1.8rem rgb(0 25 13 / 0.18); }
.hero-content h1 strong { color: var(--pc-cream); font-weight: 700; }
.hero-offer { display: flex; overflow: hidden; max-width: 34rem; border: 1px solid rgb(209 172 102 / 0.88); border-radius: 1rem; background: url("../images/element-03.webp") center / 100% 100% no-repeat, rgb(0 55 28 / 0.76); box-shadow: 0 1rem 2.6rem rgb(0 28 14 / 0.24); backdrop-filter: blur(12px); }
.lot-badge, .status-badge { display: flex; min-height: 4.55rem; flex-direction: column; justify-content: center; padding: 0.8rem 1.25rem; }
.lot-badge { min-width: 11.5rem; text-align: center; }
.lot-badge span, .status-badge span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.lot-badge strong { font-size: 1.35rem; white-space: nowrap; }
.status-badge { flex: 1; background: var(--pc-cream); color: var(--pc-forest); }
.status-badge strong { font-size: 0.92rem; text-transform: uppercase; }
.hero-wave, .section-wave, .conversion-wave { position: absolute; z-index: 1; pointer-events: none; opacity: 0.4; }
.hero-wave--one { right: -8%; bottom: -3rem; width: min(58rem, 65vw); }
.hero-wave--two { top: 10%; right: -3%; width: min(18rem, 22vw); aspect-ratio: 1; opacity: 0.24; }

.lead-dock { position: relative; z-index: 4; display: grid; grid-template-columns: minmax(13rem, 0.72fr) minmax(32rem, 1.8fr) minmax(17rem, 1fr); gap: 1.3rem; align-items: center; margin-top: clamp(1.75rem, 3.5vw, 3rem); padding: 1.65rem; border: 1px solid rgb(209 172 102 / 0.5); border-radius: 1.4rem; background: var(--pc-cream) url("../images/element-08.webp") center / cover; box-shadow: 0 1.25rem 3.5rem rgb(0 48 24 / 0.1); }
.lead-dock::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 0.45rem; border-radius: 1.6rem 0 0 1.6rem; background: var(--pc-forest) url("../images/element-02.webp") center / cover; }
.dock-heading h2 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.8rem); }
.dock-heading .eyebrow { margin-bottom: 0.45rem; color: var(--pc-forest); }
.dock-fields { display: grid; grid-template-columns: 1.15fr 1fr 1.1fr; gap: 0.75rem; }
.field { position: relative; }
.field label { display: block; margin: 0 0 0.35rem 0.15rem; color: var(--pc-forest); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.field input { width: 100%; min-height: 3.2rem; padding: 0.75rem 0.9rem; border: 1px solid rgb(0 64 31 / 0.2); border-radius: 0.7rem; background: rgb(255 255 255 / 0.86); color: var(--pc-ink); font-size: 0.88rem; }
.field input:focus { border-color: var(--pc-forest); outline: 0; box-shadow: 0 0 0 3px rgb(209 172 102 / 0.35); }
.field input[aria-invalid="true"] { border-color: var(--pc-error); }
.field-error { position: absolute; top: calc(100% + 0.15rem); left: 0.2rem; color: var(--pc-error); font-size: 0.67rem; }
.dock-action { display: grid; gap: 0.65rem; }
.consent-field { display: grid; grid-template-columns: 1rem 1fr; gap: 0.55rem; align-items: start; font-size: 0.75rem; line-height: 1.35; }
.consent-field input { width: 1rem; height: 1rem; margin: 0.08rem 0 0; accent-color: var(--pc-forest); }
.consent-field a { text-decoration: underline; text-underline-offset: 2px; }
.honeypot { position: absolute; left: -10000px; }
.primary-button { display: flex; min-height: 3.2rem; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem 1rem; border: 0; border-radius: var(--radius-pill); background: var(--pc-forest); color: var(--pc-white); font-size: 0.76rem; font-weight: 700; text-align: left; transition: transform var(--duration-fast), background var(--duration-fast); }
.primary-button:hover { background: var(--pc-forest-muted); transform: translateY(-2px); }
.primary-button:disabled { opacity: 0.65; transform: none; }
.form-status { display: none; grid-column: 1 / -1; padding: 0.75rem 1rem; border-radius: 0.75rem; font-size: 0.84rem; }
.form-status:not(:empty) { display: block; }
.form-status[data-state="success"] { background: rgb(35 106 67 / 0.11); color: var(--pc-success); }
.form-status[data-state="error"] { background: rgb(152 47 36 / 0.1); color: var(--pc-error); }

.section-heading { max-width: 47rem; margin-bottom: 2.5rem; }
.section-heading p:last-child { max-width: 44rem; color: var(--pc-taupe); font-size: 1.05rem; }
.project-gallery { padding-top: clamp(2.25rem, 4vw, 3.5rem); padding-bottom: clamp(2.5rem, 4vw, 4rem); }
.media-rail { display: grid; gap: 1rem; }
.media-rail figure { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--pc-forest-muted); box-shadow: 0 1rem 2.5rem rgb(0 64 31 / 0.1); transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base); }
.media-rail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.media-rail figure:hover { transform: translateY(-0.3rem); box-shadow: 0 1.4rem 3.2rem rgb(0 64 31 / 0.16); }
.media-rail figure:hover img { transform: scale(1.025); }
.media-rail--project { grid-template-columns: repeat(12, 1fr); }
.media-rail--project figure { grid-column: span 4; aspect-ratio: 16 / 10; }
.media-rail--project figure:nth-child(-n + 2) { grid-column: span 6; }
.gallery-controls { display: none; gap: 0.6rem; justify-content: flex-end; margin-top: 1rem; }
.gallery-controls button { width: 2.8rem; height: 2.8rem; border: 1px solid rgb(0 64 31 / 0.25); border-radius: 50%; background: var(--pc-white); color: var(--pc-forest); font-size: 1.2rem; }
.gallery-controls button:disabled { cursor: not-allowed; opacity: 0.38; }

.video-section { overflow: hidden; padding-block: clamp(3.5rem, 5.5vw, 5.5rem); background: var(--pc-forest); color: var(--pc-white); }
.video-section.is-background-ready { background-image: url("../images/element-06.webp"); background-position: center; background-size: cover; }
.film-wrap { display: grid; grid-template-columns: minmax(14rem, 0.42fr) minmax(34rem, 1.58fr); gap: clamp(1.5rem, 3.5vw, 3.5rem); align-items: center; }
.film-copy h2 { margin-bottom: 0; font-size: clamp(2rem, 3.4vw, 3.5rem); }
.film-card { position: relative; overflow: hidden; border: 1px solid rgb(247 228 188 / 0.45); border-radius: var(--radius-xl); box-shadow: var(--shadow-deep); aspect-ratio: 16 / 9; }
.film-card img, .film-card iframe { width: 100%; height: 100%; border: 0; object-fit: cover; }
.film-card::after { content: ""; position: absolute; inset: 0; background: rgb(0 32 16 / 0.27); pointer-events: none; }
.play-button { position: absolute; z-index: 2; inset: 50% auto auto 50%; display: flex; min-width: 11rem; min-height: 3.5rem; align-items: center; justify-content: center; gap: 0.7rem; border: 1px solid rgb(255 255 255 / 0.65); border-radius: var(--radius-pill); background: rgb(0 64 31 / 0.84); color: var(--pc-white); transform: translate(-50%, -50%); backdrop-filter: blur(10px); }
.play-button:not(:disabled):hover { background: var(--pc-gold); color: var(--pc-forest); }
.section-wave--13 { top: 0; right: -3rem; width: 18rem; }

.leisure-section { overflow: hidden; padding-top: clamp(2.75rem, 4.5vw, 4.5rem); padding-bottom: 0; background-color: var(--pc-white); }
.leisure-section.is-background-ready { background-image: url("../images/element-10.webp"); background-position: center; background-size: 900px auto; background-repeat: repeat; }
.leisure-intro { max-width: 63rem; margin-bottom: clamp(2.25rem, 3.5vw, 3.5rem); text-align: center; }
.leisure-intro h2 { margin-bottom: 0; }
.leisure-gallery { position: relative; padding-bottom: clamp(3.5rem, 5.5vw, 5.5rem); }
.leisure-gallery::before { content: ""; position: absolute; inset: -2rem -8vw 0; opacity: 0.04; pointer-events: none; }
.leisure-section.is-background-ready .leisure-gallery::before { background: url("../images/element-07.webp") center / cover; }
.amenity-sequence { position: relative; z-index: 2; display: grid; gap: clamp(2.5rem, 3.6vw, 4rem); }
.amenity-block { display: grid; width: 100%; min-width: 0; grid-template-columns: minmax(0, 40fr) minmax(0, 60fr); align-items: stretch; overflow: hidden; border: 1px solid rgb(0 64 31 / 0.13); border-radius: var(--radius-xl); background: rgb(255 255 255 / 0.93); box-shadow: 0 1.2rem 3rem rgb(0 49 25 / 0.1); content-visibility: auto; contain-intrinsic-inline-size: auto none; contain-intrinsic-block-size: auto 29rem; }
.amenity-copy { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.15rem; padding: clamp(2.25rem, 4vw, 4.5rem); }
.amenity-copy::before { content: ""; width: clamp(2.75rem, 4vw, 4.25rem); height: 0.18rem; border-radius: var(--radius-pill); background: var(--pc-gold); }
.amenity-copy h3 { max-width: 18ch; margin: 0; color: var(--pc-forest); font-size: clamp(1.45rem, 2.15vw, 2.35rem); font-weight: 400; line-height: 1.16; text-wrap: balance; }
.amenity-media { position: relative; min-width: 0; }
.amenity-rail { display: flex; width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; touch-action: pan-x; }
.amenity-rail::-webkit-scrollbar { display: none; }
.amenity-rail:focus-visible { outline: 3px solid var(--pc-gold); outline-offset: 3px; }
.amenity-rail, .amenity-slide { height: 100%; }
.amenity-slide { position: relative; flex: 0 0 100%; min-width: 0; margin: 0; overflow: hidden; border-radius: 0; background: var(--pc-forest-muted); aspect-ratio: 16 / 9; scroll-snap-align: start; scroll-snap-stop: always; }
.amenity-slide picture { display: block; width: 100%; height: 100%; }
.amenity-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.amenity-slide--portrait { background: #102f20; }
.amenity-slide--portrait img { object-fit: contain; }
.amenity-slide[data-secondary]:has(img:not([src]))::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgb(50 77 59 / 0.72) 20%, rgb(73 101 83 / 0.72) 38%, rgb(50 77 59 / 0.72) 56%); background-size: 220% 100%; animation: amenity-loading 1.6s linear infinite; }
.amenity-gallery__controls { position: absolute; z-index: 4; inset: 0; display: block; min-height: 0; margin: 0; pointer-events: none; }
.amenity-gallery__controls p { position: absolute; right: 1rem; bottom: 1rem; min-width: 0; margin: 0; padding: 0.48rem 0.72rem; border: 1px solid rgb(255 255 255 / 0.3); border-radius: var(--radius-pill); background: rgb(0 48 24 / 0.76); color: var(--pc-white); box-shadow: 0 0.45rem 1.3rem rgb(0 25 13 / 0.2); font-size: 0.7rem; font-weight: 700; line-height: 1; text-align: center; backdrop-filter: blur(8px); }
.amenity-gallery__controls button { position: absolute; top: 50%; width: 3rem; height: 3rem; border-color: rgb(0 64 31 / 0.18); background: rgb(255 255 255 / 0.9); box-shadow: 0 0.55rem 1.5rem rgb(0 35 18 / 0.2); pointer-events: auto; transform: translateY(-50%); backdrop-filter: blur(8px); }
.amenity-gallery__controls button:hover:not(:disabled) { border-color: var(--pc-gold); background: var(--pc-gold); color: var(--pc-forest); }
.amenity-gallery__controls button:focus-visible { outline: 3px solid var(--pc-gold); outline-offset: 3px; }
.amenity-gallery__controls button:disabled { opacity: 0; pointer-events: none; }
.amenity-gallery__controls [data-gallery-prev] { left: 1rem; }
.amenity-gallery__controls [data-gallery-next] { right: 1rem; }
@keyframes amenity-loading { to { background-position-x: -220%; } }
.section-wave--15 { right: -7rem; bottom: 2rem; width: 34rem; opacity: 0.12; }
.section-wave--14 { top: 1rem; left: -7rem; width: 30rem; opacity: 0.14; }
.section-wave--16 { top: 22%; left: -7rem; width: 31rem; opacity: 0.1; }
.green-statement { position: relative; display: flex; min-height: clamp(36rem, 58vw, 50rem); align-items: center; overflow: hidden; isolation: isolate; }
.green-statement__media { position: absolute; inset: 0; }
.green-statement__image { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.green-statement::after { content: ""; position: absolute; z-index: 0; inset: 0; background: linear-gradient(270deg, rgb(0 43 22 / 0.82) 0%, rgb(0 43 22 / 0.52) 32%, rgb(0 43 22 / 0.08) 72%), linear-gradient(0deg, rgb(0 31 16 / 0.32), transparent 48%); }
.green-statement__copy { position: relative; z-index: 2; width: min(calc(100% - 2rem), 36rem); margin-right: max(1rem, calc((100vw - var(--content-width)) / 2)); margin-left: auto; padding: clamp(1.7rem, 3vw, 2.5rem); border: 1px solid rgb(247 228 188 / 0.35); border-right: 0.35rem solid var(--pc-gold); border-radius: var(--radius-xl) 0 0 var(--radius-xl); background: rgb(0 48 24 / 0.76); color: var(--pc-white); box-shadow: 0 1.5rem 4rem rgb(0 25 13 / 0.3); backdrop-filter: blur(12px); }
.green-statement__metric { display: flex; align-items: flex-start; gap: 0.55rem; margin: 0; color: var(--pc-cream); line-height: 0.84; white-space: nowrap; }
.green-statement__metric strong { font-size: clamp(4.4rem, 8vw, 8rem); letter-spacing: -0.075em; }
.green-statement__metric span { padding-top: 0.25em; font-size: clamp(1.8rem, 3.5vw, 3.5rem); font-weight: 700; }
.green-statement__description { max-width: 28rem; margin: 1.4rem 0 0; font-size: clamp(1rem, 1.5vw, 1.3rem); }
.section-wave--17 { z-index: 2; top: 8%; right: -5%; width: 40rem; opacity: 0.22; }
.section-wave--18 { top: 3rem; right: -8rem; width: 28rem; opacity: 0.13; }

.conversion-section { overflow: hidden; isolation: isolate; padding-block: clamp(3.5rem, 4.8vw, 5rem); background: var(--pc-cream); }
.conversion-section.is-background-ready { background-image: url("../images/element-09.webp"); background-position: center; background-size: cover; }
.conversion-section::after { content: ""; position: absolute; z-index: 0; right: -5%; bottom: -1px; left: -5%; height: clamp(1.75rem, 2.8vw, 3rem); background: var(--pc-forest); clip-path: ellipse(65% 100% at 50% 100%); pointer-events: none; }
.conversion-section.is-background-ready::after { background-image: url("../images/element-05.webp"); background-position: center top; background-size: cover; }
.conversion-wave { right: 0; bottom: 0; width: min(38rem, 46vw); max-height: 88%; object-fit: contain; object-position: right bottom; opacity: 0.16; }
.lead-dock--secondary { margin-top: 0; background-color: var(--pc-white); }

.plan-section { overflow: hidden; isolation: isolate; padding-top: clamp(3.25rem, 5vw, 5rem); padding-bottom: calc(clamp(3.75rem, 5.5vw, 5.5rem) + clamp(1.5rem, 2.5vw, 2.75rem)); background: var(--pc-forest); color: var(--pc-white); }
.plan-section.is-background-ready { background-image: url("../images/element-05.webp"); background-position: center; background-size: cover; }
.plan-section::after { content: ""; position: absolute; z-index: 0; right: -5%; bottom: -1px; left: -5%; height: clamp(1.5rem, 2.5vw, 2.75rem); background: var(--pc-white); clip-path: ellipse(65% 100% at 50% 100%); pointer-events: none; }
.plan-section.is-background-ready::after { background-image: url("../images/texture-white.webp"); background-position: center top; background-size: 900px auto; background-repeat: repeat; }
.plan-section > .container { position: relative; z-index: 1; }
.plan-heading { max-width: 60rem; text-align: center; }
.plan-heading p:last-child { color: rgb(255 255 255 / 0.72); }
.plan-card { margin-top: clamp(2rem, 3vw, 3rem); text-align: center; }
.plan-image-button { position: relative; width: 100%; overflow: hidden; padding: 0; border: 1px solid rgb(247 228 188 / 0.45); border-radius: var(--radius-xl); background: transparent; box-shadow: var(--shadow-deep); }
.plan-image-button img { width: 100%; height: auto; }
.plan-image-button span { position: absolute; right: 1.25rem; bottom: 1.25rem; padding: 0.75rem 1rem; border-radius: var(--radius-pill); background: var(--pc-white); color: var(--pc-forest); font-size: 0.8rem; font-weight: 700; }
.location-section { overflow: hidden; isolation: isolate; padding-top: clamp(3.75rem, 5.5vw, 5.5rem); padding-bottom: calc(clamp(3.75rem, 5.5vw, 5.5rem) + clamp(1.5rem, 2.5vw, 2.75rem)); background: var(--pc-white); }
.location-section.is-background-ready { background-image: url("../images/texture-white.webp"); background-position: center; background-size: 900px auto; background-repeat: repeat; }
.location-section::after { content: ""; position: absolute; z-index: 0; right: -5%; bottom: -1px; left: -5%; height: clamp(1.5rem, 2.5vw, 2.75rem); background: var(--pc-forest); clip-path: ellipse(65% 100% at 50% 100%); pointer-events: none; }
.location-section.is-background-ready::after { background-image: url("../images/element-05.webp"); background-position: center top; background-size: cover; }
.location-section > .container { position: relative; z-index: 1; }
.location-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.location-title { display: flex; max-width: 13ch; flex-direction: column; margin-bottom: 1.75rem; font-size: clamp(2.15rem, 3.7vw, 4rem); }
.location-title strong { color: var(--pc-forest); font-weight: 700; }
.location-script { margin-bottom: 0.08em; color: var(--pc-gold); font-size: 0.68em; font-weight: 400; line-height: 1; letter-spacing: -0.035em; }
.location-address { display: flex; gap: 0.7rem; align-items: center; color: var(--pc-forest); font-size: clamp(1rem, 1.35vw, 1.25rem); font-weight: 700; }
.location-pin { width: 1.8rem; height: 2.2rem; flex: 0 0 auto; background: url("../images/element-04.webp") center / contain no-repeat; }
.nearby { display: grid; grid-template-columns: minmax(7rem, 0.55fr) 1.45fr; gap: 1rem 1.25rem; align-items: start; margin-top: 1.5rem; padding: 1.25rem; border: 1px solid rgb(209 172 102 / 0.7); border-radius: var(--radius-md); }
.nearby > p { margin: 0; color: var(--pc-forest); font-weight: 700; }
.nearby-list { display: grid; grid-template-rows: repeat(3, auto); grid-auto-columns: 1fr; grid-auto-flow: column; gap: 0.55rem 1.5rem; margin: 0; padding: 0; list-style: none; }
.nearby-list li { position: relative; padding-left: 1.1rem; }
.nearby-list li::before { content: ""; position: absolute; top: 0.65em; left: 0; width: 0.38rem; height: 0.38rem; border-radius: 50%; background: var(--pc-gold); }
.location-visual { display: grid; min-height: 31rem; place-items: center; overflow: hidden; border: 1px solid rgb(0 64 31 / 0.14); border-radius: var(--radius-xl); background: linear-gradient(145deg, #fffaf0, var(--pc-cream)); box-shadow: var(--shadow-soft); }
.location-visual iframe { width: 100%; height: 100%; min-height: 31rem; border: 0; }
.map-placeholder { display: grid; width: min(100% - 3rem, 26rem); place-items: center; padding: 3rem 1.5rem; text-align: center; }
.map-placeholder__pin { display: grid; width: 4rem; height: 4rem; margin-bottom: 1.25rem; place-items: center; border: 1px solid rgb(0 64 31 / 0.16); border-radius: 50%; background: rgb(255 255 255 / 0.72); color: var(--pc-forest); box-shadow: 0 0.7rem 2rem rgb(0 64 31 / 0.09); }
.map-placeholder__pin svg { width: 1.8rem; }
.map-placeholder .eyebrow { margin-bottom: 0.55rem; color: var(--pc-forest); }
.map-placeholder strong { max-width: 19ch; font-size: clamp(1.45rem, 2.6vw, 2.2rem); font-weight: 400; line-height: 1.12; }
.map-placeholder > p:not(.eyebrow) { max-width: 33ch; margin: 0.85rem 0 1.35rem; color: var(--pc-taupe); font-size: 0.84rem; }
.map-load-button { min-height: 3rem; padding: 0.75rem 1.2rem; border: 1px solid var(--pc-forest); border-radius: 0.85rem; background: var(--pc-forest); color: var(--pc-white); font-size: 0.78rem; font-weight: 700; transition: background var(--duration-fast), transform var(--duration-fast); }
.map-load-button:hover { background: var(--pc-forest-muted); transform: translateY(-1px); }

.video-section { content-visibility: auto; contain-intrinsic-size: auto 54rem; }
.leisure-section { content-visibility: auto; contain-intrinsic-size: auto 390rem; }
.conversion-section { content-visibility: auto; contain-intrinsic-size: auto 48rem; }
.plan-section { content-visibility: auto; contain-intrinsic-size: auto 70rem; }
.location-section { content-visibility: auto; contain-intrinsic-size: auto 50rem; }

.site-footer { position: relative; overflow: hidden; margin-top: -1px; background: var(--pc-forest); color: var(--pc-white); }
.site-footer.is-background-ready { background-image: url("../images/element-05.webp"); background-position: center; background-size: cover; }
.site-footer::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgb(0 64 31 / 0.08), rgb(0 27 14 / 0.34)); pointer-events: none; }
.footer-main { position: relative; display: grid; grid-template-columns: minmax(13rem, 0.78fr) minmax(24rem, 1.5fr) minmax(18rem, 0.9fr); gap: clamp(2rem, 4vw, 4.5rem); align-items: start; padding: clamp(3rem, 4.5vw, 4.5rem) 0 clamp(3.75rem, 5.5vw, 5rem); }
.footer-brand > img { width: 14rem; height: auto; }
.footer-brand p { max-width: 17rem; color: rgb(255 255 255 / 0.68); }
.footer-contact { position: relative; align-self: stretch; padding: 0.2rem 0 0.35rem clamp(1.4rem, 2.2vw, 2rem); border-left: 1px solid rgb(209 172 102 / 0.58); }
.footer-contact::before { content: ""; position: absolute; top: 0; left: -0.25rem; width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--pc-gold); box-shadow: 0 0 0 0.35rem rgb(209 172 102 / 0.1); }
.footer-contact .footer-label { display: block; margin-bottom: 1.1rem; }
.footer-contact-list { display: grid; width: min(100%, 32rem); gap: 0.85rem; }
.footer-contact-link { display: grid; grid-template-columns: 2rem minmax(0, 1fr); gap: 0.8rem; align-items: center; padding: 0.2rem 0; color: rgb(255 255 255 / 0.78); transition: color var(--duration-fast); }
.footer-contact-link:hover { color: var(--pc-cream); }
.footer-contact-link:focus-visible { outline: 2px solid var(--pc-gold); outline-offset: 0.35rem; border-radius: 0.15rem; }
.footer-contact-link svg { width: 1.8rem; height: 1.8rem; color: var(--pc-cream); }
.footer-contact-link > span { display: grid; gap: 0.12rem; }
.footer-contact-link strong { color: inherit; font-size: clamp(1rem, 1.45vw, 1.28rem); font-weight: 400; line-height: 1.25; }
.footer-contact-link span span { color: rgb(255 255 255 / 0.62); font-size: clamp(0.76rem, 0.95vw, 0.9rem); line-height: 1.35; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.footer-column { display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.82rem; }
.footer-column p { margin: 0; color: rgb(255 255 255 / 0.68); }
.footer-label { color: var(--pc-gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-link:hover { color: var(--pc-cream); }
.developer-strip { position: relative; border-top: 1px solid rgb(255 255 255 / 0.16); border-bottom: 1px solid rgb(255 255 255 / 0.12); }
.developer-strip .container { display: flex; min-height: 9rem; align-items: center; justify-content: space-between; gap: 3rem; }
.developer-strip span { color: var(--pc-cream); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.developer-strip img { width: min(52rem, 74%); height: auto; }
.footer-legal { position: relative; display: flex; min-height: 4.5rem; align-items: center; justify-content: space-between; gap: 1.5rem; color: rgb(255 255 255 / 0.62); font-size: 0.72rem; }
.footer-legal div { display: flex; gap: 1.25rem; align-items: center; }
.footer-legal button { padding: 0; border: 0; background: transparent; color: inherit; }
.footer-legal a:hover, .footer-legal button:hover { color: var(--pc-cream); }

.floating-whatsapp { position: fixed; z-index: var(--z-floating); right: 1.2rem; bottom: 1.2rem; display: grid; width: 3.6rem; height: 3.6rem; place-items: center; border-radius: 50%; background: #1f9f53; color: var(--pc-white); box-shadow: 0 0.8rem 2rem rgb(0 40 21 / 0.28); transition: opacity var(--duration-fast), transform var(--duration-fast); }
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp.is-hidden { opacity: 0; pointer-events: none; transform: translateY(1rem); }

.cookie-banner { position: fixed; z-index: var(--z-floating); right: 1rem; bottom: 1rem; display: grid; width: min(42rem, calc(100% - 2rem)); grid-template-columns: 1fr auto; gap: 1.2rem; padding: 1.25rem; border: 1px solid rgb(0 64 31 / 0.16); border-radius: var(--radius-lg); background: var(--pc-white); box-shadow: var(--shadow-deep); }
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { margin-bottom: 0.45rem; font-size: 1.25rem; }
.cookie-banner p { margin-bottom: 0; font-size: 0.78rem; }
.cookie-actions { display: flex; flex-direction: column; gap: 0.45rem; justify-content: center; }
.cookie-button { min-height: 2.75rem; padding: 0.65rem 0.9rem; border: 1px solid var(--pc-forest); border-radius: var(--radius-pill); background: var(--pc-forest); color: var(--pc-white); font-size: 0.72rem; font-weight: 700; }
.cookie-button--secondary { background: var(--pc-white); color: var(--pc-forest); }
.cookie-button--ghost { border-color: var(--pc-sand); background: var(--pc-cream); color: var(--pc-forest); }

.privacy-dialog { width: min(42rem, calc(100% - 2rem)); max-height: calc(100vh - 2rem); padding: 0; border: 0; border-radius: var(--radius-lg); background: var(--pc-white); color: var(--pc-ink); box-shadow: var(--shadow-deep); }
.privacy-dialog::backdrop, .map-dialog::backdrop, .video-dialog::backdrop { background: rgb(0 30 15 / 0.75); backdrop-filter: blur(4px); }
.dialog-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
.dialog-header h2 { margin: 0; font-size: 1.55rem; }
.dialog-close { display: grid; width: 2.75rem; height: 2.75rem; place-items: center; border: 1px solid var(--color-border); border-radius: 50%; background: var(--pc-white); color: var(--pc-forest); font-size: 1.5rem; }
.preference-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--color-border); }
.preference-row p { margin: 0.25rem 0 0; color: var(--pc-taupe); font-size: 0.8rem; }
.preference-row input { width: 1.4rem; height: 1.4rem; accent-color: var(--pc-forest); }
.dialog-actions { display: flex; justify-content: flex-end; gap: 0.75rem; padding: 1.25rem 1.5rem; }
.policy-copy { max-height: 65vh; overflow: auto; padding: 1.5rem; }
.policy-copy h3 { margin: 1.5rem 0 0.5rem; font-size: 1.1rem; }
.policy-copy p { color: var(--pc-taupe); }
.video-dialog { width: min(76rem, calc(100vw - 2rem)); max-width: none; max-height: calc(100dvh - 2rem); padding: 0; overflow: visible; border: 0; border-radius: var(--radius-md); background: #000; box-shadow: var(--shadow-deep); }
.video-dialog__close { position: absolute; z-index: 2; top: 0.75rem; right: 0.75rem; border-color: rgb(0 64 31 / 0.22); box-shadow: 0 0.35rem 1.1rem rgb(0 31 16 / 0.28); }
.video-dialog__player { width: 100%; overflow: hidden; border-radius: inherit; background: #000; aspect-ratio: 16 / 9; }
.video-dialog__player iframe { display: block; width: 100%; height: 100%; border: 0; }
.map-dialog { width: min(100rem, calc(100vw - 1rem)); max-width: none; max-height: calc(100dvh - 1rem); padding: 0; overflow: visible; border: 0; background: transparent; color: var(--pc-ink); }
.map-dialog__close { position: absolute; z-index: 2; top: 0.75rem; right: 0.75rem; border-color: rgb(0 64 31 / 0.22); box-shadow: 0 0.35rem 1.1rem rgb(0 31 16 / 0.2); }
.map-dialog__viewport { max-height: calc(100dvh - 1rem); overflow: auto; background: var(--pc-forest); }
.map-dialog__viewport img { display: block; width: 100%; max-width: none; height: auto; }

.has-motion .reveal { opacity: 0; transform: translateY(2rem); transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out); }
.has-motion .reveal.is-visible { opacity: 1; transform: translateY(0); }
.has-motion .reveal-card { opacity: 0; transform: translateY(1.5rem) scale(0.985); transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); transition-delay: var(--reveal-delay, 0ms); }
.has-motion .reveal-card.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.has-motion .header-shell { animation: header-arrival 0.75s var(--ease-out) both; }
.has-motion .hero-content > h1 { animation: hero-copy-arrival 0.9s 0.18s var(--ease-out) both; }
.has-motion .hero-content > .hero-offer { animation: hero-copy-arrival 0.9s 0.34s var(--ease-out) both; }
.has-motion .hero-primary img { animation: hero-image-arrival 1.6s var(--ease-out) both; }
.has-motion .hero-wave--two { animation: wave-breathe 8s 1.5s ease-in-out infinite alternate; }

@keyframes header-arrival { from { opacity: 0; transform: translateY(-1rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-copy-arrival { from { opacity: 0; transform: translateY(1.2rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-image-arrival { from { opacity: 0.72; transform: scale(1.055); } to { opacity: 1; transform: scale(1); } }
@keyframes wave-breathe { from { transform: translate3d(0, 0, 0) rotate(0); } to { transform: translate3d(-0.8rem, 0.6rem, 0) rotate(2deg); } }

@media (max-width: 1100px) {
  .header-shell { gap: 1rem; }
  .brand { width: 10.7rem; padding-right: 1rem; }
  .brand-logo { width: 9.6rem; }
  .main-nav { gap: 0.72rem; font-size: 0.8rem; }
  .nav-contact { padding-inline: 0.95rem !important; font-size: 0.78rem; }
  .lead-dock { grid-template-columns: 1fr 2fr; }
  .dock-action { grid-column: 1 / -1; grid-template-columns: 1.6fr 1fr; align-items: center; }
  .form-status { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .hero-wave--two { background: url("../images/element-12.webp") center / contain no-repeat; }
  .leisure-gallery.container { width: 100%; max-width: none; margin-inline: 0; padding-inline: 0; }
  .amenity-sequence { gap: 0; }
  .amenity-block { grid-template-columns: repeat(2, minmax(0, 1fr)); border: 0; border-top: 1px solid rgb(0 64 31 / 0.16); border-radius: 0; background: rgb(255 255 255 / 0.93); box-shadow: none; contain-intrinsic-block-size: auto 32rem; }
  .amenity-block:last-child { border-bottom: 1px solid rgb(0 64 31 / 0.16); }
  .amenity-copy { grid-column: 1; grid-row: 1; padding-top: clamp(2.5rem, 4vw, 4.5rem); padding-right: clamp(2.5rem, 6vw, 7rem); padding-bottom: clamp(2.5rem, 4vw, 4.5rem); padding-left: max(clamp(2.5rem, 4vw, 4.5rem), calc((100vw - var(--content-width)) / 2 + 4.5rem)); }
  .amenity-media { grid-column: 2; grid-row: 1; }
  .amenity-block:nth-child(even) .amenity-copy { grid-column: 2; padding-right: max(clamp(2.5rem, 4vw, 4.5rem), calc((100vw - var(--content-width)) / 2 + 4.5rem)); padding-left: clamp(2.5rem, 6vw, 7rem); }
  .amenity-block:nth-child(even) .amenity-media { grid-column: 1; }
}

@media (max-width: 899px) {
  html { scroll-padding-top: 4.8rem; }
  .container { width: min(calc(100% - 1.5rem), var(--content-width)); }
  .site-header { padding-top: 0.55rem; }
  .header-shell { z-index: 2; width: min(calc(100% - 1rem), 26rem); max-width: none; min-height: 4.2rem; justify-content: space-between; padding: 0.48rem 0.55rem 0.48rem 0.9rem; border-radius: 1.2rem; backdrop-filter: none; }
  .site-header.is-scrolled .header-shell { min-height: 3.9rem; }
  .brand { width: 9rem; padding-right: 0; border-right: 0; }
  .brand-logo { width: 100%; }
  .menu-toggle { position: relative; z-index: 3; display: grid; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { transform: translateY(0.54rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { transform: translateY(-0.54rem) rotate(-45deg); }
  .menu-backdrop { position: fixed; z-index: -2; inset: 0; display: block; width: 100%; height: 100dvh; padding: 0; border: 0; background: rgb(0 28 14 / 0.52); opacity: 0; pointer-events: none; transition: opacity var(--duration-base); }
  body.menu-open .menu-backdrop { opacity: 1; pointer-events: auto; }
  .main-nav { position: fixed; z-index: -1; inset: 0 0 0 auto; display: flex; width: min(88vw, 22rem); min-height: 100dvh; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 6.1rem 1.25rem max(1.25rem, env(safe-area-inset-bottom)); background: var(--pc-cream); color: var(--pc-ink); box-shadow: -1.5rem 0 4rem rgb(0 30 15 / 0.24); font-size: 1rem; opacity: 1; pointer-events: none; transform: translateX(105%); transition: transform var(--duration-base) var(--ease-out); }
  .main-nav[data-open="true"] { pointer-events: auto; transform: translateX(0); }
  .main-nav a { display: flex; width: 100%; min-height: 3rem; align-items: center; padding: 0.75rem 0.2rem; border-bottom: 1px solid rgb(0 64 31 / 0.13); white-space: normal; }
  .main-nav a:not(.nav-contact)::after { display: none; }
  .main-nav .social-link { margin-top: 0.6rem; border-bottom: 0; color: var(--pc-forest-muted); font-size: 0.9rem; }
  .main-nav .nav-contact { justify-content: space-between; margin-top: auto; padding: 0.9rem 1rem !important; border: 0; background: var(--pc-forest); color: var(--pc-white); font-size: 0.86rem; }
  .hero-stage { min-height: 41rem; }
  .hero-content { min-height: 41rem; padding-top: 6.5rem; padding-bottom: 4rem; }
  .hero-overlay { background: linear-gradient(90deg, rgb(0 40 21 / 0.9), rgb(0 49 25 / 0.36)), linear-gradient(0deg, rgb(0 36 18 / 0.7), transparent 55%); }
  .hero-content h1 { max-width: 13ch; font-size: clamp(2.45rem, 7.5vw, 3.65rem); }
  .hero-offer { width: 100%; max-width: 30rem; }
  .lot-badge, .status-badge { min-height: 4.8rem; padding: 0.85rem 1rem; }
  .lot-badge { min-width: 10.5rem; }
  .lead-dock { grid-template-columns: 1fr; margin-top: 1.25rem; padding: 1.25rem; }
  .dock-fields { grid-template-columns: 1fr; gap: 0.85rem; }
  .dock-action { grid-column: auto; grid-template-columns: 1fr; }
  .field-error { position: static; display: block; }
  .primary-button { justify-content: center; }
  .media-rail { display: flex; width: 100%; gap: 0.8rem; overflow-x: auto; overscroll-behavior-inline: contain; padding: 0 0 0.5rem; scroll-padding-inline: 0; scroll-snap-type: inline mandatory; scrollbar-width: none; touch-action: pan-x; }
  .media-rail::-webkit-scrollbar { display: none; }
  .media-rail figure { flex: 0 0 100%; min-height: 0; aspect-ratio: 16 / 10; scroll-snap-align: start; scroll-snap-stop: always; }
  .gallery-controls { display: flex; justify-content: center; margin-top: 0.75rem; }
  .film-wrap, .location-grid { grid-template-columns: 1fr; }
  .film-copy { max-width: 35rem; }
  .leisure-intro { margin-bottom: 1.75rem; }
  .leisure-intro h2 { max-width: 17ch; margin-inline: auto; font-size: clamp(2.1rem, 6.5vw, 3.25rem); line-height: 1.08; }
  .has-motion .leisure-intro.reveal { opacity: 1; transform: none; transition: none; }
  .location-visual { min-height: 24rem; }
  .location-visual iframe { min-height: 24rem; }
  .map-placeholder { padding-block: 2rem; }
  .green-statement { min-height: 38rem; }
  .green-statement__image { object-position: 28% center; }
  .green-statement__copy { margin-inline: auto; border-radius: var(--radius-xl); }
  .video-section { contain-intrinsic-size: auto 44rem; }
  .amenity-sequence { gap: clamp(1.5rem, 4vw, 2rem); }
  .amenity-block { grid-template-columns: minmax(0, 1fr); border-radius: clamp(1rem, 3vw, var(--radius-xl)); contain-intrinsic-block-size: auto 28rem; }
  .amenity-copy { min-height: 0; gap: 0.8rem; padding: clamp(1.25rem, 4vw, 1.75rem); }
  .amenity-copy::before { width: 2.75rem; height: 0.14rem; }
  .amenity-copy h3 { max-width: 24ch; font-size: clamp(1.3rem, 4.8vw, 2rem); line-height: 1.18; }
  .amenity-media { padding: 0; }
  .amenity-slide { aspect-ratio: 16 / 10; }
  .amenity-gallery__controls { display: block; margin: 0; }
  .amenity-gallery__controls button { width: 2.8rem; height: 2.8rem; }
  .amenity-gallery__controls [data-gallery-prev] { left: 0.75rem; }
  .amenity-gallery__controls [data-gallery-next] { right: 0.75rem; }
  .amenity-gallery__controls p { right: 0.75rem; bottom: 0.75rem; }
  .leisure-section { contain-intrinsic-size: auto 365rem; }
  .conversion-section { contain-intrinsic-size: auto 52rem; }
  .plan-section { contain-intrinsic-size: auto 62rem; }
  .location-section { contain-intrinsic-size: auto 58rem; }
  .site-footer { background: var(--pc-forest); }
  .site-footer.is-background-ready { background-image: none; }
  .site-footer::before { background: linear-gradient(145deg, rgb(0 64 31 / 0.04), rgb(0 27 14 / 0.22)); }
  .footer-main { grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); gap: 1.5rem; padding: 2rem 0 1.5rem; }
  .footer-brand > img { width: 9rem; }
  .footer-brand p { margin-bottom: 0; font-size: 0.78rem; }
  .footer-contact { width: 100%; padding: 0 0 0 1.25rem; border: 0; border-left: 1px solid rgb(209 172 102 / 0.34); }
  .footer-contact::before { display: none; }
  .footer-contact .footer-label { margin-bottom: 0.65rem; }
  .footer-contact-list { width: 100%; gap: 0.45rem; }
  .footer-contact-link { grid-template-columns: 1.5rem minmax(0, 1fr); gap: 0.65rem; min-height: 2.65rem; padding: 0.25rem 0; }
  .footer-contact-link svg { width: 1.4rem; height: 1.4rem; }
  .footer-contact-link strong { font-size: 0.88rem; }
  .footer-contact-link span span { font-size: 0.7rem; }
  .footer-nav { grid-column: 1 / -1; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid rgb(209 172 102 / 0.26); }
  .footer-column { gap: 0.48rem; font-size: 0.76rem; }
  .footer-column:last-child .footer-link { display: none; }
  .developer-strip .container { min-height: 5.3rem; gap: 1.5rem; }
  .developer-strip img { width: min(70%, 32rem); }
  .footer-legal { min-height: 3.4rem; }
  .privacy-dialog::backdrop, .map-dialog::backdrop, .video-dialog::backdrop { backdrop-filter: none; }
}

@media (max-width: 620px) {
  .hero-stage, .hero-content { min-height: 39rem; }
  .hero-content { justify-content: flex-end; padding-bottom: 3rem; }
  .hero-content h1 { max-width: 12ch; font-size: clamp(2.3rem, 9vw, 3.25rem); }
  .hero-offer { width: min(100%, 24rem); }
  .lot-badge { flex: 0 0 44%; min-width: 0; padding-inline: 0.65rem; }
  .lot-badge strong { font-size: clamp(1.05rem, 5.7vw, 1.28rem); }
  .status-badge { padding-inline: 0.8rem; }
  .lot-badge, .status-badge { min-height: 4.1rem; }
  .lead-dock { width: min(calc(100% - 1.5rem), var(--content-width)); margin-top: 1rem; border-radius: 1.2rem; }
  .lead-dock::before { border-radius: 1.2rem 0 0 1.2rem; }
  .section-block { padding-block: 4.5rem; }
  .project-gallery { padding-top: 2.25rem; padding-bottom: 2.75rem; }
  .media-rail figure, .amenity-slide { aspect-ratio: 4 / 3; }
  .leisure-intro { margin-bottom: 1.35rem; }
  .leisure-intro h2 { max-width: 100%; font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .leisure-gallery { padding-bottom: 3rem; }
  .green-statement { display: grid; min-height: 0; align-items: stretch; background: var(--pc-forest); }
  .green-statement::after { display: none; }
  .green-statement__media { position: relative; inset: auto; overflow: hidden; aspect-ratio: 4 / 3; }
  .green-statement__image { display: block; object-position: 38% center; }
  .green-statement__copy { z-index: 2; display: grid; width: 100%; grid-template-columns: auto minmax(0, 1fr); gap: 0.75rem; align-items: center; margin: 0; padding: 1rem; border: 0; border-top: 0.2rem solid var(--pc-gold); border-radius: 0; background: linear-gradient(135deg, var(--pc-forest), #002f17); box-shadow: none; backdrop-filter: none; }
  .green-statement__metric { gap: 0.25rem; line-height: 0.9; }
  .green-statement__metric strong { font-size: clamp(2.6rem, 12vw, 3.35rem); }
  .green-statement__metric span { padding-top: 0.2em; font-size: clamp(1.1rem, 4.5vw, 1.35rem); }
  .green-statement__description { margin: 0; font-size: clamp(0.85rem, 3.7vw, 0.98rem); line-height: 1.4; }
  .nearby { grid-template-columns: 1fr; }
  .nearby-list { grid-template-rows: none; grid-auto-columns: auto; grid-auto-flow: row; }
  .section-wave--17 { display: none; }
  .footer-main { grid-template-columns: 1fr; gap: 1.25rem; padding: 2rem 0 1.5rem; }
  .footer-brand { display: grid; grid-template-columns: 8.5rem minmax(0, 1fr); gap: 1rem; align-items: center; }
  .footer-brand > img { width: 8.5rem; }
  .footer-brand p { max-width: 18rem; }
  .footer-contact { padding: 1rem 0; border-top: 1px solid rgb(209 172 102 / 0.28); border-bottom: 1px solid rgb(209 172 102 / 0.28); border-left: 0; }
  .footer-nav { grid-template-columns: 1fr 1fr; grid-column: auto; padding-top: 0; border-top: 0; }
  .footer-column:last-child { grid-column: auto; }
  .developer-strip .container { min-height: 5.8rem; flex-direction: column; justify-content: center; gap: 0.55rem; text-align: center; }
  .developer-strip img { width: min(100%, 23rem); }
  .footer-legal { min-height: 0; flex-direction: column; justify-content: center; gap: 0.65rem; padding-block: 1rem; text-align: center; }
  .footer-legal div { flex-wrap: wrap; justify-content: center; gap: 0.85rem; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-button--ghost { grid-column: 1 / -1; }
  .dialog-actions { flex-direction: column; }
}

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