/* ══════════════════════════════════════════════════════════════════════
   ARVIND SARJAPUR ROAD — LANDING PAGE STYLES
   Mobile-first. Design tokens below drive the whole page.
   ══════════════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Color: warm stone + wine-maroon, sampled from the Arvind wordmark (#A31E37) */
  --maroon:       #8C1F35;   /* primary brand accent */
  --maroon-deep:  #5E1524;   /* pressed / dark accent */
  --maroon-tint:  #F4E4E7;   /* pale maroon wash for light-section chips */
  --bronze:       #A9895D;   /* warm metallic secondary accent */
  --charcoal:     #1B1714;   /* near-black warm dark, page's dark sections */
  --charcoal-2:   #241E19;   /* slightly lighter dark panel */
  --stone:        #EFE9DE;   /* warm stone background, light sections */
  --stone-2:      #E4DCCC;   /* deeper stone for cards on stone bg */
  --cream:        #FBF8F2;   /* near-white warm */
  --ink:          #2A2420;   /* body text on light */
  --ink-soft:     rgba(42,36,32,.64);
  --white-soft:   rgba(251,248,242,.72);
  --white-faint:  rgba(251,248,242,.42);
  --err:          #C0392B;

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body:    'Work Sans', 'Helvetica Neue', Arial, sans-serif;

  --container: 1180px;
  --radius: 3px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--bronze);
  display: inline-block;
}
.eyebrow.light { color: var(--bronze); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 5.5vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title.light { color: var(--cream); }
.section-title em { font-style: italic; color: var(--maroon); }
.section-title .Arvind-golden { color: var(--maroon); font-style: italic; }

.section-sub {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.8;
  margin-top: 14px;
}

.divider {
  width: 46px; height: 2px;
  background: var(--maroon);
  margin: 18px 0;
}
.divider.center { margin-left: auto; margin-right: auto; }
.divider.light { background: var(--bronze); }

/* ─── SCROLL REVEAL ────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.v { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ─── BUTTONS ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .03em;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--maroon); color: var(--cream); }
.btn-primary:hover { background: var(--maroon-deep); }
.btn-secondary { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-secondary:hover { background: var(--maroon-tint); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(251,248,242,.35); }
.btn-ghost:hover { border-color: var(--bronze); color: var(--bronze); }
.btn-offwhite { background: var(--cream); color: var(--charcoal); }
.btn-offwhite:hover { background: var(--bronze); color: var(--cream); }
.btn:disabled { opacity: .6; cursor: not-allowed; }

/* ─── HEADER ───────────────────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(27,23,20,.0);
  backdrop-filter: none;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
#header.sc {
  background: rgba(27,23,20,.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(169,137,93,.15);
}
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.header-logo { display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-name { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--cream); }
.logo-sub { font-size: 8px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--bronze); margin-top: 2px; }
.logo-partner { display: none; }
.header-nav { display: none; }
.header-cta { display: none; }
.menu-toggle {
  width: 34px; height: 34px; background: none; border: none;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  align-items: flex-end;
}
.menu-toggle span { width: 22px; height: 1.5px; background: var(--cream); transition: all .25s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

#mobile-nav {
  position: fixed; top: 0; right: 0; width: min(78vw, 320px); height: 100vh; z-index: 490;
  background: var(--charcoal); padding: 100px 28px 32px;
  display: flex; flex-direction: column; gap: 22px;
  transform: translateX(100%); transition: transform .35s ease;
  box-shadow: -8px 0 30px rgba(0,0,0,.35);
}
#mobile-nav.open { transform: translateX(0); }
#mobile-nav a { font-size: 16px; color: var(--cream); font-family: var(--font-display); }
#mobile-nav button { margin-top: 10px; }

/* ─── HERO ─────────────────────────────────────────────────────────── */
#hero { min-height: 100svh; display: flex; align-items: stretch; background: var(--charcoal); }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('hero_image.webp');
  background-size: cover; background-position: center 65%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,13,.78) 0%, rgba(20,16,13,.55) 32%, rgba(20,16,13,.88) 100%),
    linear-gradient(90deg, rgba(20,16,13,.55) 0%, rgba(20,16,13,.2) 55%, rgba(20,16,13,.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 118px 20px 48px;
  display: flex; flex-direction: column; gap: 40px;
}
.hero-left { max-width: 640px; }
.hero-title {
  font-family: var(--font-display); font-weight: 300; font-style: normal;
  font-size: clamp(34px, 9vw, 58px); line-height: 1.05; letter-spacing: 0.01em;
  color: var(--cream);
}
.hero-title .Arvind-golden { font-style: italic; color: var(--bronze); font-weight: 500; }
.hero-tagline {
  font-size: 15px; color: var(--white-soft); margin-top: 16px; max-width: 440px; line-height: 1.7;
  font-weight: 300;
}
.hero-divider { width: 52px; height: 2px; background: var(--bronze); margin: 22px 0; }
.hero-stats { display: flex; gap: 34px; margin-bottom: 22px; }
.hero-stat-value { font-family: var(--font-display); font-size: 22px; color: var(--cream); }
.hero-stat-label { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--white-faint); margin-top: 4px; }
.hero-price-row { display: flex; flex-wrap: wrap; gap: 28px; padding: 18px 0; border-top: 1px solid rgba(251,248,242,.14); }
.hero-price-type { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--bronze); margin-bottom: 5px; }
.hero-price-value { font-family: var(--font-display); font-size: 18px; color: var(--cream); }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-rera { font-size: 11px; color: var(--white-faint); margin-top: 18px; max-width: 480px; line-height: 1.7; }

.hero-form-card {
  position: relative; z-index: 2;
  background: var(--cream); border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  overflow: hidden;
}
.hero-form-header { background: var(--maroon); padding: 20px 24px; }
.hero-form-offer { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(251,248,242,.8); }
.hero-form-title { font-family: var(--font-display); font-size: 19px; color: var(--cream); margin-top: 6px; }
.hero-form-body { padding: 22px 24px 26px; }

.lead-form { display: flex; flex-direction: column; gap: 14px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--ink); }
.form-label .opt { font-weight: 400; color: var(--ink-soft); text-transform: none; letter-spacing: 0; }
.form-input {
  width: 100%; padding: 12px 14px; font-size: 14px; font-family: var(--font-body);
  border: 1px solid #DCD3C2; border-radius: var(--radius); background: var(--white-soft-input, #fff);
  color: var(--ink); transition: border-color .2s ease;
}
.form-input:focus { outline: none; border-color: var(--maroon); }
.form-input.err { border-color: var(--err); }
.form-submit {
  margin-top: 4px; width: 100%; background: var(--maroon); color: var(--cream);
  border: none; border-radius: var(--radius); padding: 14px; font-weight: 600; font-size: 14px;
  letter-spacing: .02em; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s ease;
}
.form-submit:hover { background: var(--maroon-deep); }
.form-submit:disabled { opacity: .65; cursor: not-allowed; }
.form-disclaimer { font-size: 10px; color: var(--ink-soft); line-height: 1.6; margin-top: 10px; }
.form-disclaimer a { text-decoration: underline; color: var(--maroon); }
.form-status { font-size: 12px; margin-top: 6px; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: #3E7D4C; }
.form-status.bad { color: var(--err); }

/* ─── QUALIFICATION STEP (hero / final-cta two-phase forms) ──────── */
.qual-prompt { font-size: 12.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.qual-group { margin-bottom: 16px; }
.qual-label { font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--ink); margin-bottom: 8px; }
.qual-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.qual-pill {
  font-family: var(--font-body); font-size: 12.5px; font-weight: 500;
  padding: 9px 14px; border: 1px solid #DCD3C2; border-radius: 20px;
  background: #fff; color: var(--ink); transition: all .15s ease;
}
.qual-pill:hover { border-color: var(--maroon); }
.qual-pill.sel { background: var(--maroon); border-color: var(--maroon); color: var(--cream); }
.qual-submit { margin-top: 6px; }

.spinner {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(251,248,242,.4); border-top-color: var(--cream);
  animation: spin .7s linear infinite; display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── OFFER BANNER ─────────────────────────────────────────────────── */
#offer-banner { background: var(--maroon-deep); border-top: 1px solid rgba(169,137,93,.3); }
.offer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 0;
}
.offer-eyebrow { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--bronze); }
.offer-headline { font-family: var(--font-display); font-size: 15px; color: var(--cream); margin-top: 3px; }
.countdown { display: flex; gap: 10px; }
.cd-unit { text-align: center; min-width: 42px; }
.cd-val { font-family: var(--font-display); font-size: 20px; color: var(--cream); }
.cd-lbl { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: var(--white-faint); }

/* ─── ABOUT ────────────────────────────────────────────────────────── */
#about { background: var(--stone); padding: 64px 0; }
.about-grid { display: flex; flex-direction: column; gap: 34px; }
.about-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-img-wrap img { width: 100%; height: 280px; object-fit: cover; }
.about-img-cta {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--cream); color: var(--charcoal); border: none;
  padding: 11px 18px; font-size: 12px; font-weight: 600; border-radius: var(--radius);
}
.about-stat-row { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 8px; }
.about-stat-val { font-family: var(--font-display); font-size: 24px; color: var(--maroon); }
.about-stat-lbl { font-size: 11px; color: var(--ink-soft); margin-top: 4px; max-width: 110px; }

/* ─── PRICING / CONFIG CARDS ──────────────────────────────────────── */
#pricing { background: var(--cream); padding: 64px 0; }
.pricing-header { text-align: center; }
.pricing-header .section-sub { margin: 14px auto 0; }
.config-cards { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 40px; }
.config-card {
  border: 1px solid #E5DCC9; border-radius: var(--radius); overflow: hidden; background: #fff;
  position: relative; transition: box-shadow .2s ease, transform .2s ease;
}
.config-card.featured { border-color: var(--maroon); box-shadow: 0 12px 30px rgba(140,31,53,.1); }
.config-card-badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  background: var(--maroon); color: var(--cream); font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 5px 10px; border-radius: 2px;
}
.config-card-head { padding: 22px 22px 14px; }
.config-type { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--bronze); font-weight: 600; }
.config-name { font-family: var(--font-display); font-size: 26px; color: var(--ink); margin-top: 4px; }
.config-size { font-size: 12px; color: var(--ink-soft); margin-top: 3px; }

.config-fp-wrap { position: relative; cursor: pointer; background: var(--stone); }
.config-fp-wrap img { width: 100%; height: 200px; object-fit: cover; filter: blur(9px) saturate(0.9); transform: scale(1.06); }
.config-fp-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(27,23,20,.42);
}
.fp-lock {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--cream); font-size: 12px; font-weight: 600; letter-spacing: .02em; text-align: center;
}
.fp-lock svg { color: var(--bronze); }
.config-fp-wrap.unlocked img { filter: none; transform: none; transition: filter .4s ease, transform .4s ease; }
.config-fp-wrap.unlocked .config-fp-overlay { display: none; }

.config-card-body { padding: 18px 22px 24px; }
.config-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.config-feature {
  font-size: 11px; color: var(--ink-soft); background: var(--stone);
  padding: 6px 11px; border-radius: 20px;
}
.config-price { font-family: var(--font-display); font-size: 22px; color: var(--maroon); margin-bottom: 16px; }
.config-cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.config-cta-row .btn { flex: 1; min-width: 132px; }
.pricing-note { font-size: 11px; color: var(--ink-soft); text-align: center; margin-top: 28px; }

/* ─── HIGHLIGHTS ───────────────────────────────────────────────────── */
#highlights { background: var(--charcoal); padding: 64px 0; }
.highlights-header { text-align: center; }
.highlights-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
.hl-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--charcoal-2); border: 1px solid rgba(169,137,93,.16);
  border-radius: var(--radius); padding: 16px 18px; font-size: 13.5px; color: var(--white-soft); line-height: 1.55;
}
.hl-check { color: var(--bronze); font-size: 13px; margin-top: 1px; flex-shrink: 0; }

/* ─── GALLERY ──────────────────────────────────────────────────────── */
#gallery { background: var(--stone); padding: 64px 0; }
.gallery-header { text-align: center; }
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; margin-top: 32px; background: var(--charcoal); }
.gallery-main img { width: 100%; height: 240px; object-fit: cover; }
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: rgba(27,23,20,.55); color: var(--cream); display: flex; align-items: center; justify-content: center;
}
.gallery-nav svg { width: 18px; height: 18px; }
.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb { flex: 0 0 84px; height: 60px; border-radius: 2px; overflow: hidden; opacity: .55; border: 2px solid transparent; cursor: pointer; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { opacity: 1; border-color: var(--maroon); }

/* ─── LOCATION ─────────────────────────────────────────────────────── */
#location { background: var(--cream); padding: 64px 0; }
.location-header { text-align: center; }
.location-header .section-sub { margin: 14px auto 0; }
.location-cats { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
.loc-card { border: 1px solid #E5DCC9; border-radius: var(--radius); padding: 18px 20px; }
.loc-cat-label { font-family: var(--font-display); font-size: 15px; color: var(--maroon); margin-bottom: 12px; }
.loc-items { display: flex; flex-direction: column; gap: 9px; }
.loc-item { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-soft); gap: 10px; }
.loc-item span:first-child { color: var(--ink); }
.loc-dist { color: var(--bronze); font-weight: 600; white-space: nowrap; }

/* ─── AMENITIES (marquee) ─────────────────────────────────────────── */
#amenities { background: var(--charcoal); padding: 64px 0 40px; overflow: hidden; }
.amenities-header { text-align: center; }
.amenities-header .section-sub { margin: 14px auto 0; }
.amenities-strip-wrap { width: 100%; overflow: hidden; }
.amenity-pill {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: var(--charcoal-2); border: 1px solid rgba(169,137,93,.18);
  color: var(--white-soft); font-size: 12.5px; padding: 10px 16px; border-radius: 30px;
}
.amenity-pill-icon { font-size: 14px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.amenities-cta-row { text-align: center; margin-top: 36px; }

/* ─── BUILDER ──────────────────────────────────────────────────────── */
#builder { background: var(--stone); padding: 64px 0; }
.builder-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.builder-logo-pill {
  display: inline-block; font-family: var(--font-display); font-size: 17px; color: var(--maroon);
  border: 1px solid var(--maroon); padding: 8px 20px; border-radius: 30px; margin-bottom: 20px;
}
.builder-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.85; margin-bottom: 26px; }
.builder-desc strong { color: var(--ink); }

/* ─── FINAL CTA ────────────────────────────────────────────────────── */
#final-cta {
  background: var(--charcoal);
  background-image: linear-gradient(180deg, rgba(27,23,20,.92), rgba(27,23,20,.96)), url('about_us_background_image.jpg');
  background-size: cover; background-position: center;
  padding: 64px 0;
}
.final-cta-wrap { max-width: 460px; margin: 0 auto; }
.final-form-box { background: var(--cream); border-radius: var(--radius); padding: 28px 24px; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.final-form-title { font-family: var(--font-display); font-size: 21px; color: var(--ink); }
.final-form-sub { font-size: 13px; color: var(--ink-soft); margin: 8px 0 20px; line-height: 1.6; }

/* ─── FOOTER ───────────────────────────────────────────────────────── */
#footer { background: var(--charcoal-2); padding: 48px 0 22px; border-top: 1px solid rgba(169,137,93,.15); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.footer-brand-desc { font-size: 12.5px; color: var(--white-faint); line-height: 1.8; margin-top: 12px; max-width: 320px; }
.footer-col-label { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--bronze); margin-bottom: 14px; }
.footer-contact-item { display: block; font-size: 13px; color: var(--white-soft); margin-bottom: 10px; }
.footer-disclaimer { font-size: 11px; color: var(--white-faint); line-height: 1.85; }
.footer-disclaimer a { color: var(--bronze); }
.footer-bottom {
  display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid rgba(169,137,93,.14); margin-top: 34px; padding-top: 18px;
}
.footer-copy { font-size: 11px; color: var(--white-faint); }

/* ─── MODAL ────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 900; background: rgba(20,16,13,.68);
  display: none; align-items: flex-end; justify-content: center; padding: 0;
}
.modal-overlay.open { display: flex; }
.modal-box {
  width: 100%; max-width: 480px; background: var(--cream); border-radius: 12px 12px 0 0;
  max-height: 92vh; overflow-y: auto; animation: slideUp .3s ease;
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header { background: var(--maroon); padding: 22px 24px; position: relative; }
.modal-close {
  position: absolute; right: 16px; top: 14px; background: none; border: none;
  color: var(--cream); font-size: 24px; line-height: 1; width: 30px; height: 30px;
}
.modal-title { font-family: var(--font-display); font-size: 20px; color: var(--cream); padding-right: 30px; }
.modal-cta-label { font-size: 11px; color: rgba(251,248,242,.75); margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; }
.modal-body { padding: 22px 24px 28px; }
.modal-thankyou { display: none; text-align: center; padding: 10px 0; }
.modal-thankyou.show { display: block; }
.modal-thankyou-icon { font-size: 40px; margin-bottom: 12px; }
.modal-thankyou h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.modal-thankyou p { font-size: 13px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 18px; }

/* Inline thank-you (hero / final-cta forms) */
.inline-thankyou { display: none; text-align: center; padding: 16px 4px; }
.inline-thankyou.show { display: block; }
.inline-thankyou .modal-thankyou-icon { font-size: 34px; }
.inline-thankyou h3 { font-family: var(--font-display); font-size: 18px; color: var(--ink); margin-bottom: 6px; }
.inline-thankyou p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.6; }

/* ─── FLOATING CTA ─────────────────────────────────────────────────── */
.floating-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 480;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(27,23,20,.96); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(169,137,93,.2);
}
.floating-cta.show { display: flex; }
.floating-cta .btn { flex: 1; font-size: 13px; padding: 13px; }

/* ─── COOKIE / UTIL ────────────────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ══════════════════════════════════════════════════════════════════════
   TABLET (≥ 640px)
   ══════════════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .config-cards { grid-template-columns: 1fr 1fr; }
  .location-cats { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding-top: 132px; }
}

/* ══════════════════════════════════════════════════════════════════════
   DESKTOP (≥ 1024px)
   ══════════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .header-nav { display: flex; gap: 30px; }
  .header-nav a { font-size: 12.5px; font-weight: 500; letter-spacing: .04em; color: var(--white-soft); transition: color .2s ease; }
  .header-nav a:hover { color: var(--bronze); }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .logo-partner {
    display: block; font-size: 9px; color: var(--white-faint); letter-spacing: .06em;
    text-transform: uppercase; margin-top: 3px;
  }

  .hero-content { flex-direction: row; align-items: center; padding-top: 0; gap: 60px; }
  .hero-left { flex: 1.15; }
  .hero-form-card { flex: 1; max-width: 420px; }

  .about-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; }
  .about-img-wrap img { height: 460px; }

  .config-cards { grid-template-columns: 1fr 1fr; gap: 28px; }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .location-cats { grid-template-columns: repeat(4, 1fr); }

  .gallery-main img { height: 460px; }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1.4fr; gap: 48px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .floating-cta { display: none !important; }

  .modal-overlay { align-items: center; }
  .modal-box { border-radius: 8px; }

  #about, #pricing, #highlights, #gallery, #location, #amenities, #builder, #final-cta { padding: 96px 0; }
}

@media (min-width: 1280px) {
  .hero-title { font-size: 62px; }
}
