/* ============================================================
   GOLDENROD TERRACE — Styles
   ============================================================ */

:root {
  --navy:       #2B4162;
  --navy-mid:   #3D5A80;
  --navy-dark:  #1A2B40;
  --gray-blue:  #6B7D95;
  --gray-light: #B8C4D0;
  --gold:       #C4A46B;
  --gold-light: #D4B88A;
  --gold-dark:  #A88A50;
  --cream:      #F7F3ED;
  --off-white:  #FAFAF8;
  --white:      #FFFFFF;
  --text:       #1A2434;
  --text-mid:   #4A5568;
  --text-light: #8A9BB0;
  --border:     #E4DDD5;
  --success:    #4CAF8A;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --nav-h:      72px;
  --max-w:      1200px;
  --pad-x:      clamp(24px, 5vw, 72px);
  --section-py: clamp(80px, 10vw, 140px);
  --radius:     6px;
  --radius-sm:  4px;
  --ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Gold rule ---- */
.gold-rule {
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.gold-rule.short { width: 36px; margin-bottom: 20px; }

/* ---- Gold divider (centered) ---- */
.gold-divider {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 48px;
}

/* ---- Eyebrow ---- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--gold-light); }

/* ---- Section header ---- */
.section-header { text-align: center; max-width: 660px; margin: 0 auto 72px; }
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Section inner ---- */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) var(--pad-x);
}

/* ---- Scroll animations ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn.large { padding: 19px 48px; font-size: 0.8rem; }
.btn.full { width: 100%; text-align: center; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 24px rgba(196,164,107,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ==============================================================
   NAV
   ============================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav-inner {
  display: flex;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: var(--nav-h);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  transition: color 0.3s;
  flex-shrink: 0;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
#navbar.scrolled { background: var(--white); box-shadow: 0 2px 24px rgba(27,43,64,0.08); }
#navbar.scrolled .nav-logo { color: var(--navy); }
#navbar.scrolled .nav-toggle span { background: var(--navy); }

.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 28px var(--pad-x) 36px;
  box-shadow: 0 12px 40px rgba(27,43,64,0.12);
  z-index: 99;
  border-top: 1px solid var(--border);
}
.nav-drawer.open { display: block; }
.nav-drawer ul { display: flex; flex-direction: column; gap: 0; }
.nav-drawer li { border-bottom: 1px solid var(--border); }
.nav-drawer li:first-child { border-top: 1px solid var(--border); }
.nav-drawer a {
  display: block;
  padding: 16px 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-drawer a:hover { color: var(--gold); padding-left: 6px; }
.nav-drawer .drawer-cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: none;
}
.nav-drawer .drawer-cta:hover { padding-left: 32px; color: var(--white); background: var(--gold-light); }

/* ==============================================================
   HERO
   ============================================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}

/* Hero background — Goldenrod Terrace Craftsman elevation */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/gallery-1.png');
  background-size: cover;
  background-position: center 55%;
  transform: scale(1.04);
  transition: transform 9s ease-out;
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(27,43,64,0.88) 0%,
    rgba(27,43,64,0.65) 55%,
    rgba(43,65,98,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.hero-eyebrow { color: var(--gold-light); }
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.avail-ribbon {
  position: absolute;
  top: calc(var(--nav-h) + 20px);
  right: var(--pad-x);
  z-index: 3;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
}

/* ==============================================================
   LOCATION
   ============================================================== */
.location { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.location-map {
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(43,65,98,0.12);
}


.location-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.loc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.loc-card:hover { box-shadow: 0 6px 28px rgba(43,65,98,0.1); transform: translateY(-2px); }
.loc-icon {
  width: 40px;
  height: 40px;
  background: rgba(196,164,107,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.loc-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.2;
}
.loc-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

/* ==============================================================
   HOMES / PRICING
   ============================================================== */
.homes { background: var(--off-white); }

.pricing-callout {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 52px 48px;
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.pricing-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,164,107,0.08) 0%, transparent 60%);
}
.pricing-callout-inner { position: relative; z-index: 1; }
.pricing-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.pricing-num {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}
.pricing-note {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.feat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.feat-card:hover {
  box-shadow: 0 10px 40px rgba(43,65,98,0.1);
  transform: translateY(-4px);
  border-color: var(--gold-light);
}
.feat-icon {
  width: 52px;
  height: 52px;
  background: rgba(196,164,107,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.feat-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.feat-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }

.specs-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}
.spec-item { text-align: center; padding: 0 40px; }
.spec-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.spec-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-blue);
}
.spec-div {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
}

/* ==============================================================
   SITE MAP
   ============================================================== */
.sitemap-section { background: var(--cream); }
.sitemap-wrap { display: flex; flex-direction: column; gap: 20px; }

.sitemap-legend {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.leg-item { display: flex; align-items: center; gap: 8px; }
.leg-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
}
.leg-dot.available { background: #4CAF8A; }
.leg-dot.reserved  { background: var(--gold); }
.leg-dot.model     { background: var(--navy); }
.leg-dot.future    { background: #B8C4D0; }

.sitemap-scroll {
  background: #E9EFE4;
  border-radius: var(--radius);
  border: 1px solid #D4DDD0;
  overflow-x: auto;
  padding: 16px;
}
#sitemapSvg {
  width: 100%;
  min-width: 600px;
  display: block;
}
.lot-tooltip {
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  max-width: 260px;
  line-height: 1.5;
}
.sitemap-note {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
}

/* ==============================================================
   MISSION
   ============================================================== */
.mission {
  background: var(--navy-dark);
  padding: var(--section-py) var(--pad-x);
}
.mission-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.mission-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 36px;
  line-height: 1.12;
}
.mission-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 64px;
  text-align: left;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.mission-body p { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.85; }

.mission-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 48px;
}
.mstat { text-align: center; padding: 0 36px; }
.mstat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.mstat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.mstat-div {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.12);
}

.mission-tagline {
  text-align: center;
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1.45;
  letter-spacing: 0.01em;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ==============================================================
   AVAILABILITY BANNER
   ============================================================== */
.avail-banner {
  background: var(--navy);
  padding: clamp(72px, 9vw, 120px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.avail-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,164,107,0.07) 0%, transparent 60%);
}
.avail-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.avail-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.avail-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 40px;
}

/* ==============================================================
   INTEREST LIST
   ============================================================== */
.interest { background: var(--off-white); }
.interest-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.interest-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}
.interest-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}
.interest-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.interest-perks li {
  font-size: 0.875rem;
  color: var(--navy);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.interest-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--gold);
}
.interest-reassure {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-dark);
  line-height: 1.4;
}

.interest-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(43,65,98,0.06);
}
.interest-form { display: flex; flex-direction: column; gap: 20px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,164,107,0.15);
  background: var(--white);
}
.form-group input.error { border-color: #e05a5a; }

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-check label {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.55;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.form-note {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
}
.form-error {
  font-size: 0.82rem;
  color: #B94A48;
  background: #FBEAEA;
  border: 1px solid #F1C4C4;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center;
  line-height: 1.5;
  margin-top: 12px;
}
.form-error[hidden] { display: none; }
#submitBtn[disabled] { opacity: 0.7; cursor: not-allowed; }
.form-success {
  text-align: center;
  padding: 48px 20px;
}
.form-success[hidden] { display: none; }
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.form-success p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 12px; }
.success-note { font-style: italic; color: var(--gold-dark) !important; font-size: 0.85rem !important; }

/* ==============================================================
   FAQ
   ============================================================== */
.faq { background: var(--cream); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--gold-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
  font-family: var(--font-body);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding-bottom: 22px;
  max-width: 680px;
}

/* ==============================================================
   FOOTER
   ============================================================== */
.footer {
  background: var(--navy-dark);
  padding: clamp(48px, 6vw, 80px) var(--pad-x) 36px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.footer-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.footer-address { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.footer-email {
  font-size: 0.82rem;
  color: var(--gold-light);
  transition: color 0.2s;
}
.footer-email:hover { color: var(--white); }

.footer-nav-label,
.footer-cta-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-cta-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.equal-housing {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.footer-legal {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.65;
  max-width: 800px;
}

/* ==============================================================
   LOT DETAIL MODAL
   ============================================================== */
.lot-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.22s var(--ease);
}
.lot-modal[hidden] { display: none; }
.lot-modal.open { opacity: 1; }
.lot-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 28, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lot-modal__card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 44px 36px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 30px 90px rgba(10, 16, 28, 0.35);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.32s var(--ease);
  text-align: center;
}
.lot-modal.open .lot-modal__card { transform: translateY(0) scale(1); }

.lot-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: var(--text-mid);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.lot-modal__close:hover {
  background: var(--cream);
  color: var(--text);
}

.lot-modal__eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--success);
  margin-bottom: 10px;
}
.lot-modal__eyebrow[data-status="reserved"] { color: var(--gold-dark); }
.lot-modal__eyebrow[data-status="model"]    { color: var(--navy); }
.lot-modal__eyebrow[data-status="future"]   { color: var(--gray-blue); }

.lot-modal__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}
.lot-modal__divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 26px;
}
.lot-modal__specs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
  text-align: left;
}
.lot-modal__spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.lot-modal__spec:last-child { border-bottom: none; padding-bottom: 0; }
.lot-modal__spec dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.lot-modal__spec dd {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}
.lot-modal__price {
  font-style: italic;
  color: var(--gold-dark) !important;
  font-weight: 500 !important;
}
.lot-modal__cta {
  width: 100%;
  text-align: center;
}

@media (max-width: 480px) {
  .lot-modal__card { padding: 32px 24px 28px; }
  .lot-modal__title { font-size: 1.75rem; }
}

/* ==============================================================
   GALLERY — editorial asymmetric grid + fullscreen lightbox
   ============================================================== */
.gallery {
  background: var(--white);
  position: relative;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px 260px;
  gap: 14px;
}
.g-tile {
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
  background: var(--cream);
  border-radius: var(--radius);
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 1px 2px rgba(26,43,64,0.04);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.g-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease), filter 0.5s var(--ease);
}
.g-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,43,64,0) 45%, rgba(26,43,64,0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 1;
  pointer-events: none;
}
.g-tile:hover {
  box-shadow: 0 14px 40px rgba(26,43,64,0.18);
}
.g-tile:hover img {
  transform: scale(1.045);
}
.g-tile:hover::before {
  opacity: 1;
}
.g-tile:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.g-caption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.g-tile:hover .g-caption,
.g-tile:focus-visible .g-caption {
  opacity: 1;
  transform: translateY(0);
}
.g-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.g-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}

/* Grid placement */
.g-tile--hero   { grid-column: 1 / span 7; grid-row: 1 / span 2; }
.g-tile--tallA  { grid-column: 8 / span 5; grid-row: 1 / span 1; }
.g-tile--tallB  { grid-column: 8 / span 5; grid-row: 2 / span 1; }
.g-tile--small:nth-of-type(4) { grid-column: 1 / span 4; grid-row: 3; }
.g-tile--small:nth-of-type(5) { grid-column: 5 / span 4; grid-row: 3; }
.g-tile--small:nth-of-type(6) { grid-column: 9 / span 4; grid-row: 3; }

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}
.gallery-view-all {
  cursor: pointer;
  background: transparent;
  font-family: var(--font-body);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 28, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 72px 124px;
}
.lightbox.open {
  display: flex;
  animation: lbFadeIn 0.35s var(--ease);
}
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lb-stage {
  flex: 1;
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.lb-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 100%;
  max-width: 100%;
  gap: 20px;
}
#lbImg {
  max-width: 100%;
  max-height: calc(100vh - 260px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: lbImgIn 0.45s var(--ease);
}
@keyframes lbImgIn {
  from { opacity: 0; transform: scale(0.985); }
  to   { opacity: 1; transform: scale(1); }
}
.lb-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  color: var(--white);
}
.lb-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.lb-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
}
.lb-count {
  font-size: 0.78rem;
  color: var(--gray-light);
  letter-spacing: 0.12em;
  margin-top: 2px;
}

/* Lightbox nav */
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
  font-family: var(--font-body);
  line-height: 1;
  padding: 0;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(196,164,107,0.2);
  border-color: var(--gold);
}
.lb-close { top: 24px; right: 24px; font-size: 2rem; }
.lb-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* Lightbox thumbnails */
.lb-thumbs {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  max-width: calc(100% - 160px);
  overflow-x: auto;
  padding: 8px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.25) transparent;
}
.lb-thumbs::-webkit-scrollbar { height: 6px; }
.lb-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.25); border-radius: 3px; }
.lb-thumb {
  flex: 0 0 auto;
  width: 88px;
  height: 58px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
  padding: 0;
  background: none;
}
.lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lb-thumb:hover { opacity: 0.9; transform: translateY(-2px); }
.lb-thumb.active {
  opacity: 1;
  border-color: var(--gold);
}

/* ==============================================================
   RESPONSIVE
   ============================================================== */
@media (max-width: 1024px) {
  .location-cards { grid-template-columns: repeat(2, 1fr); }
  .location-map { height: 420px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .interest-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-cta-block { grid-column: span 2; }
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 220px 220px 220px 220px;
  }
  .g-tile--hero   { grid-column: 1 / span 6; grid-row: 1 / span 2; }
  .g-tile--tallA  { grid-column: 1 / span 3; grid-row: 3; }
  .g-tile--tallB  { grid-column: 4 / span 3; grid-row: 3; }
  .g-tile--small:nth-of-type(4) { grid-column: 1 / span 2; grid-row: 4; }
  .g-tile--small:nth-of-type(5) { grid-column: 3 / span 2; grid-row: 4; }
  .g-tile--small:nth-of-type(6) { grid-column: 5 / span 2; grid-row: 4; }
  .lightbox { padding: 36px 24px 110px; }
  .lb-close { top: 16px; right: 16px; }
  .lb-prev  { left: 12px; }
  .lb-next  { right: 12px; }
}

@media (max-width: 768px) {
  .location-cards { grid-template-columns: 1fr; }
  .location-map { height: 340px; }
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .form-row.two { grid-template-columns: 1fr; }
  .interest-form-wrap { padding: 30px 22px; }
  .specs-strip { flex-wrap: wrap; gap: 24px; }
  .spec-div { display: none; }
  .mission-stats { gap: 28px; }
  .mstat-div { display: none; }
  .pricing-callout { padding: 36px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cta-block { grid-column: span 1; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { text-align: center; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 240px);
    gap: 10px;
  }
  .g-tile--hero,
  .g-tile--tallA,
  .g-tile--tallB,
  .g-tile--small:nth-of-type(n) {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .g-caption { opacity: 1; transform: translateY(0); }
  .lb-thumbs { max-width: calc(100% - 32px); }
  .lb-thumb { width: 64px; height: 42px; }
  #lbImg { max-height: calc(100vh - 230px); }
  .lb-close, .lb-prev, .lb-next { width: 40px; height: 40px; font-size: 1.3rem; }
  .lb-close { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .avail-headline { font-size: 2.2rem; }
  .gallery-grid { grid-template-rows: repeat(6, 200px); }
}
