:root {
  --ink: #16312b;
  --muted: #66716d;
  --line: #d8dfdc;
  --paper: #ffffff;
  --mist: #eef7f3;
  --stone: #f4f1ea;
  --green: #0f513f;
  --green-deep: #082d24;
  --orange: #c96d2c;
  --aqua: #bfe1dc;
  --shadow: 0 20px 60px rgba(8, 45, 36, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

img,
video {
  display: block;
  max-width: 100%;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-media {
  animation: hero-fade 1200ms ease-out both, hero-zoom 14000ms ease-out both;
}

.hero-content > .eyebrow {
  animation: hero-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) 100ms both;
}

.hero-content > h1 {
  animation: hero-rise 760ms cubic-bezier(0.22, 1, 0.36, 1) 200ms both;
}

.hero-content > .hero-copy {
  animation: hero-rise 760ms cubic-bezier(0.22, 1, 0.36, 1) 320ms both;
}

.hero-content > .hero-actions {
  animation: hero-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) 440ms both;
}

.hero-content > .hero-facts {
  animation: hero-rise 760ms cubic-bezier(0.22, 1, 0.36, 1) 560ms both;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 60ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 140ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 220ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 380ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 460ms; }

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

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(216, 223, 220, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0;
  color: var(--green-deep);
  line-height: 0.92;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.main-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--orange);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta {
  min-height: 42px;
  background: var(--green);
  color: #ffffff;
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.header-contact svg {
  width: 16px;
  height: 16px;
}

.header-contact:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lang-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 6px 9px;
  border-radius: calc(var(--radius) - 4px);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease;
}

.lang-option:hover {
  color: var(--orange);
}

.lang-option.active {
  background: var(--green);
  color: #ffffff;
}

.button.primary {
  background: var(--orange);
  color: #ffffff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
}

.button.tertiary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: min(780px, 86svh);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 28, 23, 0.82) 0%, rgba(6, 28, 23, 0.55) 42%, rgba(6, 28, 23, 0.12) 100%),
    linear-gradient(0deg, rgba(6, 28, 23, 0.52) 0%, rgba(6, 28, 23, 0) 45%);
}

.hero-content {
  display: grid;
  align-content: center;
  min-height: min(780px, 86svh);
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) 0 clamp(28px, 5vw, 72px);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3b27d;
}

h1,
h2,
h3,
p,
dl,
figure {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 92px;
  font-weight: 500;
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(42px, 8vw, 82px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  gap: 1px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-facts div {
  position: relative;
  padding: 18px;
  background: rgba(6, 28, 23, 0.38);
  overflow: hidden;
  isolation: isolate;
  transition: background 360ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-facts div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 109, 44, 0.3) 0%, rgba(201, 109, 44, 0) 55%);
  opacity: 0;
  transition: opacity 360ms ease;
  pointer-events: none;
}

.hero-facts div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-facts div:hover {
  background: rgba(6, 28, 23, 0.6);
  transform: translateY(-3px);
}

.hero-facts div:hover::before {
  opacity: 1;
}

.hero-facts div:hover::after {
  transform: scaleX(1);
}

.hero-facts dt {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-transform: uppercase;
  transition: color 260ms ease, letter-spacing 320ms ease;
}

.hero-facts dd {
  position: relative;
  z-index: 1;
  margin: 5px 0 0;
  font-size: 25px;
  font-weight: 800;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), color 260ms ease;
}

.hero-facts div:hover dt {
  color: #f3b27d;
  letter-spacing: 0.6px;
}

.hero-facts div:hover dd {
  transform: translateY(-2px);
  color: #ffffff;
}

@keyframes hero-facts-shimmer {
  0%, 55%, 100% {
    transform: translate3d(-150%, 0, 0) skewX(-18deg);
    opacity: 0;
  }
  65% {
    opacity: 0.22;
  }
  80% {
    opacity: 0;
  }
  85% {
    transform: translate3d(240%, 0, 0) skewX(-18deg);
    opacity: 0;
  }
}

.hero-facts div > .hero-facts-glow {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40%;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transform: translate3d(-150%, 0, 0) skewX(-18deg);
  will-change: transform, opacity;
  animation: hero-facts-shimmer 7s ease-in-out infinite;
  animation-delay: var(--shimmer-delay, 0s);
  animation-fill-mode: both;
}

.section {
  padding: clamp(76px, 9vw, 124px) clamp(18px, 4vw, 54px);
}

.section-grid,
.section-head,
.location-layout,
.amenities-grid,
.residence-tabs,
.plan-panel,
.unit-grid,
.interior-showcase,
.purchase-grid,
.timeline {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.project-stack {
  display: grid;
  gap: clamp(36px, 5vw, 60px);
  width: min(100%, var(--max));
  margin-inline: auto;
}

.project-intro {
  max-width: 940px;
}

.project-intro h2 {
  margin-bottom: 0;
}

.project-banner {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-banner img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-banner:hover img {
  transform: scale(1.03);
}

.project-body {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
}

.project-lede {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.project-stack .metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.section-copy p,
.section-head p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.intro-band {
  background: var(--paper);
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.metric {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 220ms ease;
}

.metric:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 81, 63, 0.32);
  box-shadow: 0 18px 38px rgba(8, 45, 36, 0.1);
}

.metric span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.metric p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.location-section {
  background: var(--mist);
}

.section-head {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-head.compact {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(260px, 0.48fr);
  gap: 28px;
  align-items: end;
}

.section-head.compact .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-head.compact h2 {
  margin-bottom: 0;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: start;
}

.location-videos {
  display: grid;
  gap: 14px;
}

.location-videos video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: #111111;
  box-shadow: var(--shadow);
}

.places-list {
  display: grid;
  gap: 12px;
}

.places-list article {
  padding: 24px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(216, 223, 220, 0.8);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 220ms ease;
}

.places-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 81, 63, 0.32);
  box-shadow: 0 18px 38px rgba(8, 45, 36, 0.12);
}

.places-list span,
.amenity p,
.unit-grid span,
.purchase-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.places-list h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.places-list p,
.amenity h3,
.unit-grid p,
.purchase-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.amenities-section {
  background: var(--paper);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.amenity {
  position: relative;
  min-height: 338px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-deep);
  color: #ffffff;
  cursor: pointer;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
}

.amenity[data-amenity]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.amenity:hover {
  box-shadow: 0 22px 44px rgba(8, 45, 36, 0.22);
}

.amenity-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(6, 28, 23, 0.6);
  color: #ffffff;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-6px) scale(0.9);
  transition: opacity 280ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.amenity-zoom svg {
  width: 16px;
  height: 16px;
}

.amenity:hover .amenity-zoom,
.amenity:focus-visible .amenity-zoom {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.amenity.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 694px;
}

.amenity img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 500ms ease;
}

.amenity::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 28, 23, 0.78) 0%, rgba(6, 28, 23, 0.05) 58%);
}

.amenity div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: clamp(22px, 3vw, 34px);
}

.amenity h3 {
  color: #ffffff;
  font-size: 31px;
}

.amenity:hover img {
  transform: scale(1.04);
}

.amenities-grid.reveal-stagger > .amenity {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 760ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease;
  will-change: opacity, transform;
}

.amenities-grid.reveal-stagger > .amenity img {
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 920ms ease,
    transform 1120ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.amenities-grid.reveal-stagger.is-visible > .amenity {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.amenities-grid.reveal-stagger.is-visible > .amenity img {
  opacity: 0.9;
  transform: scale(1);
}

.amenities-grid.reveal-stagger.is-visible > .amenity:nth-child(1) {
  transition-delay: 100ms;
}

.amenities-grid.reveal-stagger.is-visible > .amenity:nth-child(2) {
  transition-delay: 220ms;
}

.amenities-grid.reveal-stagger.is-visible > .amenity:nth-child(3) {
  transition-delay: 360ms;
}

.amenities-grid.reveal-stagger.is-visible > .amenity:nth-child(4) {
  transition-delay: 500ms;
}

.amenities-grid.reveal-stagger.is-visible > .amenity:nth-child(5) {
  transition-delay: 640ms;
}

.amenities-grid.reveal-stagger.is-visible > .amenity:nth-child(1) img {
  transition-delay: 180ms;
}

.amenities-grid.reveal-stagger.is-visible > .amenity:nth-child(2) img {
  transition-delay: 300ms;
}

.amenities-grid.reveal-stagger.is-visible > .amenity:nth-child(3) img {
  transition-delay: 440ms;
}

.amenities-grid.reveal-stagger.is-visible > .amenity:nth-child(4) img {
  transition-delay: 580ms;
}

.amenities-grid.reveal-stagger.is-visible > .amenity:nth-child(5) img {
  transition-delay: 720ms;
}

.residences-section {
  background: var(--stone);
}

.residence-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.tab-button {
  position: relative;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(15, 81, 63, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  color: var(--green-deep);
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
  overflow: hidden;
  isolation: isolate;
  transition:
    background 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 220ms ease,
    border-color 240ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease;
}

.tab-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(15, 81, 63, 0.12) 0%, rgba(15, 81, 63, 0) 70%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.tab-button::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 81, 63, 0.45);
  color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(8, 45, 36, 0.1);
}

.tab-button:hover::before {
  opacity: 1;
}

.tab-button:hover::after {
  transform: scaleX(1);
}

.tab-button:focus-visible {
  outline: 3px solid rgba(201, 109, 44, 0.45);
  outline-offset: 2px;
}

.tab-button:active {
  transform: translateY(-1px) scale(0.98);
  transition-duration: 120ms;
}

.tab-button.active {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 10px 22px rgba(8, 45, 36, 0.18);
}

.tab-button.active::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 1;
}

.tab-button.active::after {
  background: var(--orange);
  transform: scaleX(1);
}

.tab-button.active:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(8, 45, 36, 0.24);
}

.plan-panel {
  display: grid;
  grid-template-columns: minmax(290px, 0.52fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.plan-copy h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 60px;
  font-weight: 500;
}

.plan-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.plan-stats {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.plan-stats div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.plan-stats dt {
  color: var(--muted);
  font-size: 13px;
}

.plan-stats dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.plan-image {
  display: grid;
  place-items: center;
  min-height: 430px;
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.plan-image img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.unit-grid article {
  min-height: 145px;
  padding: 18px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(216, 223, 220, 0.9);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 220ms ease;
}

.unit-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 109, 44, 0.5);
  box-shadow: 0 16px 34px rgba(8, 45, 36, 0.1);
}

.unit-grid strong {
  display: block;
  margin-bottom: 7px;
  font-size: 21px;
}

.interiors-section {
  background: var(--paper);
}

.interior-showcase {
  display: grid;
  gap: 18px;
}

.interior-selector-wrap {
  position: relative;
  display: block;
}

.interior-selector-wrap.has-overflow {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.interior-selector-wrap:not(.has-overflow) .interior-nav {
  display: none;
}

.interior-selector {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.interior-selector::-webkit-scrollbar {
  display: none;
}

.interior-tab {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 5);
  min-height: 190px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  scroll-snap-align: start;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 220ms ease;
}

.interior-tab:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(8, 45, 36, 0.16);
}

.interior-nav {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--green-deep);
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease, opacity 200ms ease;
}

.interior-nav svg {
  width: 18px;
  height: 18px;
}

.interior-nav:hover:not(:disabled) {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
  transform: scale(1.05);
}

.interior-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.interior-tab img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.interior-tab::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 28, 23, 0.88) 0%, rgba(6, 28, 23, 0.18) 60%);
}

.interior-tab-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: 16px;
}

.interior-tab-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}

.interior-tab-copy span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.interior-tab:hover img,
.masterplan-button:hover img,
.interior-feature:hover img {
  transform: scale(1.03);
}

.interior-tab.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(201, 109, 44, 0.28);
}

.interior-tab.active:hover {
  box-shadow: 0 0 0 2px rgba(201, 109, 44, 0.34), 0 16px 34px rgba(8, 45, 36, 0.16);
}

.interior-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 22px;
  align-items: start;
}

.interior-feature {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.interior-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 1;
  transition: transform 300ms ease, opacity 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.interior-feature img.is-fading {
  opacity: 0;
}

.interior-feature.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  animation: dialog-spinner 720ms linear infinite;
  z-index: 2;
  pointer-events: none;
}

.interior-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.interior-panel h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 500;
}

.interior-panel p {
  color: var(--muted);
}

.interior-note {
  margin: 0 0 18px;
  color: var(--green) !important;
  font-size: 14px;
  font-weight: 800;
}

.interior-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.interior-thumb {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
  text-align: left;
}

.interior-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.interior-thumb span {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.interior-thumb.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(201, 109, 44, 0.18);
}

.interior-open {
  width: 100%;
}

.masterplan-section {
  background: var(--mist);
}

.masterplan-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: start;
}

.masterplan {
  margin: 0;
}

.masterplan-button {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.masterplan-button img {
  width: 100%;
  min-height: 520px;
  object-fit: contain;
  background: #ffffff;
  transition: transform 300ms ease;
}

.zoom-hint {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(6, 28, 23, 0.78);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.document-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.document-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--green);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
}

.document-links.light a {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.purchase-section {
  background: var(--paper);
}

.purchase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.purchase-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 220ms ease;
}

.purchase-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 81, 63, 0.32);
  box-shadow: 0 20px 40px rgba(8, 45, 36, 0.1);
}

.purchase-grid h3 {
  font-size: 24px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
}

.timeline div {
  min-height: 118px;
  padding: 22px;
  background: var(--green-deep);
  color: #ffffff;
  transition: background 320ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline div:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.timeline span {
  display: block;
  margin-bottom: 12px;
  color: var(--aqua);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.timeline p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.developer-section {
  background: var(--mist);
}

.developer-stack {
  display: grid;
  gap: clamp(34px, 5vw, 56px);
  width: min(100%, var(--max));
  margin-inline: auto;
}

.developer-intro {
  max-width: 940px;
}

.developer-intro h2 {
  margin-bottom: 18px;
}

.developer-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.developer-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.developer-stats article {
  padding: 26px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 220ms ease;
}

.developer-stats article:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 81, 63, 0.32);
  box-shadow: 0 18px 38px rgba(8, 45, 36, 0.1);
}

.developer-stats span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
}

.developer-stats p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.developer-blocks {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 18px;
  align-items: start;
}

.developer-card {
  padding: clamp(26px, 3vw, 36px);
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 220ms ease;
}

.developer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 81, 63, 0.32);
  box-shadow: 0 24px 44px rgba(8, 45, 36, 0.1);
}

.developer-card .eyebrow {
  margin-bottom: 10px;
}

.developer-card h3 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.developer-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
}

.developer-card .project-list,
.developer-card .award-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: grid;
  gap: 0;
}

.developer-card .project-list li,
.developer-card .award-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
}

.developer-card .project-list li:first-child,
.developer-card .award-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.developer-card .project-list li:last-child,
.developer-card .award-list li:last-child {
  padding-bottom: 0;
}

.developer-card li strong {
  color: var(--ink);
  font-size: 16px;
}

.developer-card li span {
  color: var(--muted);
  font-size: 14px;
}

.developer-card-awards .award-note {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.lead-section {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 4vw, 54px);
  background: var(--green-deep);
  color: #ffffff;
}

.lead-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.lead-content h2 {
  color: #ffffff;
}

.lead-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(201, 109, 44, 0.22);
}

.form-submit {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--aqua);
  font-weight: 700;
}

.media-dialog {
  width: min(94vw, 1280px);
  height: min(92vh, 900px);
  max-height: 92vh;
  padding: 24px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-dialog[open] {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: dialog-rise 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes dialog-rise {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.media-dialog::backdrop {
  background: rgba(8, 45, 36, 0.72);
  animation: dialog-backdrop 220ms ease;
}

@keyframes dialog-backdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}

.dialog-header {
  padding-right: 54px;
  flex-shrink: 0;
}

.dialog-header h2 {
  margin-bottom: 8px;
  font-size: 34px;
}

.dialog-meta {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.dialog-stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfa;
  padding: 12px;
}

.dialog-stage > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dialog-stage > img.is-fading {
  opacity: 0;
  transform: scale(0.97);
}

.dialog-stage.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border-radius: 50%;
  border: 3px solid rgba(15, 81, 63, 0.18);
  border-top-color: var(--green);
  animation: dialog-spinner 720ms linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes dialog-spinner {
  to { transform: rotate(360deg); }
}

.dialog-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-deep);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(8, 45, 36, 0.2);
  transition: background 200ms ease, transform 200ms ease, opacity 200ms ease, color 200ms ease;
}

.dialog-nav svg {
  width: 20px;
  height: 20px;
}

.dialog-nav:hover:not(:disabled) {
  background: var(--green);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.dialog-nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.dialog-nav-prev { left: 14px; }
.dialog-nav-next { right: 14px; }

.media-dialog[data-single-item="true"] .dialog-nav,
.media-dialog[data-single-item="true"] .dialog-counter {
  display: none;
}

.dialog-counter {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(8, 45, 36, 0.72);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  pointer-events: none;
}

.dialog-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 6px;
  flex-shrink: 0;
  scrollbar-width: thin;
}

.dialog-thumbs::-webkit-scrollbar {
  height: 6px;
}

.dialog-thumbs::-webkit-scrollbar-thumb {
  background: rgba(8, 45, 36, 0.24);
  border-radius: 3px;
}

.dialog-thumb {
  flex: 0 0 124px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.dialog-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(8, 45, 36, 0.14);
}

.dialog-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: none;
  object-fit: cover;
}

.dialog-thumb span {
  display: block;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.dialog-thumb.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(201, 109, 44, 0.16);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--green-deep);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  z-index: 3;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.dialog-close:hover {
  background: var(--green);
  color: #ffffff;
  transform: rotate(90deg);
}

.pdf-dialog {
  width: min(94vw, 1280px);
  height: min(92vh, 900px);
  max-height: 92vh;
  padding: 24px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pdf-dialog[open] {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: dialog-rise 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pdf-dialog::backdrop {
  background: rgba(8, 45, 36, 0.72);
  animation: dialog-backdrop 220ms ease;
}

.pdf-dialog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-right: 54px;
  flex-shrink: 0;
}

.pdf-dialog-meta {
  min-width: 0;
  flex: 1;
}

.pdf-dialog-meta h2 {
  margin: 0;
  font-size: 28px;
}

.pdf-dialog-download {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--green);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.pdf-dialog-download svg {
  width: 14px;
  height: 14px;
}

.pdf-dialog-download:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(8, 45, 36, 0.18);
}

.pdf-dialog-frame {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfa;
}

.pdf-dialog-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #ffffff;
}

.pdf-dialog-frame.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border-radius: 50%;
  border: 3px solid rgba(15, 81, 63, 0.18);
  border-top-color: var(--green);
  animation: dialog-spinner 720ms linear infinite;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 720px) {
  .pdf-dialog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .pdf-dialog-download span {
    display: none;
  }

  .pdf-dialog-download {
    padding: 10px 12px;
  }
}

.yield-section {
  background: var(--paper);
}

.yield-stack {
  display: grid;
  gap: clamp(34px, 5vw, 56px);
  width: min(100%, var(--max));
  margin-inline: auto;
}

.yield-intro {
  max-width: 940px;
}

.yield-intro h2 {
  margin-bottom: 18px;
}

.yield-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.yield-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.yield-stats article {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--mist);
  border: 1px solid rgba(15, 81, 63, 0.12);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 220ms ease;
}

.yield-stats article:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 81, 63, 0.36);
  box-shadow: 0 20px 38px rgba(8, 45, 36, 0.1);
}

.yield-stats span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.yield-stats p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.yield-blocks {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.yield-card {
  padding: clamp(26px, 3vw, 36px);
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 220ms ease;
}

.yield-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 81, 63, 0.32);
  box-shadow: 0 24px 44px rgba(8, 45, 36, 0.1);
}

.yield-card .eyebrow {
  margin-bottom: 10px;
}

.yield-card h3 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.yield-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}

.yield-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
}

.yield-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.yield-list li:last-child {
  padding-bottom: 0;
}

.yield-list li strong {
  color: var(--ink);
  font-size: 16px;
}

.yield-list li span {
  color: var(--muted);
  font-size: 14px;
}

.yield-note {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  background: var(--stone);
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.faq-item {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item[open] {
  border-color: rgba(15, 81, 63, 0.4);
  box-shadow: 0 12px 30px rgba(8, 45, 36, 0.06);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(20px, 3vw, 28px);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  color: var(--green-deep);
  font-size: 18px;
  font-weight: 700;
}

.faq-toggle {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mist);
  transition: background 180ms ease, transform 180ms ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 220ms ease;
}

.faq-item[open] .faq-toggle {
  background: var(--orange);
}

.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after {
  background: #ffffff;
}

.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 clamp(20px, 3vw, 28px) 24px;
  color: var(--muted);
  font-size: 16px;
}

.faq-answer p {
  margin: 0 0 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 180ms ease;
}

.faq-answer a:hover {
  color: var(--orange);
}

.faq-answer strong {
  color: var(--ink);
}

.lead-direct {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.lead-direct-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transition: border-color 180ms ease, background 180ms ease;
}

.lead-direct-item:hover {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.14);
}

.lead-direct-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
}

.lead-direct-icon svg {
  width: 18px;
  height: 18px;
}

.lead-direct-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.lead-direct-copy strong {
  font-size: 14px;
  font-weight: 800;
}

.lead-direct-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lead-direct-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.lead-form-required {
  color: var(--orange);
  margin-left: 4px;
}

.lead-form input:invalid:not(:placeholder-shown),
.lead-form textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(201, 109, 44, 0.7);
  box-shadow: 0 0 0 3px rgba(201, 109, 44, 0.16);
}

.lead-form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 500;
}

.lead-form-consent input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.sticky-cta {
  position: fixed;
  inset: auto 12px 12px 12px;
  z-index: 30;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(8, 45, 36, 0.96);
  box-shadow: 0 18px 40px rgba(8, 45, 36, 0.32);
  backdrop-filter: blur(10px);
}

.sticky-cta-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  transition: background 180ms ease, border-color 180ms ease;
}

.sticky-cta-link svg {
  width: 20px;
  height: 20px;
}

.sticky-cta-link:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--orange);
}

.sticky-cta-button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--orange);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
}

.agent-dock {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 55;
  display: grid;
  justify-items: end;
  gap: 14px;
}

.agent-launcher {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: none;
  border-radius: 999px;
  padding: 14px 18px 14px 14px;
  background: linear-gradient(135deg, #0b4033, #106f52);
  color: var(--surface);
  border: 1px solid rgba(249, 242, 230, 0.18);
  box-shadow: 0 24px 48px rgba(7, 26, 20, 0.24);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, opacity 160ms ease;
}

.agent-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px rgba(7, 26, 20, 0.28);
}

body.agent-panel-open .agent-launcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
}

.agent-launcher-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(249, 242, 230, 0.22);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.agent-launcher-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.agent-launcher-copy strong {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agent-launcher-copy span {
  font-size: 12px;
  color: rgba(249, 242, 230, 0.78);
}

.agent-panel {
  width: min(380px, calc(100vw - 32px));
  height: min(720px, calc(100vh - 150px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(15, 81, 63, 0.14);
  background:
    linear-gradient(180deg, rgba(248, 242, 231, 0.96), rgba(255, 255, 255, 0.98)),
    var(--surface);
  box-shadow: 0 32px 72px rgba(7, 26, 20, 0.28);
  backdrop-filter: blur(20px);
}

.agent-panel[hidden] {
  display: none;
}

.agent-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  padding: 18px 20px 10px;
}

.agent-panel-head h2 {
  margin: 2px 0 0;
  font-size: 22px;
}

.agent-panel-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(15, 81, 63, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text-strong);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.agent-panel-body {
  min-height: 0;
  padding: 0 14px 16px;
}

#vip-chatkit {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 81, 63, 0.1);
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 32px clamp(18px, 4vw, 54px);
  background: #ffffff;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

/* Ссылка — grid-элемент: ограничиваем ширину её содержимым, иначе кликается вся строка. */
.site-footer a {
  justify-self: start;
  width: fit-content;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .two-columns,
  .reverse,
  .project-grid,
  .masterplan-grid,
  .location-layout,
  .plan-panel,
  .lead-inner,
  .interior-stage {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 74px;
  }

  h2 {
    font-size: 44px;
  }

  .plan-copy h3 {
    font-size: 48px;
  }

  .amenity h3 {
    font-size: 27px;
  }

  .section-head.compact {
    grid-template-columns: 1fr;
  }

  .section-head.compact .eyebrow {
    margin-bottom: -8px;
  }

  .project-stack .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-banner img {
    aspect-ratio: 16 / 9;
  }

  .masterplan-button img {
    min-height: 0;
  }

  .interior-tab {
    flex: 0 0 calc((100% - 24px) / 3);
  }

  .amenities-grid,
  .purchase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .developer-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .developer-blocks {
    grid-template-columns: 1fr;
  }

  .yield-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yield-blocks {
    grid-template-columns: 1fr;
  }

  .lead-direct {
    grid-template-columns: 1fr;
  }

  .header-contact span {
    display: none;
  }

  .header-contact {
    padding: 8px;
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .unit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amenity.large {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .brand strong {
    font-size: 28px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-facts dd {
    font-size: 20px;
  }

  .plan-copy h3 {
    font-size: 40px;
  }

  .amenity h3 {
    font-size: 24px;
  }

  .interior-panel h3 {
    font-size: 32px;
  }

  .site-header {
    gap: 12px;
    min-height: 66px;
    padding-inline: 16px;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .hero,
  .hero-content {
    min-height: 84svh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6, 28, 23, 0.86) 0%, rgba(6, 28, 23, 0.54) 58%, rgba(6, 28, 23, 0.28) 100%);
  }

  .hero-facts,
  .metric-grid,
  .amenities-grid,
  .purchase-grid,
  .timeline,
  .developer-stats,
  .yield-stats {
    grid-template-columns: 1fr;
  }

  .header-contact {
    display: none;
  }

  .sticky-cta {
    display: flex;
  }

  body.agent-panel-open .sticky-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
  }

  body {
    padding-bottom: 150px;
  }

  .agent-dock {
    right: 16px;
    bottom: 92px;
  }

  body.agent-panel-open .agent-dock {
    bottom: 24px;
  }

  .agent-panel {
    width: min(380px, calc(100vw - 24px));
    height: min(640px, calc(100vh - 126px));
  }

  .lead-form-consent {
    font-size: 12px;
  }

  .faq-item summary {
    padding: 18px 16px;
    gap: 12px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 16px 18px;
    font-size: 15px;
  }

  .hero-facts div {
    padding: 15px;
  }

  .section {
    padding-inline: 16px;
  }

  .metric {
    min-height: auto;
  }

  .amenity,
  .amenity.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .plan-panel {
    padding: 18px;
  }

  .plan-image {
    min-height: 300px;
  }

  .unit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-banner img {
    aspect-ratio: 4 / 3;
  }

  .interior-tab {
    flex: 0 0 70%;
  }

  .interior-thumbs {
    grid-template-columns: 1fr;
  }

  .lead-section {
    padding-inline: 16px;
  }
}

@media (max-width: 480px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    font-size: 13px;
  }

  .agent-launcher-copy span {
    display: none;
  }

  .agent-launcher {
    padding-right: 14px;
  }

  .agent-panel {
    width: calc(100vw - 20px);
    height: min(720px, calc(100svh - 24px));
    max-height: calc(100svh - 24px);
    border-radius: 24px;
  }

  .agent-dock {
    left: 10px;
    right: 10px;
    bottom: 12px;
    justify-items: stretch;
  }

  body.agent-panel-open .agent-dock {
    bottom: 12px;
  }

  .agent-panel-head {
    padding: 16px 16px 8px;
  }

  .agent-panel-body {
    padding: 0 10px 12px;
  }

  #vip-chatkit {
    min-height: clamp(420px, 64svh, 620px);
  }

  h1 {
    font-size: 50px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .unit-grid {
    grid-template-columns: 1fr;
  }

  .media-dialog {
    padding: 16px;
  }
}
