@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;1,6..96,400&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --ink: #13211c;
  --forest: #0e2d23;
  --forest-2: #1d493a;
  --sage: #849b8c;
  --moss: #b9c5b7;
  --sand: #e4d9c5;
  --cream: #f3efe5;
  --paper: #faf8f2;
  --clay: #a96648;
  --champagne: #d7c29b;
  --white: #ffffff;
  --line: rgba(23, 56, 45, 0.17);
  --display: 'Bodoni Moda', Didot, Georgia, serif;
  --sans: 'Manrope', Arial, sans-serif;
  --container: min(1280px, calc(100vw - 80px));
  --nav-h: 82px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video { display: block; width: 100%; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
::selection { background: var(--forest); color: var(--cream); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--forest);
  background: var(--cream);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 128px 0; }
.section--tight { padding: 88px 0; }
.section--dark { color: var(--cream); background: var(--forest); }
.section--cream { background: var(--cream); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 58px;
}
.section-head > :last-child { justify-self: end; max-width: 510px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 38px; height: 1px; background: currentColor; opacity: .55; }
.display-xl, .display-lg, .display-md {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.display-xl { font-size: clamp(4rem, 8.8vw, 9.2rem); }
.display-lg { font-size: clamp(3rem, 6vw, 6.4rem); }
.display-md { font-size: clamp(2.4rem, 4.3vw, 4.8rem); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.65; }
.muted { color: #627169; }
.section--dark .muted { color: rgba(245, 241, 232, .66); }
.serif-italic { font-family: var(--display); font-style: italic; font-weight: 400; }
.no-margin { margin: 0; }

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn::after { content: '↗'; font-size: 17px; font-weight: 400; transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translate(3px, -3px); }
.btn--light { color: var(--forest); background: var(--cream); }
.btn--dark { color: var(--cream); background: var(--forest); }
.btn--outline { border-color: currentColor; background: transparent; }
.btn--text { min-height: auto; padding: 8px 0; border-radius: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  color: var(--white);
  transition: height .35s var(--ease), color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled,
.site-header.header-solid {
  height: 70px;
  color: var(--forest);
  background: rgba(251, 250, 246, .92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}
.nav-shell { width: var(--container); height: 100%; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 190px; }
.brand-mark {
  position: relative;
  width: 35px;
  height: 35px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.brand-mark::before,
.brand-mark::after { content: ''; position: absolute; left: 9px; width: 16px; height: 1px; background: currentColor; transform: rotate(-42deg); transform-origin: left center; }
.brand-mark::before { top: 19px; }
.brand-mark::after { top: 24px; width: 11px; }
.brand-name { font-family: var(--display); font-size: 22px; letter-spacing: -.02em; line-height: 1; }
.brand-place { display: block; margin-top: 4px; font-family: var(--sans); font-size: 8px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; opacity: .75; }
.nav-links { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.nav-link { position: relative; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.nav-link::after { content: ''; position: absolute; inset: auto 0 -7px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-visit { min-height: 40px; padding: 9px 17px; border: 1px solid currentColor; border-radius: 99px; font-size: 10px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .3s ease, opacity .3s ease; }
.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: #18271f;
}
.hero-video, .video-cover { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 19, 15, .52) 0%, rgba(7, 19, 15, .16) 48%, rgba(7, 19, 15, .06) 75%), linear-gradient(0deg, rgba(7, 19, 15, .42) 0%, transparent 44%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: flex-end; padding-bottom: clamp(50px, 8vh, 90px); }
.hero-copy { width: min(830px, 78vw); }
.hero-kicker { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.hero-kicker::before { content: ''; width: 44px; height: 1px; background: currentColor; }
.hero-title { text-shadow: 0 2px 28px rgba(0, 0, 0, .18); }
.hero-title em { display: block; margin-left: clamp(36px, 9vw, 118px); font-style: italic; }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-top: 34px; }
.hero-bottom p { max-width: 470px; margin: 0; font-size: 15px; color: rgba(255, 255, 255, .82); }
.hero-scroll { display: flex; align-items: center; gap: 12px; font-size: 9px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; white-space: nowrap; }
.scroll-line { position: relative; width: 60px; height: 1px; overflow: hidden; background: rgba(255,255,255,.3); }
.scroll-line::after { content: ''; position: absolute; inset: 0; background: white; animation: scrollline 2.2s ease-in-out infinite; }
@keyframes scrollline { from { transform: translateX(-100%); } 55%, to { transform: translateX(100%); } }
.sound-control {
  position: absolute;
  z-index: 5;
  right: clamp(18px, 3vw, 46px);
  bottom: clamp(20px, 4vh, 42px);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  color: white;
  background: rgba(7, 19, 15, .2);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.sound-bars { display: flex; align-items: center; gap: 2px; height: 12px; }
.sound-bars i { display: block; width: 2px; height: 4px; background: currentColor; animation: soundbar .75s ease-in-out infinite alternate; }
.sound-bars i:nth-child(2) { height: 10px; animation-delay: -.25s; }
.sound-bars i:nth-child(3) { height: 7px; animation-delay: -.5s; }
.sound-control.muted .sound-bars i { animation: none; height: 2px; }
.sound-label { font-size: 9px; font-style: normal; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
@keyframes soundbar { to { height: 12px; } }
.sound-gate {
  position: fixed;
  z-index: 1800;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--cream);
  background: rgba(9, 25, 19, .88);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.sound-gate.show { opacity: 1; visibility: visible; }
.sound-gate-inner { max-width: 560px; text-align: center; }
.sound-gate .brand-mark { margin: 0 auto 28px; }
.sound-gate h2 { margin: 0 0 16px; font-family: var(--display); font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 400; line-height: 1; }
.sound-gate p { margin: 0 auto 28px; max-width: 420px; color: rgba(245,241,232,.7); }
.sound-gate-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.intro-grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: clamp(50px, 10vw, 150px); align-items: start; }
.intro-note { position: sticky; top: 110px; padding-top: 8px; }
.intro-note p { max-width: 260px; font-size: 13px; }
.intro-main .display-lg { max-width: 1000px; }
.intro-main .display-lg em { color: var(--clay); }
.intro-support { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin-top: 58px; padding-top: 38px; border-top: 1px solid var(--line); }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 76px; background: var(--line); border-block: 1px solid var(--line); }
.metric { padding: 30px 24px; background: var(--paper); }
.metric strong { display: block; margin-bottom: 6px; font-family: var(--display); font-size: clamp(2rem, 4vw, 4rem); font-weight: 400; line-height: 1; }
.metric span { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: #657269; }

.homes-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-bottom: 30px; }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 10px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; }
.filter-pill.active, .filter-pill:hover { color: var(--cream); background: var(--forest); }
.homes-count { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.homes-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 28px; }
.home-card { grid-column: span 6; transition: opacity .35s ease, transform .35s ease; }
.home-card:nth-child(3n) { grid-column: 2 / span 7; }
.home-card:nth-child(4n) { grid-column: 9 / span 4; align-self: end; }
.home-card.is-hidden { display: none; }
.home-media { position: relative; aspect-ratio: 1.45; overflow: hidden; background: #d9dfd6; }
.home-media img { height: 112%; object-fit: cover; transition: transform .8s var(--ease); will-change: transform; }
.home-card:hover .home-media img { transform: scale(1.035); }
.home-tag { position: absolute; top: 18px; left: 18px; padding: 8px 11px; border-radius: 99px; font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; background: rgba(251,250,246,.9); backdrop-filter: blur(8px); }
.home-info { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: end; padding: 22px 2px 38px; border-bottom: 1px solid var(--line); }
.home-name { margin: 0 0 7px; font-family: var(--display); font-size: clamp(1.9rem, 3vw, 3.1rem); font-weight: 400; line-height: 1; }
.home-specs { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 11px; color: #637068; }
.home-arrow { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: .3s ease; }
.home-card:hover .home-arrow { color: var(--cream); border-color: var(--forest); background: var(--forest); transform: rotate(45deg); }
.disclaimer { margin-top: 22px; font-size: 11px; color: #738078; }

.story-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); min-height: 760px; }
.story-video { position: relative; min-height: 680px; overflow: hidden; background: #17241f; }
.story-video video { height: 100%; object-fit: cover; }
.story-panel { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(50px, 7vw, 100px); color: var(--cream); background: var(--forest); }
.story-panel .display-md { margin: 18px 0 28px; }
.story-list { margin: 50px 0 0; padding: 0; list-style: none; }
.story-list li { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-top: 1px solid rgba(245,241,232,.2); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.story-list span { color: rgba(245,241,232,.55); }

.amenities-showcase { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.amenity-list { margin: 44px 0 0; padding: 0; list-style: none; counter-reset: amenity; }
.amenity-list li { counter-increment: amenity; display: grid; grid-template-columns: 38px 1fr auto; gap: 12px; align-items: center; padding: 20px 0; border-top: 1px solid var(--line); }
.amenity-list li::before { content: '0' counter(amenity); font-size: 10px; color: var(--sage); }
.amenity-list strong { font-family: var(--display); font-size: clamp(1.5rem, 2.5vw, 2.5rem); font-weight: 400; }
.amenity-list span { font-size: 11px; color: #69776e; }
.amenities-collage { position: relative; min-height: 690px; }
.collage-main { position: absolute; inset: 0 12% 10% 0; overflow: hidden; }
.collage-main img { height: 110%; object-fit: cover; }
.collage-small { position: absolute; right: 0; bottom: 0; width: 42%; aspect-ratio: .82; padding: 12px; background: var(--paper); box-shadow: 0 24px 60px rgba(16, 36, 29, .18); overflow: hidden; }
.collage-small img { height: 100%; object-fit: cover; }
.collage-caption { position: absolute; right: 5%; top: 6%; z-index: 2; writing-mode: vertical-rl; font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }

.location-band { position: relative; overflow: hidden; }
.location-grid { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 650px; }
.location-copy { padding: clamp(70px, 8vw, 120px) clamp(40px, 7vw, 100px); background: var(--sand); }
.location-copy .display-md { margin-bottom: 28px; }
.drive-times { margin: 50px 0 0; padding: 0; list-style: none; }
.drive-times li { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-top: 1px solid rgba(23,56,45,.18); font-size: 12px; }
.drive-times strong { font-weight: 500; }
.drive-times span { color: #6a746e; }
.map-art { position: relative; min-height: 550px; overflow: hidden; color: var(--cream); background: var(--forest); }
.map-art::before, .map-art::after { content: ''; position: absolute; inset: -15%; background: repeating-radial-gradient(ellipse at 32% 60%, transparent 0 27px, rgba(245,241,232,.11) 28px 29px); transform: rotate(-14deg) scale(1.3); }
.map-art::after { background: linear-gradient(118deg, transparent 42%, rgba(231,221,202,.42) 42.2% 42.8%, transparent 43%), linear-gradient(25deg, transparent 56%, rgba(231,221,202,.23) 56.2% 56.6%, transparent 57%); }
.map-pin { position: absolute; z-index: 2; left: 49%; top: 45%; display: grid; place-items: center; width: 112px; height: 112px; border: 1px solid rgba(245,241,232,.45); border-radius: 50%; text-align: center; background: rgba(23,56,45,.76); backdrop-filter: blur(8px); }
.map-pin::before { content: ''; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 10px rgba(182,110,74,.18); }
.map-pin span { margin-top: 78px; font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.map-label { position: absolute; z-index: 2; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,241,232,.7); }
.map-label--one { left: 14%; top: 24%; }
.map-label--two { right: 12%; top: 22%; }
.map-label--three { right: 16%; bottom: 18%; }
.map-label--four { left: 12%; bottom: 22%; }

.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 54px; background: var(--line); border: 1px solid var(--line); }
.journey-step { min-height: 270px; padding: 30px; background: var(--paper); }
.journey-step small { font-size: 10px; letter-spacing: .16em; color: var(--sage); }
.journey-step h3 { margin: 56px 0 14px; font-family: var(--display); font-size: 2rem; font-weight: 400; line-height: 1.05; }
.journey-step p { margin: 0; font-size: 13px; color: #66736b; }

.cta-cinematic { position: relative; min-height: 82svh; display: flex; align-items: center; overflow: hidden; color: white; background: #101e19; }
.cta-cinematic::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,19,15,.77), rgba(8,19,15,.12) 65%), linear-gradient(0deg, rgba(8,19,15,.35), transparent 55%); }
.cta-content { position: relative; z-index: 2; max-width: 700px; padding-block: 100px; }
.cta-content .display-lg { margin: 16px 0 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.site-footer { padding: 72px 0 34px; color: var(--cream); background: #10251e; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, .6fr); gap: 60px; padding-bottom: 64px; }
.footer-brand .brand { margin-bottom: 24px; }
.footer-brand p { max-width: 380px; color: rgba(245,241,232,.6); font-size: 13px; }
.footer-col h4 { margin: 0 0 20px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(245,241,232,.48); }
.footer-col a { display: block; width: fit-content; margin: 10px 0; font-size: 13px; color: rgba(245,241,232,.82); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 28px; border-top: 1px solid rgba(245,241,232,.16); font-size: 10px; color: rgba(245,241,232,.46); }

.reveal { opacity: 0; transform: translateY(46px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .15s; }

.subpage-hero { position: relative; min-height: min(820px, 86svh); display: flex; align-items: flex-end; padding: 160px 0 85px; color: white; overflow: hidden; background: var(--forest); }
.subpage-hero img { position: absolute; inset: 0; height: 115%; object-fit: cover; }
.subpage-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,18,14,.68), rgba(6,18,14,.06) 72%), linear-gradient(0deg, rgba(6,18,14,.45), transparent 50%); }
.subpage-hero .container { position: relative; z-index: 2; }
.subpage-hero-copy { max-width: 830px; }
.subpage-hero-copy p { max-width: 560px; margin: 28px 0 0; color: rgba(255,255,255,.8); font-size: 17px; }
.subpage-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 10vw, 150px); }
.subpage-intro p { max-width: 780px; font-size: clamp(1.2rem, 2vw, 1.8rem); line-height: 1.55; }

.residence-detail { display: grid; grid-template-columns: 1.25fr .75fr; gap: 0; margin-bottom: 80px; border: 1px solid var(--line); background: var(--paper); }
.residence-detail:nth-child(even) { grid-template-columns: .75fr 1.25fr; }
.residence-detail:nth-child(even) .detail-media { order: 2; }
.detail-media { min-height: 560px; overflow: hidden; }
.detail-media img { height: 110%; object-fit: cover; }
.detail-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(40px, 6vw, 82px); }
.detail-copy h2 { margin: 10px 0 20px; font-family: var(--display); font-size: clamp(3rem, 5vw, 5.4rem); font-weight: 400; line-height: 1; }
.detail-copy > div > p { color: #637067; }
.spec-table { margin-top: 45px; }
.spec-row { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-top: 1px solid var(--line); font-size: 12px; }
.spec-row span { color: #6b776f; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { min-height: 360px; padding: 34px; border: 1px solid var(--line); background: var(--paper); transition: transform .4s var(--ease), background .4s ease, color .4s ease; }
.feature-card:hover { color: var(--cream); background: var(--forest); transform: translateY(-7px); }
.feature-card small { font-size: 10px; letter-spacing: .16em; color: var(--sage); }
.feature-card h3 { margin: 120px 0 16px; font-family: var(--display); font-size: 2.5rem; font-weight: 400; line-height: 1; }
.feature-card p { margin: 0; font-size: 13px; color: #68756d; }
.feature-card:hover p { color: rgba(245,241,232,.65); }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 9vw, 140px); align-items: start; }
.contact-aside { position: sticky; top: 110px; }
.contact-lines { margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--line); }
.contact-lines a, .contact-lines span { display: block; margin: 10px 0; font-size: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: 0; color: var(--ink); background: transparent; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--forest); }
.field textarea { min-height: 120px; resize: vertical; }
.form-consent { grid-column: 1 / -1; display: flex; gap: 12px; align-items: flex-start; font-size: 11px; color: #68746d; }
.form-consent input { margin-top: 4px; accent-color: var(--forest); }
.form-status { min-height: 24px; margin-top: 16px; font-size: 12px; color: var(--forest); }

.modal { position: fixed; z-index: 2000; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(9,24,18,.74); backdrop-filter: blur(10px); opacity: 0; visibility: hidden; transition: .35s ease; }
.modal.open { opacity: 1; visibility: visible; }
.modal-panel { position: relative; width: min(720px, 100%); max-height: calc(100svh - 48px); overflow: auto; padding: clamp(36px, 6vw, 68px); background: var(--paper); transform: translateY(20px); transition: transform .35s var(--ease); }
.modal.open .modal-panel { transform: none; }
.modal-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.modal h2 { margin: 8px 0 12px; font-family: var(--display); font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 400; line-height: 1; }
.modal p { color: #68756d; }

@media (max-width: 1080px) {
  :root { --container: min(100% - 48px, 1000px); }
  body.menu-open .site-header { color: var(--forest); background: transparent; box-shadow: none; backdrop-filter: none; }
  .site-header .brand, .site-header .nav-actions { position: relative; z-index: 2; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open { position: fixed; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: center; gap: 28px; color: var(--forest); background: var(--cream); }
  .nav-links.open .nav-link { font-family: var(--display); font-size: clamp(2.2rem, 7vw, 4.6rem); font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .site-header:not(.scrolled):not(.header-solid) .nav-links.open { color: var(--forest); }
  .story-grid { grid-template-columns: 1fr; }
  .story-video { min-height: 58vw; }
  .amenities-showcase { grid-template-columns: 1fr; }
  .amenities-collage { min-height: 650px; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.3fr repeat(3, .7fr); gap: 34px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --container: calc(100% - 36px); --nav-h: 68px; }
  .section { padding: 86px 0; }
  .section--tight { padding: 65px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 38px; }
  .section-head > :last-child { justify-self: start; }
  .display-xl { font-size: clamp(3.8rem, 18vw, 6rem); }
  .display-lg { font-size: clamp(2.9rem, 14vw, 4.7rem); }
  .display-md { font-size: clamp(2.4rem, 11vw, 4rem); }
  .brand { min-width: 0; }
  .brand-name { font-size: 19px; }
  .brand-place { display: none; }
  .nav-visit { display: none; }
  .hero { min-height: 660px; }
  .hero-video { object-position: 56% center; }
  .hero-copy { width: 100%; }
  .hero-title em { margin-left: 28px; }
  .hero-bottom { display: block; }
  .hero-bottom p { width: 80%; font-size: 13px; }
  .hero-scroll { display: none; }
  .sound-control { right: 16px; bottom: 16px; }
  .sound-label { display: none; }
  .intro-grid, .subpage-intro { grid-template-columns: 1fr; gap: 36px; }
  .intro-note { position: static; }
  .intro-support { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
  .metric-row { grid-template-columns: 1fr; }
  .metric { display: flex; align-items: baseline; justify-content: space-between; }
  .homes-toolbar { align-items: flex-start; flex-direction: column; }
  .homes-grid { display: block; }
  .home-card, .home-card:nth-child(3n), .home-card:nth-child(4n) { margin-bottom: 28px; }
  .home-media { aspect-ratio: 1.12; }
  .story-video { min-height: 76vw; }
  .story-panel { padding: 48px 22px; }
  .amenities-collage { min-height: 500px; }
  .collage-main { inset: 0 7% 12% 0; }
  .location-grid { grid-template-columns: 1fr; }
  .location-copy { padding: 68px 22px; }
  .map-art { min-height: 500px; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-step { min-height: 220px; }
  .journey-step h3 { margin-top: 42px; }
  .cta-cinematic { min-height: 720px; }
  .cta-cinematic video { object-position: 58% center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .subpage-hero { min-height: 720px; padding-bottom: 60px; }
  .subpage-hero img { object-position: center; }
  .residence-detail, .residence-detail:nth-child(even) { grid-template-columns: 1fr; margin-bottom: 38px; }
  .residence-detail:nth-child(even) .detail-media { order: 0; }
  .detail-media { min-height: 62vw; }
  .detail-copy { padding: 38px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 280px; }
  .feature-card h3 { margin-top: 70px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full, .form-consent { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .home-media img, .detail-media img, .collage-main img, .subpage-hero img { transform: none !important; }
}

/* 2026 luxury editorial refinement */
body::after {
  content: '';
  position: fixed;
  z-index: 2200;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  background: repeating-radial-gradient(circle at 20% 30%, #10281f 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}
.scroll-progress { position: fixed; z-index: 2100; inset: 0 0 auto; height: 2px; background: rgba(215,194,155,.18); }
.scroll-progress i { display: block; width: 100%; height: 100%; background: var(--champagne); transform: scaleX(0); transform-origin: left; will-change: transform; }

.site-header:not(.scrolled):not(.header-solid) {
  background: linear-gradient(180deg, rgba(5,18,13,.58) 0%, rgba(5,18,13,.2) 58%, transparent 100%);
  text-shadow: 0 1px 18px rgba(0,0,0,.34);
}
.site-header:not(.scrolled):not(.header-solid) .nav-shell::after {
  content: '';
  position: absolute;
  left: max(18px, calc((100vw - 1280px) / 2));
  right: max(18px, calc((100vw - 1280px) / 2));
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
}

.subpage-hero {
  min-height: min(860px, 92svh);
  padding-bottom: clamp(44px, 7vh, 78px);
}
.subpage-hero::after {
  background: linear-gradient(90deg, rgba(5,18,13,.54) 0%, rgba(5,18,13,.12) 72%), linear-gradient(0deg, rgba(5,18,13,.72) 0%, rgba(5,18,13,.08) 70%);
}
.subpage-hero-copy {
  position: relative;
  width: min(900px, 78vw);
  max-width: none;
  padding: clamp(32px, 4.2vw, 56px);
  border: 1px solid rgba(255,255,255,.23);
  background: linear-gradient(120deg, rgba(6,25,18,.68), rgba(6,25,18,.31));
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
  backdrop-filter: blur(7px);
}
.subpage-hero-copy::before {
  content: attr(data-page-label);
  display: block;
  margin-bottom: clamp(28px, 4vh, 42px);
  color: rgba(255,255,255,.63);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.subpage-hero-copy::after {
  content: '';
  position: absolute;
  top: clamp(32px, 4.2vw, 56px);
  right: clamp(32px, 4.2vw, 56px);
  width: 54px;
  height: 1px;
  background: var(--champagne);
  opacity: .75;
}
.subpage-hero-copy .eyebrow { margin-bottom: 16px; color: rgba(255,255,255,.78); }
.subpage-hero .display-xl {
  max-width: 880px;
  font-size: clamp(3.8rem, 6.6vw, 7.25rem);
  line-height: .9;
  letter-spacing: -.055em;
  text-shadow: 0 3px 30px rgba(0,0,0,.2);
}
.subpage-hero-copy > p:last-child {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.75;
}

.hero::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: -10%;
  bottom: -28%;
  width: 80%;
  height: 88%;
  background: radial-gradient(ellipse, rgba(6,18,14,.58), transparent 68%);
  pointer-events: none;
}
.hero::after {
  background: linear-gradient(90deg, rgba(6,18,14,.48) 0%, rgba(6,18,14,.12) 46%, rgba(6,18,14,.03) 76%), linear-gradient(0deg, rgba(6,18,14,.56) 0%, transparent 52%);
}
.hero-video { animation: hero-breathe 18s var(--ease) infinite alternate; }
@keyframes hero-breathe { from { transform: scale(1.005); } to { transform: scale(1.035); } }
.hero-content { padding-bottom: clamp(42px, 6.5vh, 72px); }
.hero-copy { width: min(760px, 72vw); }
.hero-phase, .cta-sequence {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(255,255,255,.66);
}
.hero-phase i, .cta-sequence i { width: 34px; height: 1px; background: currentColor; }
.hero-kicker { margin-bottom: 12px; font-size: 10px; }
.hero-title {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.25rem, 6.15vw, 7.2rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.055em;
  text-wrap: balance;
  text-shadow: 0 3px 32px rgba(0,0,0,.16);
}
.hero-title span, .hero-title em { display: block; transition: opacity .42s var(--ease), transform .52s var(--ease), filter .42s ease; }
.hero-title em { margin-left: clamp(25px, 6vw, 94px); font-style: italic; font-weight: 400; }
.hero-copy .hero-kicker, .hero-copy .hero-bottom p { transition: opacity .38s ease, transform .45s var(--ease); }
.hero-copy.is-changing .hero-title span, .hero-copy.is-changing .hero-title em { opacity: 0; filter: blur(7px); transform: translateY(22px); }
.hero-copy.is-changing .hero-kicker, .hero-copy.is-changing .hero-bottom p { opacity: 0; transform: translateY(9px); }
.hero-bottom { margin-top: 22px; }
.hero-bottom p { max-width: 445px; font-size: 13px; line-height: 1.7; }
.hero-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; width: min(360px, 48vw); margin-top: 28px; }
.hero-timeline span { position: relative; height: 1px; overflow: hidden; background: rgba(255,255,255,.25); }
.hero-timeline span::after { content: ''; position: absolute; inset: 0; background: var(--champagne); transform: scaleX(var(--segment-progress, 0)); transform-origin: left; }

.luxury-marquee { overflow: hidden; padding: 21px 0 18px; color: var(--cream); background: var(--forest); }
.luxury-marquee > div { display: flex; width: max-content; align-items: center; gap: 34px; animation: luxury-marquee 34s linear infinite; }
.luxury-marquee span { font-family: var(--display); font-size: clamp(1.2rem, 2vw, 2rem); letter-spacing: -.02em; white-space: nowrap; }
.luxury-marquee i { width: 5px; height: 5px; border: 1px solid var(--champagne); border-radius: 50%; }
@keyframes luxury-marquee { to { transform: translateX(-50%); } }

.residence-carousel-head { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center; margin-bottom: 28px; padding-top: 23px; border-top: 1px solid var(--line); }
.residence-carousel-head > p { margin: 0; color: #647168; font-size: 12px; }
.carousel-status { display: flex; align-items: center; gap: 11px; font-size: 10px; letter-spacing: .15em; }
.carousel-status > span:first-child { font-family: var(--display); font-size: 1.8rem; letter-spacing: -.02em; }
.carousel-status i { width: 38px; height: 1px; background: var(--line); }
.carousel-controls { display: flex; gap: 8px; }
.carousel-controls button { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--forest); background: transparent; font-size: 18px; cursor: pointer; transition: color .3s ease, background .3s ease, transform .3s var(--ease); }
.carousel-controls button:hover { color: var(--cream); background: var(--forest); transform: scale(1.06); }
.homes-carousel { width: calc(100vw - max(24px, (100vw - var(--container)) / 2)); overflow-x: auto; overflow-y: hidden; scrollbar-width: none; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; cursor: grab; }
.homes-carousel:active { cursor: grabbing; }
.homes-carousel::-webkit-scrollbar { display: none; }
.homes-track { display: flex; width: max-content; gap: clamp(18px, 2.2vw, 32px); padding-right: max(24px, calc((100vw - var(--container)) / 2)); }
.homes-track .home-card { flex: 0 0 clamp(410px, 41vw, 620px); grid-column: auto; scroll-snap-align: start; }
.homes-track .home-card:nth-child(n) { grid-column: auto; align-self: auto; }
.homes-track .home-media { aspect-ratio: 1.42; }
.homes-track .home-media img { height: 100%; }
.home-number { position: absolute; right: 19px; top: 17px; color: rgba(255,255,255,.82); font-family: var(--display); font-size: 1.35rem; text-shadow: 0 2px 10px rgba(0,0,0,.32); }
.homes-track .home-info { min-height: 128px; }
.homes-track .home-name { font-size: clamp(2.2rem, 3.3vw, 3.8rem); }
.homes-track .home-card { opacity: .68; transform: none; transition: opacity .65s var(--ease); }
.homes-track .home-card.is-current, .homes-track .home-card:hover { opacity: 1; }

.map-art { min-height: 650px; color: var(--forest); background: #e7e2d5; isolation: isolate; }
.map-art::before, .map-art::after { display: none; }
.map-terrain { position: absolute; z-index: -1; border-radius: 50%; background: rgba(62,102,79,.12); filter: blur(1px); }
.map-terrain--one { width: 72%; height: 58%; right: -18%; top: -14%; transform: rotate(-20deg); }
.map-terrain--two { width: 58%; height: 48%; left: -19%; bottom: -10%; transform: rotate(14deg); background: rgba(62,102,79,.08); }
.map-road { position: absolute; z-index: 1; height: 15px; border-block: 1px solid rgba(14,45,35,.22); background: rgba(250,248,242,.72); box-shadow: 0 0 0 5px rgba(250,248,242,.32); transform-origin: center; }
.map-road span { position: absolute; left: 51%; top: 18px; font-size: 8px; font-weight: 600; letter-spacing: .16em; }
.map-road--main { width: 125%; left: -13%; top: 50%; transform: rotate(-63deg); }
.map-road--east { width: 100%; right: -30%; top: 31%; height: 9px; transform: rotate(18deg); opacity: .7; }
.map-road--ridge { width: 94%; left: -27%; bottom: 18%; height: 8px; transform: rotate(-10deg); opacity: .6; }
.map-route { position: absolute; z-index: 2; left: 49%; top: 11%; width: 1px; height: 48%; border-left: 2px dashed var(--clay); transform: rotate(27deg); transform-origin: bottom; opacity: .7; animation: route-pulse 2.8s ease-in-out infinite; }
@keyframes route-pulse { 50% { opacity: .25; } }
.map-point { position: absolute; z-index: 3; display: grid; grid-template-columns: 10px auto; column-gap: 8px; align-items: center; font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.map-point i { grid-row: 1 / 3; display: block; width: 8px; height: 8px; border: 2px solid var(--paper); border-radius: 50%; background: var(--forest); box-shadow: 0 0 0 1px rgba(14,45,35,.28); }
.map-point b { font-weight: 600; }
.map-point small { font-size: 8px; letter-spacing: .04em; color: #68756d; }
.map-point--alabang { left: 19%; top: 14%; }
.map-point--southwoods { left: 36%; top: 35%; }
.map-point--nuvali { right: 14%; top: 26%; }
.map-point--tagaytay { right: 10%; bottom: 17%; }
.map-pin { left: 46%; top: 55%; width: auto; height: auto; display: flex; align-items: center; gap: 12px; padding: 11px 17px 11px 11px; border: 0; border-radius: 999px; color: var(--cream); text-align: left; background: var(--forest); box-shadow: 0 18px 40px rgba(14,45,35,.22); }
.map-pin::before { display: none; }
.map-pin strong { display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid rgba(215,194,155,.55); border-radius: 50%; font-family: var(--display); font-size: 14px; font-weight: 400; }
.map-pin span { margin: 0; font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; }
.map-pin small { display: block; margin-top: 3px; color: rgba(243,239,229,.58); font-size: 7px; letter-spacing: .1em; }
.map-key { position: absolute; z-index: 3; left: 30px; bottom: 28px; padding: 15px 17px; border: 1px solid rgba(14,45,35,.18); background: rgba(250,248,242,.72); backdrop-filter: blur(10px); }
.map-key span, .map-key small { display: block; }
.map-key span { font-family: var(--display); font-size: 1.15rem; }
.map-key small { margin-top: 2px; font-size: 7px; letter-spacing: .12em; text-transform: uppercase; color: #6c7970; }

.cta-cinematic { min-height: 92svh; align-items: center; isolation: isolate; }
.cta-cinematic::after {
  z-index: 1;
  background: radial-gradient(circle at 50% 52%, rgba(5,18,13,.18), rgba(5,18,13,.56) 78%), linear-gradient(0deg, rgba(5,18,13,.42), rgba(5,18,13,.02) 58%);
  opacity: .36;
  transition: opacity 1.15s var(--ease), background 1.15s var(--ease);
}
.cta-cinematic.is-copy-visible::after { opacity: 1; }
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(980px, calc(100vw - 80px));
  max-width: none;
  margin-inline: auto;
  padding: 100px 0 72px;
  border: 0;
  color: white;
  text-align: center;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.js-ready [data-cinematic-cta] .cta-content {
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  transform: translateY(34px) scale(.985);
  pointer-events: none;
  transition: opacity 1.05s var(--ease), transform 1.2s var(--ease), filter 1s ease, visibility 0s linear 1.2s;
}
.js-ready [data-cinematic-cta].is-copy-visible .cta-content {
  opacity: 1;
  visibility: visible;
  filter: none;
  transform: none;
  pointer-events: auto;
  transition-delay: 0s;
}
.cta-sequence { justify-content: center; margin-bottom: 24px; color: rgba(255,255,255,.7); }
.cta-content > .eyebrow { justify-content: center; margin: 0 0 24px; color: rgba(255,255,255,.72); font-size: 10px; line-height: 1.2; }
.cta-content > .eyebrow::after { content: ''; width: 38px; height: 1px; background: currentColor; opacity: .55; }
.cta-content h2 { max-width: 12ch; margin: 0 auto 25px; font-family: var(--display); font-size: clamp(3.8rem, 6.4vw, 7.4rem); font-weight: 400; line-height: .9; letter-spacing: -.055em; text-shadow: 0 4px 34px rgba(0,0,0,.28); }
.cta-content > p { max-width: 570px; margin: 0 auto; color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.75; text-wrap: balance; }
.cta-actions { justify-content: center; margin-top: 30px; }

.amenity-collection { position: relative; overflow: hidden; }
.amenity-collection::before { content: 'CANYON RANCH · CARMONA'; position: absolute; right: -45px; top: 52%; color: rgba(14,45,35,.04); font-family: var(--display); font-size: clamp(5rem, 11vw, 11rem); letter-spacing: -.05em; transform: rotate(90deg); pointer-events: none; }
.amenity-collection-head { margin-bottom: clamp(54px, 7vw, 92px); padding-top: 28px; border-top: 1px solid var(--line); }
.amenity-photo-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(64px, 7vw, 108px) clamp(18px, 2vw, 30px); align-items: start; }
.amenity-photo-card--lead { grid-column: span 7; }
.amenity-photo-card--support { grid-column: span 5; }
.amenity-photo-card--third { grid-column: span 4; }
.amenity-photo-card--panorama { grid-column: 1 / -1; }
.amenity-photo { position: relative; overflow: hidden; background: #d8ded5; box-shadow: 0 22px 50px rgba(14,45,35,.08); }
.amenity-photo-card--lead .amenity-photo, .amenity-photo-card--support .amenity-photo { height: clamp(360px, 34vw, 530px); }
.amenity-photo-card--third .amenity-photo { height: clamp(280px, 25vw, 385px); }
.amenity-photo-card--panorama .amenity-photo { height: clamp(390px, 42vw, 620px); }
.amenity-photo img { height: 106%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s ease; }
.amenity-photo-card:hover .amenity-photo img { transform: scale(1.045); filter: saturate(.88) contrast(1.03); }
.amenity-photo > span { position: absolute; left: 18px; top: 18px; padding: 8px 11px; border-radius: 99px; color: var(--forest); background: rgba(250,248,242,.88); backdrop-filter: blur(9px); font-size: 8px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.amenity-photo-info { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(160px, .72fr); gap: 12px clamp(20px, 2.4vw, 38px); min-height: 142px; padding: 24px 0 30px; border-bottom: 1px solid var(--line); }
.amenity-photo-info h3 { margin: 0; font-family: var(--display); font-size: clamp(2.1rem, 3vw, 3.55rem); font-weight: 400; line-height: .96; letter-spacing: -.04em; }
.amenity-photo-info p { margin: 0; color: #68756d; font-size: 12px; }
.amenity-photo-info i { grid-column: 1 / -1; font-size: 8px; font-style: normal; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--clay); }
.amenity-photo-card--third .amenity-photo-info { grid-template-columns: 1fr; }
.amenity-photo-card--third .amenity-photo-info h3 { font-size: clamp(2rem, 2.7vw, 3rem); }
.amenity-photo-card--panorama .amenity-photo-info { grid-template-columns: 1.2fr .8fr; }

.reveal { filter: blur(4px); transform: translateY(48px) scale(.992); transition: opacity .95s var(--ease), transform 1.05s var(--ease), filter .9s ease; }
.reveal.in-view { filter: none; transform: none; }

@media (max-width: 1080px) {
  .hero-copy { width: min(680px, 86vw); }
  .homes-track .home-card { flex-basis: clamp(410px, 58vw, 600px); }
  .subpage-hero-copy { width: min(820px, 86vw); }
  .amenity-photo-grid { gap: 64px 18px; }
  .amenity-photo-card--lead, .amenity-photo-card--support { grid-column: span 6; }
  .amenity-photo-card--third { grid-column: span 6; }
  .amenity-photo-card--third:nth-of-type(5) { grid-column: 4 / span 6; }
  .amenity-photo-card--lead .amenity-photo, .amenity-photo-card--support .amenity-photo { height: clamp(330px, 42vw, 470px); }
}

@media (max-width: 760px) {
  .hero::before { width: 120%; height: 75%; bottom: -15%; }
  .hero-copy { width: 100%; }
  .hero-phase { margin-bottom: 12px; }
  .hero-phase span:last-child { display: none; }
  .hero-kicker { max-width: 260px; line-height: 1.5; }
  .hero-title { max-width: 350px; font-size: clamp(3.25rem, 15.5vw, 5rem); }
  .hero-title em { margin-left: 22px; }
  .hero-bottom p { width: 78%; font-size: 11px; }
  .hero-timeline { width: 62%; margin-top: 20px; }
  .luxury-marquee { padding-block: 16px 14px; }
  .residence-carousel-head { grid-template-columns: 1fr auto; }
  .residence-carousel-head > p { grid-column: 1 / -1; }
  .carousel-controls button { width: 43px; height: 43px; }
  .homes-carousel { width: calc(100vw - 18px); }
  .homes-track { gap: 14px; padding-right: 18px; }
  .homes-track .home-card { flex-basis: calc(100vw - 54px); opacity: 1; transform: none; }
  .homes-track .home-media { aspect-ratio: 1.16; }
  .homes-track .home-info { min-height: 116px; }
  .map-art { min-height: 570px; }
  .map-point--alabang { left: 10%; top: 13%; }
  .map-point--southwoods { left: 18%; top: 36%; }
  .map-point--nuvali { right: 7%; top: 22%; }
  .map-point--tagaytay { right: 5%; bottom: 16%; }
  .map-pin { left: 35%; top: 54%; }
  .site-header:not(.scrolled):not(.header-solid) .nav-shell::after { left: 18px; right: 18px; }
  body.menu-open .site-header:not(.scrolled):not(.header-solid) { background: transparent; text-shadow: none; }
  .subpage-hero { min-height: 700px; padding: 118px 0 30px; align-items: flex-end; }
  .subpage-hero-copy { width: 100%; padding: 28px 24px 30px; backdrop-filter: blur(5px); }
  .subpage-hero-copy::before { margin-bottom: 28px; }
  .subpage-hero-copy::after { top: 29px; right: 24px; width: 38px; }
  .subpage-hero .display-xl { font-size: clamp(3.15rem, 13.5vw, 4.8rem); line-height: .92; }
  .subpage-hero-copy > p:last-child { width: 90%; margin-top: 20px; font-size: 12px; }
  .cta-cinematic { min-height: 760px; align-items: center; padding-bottom: 0; }
  .cta-content { width: calc(100% - 36px); margin: 0 auto; padding: 80px 10px 52px; }
  .cta-content h2 { max-width: 9.5ch; font-size: clamp(3rem, 14vw, 4.7rem); }
  .cta-content > p { font-size: 12px; }
  .amenity-photo-grid { display: block; }
  .amenity-photo-card { margin-bottom: 58px; }
  .amenity-photo-card--lead .amenity-photo, .amenity-photo-card--support .amenity-photo, .amenity-photo-card--third .amenity-photo, .amenity-photo-card--panorama .amenity-photo { height: auto; aspect-ratio: 1.18; }
  .amenity-photo-info { grid-template-columns: 1fr; }
  .amenity-photo-card--panorama .amenity-photo-info { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video, .luxury-marquee > div, .map-route { animation: none !important; }
  .hero-copy.is-changing .hero-title span, .hero-copy.is-changing .hero-title em, .hero-copy.is-changing .hero-kicker, .hero-copy.is-changing .hero-bottom p { opacity: 1; filter: none; transform: none; }
  .js-ready [data-cinematic-cta] .cta-content { opacity: 1; visibility: visible; filter: none; transform: none; pointer-events: auto; }
}

/* Open image treatment for the residence collection hero. */
.subpage-hero--open .subpage-hero-copy {
  width: min(900px, 78vw);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.subpage-hero--open .subpage-hero-copy::before,
.subpage-hero--open .subpage-hero-copy::after { display: none; }
.subpage-hero--open .subpage-hero-copy .eyebrow { margin-bottom: 20px; }
.subpage-hero--open .display-xl { text-shadow: 0 4px 34px rgba(0,0,0,.42); }
.subpage-hero--open .subpage-hero-copy > p:last-child { text-shadow: 0 2px 20px rgba(0,0,0,.48); }

@media (max-width: 760px) {
  .subpage-hero--open .subpage-hero-copy { width: 100%; padding: 0 0 12px; }
}
