:root {
  --ink: #122838;
  --ink-soft: #375a6c;
  --deep: #0b1b26;
  --ocean: #0f3b4d;
  --sea: #6ea3b2;
  --foam: #eff5f4;
  --sand: #efe5d8;
  --gold: #c59c66;
  --gold-soft: #e6cba0;
  --line: rgba(18, 40, 56, 0.1);
  --white: #ffffff;
  --muted: #5c6f7a;
  --shadow: 0 28px 90px rgba(11, 27, 38, 0.12);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Be Vietnam Pro", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(110, 163, 178, 0.14), transparent 26%),
    radial-gradient(circle at 86% 4%, rgba(197, 156, 102, 0.16), transparent 22%),
    linear-gradient(180deg, #f3ede4 0%, #f6f6f2 18%, #f4f7f8 62%, #eef4f3 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 75%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  position: relative;
}

.section {
  padding: 28px 0;
}

.eyebrow,
.card-kicker,
.stat-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow,
.card-kicker {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.35rem, 7vw, 6.4rem);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

p {
  margin: 0;
  color: var(--muted);
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 247, 248, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 40, 56, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 55px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand img {
  width: 54px;
  height: 40px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: rgba(18, 40, 56, 0.76);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--ocean);
}

.nav-cta {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ocean), #174f64);
  color: var(--white) !important;
  display: inline-flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(18, 40, 56, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.hero-section {
  position: relative;
  padding: 64px 0 48px;
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 27, 38, 0.78), rgba(15, 59, 77, 0.46)),
    url("/assets/images/skyline.webp") center/cover no-repeat;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.86), transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 38px;
  align-items: center;
}

.hero-copy {
  color: var(--white);
  padding: 34px 0 80px;
}

.hero-copy h1,
.hero-copy h2,
.hero-copy h3,
.hero-copy p,
.hero-copy li {
  color: var(--white);
}

.hero-lead {
  max-width: 640px;
  margin-top: 24px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(11, 27, 38, 0.18);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--deep);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.hero-badges {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.hero-badges li {
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-stage {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-card-primary {
  background: rgba(248, 243, 235, 0.92);
}

.hero-card-primary img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-card-copy {
  padding: 26px 28px 28px;
}

.hero-card-copy h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--ink);
}

.hero-card-copy p {
  margin-top: 12px;
}

.hero-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hero-card-mini {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.88);
  padding: 18px;
  display: grid;
  gap: 14px;
}

.hero-card-mini img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 18px;
}

.hero-card-metric {
  background: linear-gradient(180deg, rgba(11, 27, 38, 0.96), rgba(15, 59, 77, 0.94));
}

.hero-card-metric .card-kicker,
.hero-card-metric p,
.hero-card-metric span,
.hero-card-metric strong {
  color: var(--white);
}

.metric-inline {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.metric-inline:last-child {
  border-bottom: 0;
}

.metric-inline strong {
  font-size: 1.9rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-soft);
}

.stats-section {
  padding: 0 0 88px;
}

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

.stat-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(18, 40, 56, 0.08);
  box-shadow: var(--shadow);
}

.stat-value {
  margin-top: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--ocean);
}

.stat-text {
  margin-top: 12px;
}

.split-layout,
.location-grid,
.amenity-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.section-copy,
.section-heading {
  display: grid;
  gap: 18px;
}

.intro-section {
  padding-top: 28px;
}

.overview-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(14, 48, 63, 0.97), rgba(9, 24, 34, 0.97));
  color: var(--white);
  box-shadow: var(--shadow);
}

.overview-panel h3,
.overview-panel p,
.overview-panel dt,
.overview-panel dd {
  color: var(--white);
}

.panel-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.info-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-list dt {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.68);
}

.info-list dd {
  margin: 0;
  font-weight: 600;
}

.statement-section {
  padding-top: 32px;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
}

.statement-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.statement-dark {
  background:
    radial-gradient(circle at top right, rgba(197, 156, 102, 0.2), transparent 24%),
    linear-gradient(160deg, #102634 0%, #0d2130 42%, #14394b 100%);
}

.statement-dark h2,
.statement-dark p,
.statement-dark blockquote {
  color: var(--white);
}

.statement-dark blockquote {
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 1.1rem;
}

.statement-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.statement-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.statement-visual figcaption {
  padding: 18px 22px 22px;
  color: var(--muted);
}

.location-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(110, 163, 178, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(237, 244, 244, 0.86));
}

.access-list {
  display: grid;
  gap: 14px;
}

.access-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.access-card strong {
  width: 78px;
  min-height: 78px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--ocean), #194f63);
}

.location-visual {
  position: relative;
  padding: 16px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.94));
  box-shadow: var(--shadow);
}

.location-visual img {
  width: 100%;
  border-radius: 26px;
}

.location-note {
  position: absolute;
  right: 32px;
  bottom: 32px;
  max-width: 280px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(11, 27, 38, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.location-note p {
  color: rgba(255, 255, 255, 0.9);
}

.masterplan-section {
  padding-top: 84px;
}

.masterplan-shell {
  display: grid;
  gap: 28px;
}

.masterplan-frame {
  padding: 16px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.masterplan-frame img {
  width: 100%;
  border-radius: 24px;
}

.product-section {
  background:
    radial-gradient(circle at 10% 50%, rgba(197, 156, 102, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(238, 245, 244, 0.35), rgba(248, 244, 238, 0.94));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(18, 40, 56, 0.08);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.product-copy {
  padding: 24px 24px 26px;
  display: grid;
  gap: 14px;
}

.product-copy ul {
  color: var(--muted);
}

.amenity-grid {
  gap: 40px;
}

.amenity-visual {
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(14, 48, 63, 0.98), rgba(12, 32, 45, 0.98));
  box-shadow: var(--shadow);
}

.amenity-visual img {
  width: 100%;
  border-radius: 24px;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.amenity-list article {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.amenity-list h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.gallery-section {
  background:
    radial-gradient(circle at top left, rgba(110, 163, 178, 0.15), transparent 24%),
    linear-gradient(180deg, rgba(248, 244, 238, 0.5), rgba(236, 244, 243, 0.9));
}

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

.gallery-card {
  margin: 0;
  display: grid;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  min-height: 100%;
}

.gallery-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.gallery-wide img {
  aspect-ratio: 16 / 9;
}

.gallery-wide {
  grid-column: span 2;
}

.seo-box {
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 90% 10%, rgba(197, 156, 102, 0.2), transparent 20%),
    linear-gradient(180deg, #102634, #153a4d);
  box-shadow: var(--shadow);
}

.seo-box h2,
.seo-box p {
  color: var(--white);
}

.advantage-list {
  margin-top: 18px;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
}

.advantage-list li + li {
  margin-top: 10px;
}

.timeline-section .stat-card {
  min-height: 100%;
}

.timeline-section .stat-value {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.faq-section {
  padding-top: 84px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

.contact-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 10%, rgba(110, 163, 178, 0.26), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(245, 239, 229, 0.96));
  box-shadow: var(--shadow);
}

.contact-copy {
  max-width: 700px;
  display: grid;
  gap: 16px;
}

.contact-points {
  display: grid;
  gap: 14px;
}

.contact-point {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 40, 56, 0.08);
}

.contact-point strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.lead-form-panel {
  position: relative;
  width: min(100%, 480px);
  min-width: min(100%, 480px);
  align-self: stretch;
  padding: 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(197, 156, 102, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(16, 38, 52, 0.98), rgba(13, 33, 48, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(11, 27, 38, 0.24);
  overflow: hidden;
}

#lead-google-form {
  scroll-margin-top: 104px;
}

.lead-form-panel::before,
.lead-form-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.lead-form-panel::before {
  width: 180px;
  height: 180px;
  top: -72px;
  right: -48px;
  background: rgba(197, 156, 102, 0.18);
}

.lead-form-panel::after {
  width: 140px;
  height: 140px;
  bottom: -58px;
  left: -38px;
  background: rgba(110, 163, 178, 0.16);
}

.lead-form-head,
.lead-form {
  position: relative;
  z-index: 1;
}

.lead-form-head {
  display: grid;
  gap: 14px;
}

.lead-form-head h3,
.lead-form-head p {
  color: var(--white);
}

.lead-form-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lead-form-signal {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.lead-form-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-form-picks span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 600;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #6f7f87;
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(197, 156, 102, 0.78);
  box-shadow: 0 0 0 4px rgba(197, 156, 102, 0.15);
  transform: translateY(-1px);
}

.form-textarea {
  min-height: 132px;
  resize: vertical;
}

.lead-form .contact-actions {
  margin-top: 4px;
}

.lead-form .button-primary {
  border: 0;
  cursor: pointer;
}

.lead-form .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.lead-form .button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.form-status {
  min-height: 24px;
  font-size: 0.94rem;
  font-weight: 600;
}

.form-status[data-state="loading"] {
  color: rgba(255, 255, 255, 0.78);
}

.form-status[data-state="success"] {
  color: #d7f7d7;
}

.form-status[data-state="error"] {
  color: #ffd1d1;
}

.form-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-actions .button-secondary {
  color: var(--ink);
  border-color: rgba(18, 40, 56, 0.12);
  background: rgba(255, 255, 255, 0.64);
}

.lead-form .contact-actions .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  padding: 0 0 42px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(18, 40, 56, 0.1);
}

.footer-brand {
  font-weight: 800;
  color: var(--ink);
}

.footer-text {
  max-width: 600px;
}

.footer-meta {
  display: grid;
  gap: 6px;
  text-align: right;
  font-size: 0.95rem;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ocean), #184f63);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(15, 59, 77, 0.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.ghost-frame {
  width: 0;
  height: 0;
  border: 0;
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .split-layout,
  .statement-grid,
  .location-grid,
  .amenity-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stage {
    margin-top: -12px;
  }

  .location-note {
    position: static;
    max-width: none;
    margin-top: 18px;
  }

  .contact-shell,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .lead-form-panel {
    width: 100%;
    min-width: 0;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(18, 40, 56, 0.08);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-stack,
  .amenity-list,
  .gallery-grid,
  .stats-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .info-list div,
  .access-card {
    grid-template-columns: 1fr;
  }

  .access-card strong {
    width: 70px;
    min-height: 70px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 28px 0;
  }

  .contact-section .container {
    width: 100vw;
    max-width: 100vw;
  }

  .hero-section {
    padding-top: 40px;
  }

  .hero-copy {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .overview-panel,
  .statement-card,
  .seo-box {
    padding: 26px;
  }

  .contact-shell {
    gap: 16px;
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding: 16px 10px 18px;
    border-radius: 26px;
  }

  .contact-copy {
    max-width: none;
    padding: 0 6px;
  }

  .lead-form-panel {
    width: 100%;
    min-width: 100%;
    padding: 24px 16px 20px;
    border-radius: 26px;
    box-shadow: 0 22px 54px rgba(11, 27, 38, 0.24);
  }

  .lead-form-head {
    gap: 12px;
  }

  .lead-form {
    margin-top: 20px;
    gap: 14px;
  }

  .lead-form-picks {
    gap: 8px;
  }

  .lead-form-picks span {
    padding: 9px 11px;
    font-size: 0.84rem;
  }

  .form-input,
  .form-textarea {
    padding: 14px;
  }

  .floating-cta {
    left: 20px;
    right: 20px;
  }

  .lead-form .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .contact-section .container {
    width: 100vw;
  }

  .contact-shell {
    padding: 14px 6px 18px;
    border-radius: 24px;
  }

  .contact-copy {
    padding: 0 6px;
  }

  .lead-form-panel {
    width: 100%;
    min-width: 100%;
    padding: 22px 14px 18px;
    border-radius: 24px;
  }
}
