/* ── FONTS — loaded via <link> in HTML for non-blocking async ── */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: clip; }
body { overflow-x: clip; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── COLOR TOKENS ── */
:root {
  /* Brand */
  --navy:       #0C1F3F;   /* Primary dark — nav, hero, footer */
  --navy-mid:   #152A52;   /* Slightly lighter navy for hover states */
  --navy-lt:    #1E3A6E;   /* Card backgrounds on dark sections */
  --gold:       #C4933F;   /* Gold accent */
  --gold-dk:    #A07830;   /* Darker gold for hover */
  --gold-lt:    #F5ECD8;   /* Light gold tint for backgrounds */

  /* Neutrals */
  --white:      #FFFFFF;
  --off-white:  #F9F7F4;
  --cream:      #F2EDE4;   /* Warm cream for alternating sections */
  --cream-dk:   #E6DDD0;   /* Slightly darker cream */
  --border:     #DDD8CF;
  --text:       #1A1A1A;
  --muted:      #5C5C5C;
  --light:      #999999;

  /* Accent fills */
  --navy-tint:  #EBF0F7;   /* Very light navy tint */

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

  --container: 1100px;
  --space: clamp(32px, 3.8vw, 48px);
  --radius: 2px;
}

/* ── BASE ── */
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
}
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.18;
  letter-spacing: 0.01em;
  font-weight: 500;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); font-weight: 500; }
h3 { font-size: 1.3rem; font-weight: 500; }
p  { line-height: 1.72; color: var(--muted); }

/* ── LAYOUT ── */
.container   { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section     { padding: var(--space) 0; }

/* Section backgrounds */
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); }
.section--navy-tint { background: var(--navy-tint); }
.section--gold-lt { background: var(--gold-lt); }

/* Text overrides on dark */
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: var(--white); }
.section--navy p  { color: rgba(255,255,255,0.65); }
.section--navy .eyebrow { color: var(--gold); }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.eyebrow--light { color: rgba(255,255,255,0.5); }

/* ── GOLD RULE ── */
.title-rule          { width: 48px; height: 2px; background: var(--gold); margin: 10px 0 18px; }
.title-rule--center  { margin-left: auto; margin-right: auto; }
.title-rule--white   { background: rgba(255,255,255,0.3); }

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── BRAND NAME — single source of truth for "Sahil Ahluwalia" everywhere ──
   Both .logo-text strong (nav) and .footer-logo strong (footer) must stay
   identical in font-family, size, weight, and letter-spacing.           */
.nav-logo { display: flex; align-items: center; gap: 0; }
.logo-mark { display: none; }
.logo-text { display: flex; flex-direction: column; gap: 4px; }
.logo-text strong {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.logo-text small {
  font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

/* NAV LINKS */
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 22px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dk) !important; color: var(--white) !important; }

.hamburger { display:none; background:none; border:none; cursor:pointer; padding:4px; flex-direction:column; gap:5px; }
.hamburger span { display:block; width:22px; height:1.5px; background:var(--white); transition:all 0.3s; }

@media (max-width: 800px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute;
    top: 70px; left:0; right:0;
    background: var(--navy); flex-direction: column;
    gap: 0; padding: 8px 0 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px clamp(20px,4vw,48px); display:block; width:100%; }
  .nav-cta { margin: 8px clamp(20px,4vw,48px) !important; display:block !important; text-align:center; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s;
}
.btn-black   { background: #1a1a1a; color: var(--white); border-color: #1a1a1a; }
.btn-black:hover { background: #333; border-color: #333; }
.btn-navy    { background: var(--navy);  color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
.btn-gold    { background: var(--gold);  color: var(--navy);  border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-white   { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── HERO ── */
/* ── HERO — full-bleed image, content panel overlay ── */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 62vh;
  min-height: 600px;
}

/* Full-bleed background image */
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  line-height: 0;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 32, 0.28);
  z-index: 1;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}

/* Inner: vertically centred, left-aligned — matches .container exactly */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* Content panel — semi-opaque overlay card */
.hero-content {
  position: relative;
  max-width: 520px;
  background: rgba(8, 18, 40, 0.82);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: 28px 32px;
}
.hero-content h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  color: var(--white);
  margin-bottom: 14px;
}
.hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-content .lead {
  font-size: 0.92rem; font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.75; margin-bottom: 22px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }

/* Credentials strip */
.hero-credentials {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 12px;
}
.hero-cred-item {
  padding-right: 24px; margin-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-cred-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-cred-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 4px;
}
.hero-cred-item span {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

@media (max-width: 860px) {
  .hero { height: auto; min-height: 0; }
  .hero-inner { height: auto; padding: 40px 20px; }
  .hero-content { max-width: 100%; padding: 22px 20px; }
}
@media (max-width: 480px) {
  .hero-inner { padding: 32px 16px; }
  .hero-content { padding: 24px 18px; }
  .hero-content h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); margin-bottom: 16px; }
  .hero-content .lead { font-size: 0.9rem; margin-bottom: 24px; line-height: 1.7; }
  .hero-btns { margin-bottom: 20px; gap: 10px; }
  .hero-btns .btn { padding: 12px 22px; font-size: 0.7rem; }
}

/* ── TRUSTED BY STRIP ── */
.trust-strip {
  background: var(--navy-tint);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-strip-inner {
  display: flex; align-items: center;
  gap: clamp(16px, 4vw, 48px); flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
}
.trust-item {
  display: flex; align-items: center;
  gap: 10px; color: var(--muted);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.04em;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 24px; }
.section-header.centered { text-align: center; }
.section-header.centered .title-rule { margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 0; }

/* ── ABOUT TEXT (no image) ── */
.about-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.about-text h2 { margin-bottom: 12px; }
.about-text p  { margin-bottom: 12px; }

/* ── SPLIT LAYOUT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split.reverse .split-image { order: -1; }
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } .split.reverse .split-image { order:0; } }

.split-image img { width:100%; aspect-ratio:4/5; object-fit:cover; }
.split-image img.landscape { aspect-ratio:3/2; }

/* Stretch variant: image fills full height of the content column */
.split.split--stretch { align-items: stretch; }
.split.split--stretch .split-image { overflow: hidden; }
.split.split--stretch .split-image img { width:100%; height:100%; aspect-ratio:unset; object-fit:cover; display:block; }
@media (max-width: 780px) { .split.split--stretch .split-image img { height:60vw; } }
/* About photo — integrated frame treatment */
.about-photo {
  position: relative;
}
.about-photo::before {
  content: '';
  position: absolute;
  top: 16px; left: -16px;
  right: 16px; bottom: -16px;
  border: 2px solid var(--gold);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}
.about-photo img {
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 48px rgba(12,31,63,0.15);
}
@media (max-width: 780px) {
  .about-photo::before { display: none; }
}

.split-img-placeholder {
  width:100%; aspect-ratio:4/5;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dk) 100%);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  color:var(--light); font-size:0.8rem;
  gap:10px; border:1px dashed var(--cream-dk);
}
.split-content h2 { margin-bottom: 12px; }
.split-content p  { margin-bottom: 12px; }

/* ── CHECKLIST ── */
.checklist { margin: 14px 0 20px; padding: 0; }
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 8px; font-size: 0.9rem; color: var(--muted);
  line-height: 1.65;
}
.check-icon { width:18px; height:18px; flex-shrink:0; margin-top:2px; color:var(--gold); }

/* ── SERVICE CARDS ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 760px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: clamp(18px, 2.2vw, 26px);
  transition: box-shadow 0.25s, transform 0.25s, border-top-color 0.25s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(12,31,63,0.1);
  transform: translateY(-3px);
  border-top-color: var(--gold);
}
.service-icon-wrap {
  width: 42px; height: 42px;
  background: var(--navy-tint);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--navy);
  transition: background 0.25s;
}
.service-card:hover .service-icon-wrap { background: var(--gold-lt); color: var(--gold-dk); }
.service-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.1rem; }
.service-card p  { font-size: 0.88rem; margin-bottom: 14px; }
.card-link {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy);
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.2s, color 0.2s;
}
.service-card:hover .card-link { gap: 14px; color: var(--gold-dk); }

/* ── WHY DIFFERENT ── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 20px;
}
@media (max-width: 640px) { .diff-grid { grid-template-columns: 1fr; gap: 2px; } }
@media (max-width: 480px) { .diff-item { padding: 22px 20px; } }

.diff-item {
  background: var(--navy);
  padding: 28px 32px;
  transition: background 0.22s;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 2px solid var(--gold);
}
.diff-item:hover { background: var(--navy-mid); }
.diff-item h3 { color: var(--white) !important; margin-bottom: 10px; }
.diff-item p  { font-size: 0.88rem; color: rgba(255,255,255,0.55) !important; }
.diff-num {
  font-family: 'Courier New', 'SFMono-Regular', Consolas, monospace;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  text-transform: uppercase;
}
.diff-item h3 { color: var(--navy); margin-bottom: 10px; }
.diff-item p  { font-size: 0.88rem; }

/* ── AREAS ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 860px) { .areas-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .areas-grid { grid-template-columns: 1fr; } }

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--navy);
  padding: 18px 16px;
  transition: all 0.22s;
}
.area-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: 0 4px 16px rgba(12,31,63,0.08);
  transform: translateY(-2px);
}
.area-name {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 600;
  color: var(--navy); display: block;
  margin-bottom: 10px;
}
.area-card p { font-size: 0.83rem; line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
  max-width: 860px;   /* keeps 2 cards comfortable, expands naturally for 3+ */
}
.testimonial-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-note {
  margin-top: 28px;
  font-size: 0.8rem;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-note a { color: var(--gold-dk); font-weight: 600; }
.testimonial-note a:hover { color: var(--gold); }
@media (max-width: 560px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 22px 20px;
}
.stars { display:flex; gap:3px; margin-bottom:18px; color:var(--gold); }
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 0.96rem; font-style: italic;
  color: var(--text); line-height: 1.85;
  margin-bottom: 22px;
}
.testimonial-card blockquote::before { content: '\201C'; }
.testimonial-card blockquote::after  { content: '\201D'; }
.t-author { display:flex; align-items:center; gap:12px; }
.t-avatar {
  width:44px; height:44px;
  background: var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-serif);
  font-size:1.25rem; font-weight:700; color:var(--gold); flex-shrink:0;
  border: 2px solid var(--gold);
}
.t-author-info strong { display:block; font-size:0.85rem; font-weight:600; color:var(--navy); }
.t-author-info span   { font-size:0.75rem; color:var(--light); }

/* ── FTB BANNER ── */
.ftb-banner {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
  padding: clamp(24px, 3vw, 40px);
  border-left: 6px solid var(--gold);
}
@media (max-width: 640px) { .ftb-banner { grid-template-columns: 1fr; } }
.ftb-banner h2 { color: var(--white); margin-bottom: 14px; }
.ftb-banner p  { color: rgba(255,255,255,0.65); max-width: 520px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--cream);
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 4px solid var(--navy);
  text-align: center;
}
.cta-strip h2 { color: var(--navy); margin-bottom: 10px; }
.cta-strip p  { margin-bottom: 22px; max-width: 480px; margin-left:auto; margin-right:auto; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 760px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--gold);
  padding: clamp(16px, 2vw, 24px);
}
.step-num-label {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 2.2rem; font-weight: 400;
  color: var(--gold-lt); line-height: 1;
  margin-bottom: 10px; display: block;
}
.step-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.step-card p  { font-size: 0.86rem; color: rgba(255,255,255,0.6); }

/* ── OFF-MARKET CALLOUT ── */
.off-market-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
  padding: 18px 24px;
  border: 1px solid rgba(196,147,63,0.35);
  border-left: 3px solid var(--gold);
  background: rgba(196,147,63,0.07);
}
.off-market-callout svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.off-market-callout p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.7; }
.off-market-callout strong { color: var(--white); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; display:flex; justify-content:space-between; align-items:center;
  background: none; border: none;
  padding: 14px 0; font-family: var(--font-sans);
  font-size: 0.95rem; font-weight: 500;
  color: var(--navy); cursor: pointer; text-align: left; gap: 16px;
}
.faq-icon {
  width: 24px; height: 24px;
  background: var(--navy-tint);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.9rem; color: var(--navy);
  transition: background 0.2s;
}
.faq-q:hover .faq-icon { background: var(--gold-lt); color: var(--gold-dk); }
.faq-a {
  display:none; padding:0 0 14px;
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.85; max-width: 680px;
}

/* ── CONTACT ── */
.form-wrap { border: 2px solid var(--navy); }
.form-head-v2 {
  background: var(--navy);
  padding: 28px 32px;
}
.form-head-v2 h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.form-head-v2 p  { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.form-body { padding: 32px; background: var(--white); }
.field { margin-bottom: 20px; }
.field-label {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 8px;
}
.req { color: var(--gold); }
input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border);
  font-family: var(--font-sans); font-size: 0.9rem;
  color: var(--text); background: var(--off-white);
  transition: border-color 0.2s, background 0.2s;
  outline: none; -webkit-appearance: none; appearance: none;
  border-radius: 0;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy); background: var(--white);
}
textarea { resize: vertical; min-height: 110px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width: 480px) { .form-row { grid-template-columns:1fr; } }
.submit-btn-v2 {
  width: 100%; padding: 15px;
  background: var(--navy); color: var(--white);
  border: 2px solid var(--navy);
  font-family: var(--font-sans); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.2s;
}
.submit-btn-v2:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.form-note { font-size: 0.73rem; color: var(--light); text-align: center; margin-top: 12px; }
.success-msg { display:none; text-align:center; padding:48px 32px; background:var(--white); }
.success-msg h4 { font-family:var(--font-serif); font-size:1.4rem; color:var(--navy); margin-bottom:10px; }
.success-msg p  { font-size:0.9rem; }

/* ── CONTACT INFO ── */
.contact-info-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.contact-info-item h4 {
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--light); margin-bottom: 6px;
}
.contact-info-item a, .contact-info-item p {
  font-size: 0.93rem; color: var(--text); font-weight: 500;
  margin: 0; line-height: 1.6;
}
.contact-info-item a:hover { color: var(--gold-dk); }

.social-links { display:flex; gap:10px; margin-top:28px; }
.social-link {
  width: 40px; height: 40px;
  background: var(--navy-tint);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: all 0.2s;
}
.social-link:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 4px solid var(--gold);
}
.page-hero h1   { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { font-size: 1rem; font-weight: 300; max-width: 560px; color: rgba(255,255,255,0.68); }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .title-rule { background: var(--gold); }
@media (max-width: 480px) {
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .page-hero .lead { font-size: 0.92rem; }
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 4px solid var(--gold);
  color: rgba(255,255,255,0.5);
  padding: 40px 0 24px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,48px); }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
@media (max-width: 680px) { .footer-top { grid-template-columns: 1fr; gap: 28px; } }

/* Photo gallery responsive */
@media (max-width: 640px) {
  .photo-gallery-grid { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
  .photo-gallery-grid > div:first-child { grid-column: 1 !important; grid-row: auto !important; min-height: auto !important; }
  .photo-gallery-grid img { height: 220px !important; }
}
@media (max-width: 640px) {
  .floor-plan-grid { grid-template-columns: 1fr !important; }
}

/* Footer brand identity — mirrors nav exactly */
.footer-logo strong {
  display: block; font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 5px; line-height: 1;
}
.footer-logo .footer-sub {
  font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; line-height: 1;
}

/* Brokerage logos */
.footer-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.footer-brokerage-logo {
  display: block;
  width: auto;
  border: none;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
/* Countrywide: wide wordmark */
.footer-logos img { height: 28px; }

.footer-logo p {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.footer-col h4 {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex; gap: 10px; margin-bottom: 10px;
  font-size: 0.84rem; align-items: flex-start;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item svg { flex-shrink:0; margin-top:2px; color:var(--gold); }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom { font-size: 0.72rem; line-height: 1.9; color: rgba(255,255,255,0.25); }
.footer-bottom p { margin-bottom: 5px; }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ── INFO BOX ── */
.info-box {
  background: var(--gold-lt);
  border-left: 4px solid var(--gold);
  padding: 14px 18px; margin: 16px 0;
}
.info-box p { font-size: 0.88rem; margin: 0; color: var(--text); }

/* ── COST TABLE ── */
.cost-table { width:100%; border-collapse:collapse; margin:24px 0; font-size:0.88rem; display:block; overflow-x:auto; -webkit-overflow-scrolling:touch; }
@media (max-width: 560px) {
  .cost-table { font-size: 0.78rem; }
  .cost-table th, .cost-table td { padding: 8px 10px; }
}
.cost-table th {
  text-align: left; padding: 10px 16px;
  background: var(--navy); color: var(--gold);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cost-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  color: var(--muted); vertical-align: top; line-height: 1.6;
}
.cost-table td:first-child { color: var(--navy); font-weight: 600; }
.cost-table tr:nth-child(even) td { background: var(--off-white); }

/* ── PROSE (privacy, guides) ── */
.prose h2 { font-size: 1.1rem; color: var(--navy); margin: 36px 0 10px; }
.prose p, .prose li { font-size: 0.9rem; color: var(--muted); line-height: 1.85; margin-bottom: 12px; }
.prose ul { padding-left: 20px; margin-bottom: 14px; list-style: disc; }
.prose a { color: var(--gold-dk); }

/* ── GUIDE STYLES (first-time-buyers) ── */
.guide-section { padding: 52px 0; border-bottom: 1px solid var(--border); }
.guide-section:last-of-type { border-bottom: none; }
.guide-section h2 { font-size: clamp(1.3rem,2.5vw,1.85rem); color: var(--navy); margin-bottom: 16px; }
.guide-section p  { margin-bottom: 16px; }
.guide-section ul { padding: 0; margin: 16px 0 20px; }
.guide-section ul li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.9rem; color: var(--muted);
  margin-bottom: 10px; line-height: 1.75;
}
.guide-section ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}
.toc {
  position: sticky; top: 90px;
}
.toc-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px; display: block;
}
.toc ul { list-style: none; padding: 0; }
.toc ul li { margin-bottom: 2px; }
.toc ul li a {
  font-size: 0.82rem; color: var(--muted);
  display: block; padding: 6px 0 6px 14px;
  border-left: 2px solid var(--border);
  transition: color 0.2s, border-color 0.2s; line-height: 1.4;
}
.toc ul li a:hover, .toc ul li a.active { color: var(--navy); border-color: var(--gold); }
@media (max-width: 760px) { .toc { display: none; } }

.term-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); margin: 24px 0;
}
@media (max-width: 560px) { .term-grid { grid-template-columns: 1fr; } }
.term-card { background: var(--white); padding: 20px 22px; }
.term-card dt { font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.term-card dd { font-size: 0.84rem; color: var(--muted); line-height: 1.7; margin: 0; }

.program-card {
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  padding: 22px 26px; margin-bottom: 16px;
  transition: border-left-color 0.2s;
}
.program-card:hover { border-left-color: var(--gold); }
.program-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.program-card p  { font-size: 0.87rem; margin: 0; }
.program-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 10px; background: var(--navy-tint);
  color: var(--navy); margin-bottom: 10px;
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.max-560 { max-width: 560px; }
.max-680 { max-width: 680px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
