/* ============================================================
   VLADA ZELIKOV — South Florida Paradise Realty LLC
   Global Stylesheet
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg:       #F5F0EA;
  --charcoal: #2C2A26;
  --gold:     #B8976A;
  --sand:     #D4C4A8;
  --white:    #FFFFFF;
  --muted:    #8C8880;
  --border:   #DDD8D0;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1200px;
  --gutter: clamp(20px, 5vw, 80px);
  --t: 0.2s ease;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: 2rem; }
h3 { font-size: 1.375rem; }
p  { font-size: 1rem; line-height: 1.7; }
.small { font-size: 0.8125rem; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ── FADE-IN ─────────────────────────────────────────────────── */
[data-fade] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-fade].visible { opacity: 1; transform: none; }
[data-fade]:nth-child(2) { transition-delay: 0.1s; }
[data-fade]:nth-child(3) { transition-delay: 0.2s; }
[data-fade]:nth-child(4) { transition-delay: 0.3s; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: opacity var(--t), background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}
.btn-gold       { background: var(--gold);    color: var(--white); border: 1.5px solid var(--gold); }
.btn-gold:hover { opacity: 0.85; }
.btn-charcoal       { background: var(--charcoal); color: var(--white); border: 1.5px solid var(--charcoal); }
.btn-charcoal:hover { opacity: 0.83; }
.btn-outline         { background: transparent; color: var(--gold);  border: 1.5px solid var(--gold); }
.btn-outline:hover   { background: var(--gold); color: var(--white); }
.btn-outline-light       { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.55); }
.btn-outline-light:hover { border-color: var(--white); }

/* ── FORM BASE ───────────────────────────────────────────────── */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--border);
  outline: none;
  transition: border-color var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder,
.form-textarea::placeholder { color: #B4ADA5; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C8880' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-group  { display: flex; flex-direction: column; gap: 6px; }
.form-label  { font-size: 0.8125rem; font-weight: 500; color: var(--charcoal); }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-fine   { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
.form-fields { display: flex; flex-direction: column; gap: 18px; }

/* ── PILLS (multi-select) ────────────────────────────────────── */
.pill-group { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 8px 18px;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: var(--white);
  cursor: pointer;
  transition: all var(--t);
  border-radius: 100px;
  user-select: none;
}
.pill:hover         { border-color: var(--gold); color: var(--gold); }
.pill.active        { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── RADIO PILLS (contact page) ─────────────────────────────── */
.radio-pill       { display: none; }
.radio-pill-label {
  display: inline-block;
  padding: 9px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: var(--white);
  cursor: pointer;
  transition: all var(--t);
  border-radius: 100px;
  user-select: none;
}
.radio-pill-label:hover { border-color: var(--gold); color: var(--gold); }
.radio-pill:checked + .radio-pill-label { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── REVIEW CARD ─────────────────────────────────────────────── */
.review-card {
  background: var(--white);
  padding: 36px;
  border-top: 3px solid var(--gold);
}
.review-stars  { color: var(--gold); font-size: 1rem; letter-spacing: 0.06em; margin-bottom: 16px; }
.review-text   {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.review-author { font-size: 0.875rem; font-weight: 600; color: var(--charcoal); }
.review-meta   { font-size: 0.75rem; color: var(--muted); margin-top: 3px; }
.review-source { font-size: 0.7rem; color: var(--muted); margin-top: 8px; letter-spacing: 0.04em; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid rgba(44,42,38,0.09);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-monogram {
  width: 38px;
  height: 38px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
  flex-shrink: 0;
  transition: background var(--t);
}
.nav-logo:hover .logo-monogram { background: var(--charcoal); }
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  transition: color var(--t);
}
.logo-sub {
  font-size: 0.575rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-logo:hover .logo-name { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--t), border-color var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--t);
  transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(44,42,38,0.07);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.nav-mobile.open { max-height: 420px; }
.nav-mobile ul {
  padding: 16px var(--gutter) 24px;
  display: flex;
  flex-direction: column;
}
.nav-mobile ul li a {
  display: block;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(44,42,38,0.07);
  transition: color var(--t);
}
.nav-mobile ul li:last-child a { border-bottom: none; }
.nav-mobile ul li a:hover,
.nav-mobile ul li a.active { color: var(--gold); }

/* ── HERO (HOME) ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(44,42,38,0.82) 0%,
    rgba(44,42,38,0.55) 55%,
    rgba(44,42,38,0.25) 100%);
}
.hero-scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  text-decoration: none;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-arrow:hover {
  border-color: rgba(255,255,255,0.8);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 60px var(--gutter);
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

/* IDX listings section */
.idx-section {
  padding: 72px 24px;
  background: var(--bg);
}
.idx-header {
  text-align: center;
  margin-bottom: 40px;
}
.idx-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.idx-header p {
  font-size: 0.9375rem;
  color: var(--muted);
}
.idx-gate {
  text-align: center;
  padding: 60px 24px;
  border: 1.5px solid var(--border);
  background: var(--white);
  max-width: 560px;
  margin: 0 auto;
}
.idx-gate-text {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.idx-embed-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.idx-frame {
  width: 100%;
  height: 780px;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .idx-frame { height: 560px; }
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-byline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar { background: var(--charcoal); }
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 44px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ── BUY / SELL FORMS (home) ─────────────────────────────────── */
.forms-section { padding: 80px 0; background: var(--bg); display: none; }
.forms-section.active { display: block; animation: formReveal 0.35s ease forwards; }
.forms-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  padding: 0 var(--gutter);
}
.forms-heading h2 { margin-bottom: 12px; }
.forms-heading p  { color: var(--muted); }
.forms-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.form-card {
  background: var(--white);
  padding: 40px;
  display: none;
}
.form-card.active {
  display: block;
  animation: formReveal 0.35s ease forwards;
}
@keyframes formReveal {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.forms-grid.single {
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
}
.form-card-title     { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; margin-bottom: 6px; }
.form-card-sub       { font-size: 0.875rem; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.form-pill-label     { font-size: 0.8125rem; font-weight: 500; margin-bottom: 8px; display: block; }

/* ── MINI ABOUT (home) ───────────────────────────────────────── */
.mini-about { padding: 80px 0; background: var(--white); }
.mini-about-stats {
  max-width: var(--max-w);
  margin: 0 auto 8px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
}
.mini-about-stats strong { font-weight: 600; }
.mini-stat-divider { color: rgba(184,151,106,0.4); }
.mini-about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: center;
}
.mini-about-img          { position: relative; }
.mini-about-img img      { width: 100%; height: 500px; object-fit: cover; object-position: center top; }
.mini-about-img::after   {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 72px;
  height: 72px;
  border: 3px solid var(--gold);
  pointer-events: none;
}
.mini-about-content h2  { margin-bottom: 20px; }
.mini-about-content p   { color: var(--charcoal); opacity: 0.82; margin-bottom: 14px; line-height: 1.85; }
.mini-about-content .btn { margin-top: 8px; }

/* ── TESTIMONIALS TEASER (home) ──────────────────────────────── */
.testimonials-teaser { padding: 80px 0; background: var(--bg); text-align: center; }
.reviews-grid-2 {
  max-width: var(--max-w);
  margin: 0 auto 36px;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.read-all-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity var(--t);
}
.read-all-link:hover { opacity: 0.7; }

/* ── AREAS SERVED (home) ─────────────────────────────────────── */
.areas-section { padding: 64px 0; background: var(--white); text-align: center; }
.areas-section h2 { margin-bottom: 24px; }
.areas-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto 16px;
}
.area-pill {
  padding: 10px 20px;
  background: var(--bg);
  border: 1px solid rgba(44,42,38,0.12);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100px;
}
.areas-note { font-size: 0.875rem; color: var(--muted); font-style: italic; }

/* ── FOOTER CTA SECTION ──────────────────────────────────────── */
.footer-cta-section {
  background: var(--charcoal);
  padding: 80px var(--gutter);
  text-align: center;
}
.footer-cta-section h2 { color: var(--white); margin-bottom: 14px; }
.footer-cta-section p  { color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 32px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(212,196,168,0.12);
  padding: 28px var(--gutter);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 26px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--sand);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--gold); }
.footer-legal {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(212,196,168,0.4);
  line-height: 1.7;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--charcoal);
  padding: 72px var(--gutter) 64px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1   { color: var(--white); margin-bottom: 14px; }
.page-hero p    { color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto; font-size: 1.0625rem; }

/* ── SECTION HEADING ─────────────────────────────────────────── */
.section-heading          { text-align: center; margin-bottom: 48px; }
.section-heading h2       { margin-bottom: 12px; }
.section-heading p        { color: var(--muted); max-width: 540px; margin: 0 auto; }

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-main { padding: 80px 0; background: var(--white); }
.about-main-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.about-main-inner p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 20px;
}
.about-main-inner p:last-child { margin-bottom: 0; }

.credentials { padding: 80px 0; background: var(--bg); }
.credentials .section-heading { margin-bottom: 48px; }
.cred-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cred-card { background: var(--white); padding: 32px 28px; border-top: 3px solid var(--gold); }
.cred-card h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.cred-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

.about-photos { padding: 64px 0; background: var(--white); }
.photos-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photos-grid img { width: 100%; height: 300px; object-fit: cover; }

/* ── TESTIMONIALS PAGE ───────────────────────────────────────── */
.testimonials-intro { padding: 64px 0; background: var(--white); }
.testimonials-intro-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
.testimonials-intro-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonials-intro-text {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--charcoal);
  opacity: 0.85;
}
.testimonials-intro-attr {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 16px;
}
.reviews-grid-full {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonials-page-section { padding: 80px 0; background: var(--bg); }

/* ── RESOURCES PAGE ──────────────────────────────────────────── */
.resources-section { padding: 80px 0; background: var(--white); }
.resources-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.resources-sub {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.resources-sub:first-of-type { margin-top: 0; }
.accordion { display: flex; flex-direction: column; gap: 2px; margin-bottom: 4px; }
.accordion-item {
  background: var(--bg);
  border: 1.5px solid transparent;
  transition: border-color var(--t);
}
.accordion-item.open { border-color: rgba(184,151,106,0.3); }
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  text-align: left;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  gap: 20px;
  transition: color var(--t);
}
.accordion-header:hover { color: var(--gold); }
.accordion-icon {
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--t);
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-item.open .accordion-body { max-height: 300px; }
.accordion-body-inner {
  padding: 0 22px 22px;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}
.contact-form-wrap h2   { margin-bottom: 8px; }
.contact-form-sub       { font-size: 0.9375rem; color: var(--muted); margin-bottom: 36px; }
.contact-info h3        { font-size: 1.25rem; margin-bottom: 28px; }
.contact-detail-list    { display: flex; flex-direction: column; gap: 22px; margin-bottom: 28px; }
.contact-detail         { display: flex; flex-direction: column; gap: 3px; }
.contact-detail-label   {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail-value   { font-size: 0.9375rem; color: var(--charcoal); }
.contact-detail-value a { transition: color var(--t); }
.contact-detail-value a:hover { color: var(--gold); }
.contact-detail-note    { font-size: 0.8125rem; color: var(--muted); }
.interest-group         { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-respond        { font-size: 0.8125rem; color: var(--muted); margin-top: 12px; }
.contact-reassurance    {
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.75;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(44,42,38,0.1);
}

/* ── LEAD CAPTURE MODAL ──────────────────────────────────────── */
.lead-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,42,38,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lead-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lead-modal {
  background: var(--white);
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.lead-overlay.open .lead-modal {
  transform: translateY(0);
}
.lead-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1rem;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--t);
}
.lead-modal-close:hover { color: var(--charcoal); }
.lead-modal-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.lead-modal-title {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 10px;
}
.lead-modal-sub {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.lead-modal-form { display: flex; flex-direction: column; gap: 16px; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cred-grid    { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile   { display: block; }

  .hero-overlay { background: rgba(44,42,38,0.7); }
  .hero-search-bar { flex-wrap: wrap; }
  .hero-search-select { width: 100%; border-right: 1.5px solid var(--border); border-bottom: none; }
  .hero-search-input  { width: 100%; }
  .hero-search-btn    { width: 100%; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(4) { border-right: none; }

  .forms-grid { grid-template-columns: 1fr; }
  .form-row   { grid-template-columns: 1fr; }

  .mini-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .mini-about-img img { height: 380px; }
  .mini-about-img::after { display: none; }

  .reviews-grid-2,
  .reviews-grid-full { grid-template-columns: 1fr; }

  .cred-grid    { grid-template-columns: 1fr; }
  .photos-grid  { grid-template-columns: 1fr 1fr; }

  .testimonials-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-intro-img   { width: 120px; height: 120px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .photos-grid { grid-template-columns: 1fr; }
}
