:root {
  --cream: #f4ede3;
  --cream-deep: #e7ddcf;
  --paper: #fbf8f2;
  --white: #fffdf9;
  --ink: #173f38;
  --ink-soft: #47655e;
  --aqua: #25aeb0;
  --aqua-deep: #148a8e;
  --gold: #c8a264;
  --line: rgba(23, 63, 56, .16);
  --shadow: 0 24px 70px rgba(34, 55, 46, .13);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.wrap { width: min(1320px, calc(100% - 64px)); margin: 0 auto; }
.section { padding: 132px 0; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--aqua-deep);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}
h1, h2, h3, blockquote { font-family: var(--serif); font-weight: 400; line-height: .98; }
h2 { margin: 0; font-size: clamp(3rem, 5.6vw, 6.4rem); letter-spacing: -.045em; }
h3 { margin: 0; font-size: clamp(2rem, 2.6vw, 3rem); letter-spacing: -.035em; }
p { margin-top: 0; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 108px;
  padding: 12px clamp(24px, 4vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,.28);
  background: rgba(248, 242, 232, .88);
  backdrop-filter: blur(18px);
  transition: height .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  height: 84px;
  background: rgba(251, 248, 242, .96);
  box-shadow: 0 12px 36px rgba(26, 52, 44, .08);
}
.brand { width: 220px; transition: width .3s ease; }
.site-header.is-scrolled .brand { width: 180px; }
.brand img { height: 76px; object-fit: contain; object-position: left center; }
.site-header.is-scrolled .brand img { height: 58px; }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.primary-nav a {
  position: relative;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--aqua-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 14px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}
.nav-cta:hover { color: var(--white); background: var(--ink); }
.menu-toggle { display: none; border: 0; background: transparent; }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 914px;
  height: max(914px, 100svh);
  overflow: hidden;
  background: #d7c7b2;
}
.hero-slides, .hero-slide, .hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide {
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1.25s ease, transform 7s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-slide img { object-fit: cover; object-position: center; }
.hero-slide:nth-child(3) img { object-position: 58% center; }
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 48, 42, .68) 0%, rgba(18, 48, 42, .25) 47%, rgba(18, 48, 42, .03) 76%),
    linear-gradient(0deg, rgba(14, 37, 32, .35) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 2; padding-top: 110px; color: var(--white); }
.hero-content .eyebrow { color: #c7f1e8; }
.hero h1 {
  max-width: 930px;
  margin: 0 0 28px;
  font-size: clamp(4.8rem, 8.2vw, 9.6rem);
  letter-spacing: -.06em;
  text-shadow: 0 5px 28px rgba(0,0,0,.14);
}
.hero h1 em { color: #d8f2e6; font-weight: 400; }
.hero-copy { max-width: 680px; margin-bottom: 36px; font-size: clamp(1.05rem, 1.3vw, 1.28rem); color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--aqua-deep); box-shadow: 0 14px 34px rgba(10, 68, 67, .2); }
.button-primary:hover { background: var(--ink); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-ghost:hover { color: var(--ink); background: var(--white); }
.button-outline { border-color: var(--ink); background: transparent; }
.button-outline:hover { color: var(--white); background: var(--ink); }
.hero-meta {
  position: absolute;
  z-index: 3;
  right: clamp(30px, 4vw, 72px);
  bottom: 52px;
  display: flex;
  gap: 28px;
  color: rgba(255,255,255,.88);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-meta span::before { content: "•"; margin-right: 10px; color: #bceadd; }
.slider-controls {
  position: absolute;
  z-index: 4;
  right: clamp(30px, 4vw, 72px);
  top: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: right top;
}
.slider-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  color: white;
  background: rgba(0,0,0,.08);
  cursor: pointer;
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 28px; height: 2px; padding: 0; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: width .25s ease, background .25s ease; }
.slider-dot.is-active { width: 52px; background: white; }
.scroll-cue {
  position: absolute;
  z-index: 4;
  left: clamp(30px, 4vw, 72px);
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.scroll-cue i { position: relative; width: 62px; height: 1px; background: rgba(255,255,255,.55); overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: white; animation: scrollCue 2s infinite ease-in-out; }
@keyframes scrollCue { from { transform: translateX(-100%); } 60%,100% { transform: translateX(100%); } }

.intro { position: relative; background: var(--paper); }
.intro::after { content: ""; position: absolute; right: -100px; bottom: -120px; width: 360px; height: 360px; border: 1px solid rgba(37,174,176,.15); border-radius: 50%; }
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(60px, 9vw, 150px); align-items: end; }
.section-heading h2 { max-width: 850px; }
.intro-copy { max-width: 570px; font-size: 1.1rem; color: var(--ink-soft); }
.intro-copy p + p { margin-top: 24px; }
.signature-line { display: flex; align-items: center; gap: 14px; margin-top: 42px; color: var(--ink); font-family: var(--serif); font-size: 1.2rem; font-style: italic; }
.signature-line span { width: 58px; height: 1px; background: var(--gold); }

.feature-story { background: var(--cream); }
.feature-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 7vw, 110px); align-items: center; }
.feature-image { position: relative; }
.feature-image::before { content: ""; position: absolute; z-index: 0; top: -26px; left: -26px; width: 58%; height: 54%; border-radius: 46% 54% 60% 40% / 44% 35% 65% 56%; background: #d8e6d9; }
.feature-image img { position: relative; z-index: 1; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 220px 220px 28px 28px; box-shadow: var(--shadow); }
.image-note { position: absolute; z-index: 2; right: 20px; bottom: 18px; padding: 9px 13px; color: var(--white); background: rgba(15,50,43,.72); backdrop-filter: blur(8px); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.feature-content { max-width: 610px; }
.feature-content h2 { margin-bottom: 34px; font-size: clamp(3.2rem, 5vw, 5.8rem); }
.feature-content > p { color: var(--ink-soft); font-size: 1.08rem; }
.amenity-list { margin-top: 48px; border-top: 1px solid var(--line); }
.amenity-list div { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.amenity-list strong { color: var(--aqua-deep); font-size: .7rem; letter-spacing: .12em; }
.amenity-list span { font-family: var(--serif); font-size: 1.25rem; }

.residences { background: var(--ink); color: var(--white); }
.residence-header { display: grid; grid-template-columns: 1fr .55fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.residence-header .eyebrow { color: #8ed8cf; }
.residence-header > p { margin: 0; color: rgba(255,255,255,.67); }
.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.model-card { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); }
.model-number { position: absolute; z-index: 2; top: 18px; right: 18px; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: var(--ink); background: rgba(255,255,255,.9); font-size: .67rem; font-weight: 800; }
.model-image { height: 310px; overflow: hidden; }
.model-image img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.model-card:hover .model-image img { transform: scale(1.05); }
.model-copy { padding: 34px; }
.model-copy .eyebrow { margin-bottom: 12px; color: #90d8d0; }
.model-copy h3 { margin-bottom: 20px; }
.model-copy > p { min-height: 82px; color: rgba(255,255,255,.66); font-size: .95rem; }
.availability { display: inline-block; margin-top: 14px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); color: #dbcfb8; font-size: .68rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }

.interlude { position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden; }
.interlude > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.interlude-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,48,42,.74), rgba(18,48,42,.08) 72%); }
.interlude-copy { position: relative; z-index: 2; color: white; }
.interlude-copy .eyebrow { color: #c8eee7; }
.interlude blockquote { max-width: 850px; margin: 0; font-size: clamp(3.5rem, 6vw, 7rem); letter-spacing: -.05em; }

.location { background: var(--paper); }
.location-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(60px, 8vw, 120px); align-items: center; }
.location-copy h2 { margin-bottom: 30px; }
.location-copy > p { color: var(--ink-soft); font-size: 1.05rem; }
.location-list { padding: 0; margin: 45px 0 32px; list-style: none; border-top: 1px solid var(--line); }
.location-list li { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.location-list strong { color: var(--aqua-deep); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.text-link { display: inline-flex; gap: 12px; align-items: center; font-weight: 750; border-bottom: 1px solid var(--ink); }
.text-link span { color: var(--aqua-deep); }
.location-visual { position: relative; min-height: 650px; overflow: hidden; border-radius: 50% 50% 18px 18px; background: #e7dfd2; box-shadow: var(--shadow); }
.map-grid { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(23,63,56,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(23,63,56,.14) 1px, transparent 1px); background-size: 42px 42px; transform: rotate(-8deg) scale(1.15); }
.map-road { position: absolute; height: 26px; border: 7px solid #f7f2e8; border-radius: 999px; background: var(--gold); box-shadow: 0 0 0 1px rgba(23,63,56,.1); transform-origin: center; }
.road-a { top: 22%; left: -12%; width: 118%; transform: rotate(14deg); }
.road-b { top: 57%; left: -10%; width: 122%; transform: rotate(-18deg); }
.road-c { top: 5%; left: 48%; width: 26px; height: 92%; transform: rotate(8deg); }
.map-water { position: absolute; border-radius: 55% 45% 62% 38% / 55% 37% 63% 45%; background: rgba(37,174,176,.28); }
.water-one { width: 270px; height: 140px; right: -30px; bottom: 18%; transform: rotate(-18deg); }
.water-two { width: 210px; height: 110px; left: 3%; top: 18%; transform: rotate(14deg); }
.map-pin { position: absolute; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 14px; background: rgba(255,253,249,.92); box-shadow: 0 15px 34px rgba(23,63,56,.16); font-family: var(--serif); font-size: 1rem; line-height: 1.05; }
.map-pin i { width: 20px; height: 20px; border: 6px solid var(--aqua-deep); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.map-pin small { font-family: var(--sans); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; }
.pin-home { top: 45%; left: 45%; }
.pin-home i { border-color: var(--ink); }
.pin-mall { top: 24%; right: 11%; }
.map-caption { position: absolute; right: 22px; bottom: 14px; margin: 0; color: var(--ink-soft); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }

.gallery { background: var(--cream); }
.gallery-heading { display: grid; grid-template-columns: 1fr .55fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.gallery-heading > p { margin: 0; color: var(--ink-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; background: #d8d0c4; cursor: zoom-in; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .7s ease, filter .4s ease; }
.gallery-item:hover img { transform: scale(1.055); filter: brightness(.8); }
.gallery-item span { position: absolute; right: 16px; bottom: 14px; left: 16px; color: white; font-family: var(--serif); font-size: 1.2rem; text-align: left; opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease; }
.gallery-item:hover span { opacity: 1; transform: translateY(0); }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }

.register { position: relative; overflow: hidden; background: #dbe6dd; }
.register::before { content: ""; position: absolute; top: -250px; right: -180px; width: 620px; height: 620px; border-radius: 50%; background: rgba(37,174,176,.12); }
.register-shell { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.register-copy h2 { margin-bottom: 30px; }
.register-copy > p { max-width: 560px; color: var(--ink-soft); font-size: 1.05rem; }
.register-details { display: grid; gap: 12px; margin-top: 42px; }
.register-details span { position: relative; padding-left: 24px; font-size: .8rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.register-details span::before { content: ""; position: absolute; top: .62em; left: 0; width: 10px; height: 1px; background: var(--aqua-deep); }
.interest-form { padding: clamp(28px, 4vw, 56px); background: rgba(255,253,249,.92); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.interest-form label { display: grid; gap: 8px; margin-bottom: 18px; color: var(--ink-soft); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.interest-form input, .interest-form select { width: 100%; height: 54px; padding: 0 14px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; color: var(--ink); outline: none; background: transparent; }
.interest-form input:focus, .interest-form select:focus { border-bottom-color: var(--aqua-deep); box-shadow: 0 1px 0 var(--aqua-deep); }
.checkbox-label { grid-template-columns: 20px 1fr !important; align-items: start; gap: 10px !important; margin: 8px 0 24px !important; font-weight: 600 !important; letter-spacing: 0 !important; line-height: 1.45; text-transform: none !important; }
.checkbox-label input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--aqua-deep); }
.form-submit { width: 100%; border: 0; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--aqua-deep); font-size: .86rem; font-weight: 700; text-align: center; }

.site-footer { padding: 75px 0 30px; background: var(--paper); }
.footer-main { display: grid; grid-template-columns: 260px 1fr auto; gap: 40px; align-items: center; padding-bottom: 45px; border-bottom: 1px solid var(--line); }
.footer-brand img { height: 115px; object-fit: contain; object-position: left center; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; font-size: .72rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; padding-top: 28px; color: var(--ink-soft); font-size: .7rem; }
.footer-bottom p:last-child { max-width: 650px; text-align: right; }

.lightbox { position: fixed; z-index: 300; inset: 0; display: grid; place-items: center; padding: 70px; color: white; background: rgba(11,30,26,.94); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1400px, 92vw); max-height: 78vh; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,.3); }
.lightbox p { margin: 18px 0 0; font-family: var(--serif); font-size: 1.25rem; text-align: center; }
.lightbox-close { position: absolute; top: 22px; right: 30px; width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: white; background: transparent; font-size: 2rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1080px) {
  .primary-nav { gap: 16px; }
  .primary-nav a { font-size: .68rem; }
  .brand { width: 185px; }
  .intro-grid, .feature-grid, .location-grid, .register-shell { grid-template-columns: 1fr; }
  .intro-copy, .feature-content { max-width: 760px; }
  .feature-image { max-width: 760px; }
  .feature-image img { aspect-ratio: 5 / 4; border-radius: 190px 190px 24px 24px; }
  .model-grid { grid-template-columns: 1fr 1fr; }
  .model-card:last-child { grid-column: 1 / -1; }
  .location-visual { min-height: 580px; }
}

@media (max-width: 820px) {
  .wrap { width: min(100% - 36px, 680px); }
  .section { padding: 94px 0; }
  .site-header,
  .site-header.is-scrolled {
    z-index: 1000;
    height: 86px;
    padding: 8px 18px;
    border-bottom: 1px solid rgba(23, 63, 56, .14);
    background: #fbf8f2;
    box-shadow: 0 8px 28px rgba(26, 52, 44, .08);
    backdrop-filter: none;
  }
  .brand, .site-header.is-scrolled .brand { position: relative; z-index: 1002; width: 160px; }
  .brand img, .site-header.is-scrolled .brand img { height: 62px; }
  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    place-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 1px solid rgba(23, 63, 56, .16);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(23, 63, 56, .10);
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    z-index: 999;
    top: 86px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100dvh - 86px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    padding: 24px 18px calc(34px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ink);
    background: #f4ede3;
    background-image: radial-gradient(circle at 90% 8%, rgba(37, 174, 176, .10), transparent 34%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
  }
  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .primary-nav a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 66px;
    padding: 16px 20px;
    border: 1px solid rgba(23, 63, 56, .12);
    border-radius: 18px;
    color: var(--ink);
    background: rgba(255, 253, 249, .98);
    box-shadow: 0 8px 24px rgba(23, 63, 56, .07);
    font-family: var(--serif);
    font-size: clamp(1.35rem, 6vw, 1.8rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.02em;
    text-transform: none;
  }
  .primary-nav a:not(.nav-cta)::after { display: none; }
  .primary-nav a:hover,
  .primary-nav a:focus-visible { color: var(--aqua-deep); background: #fffdf9; border-color: rgba(20, 138, 142, .30); }
  .nav-cta {
    justify-content: center;
    min-height: 58px !important;
    margin-top: 4px;
    border-color: var(--aqua-deep) !important;
    border-radius: 999px !important;
    color: var(--white) !important;
    background: var(--aqua-deep) !important;
    font-family: var(--sans) !important;
    font-size: .76rem !important;
    font-weight: 800 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
  }
  .nav-cta:hover,
  .nav-cta:focus-visible { color: var(--white) !important; background: var(--ink) !important; border-color: var(--ink) !important; }
  .hero { min-height: 914px; height: 914px; }
  .hero h1 { font-size: clamp(4rem, 16vw, 6.4rem); }
  .hero-content { padding-top: 40px; }
  .hero-copy { max-width: 560px; }
  .hero-meta { display: none; }
  .slider-controls { right: 20px; top: auto; bottom: 38px; transform: none; }
  .scroll-cue { display: none; }
  .intro-grid { gap: 48px; }
  .residence-header, .gallery-heading { grid-template-columns: 1fr; gap: 28px; }
  .model-grid { grid-template-columns: 1fr; }
  .model-card:last-child { grid-column: auto; }
  .interlude { min-height: 660px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery-wide { grid-column: span 2; }
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { height: 120px; object-position: center; }
  .footer-links { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom p:last-child { text-align: center; }
}

@media (max-width: 560px) {
  .wrap { width: calc(100% - 28px); }
  h2 { font-size: clamp(2.75rem, 15vw, 4.5rem); }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 5.2rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 330px; }
  .button { width: 100%; }
  .feature-image img { aspect-ratio: 4 / 5; border-radius: 140px 140px 18px 18px; }
  .model-image { height: 265px; }
  .model-copy { padding: 28px 24px; }
  .interlude { min-height: 620px; }
  .interlude blockquote { font-size: 3.3rem; }
  .location-visual { min-height: 470px; border-radius: 180px 180px 14px 14px; }
  .pin-home { top: 46%; left: 23%; }
  .pin-mall { top: 23%; right: 4%; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-wide, .gallery-tall { grid-column: auto; grid-row: auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .interest-form { padding: 28px 20px; }
  .lightbox { padding: 60px 16px; }
}


/* Back-to-top control */
.back-to-top-wrap {
  display: flex;
  justify-content: flex-end;
  padding-top: 26px;
}
.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid rgba(23, 63, 56, .20);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 63, 56, .08);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.back-to-top span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--aqua-deep);
  font-size: 1rem;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}
.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-2px);
}
.back-to-top:hover span,
.back-to-top:focus-visible span {
  background: var(--aqua);
  transform: translateY(-2px);
}
.back-to-top:focus-visible {
  outline: 3px solid rgba(37, 174, 176, .28);
  outline-offset: 4px;
}

@media (max-width: 820px) {
  .back-to-top-wrap { justify-content: center; padding-top: 30px; }
  .back-to-top { width: min(100%, 280px); }
}
