*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #20419B;
  --navy-2: #1A3480;
  --navy-light: #4D6FC2;
  --orange: #EC8540;
  --orange-light: #F3A06C;
  --red: #D96B2B;
  --charcoal: #16296B;
  --stone: #5F6B8C;
  --cream: #F8F9FC;
  --white: #FFFFFF;
  --border: rgba(32,65,155,0.14);
  --error: #D93025;
  --success: #1E8C45;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--navy); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; }

/* ── UTILITIES (replace former inline styles) ── */
.text-center { text-align: center; margin-top: 36px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-8 { margin-top: 8px; }
.mt-10 { margin-top: 10px; }
.btn-outline-navy { color: var(--navy); border-color: rgba(32,65,155,.3); }
.section-badge--price { background: rgba(236,133,64,.18); color: var(--orange-light); }
.form-field-consent { display: flex; align-items: flex-start; gap: 8px; margin-top: 2px; }
.consent-label { text-transform: none; font-size: 11px; font-weight: 400; color: var(--stone); letter-spacing: 0; flex: 1 1 auto; min-width: 0; }
/* Higher specificity than ".form-field input" so the checkbox keeps its own size
   instead of being stretched to width:100% by the generic input rule below. */
.form-field-consent .consent-check {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  flex: 0 0 18px;
  padding: 0 !important;
}
.location-map-img { width: 100%; height: 480px; object-fit: cover; display: block; }
.visually-hidden-field { display: none; }

/* ── ABOVE-HERO NOTE ── */
.above-hero-note {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1001;
  text-align: center; background: var(--charcoal); color: #fff;
  font-size: 12.5px; padding: 6px 10px; letter-spacing: .3px;
}

/* ── HEADER ── */
header {
  position: fixed; top: 27px; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(32,65,155,.10);
  box-shadow: 0 1px 0 rgba(32,65,155,.04);
}
.header-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 12px 32px; }
.logo a { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 38px; width: auto; }
nav ul { list-style: none; display: flex; gap: 28px; }
nav a { color: var(--navy); opacity: .72; font-size: 13px; font-weight: 500; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; transition: opacity .25s, color .25s; }
nav a:hover { opacity: 1; color: var(--orange); }
.nav-cta { background: var(--navy); opacity: 1 !important; color: #fff !important; padding: 9px 22px; border-radius: 3px; font-weight: 600 !important; transition: background .25s; border: none; font-family: 'DM Sans', sans-serif; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.nav-cta:hover { background: var(--orange); color: #fff !important; }
.mobile-toggle { display: none; background: none; border: none; color: var(--navy); font-size: 22px; cursor: pointer; }

/* ── BANNER ── */
.banner {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(32,65,155,.90) 0%, rgba(16,28,51,.78) 55%, rgba(236,133,64,.18) 100%),
              url('img/b1.webp') center/cover no-repeat;
  display: flex; align-items: center; padding-top: 108px;
}
.banner-wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center; }
.banner-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(236,133,64,.16); border: 1px solid rgba(236,133,64,.35);
  color: var(--orange-light); font-size: 12px; font-weight: 600; letter-spacing: .12em;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 22px; text-transform: uppercase;
}
.banner-tag::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.banner h1 { font-size: clamp(32px, 4.6vw, 56px); font-weight: 800; color: #fff; line-height: 1.12; margin-bottom: 16px; }
.banner h1 em { color: var(--orange-light); font-style: normal; }
.banner-meta { color: rgba(255,255,255,.68); font-size: 16.5px; line-height: 1.65; margin-bottom: 28px; max-width: 560px; }
.banner-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); color: #fff; font-size: 13px; padding: 7px 16px; border-radius: 100px; }
.chip strong { color: var(--orange-light); }
.banner-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--navy); color: #fff; font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 14px; padding: 14px 30px; border-radius: 4px;
  border: none; cursor: pointer; letter-spacing: .02em; transition: all .25s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--orange); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.4); color: #fff; background: transparent;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 14px;
  padding: 14px 30px; border-radius: 4px; cursor: pointer; transition: all .25s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--orange-light); color: var(--orange-light); }

/* ── BANNER FORM ── */
.banner-form-card { background: rgba(245,246,248,.97); backdrop-filter: blur(20px); border-radius: 10px; padding: 34px 28px; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.form-card-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-card-sub { font-size: 13px; color: var(--stone); margin-bottom: 22px; }

/* ── MOBILE INLINE FORM ── */
.mobile-form-section { display: none; background: var(--cream); padding: 40px 20px; border-top: 1px solid #E4E7EC; border-bottom: 1px solid #E4E7EC; }
.mobile-form-section .form-card-title { color: var(--navy); font-size: 24px; margin-bottom: 6px; }
.mobile-form-section .form-card-sub { color: var(--stone); margin-bottom: 22px; }
.mobile-form-section .form-field label { color: var(--stone); }
.mobile-form-section .form-field input { background: var(--white); border-color: #DCE0E6; color: var(--navy); }
.mobile-form-section .form-field input::placeholder { color: #A8B0BC; }
.mobile-form-section .form-field input:focus { border-color: var(--orange); }
.mobile-form-section .form-disclaimer { color: var(--stone); }

/* ── SHARED FORM FIELDS ── */
.form-field { margin-bottom: 14px; position: relative; }
.form-field label { display: block; font-size: 12px; font-weight: 600; color: var(--stone); letter-spacing: .05em; margin-bottom: 5px; text-transform: uppercase; }

/* Consent checkbox — rounded, orange-accented, checked by default */
.consent-check {
  width: 18px; height: 18px; min-width: 18px; margin-top: 2px !important;
  appearance: none; -webkit-appearance: none;
  border: 1.5px solid var(--orange); border-radius: 5px;
  background: #fff; cursor: pointer; position: relative; flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.consent-check:checked {
  background: var(--orange); border-color: var(--orange);
}
.consent-check:checked::after {
  content: ''; position: absolute; left: 5px; top: 1px;
  width: 5px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent-check:focus-visible { outline: 2px solid var(--navy-light); outline-offset: 2px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #DCE0E6; border-radius: 5px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--navy); background: #fff;
  transition: border-color .2s; outline: none; -webkit-appearance: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--orange); }
.form-field input.input-error { border-color: var(--error) !important; }
.form-field input.input-valid { border-color: var(--success) !important; }
.field-error { display: none; font-size: 11px; color: var(--error); margin-top: 4px; font-weight: 500; }
.field-error.show { display: block; }

.phone-input-wrap { position: relative; }
.phone-prefix { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 14px; color: var(--stone); font-weight: 600; pointer-events: none; line-height: 1; }
.phone-input-wrap input { padding-left: 42px; }
.phone-counter { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 11px; color: var(--stone); pointer-events: none; }
.phone-counter.valid { color: var(--success); font-weight: 700; }
.phone-counter.invalid { color: var(--error); }

.form-submit {
  width: 100%; background: var(--navy); color: #fff; border: none;
  padding: 15px; border-radius: 5px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all .25s; margin-top: 8px; -webkit-appearance: none; touch-action: manipulation;
}
.form-submit:hover { background: var(--orange); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-disclaimer { font-size: 11px; color: var(--stone); margin-top: 10px; text-align: center; line-height: 1.5; }
.form-msg { display: none; padding: 12px 14px; border-radius: 5px; font-size: 13px; font-weight: 500; margin-top: 10px; text-align: center; }
.form-msg.success { display: block; background: #e6f4ec; color: var(--success); border: 1px solid #b7dfc7; }
.form-msg.error { display: block; background: #fdecea; color: var(--error); border: 1px solid #f5c6c2; }

/* ── SECTION COMMON ── */
section { padding: 90px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-badge {
  display: inline-block; background: rgba(236,133,64,.10); border: 1px solid rgba(236,133,64,.3);
  color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .14em;
  padding: 5px 14px; border-radius: 100px; text-transform: uppercase; margin-bottom: 14px;
}
.section-title { font-size: clamp(26px, 3.6vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.16; margin-bottom: 12px; }
.section-sub { font-size: 15.5px; color: var(--stone); line-height: 1.7; max-width: 640px; }
.divider { width: 56px; height: 3px; background: linear-gradient(120deg, var(--orange), var(--navy)); border-radius: 2px; margin: 18px 0 40px; }

/* ── OVERVIEW ── */
.overview { background: var(--white); }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.overview-image { border-radius: 8px; overflow: hidden; position: relative; }
.overview-image img { width: 100%; height: 480px; object-fit: cover; display: block; }
.overview-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.stat-box { background: var(--cream); border-radius: 8px; padding: 20px; border-left: 3px solid var(--orange); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 800; color: var(--navy); }
.stat-label { font-size: 12px; color: var(--stone); font-weight: 500; margin-top: 2px; }
.overview-text p { font-size: 15px; color: var(--stone); line-height: 1.8; margin-bottom: 16px; }

/* ── SUMMARY TABLE ── */
.summary-table-section { background: var(--cream); }
.seo-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 30px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.seo-table-wrap--price { margin-top: 40px; max-width: 820px; }
.seo-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 14px; }
.seo-table thead { background: var(--navy); }
.seo-table thead th { color: #fff; font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding: 14px 20px; text-align: left; }
.seo-table tbody tr { border-bottom: 1px solid #EDEFF2; }
.seo-table tbody tr:last-child { border: none; }
.seo-table tbody tr:hover { background: rgba(236,133,64,.05); }
.seo-table td { padding: 13px 20px; color: var(--stone); vertical-align: top; }
.seo-table td:first-child { font-weight: 600; color: var(--navy); width: 38%; }
.seo-table td .tag-gold { color: var(--orange); font-weight: 700; }

/* ── HIGHLIGHTS ── */
.highlights { background: var(--white); }
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.highlight-card { background: var(--cream); border-radius: 8px; padding: 28px; border: 1px solid #EBEDF1; position: relative; overflow: hidden; }
.highlight-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(120deg, var(--orange), var(--navy)); }
.highlight-icon { font-size: 28px; margin-bottom: 14px; }
.highlight-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.highlight-card p { font-size: 14px; color: var(--stone); line-height: 1.7; }

/* ── WHY CHOOSE ── */
.why-choose { background: var(--cream); }
.wc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.wc-card { background: var(--white); border: 1px solid #EBEDF1; border-radius: 8px; padding: 26px 20px; text-align: center; }
.wc-card i { font-size: 28px; color: var(--orange); display: block; margin-bottom: 12px; }
.wc-card span { font-size: 14px; font-weight: 600; color: var(--navy); }

/* ── PRICE ── */
.price { background: var(--cream); }
.price .section-title { color: var(--navy); }
.price .section-sub { color: var(--stone); }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 46px; max-width: 700px; }
.price-card { background: var(--white); border: 1px solid #E4E7EC; border-radius: 10px; padding: 32px 28px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 4px 20px rgba(32,65,155,.05); }
.price-card.featured { border-color: var(--orange); background: rgba(236,133,64,.05); }
.price-type { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.price-size { font-size: 13px; color: var(--stone); margin-bottom: 20px; }
.price-amount { font-size: 30px; font-weight: 800; color: var(--orange); margin-bottom: 6px; }
.price-asterisk { font-size: 12px; color: var(--stone); margin-bottom: 24px; }
.price-btn { display: block; background: var(--navy); color: #fff; border: none; padding: 11px 24px; border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer; text-align: center; text-decoration: none; transition: background .25s; width: 100%; font-family: 'DM Sans', sans-serif; }
.price-btn:hover { background: var(--orange); }
.price-note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--stone); }
.price-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(32,65,155,.05); }
.price-table thead { background: var(--navy); }
.price-table thead th { color: #fff; font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding: 14px 20px; text-align: left; }
.price-table tbody tr { border-bottom: 1px solid #EDEFF2; }
.price-table tbody tr:last-child { border: none; }
.price-table td { padding: 14px 20px; color: var(--stone); }
.price-table td:first-child { font-weight: 600; color: var(--navy); }
.price-table td .highlight { color: var(--orange); font-weight: 700; }

/* ── AMENITIES ── */
.amenities { background: var(--white); }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 18px; }
.amenity-item { background: var(--cream); border-radius: 8px; padding: 24px 18px; text-align: center; border: 1px solid #EBEDF1; }
.amenity-icon { font-size: 30px; margin-bottom: 10px; }
.amenity-item p { font-size: 13px; font-weight: 600; color: var(--navy); }

/* ── DESIGN & ARCHITECTURE ── */
.design-arch { background: var(--cream); }
.design-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.design-text p { font-size: 15px; color: var(--stone); line-height: 1.8; margin-bottom: 16px; }
.design-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.design-list li { font-size: 14px; color: var(--navy); font-weight: 500; padding-left: 26px; position: relative; }
.design-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.design-image { border-radius: 8px; overflow: hidden; }
.design-image img { width: 100%; height: 420px; object-fit: cover; display: block; }

/* ── FLOOR PLAN ── */
.floorplan { background: var(--white); }
.fp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.fp-card { background: var(--cream); border-radius: 8px; overflow: hidden; border: 1px solid #EBEDF1; }
.fp-img-wrap { position: relative; overflow: hidden; }
.fp-img-wrap img { width: 100%; height: 220px; object-fit: cover; filter: blur(4px); }
.fp-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(32,65,155,.5); }
.fp-overlay-btn { background: var(--navy); color: #fff; border: none; padding: 10px 22px; border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .25s; font-family: 'DM Sans', sans-serif; }
.fp-overlay-btn:hover { background: var(--orange); }
.fp-info { padding: 18px 20px; }
.fp-info h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.fp-info p { font-size: 13px; color: var(--stone); }

/* ── LOCATION ── */
.location { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.location-intro { font-size: 15px; color: var(--stone); line-height: 1.8; margin-bottom: 28px; }
.location-cats { display: flex; flex-direction: column; gap: 16px; }
.loc-cat { border: 1px solid #E4E7EC; border-radius: 8px; overflow: hidden; background: var(--white); }
.loc-cat-head { padding: 14px 20px; background: var(--white); display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--navy); border: none; width: 100%; text-align: left; font-family: 'DM Sans', sans-serif; }
.loc-cat-head .loc-icon { font-size: 18px; margin-right: 10px; }
.loc-cat-arrow { color: var(--orange); font-size: 18px; transition: transform .3s; }
.loc-cat-body { padding: 16px 20px; display: none; }
.loc-cat-body.open { display: block; }
.loc-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px dashed #EDEFF2; font-size: 13px; }
.loc-row:last-child { border: none; }
.loc-row span:first-child { color: var(--stone); }
.loc-row span:last-child { font-weight: 600; color: var(--navy); background: rgba(236,133,64,.1); padding: 2px 10px; border-radius: 100px; font-size: 12px; }
.map-wrap { border-radius: 10px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.1); }

/* ── CONNECTIVITY TABLE ── */
.connectivity-table-section { background: var(--white); padding: 80px 0; }

/* ── BUILDER ── */
.builder { background: var(--cream); }
.builder-grid { display: grid; grid-template-columns: 340px 1fr; gap: 70px; align-items: center; }
.builder-img-box { background: var(--white); border-radius: 10px; padding: 36px; box-shadow: 0 8px 32px rgba(0,0,0,.06); text-align: center; }
.builder-img-box img { width: 100%; max-width: 220px; border-radius: 8px; }
.builder-name { font-size: 24px; font-weight: 700; color: var(--navy); margin-top: 18px; }
.builder-tag { font-size: 12px; color: var(--stone); }
.builder-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 28px 0; }
.b-stat { text-align: center; background: var(--white); border-radius: 8px; padding: 20px 12px; }
.b-stat-num { font-size: 26px; font-weight: 800; color: var(--orange); }
.b-stat-label { font-size: 11px; color: var(--stone); margin-top: 3px; font-weight: 500; }
.builder-text p { font-size: 15px; color: var(--stone); line-height: 1.8; margin-bottom: 14px; }

/* ── SPECS ── */
.specs { background: var(--white); }
.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 4px 40px; list-style: none; margin-top: 10px; }
.specs-grid li { font-size: 14.5px; color: var(--stone); line-height: 2.1; border-bottom: 1px dashed #EDEFF2; padding: 6px 0; }
.specs-grid li strong { color: var(--navy); }

/* ── FAQ ── */
.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 340px 1fr; gap: 70px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid #E4E7EC; border-radius: 8px; overflow: hidden; background: var(--white); }
.faq-q { padding: 18px 20px; font-weight: 600; font-size: 14px; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background .2s; gap: 12px; border: none; width: 100%; text-align: left; background: var(--white); font-family: 'DM Sans', sans-serif; }
.faq-q:hover { background: var(--cream); }
.faq-q .faq-arrow { color: var(--orange); font-size: 20px; transition: transform .3s; flex-shrink: 0; }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; font-size: 14px; color: var(--stone); line-height: 1.75; }
.faq-a.open { max-height: 400px; padding: 14px 20px 20px; }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-item.active .faq-q { background: rgba(236,133,64,.06); }
.faq-sidebar-text .section-title { font-size: 30px; }
.faq-sidebar-text p { font-size: 15px; color: var(--stone); line-height: 1.8; margin-top: 16px; }
.faq-contact { margin-top: 28px; background: var(--navy); border-radius: 8px; padding: 24px; color: #fff; text-align: center; }
.faq-contact p { font-size: 13px; opacity: .9; margin-bottom: 12px; }
.faq-contact-btn { display: inline-block; background: #fff; color: var(--navy); padding: 10px 24px; border-radius: 4px; font-weight: 700; font-size: 14px; text-decoration: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.faq-contact-btn:hover { background: var(--orange); color: #fff; }

/* ── CONTACT SECTION ── */
.contact-cta { background: var(--white); padding: 80px 0; text-align: center; border-top: 1px solid #E4E7EC; }
.contact-cta h2 { font-size: clamp(26px,3.6vw,44px); color: var(--navy); margin-bottom: 14px; }
.contact-cta p { font-size: 16px; color: var(--stone); margin-bottom: 34px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--cream); color: var(--stone); text-align: center; padding: 28px 32px; font-size: 13px; line-height: 1.7; border-top: 1px solid #E4E7EC; }
footer a { color: var(--orange); }
.moreless-button { color: var(--navy); cursor: pointer; font-size: 13px; margin-top: 10px; display: inline-block; text-decoration: underline; background: none; border: none; font-family: 'DM Sans', sans-serif; padding: 0; }
.moretext { display: none; margin-top: 10px; }

/* ── STICKY BAR ── */
.sticky-bar { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999; background: var(--white); border-top: 1px solid #E4E7EC; box-shadow: 0 -4px 20px rgba(32,65,155,.08); display: none; }
.sticky-bar-inner { display: flex; }
.sb-btn { flex: 1; text-align: center; padding: 14px 8px; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); text-decoration: none; border-right: 1px solid #EDEFF2; transition: background .2s; background: none; border-top: none; border-bottom: none; border-left: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.sb-btn:last-child { border-right: none; }
.sb-btn:hover { background: rgba(236,133,64,.08); color: var(--orange); }
.sb-btn span { display: block; font-size: 16px; margin-bottom: 2px; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(10,15,25,.72); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .3s; padding: 20px; }
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-box { background: var(--white); border-radius: 10px; width: 100%; max-width: 480px; padding: 40px 36px; position: relative; transform: translateY(20px); transition: transform .3s; max-height: 90vh; overflow-y: auto; }
.modal-overlay.show .modal-box { transform: translateY(0); }
.modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--stone); line-height: 1; padding: 4px 8px; }
.modal-title { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.modal-sub { font-size: 13px; color: var(--stone); margin-bottom: 24px; }

/* ── ACCESSIBILITY: visible keyboard focus ── */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--navy-light);
  outline-offset: 2px;
}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .banner-wrap { grid-template-columns: 1fr; }
  .banner-form-card { display: none; }
  .overview-grid, .builder-grid, .location-grid, .faq-grid, .design-grid { grid-template-columns: 1fr; gap: 40px; }
  .builder-stats { grid-template-columns: repeat(2,1fr); }
  .mobile-form-section { display: block; }
  .design-image { order: -1; }
}
@media(max-width:768px){
  nav { display: none; }
  .mobile-toggle { display: block; }
  .sticky-bar { display: block; }
  body { padding-bottom: 60px; }
  section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .header-inner { padding: 12px 16px; }
  .banner-wrap { padding: 20px 16px; }
  .banner { padding-top: 96px; min-height: auto; padding-bottom: 40px; }
  .banner h1 { font-size: 28px; }
  .banner-meta { font-size: 15px; }
  .highlights-grid, .price-grid, .fp-grid, .faq-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .builder-stats { grid-template-columns: repeat(2,1fr); }
  .overview-stats { grid-template-columns: 1fr 1fr; }
  .builder-grid { grid-template-columns: 1fr; }
  .builder-img-box { max-width: 280px; margin: 0 auto; }
  .modal-box { padding: 28px 20px; }
  .modal-title { font-size: 21px; }
  .seo-table td, .seo-table th, .price-table td, .price-table th { padding: 10px 14px; font-size: 13px; }
  .location-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .connectivity-table-section { padding: 46px 0; }
  header { top: 30px; }
}
@media(max-width:480px){
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-stats { grid-template-columns: 1fr 1fr; }
  .banner-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .seo-table, .price-table { font-size: 12px; }
  .seo-table td, .price-table td, .seo-table th, .price-table th { padding: 9px 12px; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}