/* ============================================================
   STONEBRIDGE PLANNING GROUP — SHARED STYLESHEET
   Fluid, responsive, scales smoothly on all screen sizes
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0F1F3D; --navy-mid: #1A3260; --gold: #C9A84C; --gold-light: #E8C96A;
  --off-white: #F8F7F4; --wash: #EEF1F7; --slate: #4A5568; --text: #1A202C;
  --muted: #6B7280; --border: #D1D9E6; --white: #FFFFFF;
  --green: #2d7a4f; --red: #c0392b;
  --radius: 4px; --radius-lg: 10px;

  /* Fluid type scale — clamps between mobile and desktop automatically */
  --fs-h1: clamp(2rem, 1.4rem + 3vw, 3.5rem);
  --fs-h2: clamp(1.6rem, 1.3rem + 1.6vw, 2.625rem);
  --fs-h3: clamp(1.15rem, 1rem + 0.6vw, 1.375rem);
  --fs-body: clamp(0.95rem, 0.9rem + 0.2vw, 1.0625rem);
  --fs-small: clamp(0.8rem, 0.78rem + 0.1vw, 0.875rem);

  /* Fluid section padding */
  --section-pad: clamp(3.5rem, 2rem + 6vw, 6rem);
  --container-pad: clamp(1rem, 0.5rem + 2vw, 1.5rem);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; font-size: var(--fs-body); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 var(--container-pad); }
.section-label { display: inline-block; font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }

/* BUTTONS */
.btn { display: inline-block; padding: 14px clamp(20px, 4vw, 32px); border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.04em; cursor: pointer; transition: all 0.22s ease; border: none; text-align: center; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(15,31,61,0.25); }
.btn-ghost { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-ghost:hover { background: var(--gold); color: var(--navy); }

/* TOPBAR */
.topbar { background: var(--navy); padding: 8px 0; font-size: var(--fs-small); color: rgba(255,255,255,0.75); }
.topbar .container { display: flex; justify-content: flex-end; align-items: center; gap: clamp(12px, 2vw, 24px); flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(15,31,61,0.07); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: clamp(64px, 8vw, 72px); gap: 16px; padding: 8px 0; }
.nav-logo { display: flex; flex-direction: column; flex-shrink: 0; }
.nav-logo-name { font-family: 'Playfair Display', serif; font-size: clamp(1rem, 0.85rem + 0.6vw, 1.25rem); font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.nav-logo-tag { font-size: clamp(0.5rem, 0.45rem + 0.2vw, 0.625rem); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 26px); list-style: none; }
.nav-links a { font-size: var(--fs-small); font-weight: 500; color: var(--slate); transition: color 0.2s; position: relative; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta-btn { padding: 9px 18px; font-size: 13px; line-height: 1.15; white-space: nowrap; flex-shrink: 0; align-self: center; height: auto; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--white); z-index: 200; flex-direction: column; padding: 24px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--navy); }
.mobile-links { list-style: none; display: flex; flex-direction: column; }
.mobile-links li a { display: block; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 1.125rem; font-family: 'Playfair Display', serif; color: var(--navy); }
.mobile-cta { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }

/* HERO */
.hero { background: var(--navy); position: relative; overflow: hidden; padding: clamp(56px, 8vw, 90px) 0 0; }
.hero-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%), radial-gradient(circle at 10% 80%, rgba(201,168,76,0.05) 0%, transparent 40%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; position: relative; z-index: 2; }
.hero-left { padding-bottom: clamp(48px, 6vw, 80px); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25); padding: 6px 14px; border-radius: 100px; font-size: var(--fs-small); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
.hero-eyebrow span.dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero h1 { font-size: var(--fs-h1); font-weight: 700; color: var(--white); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: clamp(1rem, 0.95rem + 0.3vw, 1.0625rem); color: rgba(255,255,255,0.7); margin-bottom: 16px; max-width: 480px; line-height: 1.7; }
.hero-differentiator { display: flex; flex-direction: column; gap: 8px; margin-bottom: 36px; }
.hero-diff-item { display: flex; align-items: center; gap: 10px; font-size: var(--fs-small); color: rgba(255,255,255,0.8); }
.hero-diff-item span.check { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-social-proof { display: flex; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.hero-proof-text { font-size: var(--fs-small); color: rgba(255,255,255,0.6); }
.hero-proof-text strong { color: var(--white); }
.hero-right { position: relative; align-self: flex-end; }
.hero-img-wrap { border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; }
.hero-img-wrap img { width: 100%; height: clamp(320px, 40vw, 480px); object-fit: cover; }
.hero-badge { position: absolute; bottom: 24px; left: clamp(-16px, -2vw, -32px); background: var(--white); border-radius: var(--radius-lg); padding: 16px 22px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 14px; }
.hero-badge-icon { width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 20px; flex-shrink: 0; }
.hero-badge-text strong { display: block; font-size: 22px; font-family: 'Playfair Display', serif; color: var(--navy); }
.hero-badge-text span { font-size: 12px; color: var(--muted); }

/* ARCH DIVIDER */
.arch-divider { background: var(--navy); line-height: 0; }
.arch-divider svg { display: block; width: 100%; }

/* PAGE HERO (interior pages) */
.page-hero { background: var(--navy); position: relative; overflow: hidden; padding: clamp(48px, 7vw, 80px) 0; text-align: center; }
.page-hero-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 75% 25%, rgba(201,168,76,0.1) 0%, transparent 50%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: var(--fs-h1); color: var(--white); margin-bottom: 18px; max-width: 800px; margin-left: auto; margin-right: auto; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem); color: rgba(255,255,255,0.72); max-width: 620px; margin: 0 auto 32px; line-height: 1.7; }
.page-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.breadcrumb { font-size: var(--fs-small); color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* TRUST BAR */
.trust-bar { background: var(--off-white); border-bottom: 1px solid var(--border); padding: clamp(28px, 4vw, 40px) 0; }
.trust-bar-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(12px, 2vw, 24px); text-align: center; align-items: center; }
.trust-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.125rem); font-weight: 700; color: var(--navy); line-height: 1; }
.trust-stat span { font-size: clamp(0.7rem, 0.65rem + 0.2vw, 0.75rem); color: var(--muted); font-weight: 500; margin-top: 6px; display: block; }
.trust-divider { width: 1px; background: var(--border); height: 48px; margin: 0 auto; }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.section-header h2 { font-size: var(--fs-h2); color: var(--navy); margin-bottom: 14px; }
.section-header p { color: var(--slate); max-width: 560px; margin: 0 auto; font-size: var(--fs-body); line-height: 1.7; }

/* GENERIC SECTION */
.section { padding: var(--section-pad) 0; }
.section-wash { background: var(--wash); }
.section-offwhite { background: var(--off-white); }

/* WHY US */
.why-us { background: var(--navy); padding: var(--section-pad) 0; }
.why-us-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.why-us-content h2 { font-size: var(--fs-h2); color: var(--white); margin-bottom: 16px; }
.why-us-content h2 em { font-style: normal; color: var(--gold); }
.why-us-content > p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 32px; }
.why-points { display: flex; flex-direction: column; gap: 20px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point-icon { width: 42px; height: 42px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.why-point-text strong { display: block; font-size: 15px; color: var(--white); font-weight: 600; margin-bottom: 3px; }
.why-point-text span { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.why-us-creds { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 36px); }
.why-us-creds h3 { font-size: var(--fs-h3); color: var(--gold); margin-bottom: 20px; }
.cred-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.cred-item:last-child { border-bottom: none; }
.cred-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.cred-text strong { display: block; font-size: 14px; color: var(--white); font-weight: 600; }
.cred-text span { font-size: 13px; color: rgba(255,255,255,0.55); }

/* PAIN POINTS */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 20px); }
.pain-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 28px); border: 1px solid var(--border); border-top: 3px solid var(--gold); }
.pain-card .pain-q { font-family: 'Playfair Display', serif; font-size: clamp(1.05rem, 1rem + 0.3vw, 1.125rem); color: var(--navy); margin-bottom: 12px; font-style: italic; line-height: 1.3; }
.pain-card p { font-size: var(--fs-small); color: var(--slate); line-height: 1.7; margin-bottom: 16px; }
.pain-card .pain-link { font-size: var(--fs-small); font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.pain-card .pain-link:hover { gap: 9px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius-lg); width: 100%; height: clamp(360px, 40vw, 500px); object-fit: cover; }
.about-img-accent { position: absolute; bottom: -24px; right: -24px; width: 180px; height: 180px; background: var(--gold); border-radius: var(--radius-lg); z-index: -1; opacity: 0.3; }
.about-content h2 { font-size: var(--fs-h2); color: var(--navy); margin-bottom: 20px; }
.about-content p { color: var(--slate); line-height: 1.8; margin-bottom: 18px; }
.about-features { margin: 32px 0; display: flex; flex-direction: column; gap: 14px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon { width: 36px; height: 36px; background: rgba(201,168,76,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.about-feature-text strong { display: block; font-size: 15px; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.about-feature-text span { font-size: 14px; color: var(--muted); }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 28px); }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 36px); border: 1px solid var(--border); transition: all 0.25s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.service-card:hover { box-shadow: 0 12px 40px rgba(15,31,61,0.1); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; background: rgba(201,168,76,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.service-card h3 { font-size: var(--fs-h3); color: var(--navy); margin-bottom: 8px; }
.service-card .service-hook { font-size: var(--fs-small); color: var(--gold); font-weight: 600; font-style: italic; margin-bottom: 12px; }
.service-card p { font-size: var(--fs-body); color: var(--slate); line-height: 1.7; margin-bottom: 24px; }
.service-link { font-size: var(--fs-small); font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* PROCESS */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; margin-top: clamp(36px, 5vw, 56px); }
.process-steps::before { content: ''; position: absolute; top: 28px; left: calc(16.66% + 14px); right: calc(16.66% + 14px); height: 2px; background: var(--gold); z-index: 0; }
.process-step { text-align: center; padding: 0 clamp(12px, 2vw, 24px); position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--white); font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 2; border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--gold); }
.process-step h3 { font-size: var(--fs-h3); color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: var(--fs-small); color: var(--muted); line-height: 1.7; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: var(--section-pad) 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 70%); pointer-events: none; }
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { font-size: var(--fs-h2); color: var(--white); margin-bottom: 16px; position: relative; }
.cta-band .cta-sub { font-size: clamp(1rem, 0.95rem + 0.3vw, 1.0625rem); color: rgba(255,255,255,0.7); margin-bottom: 32px; position: relative; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-band .cta-phone { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 500; transition: color 0.2s; }
.cta-band .cta-phone:hover { color: var(--gold); }
.cta-band .cta-phone .ph-icon { width: 36px; height: 36px; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); margin-top: clamp(36px, 5vw, 56px); }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 32px); border: 1px solid var(--border); }
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card blockquote { font-size: var(--fs-body); color: var(--slate); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-info strong { display: block; font-size: 14px; color: var(--navy); font-weight: 600; }
.author-info span { font-size: 12px; color: var(--muted); }

/* GOOGLE REVIEWS BADGE (fallback until live widget is connected) */
#google-reviews { margin-top: clamp(36px, 5vw, 56px); }
.google-fallback { display: flex; justify-content: center; }
.google-badge-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); text-align: center; max-width: 540px; width: 100%; box-shadow: 0 4px 24px rgba(15,31,61,0.06); }
.google-logo-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }
.google-g { font-family: 'Arial', sans-serif; font-weight: 700; font-size: 24px; width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--off-white); border: 1px solid var(--border); color: #4285F4; }
.google-word { font-size: 20px; font-weight: 600; color: var(--navy); font-family: 'Inter', sans-serif; }
.google-rating-sub { font-size: 15px; color: var(--slate); line-height: 1.7; margin-bottom: 26px; max-width: 420px; margin-left: auto; margin-right: auto; }
.google-badge-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 56px); align-items: start; margin-top: clamp(36px, 5vw, 56px); }
.faq-intro h2 { font-size: var(--fs-h2); color: var(--navy); margin-bottom: 18px; }
.faq-intro p { color: var(--slate); line-height: 1.8; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; padding: 20px 0; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy); transition: color 0.2s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { width: 24px; height: 24px; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; transition: all 0.2s; color: var(--muted); }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 0 20px; font-size: 14px; color: var(--slate); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 500px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(36px, 5vw, 60px); align-items: start; }
.contact-info h2 { font-size: var(--fs-h2); color: var(--navy); margin-bottom: 16px; }
.contact-info > p { color: var(--slate); line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon { width: 42px; height: 42px; background: var(--navy); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 3px; }
.contact-detail-text a, .contact-detail-text span { font-size: 15px; color: var(--slate); }
.contact-detail-text a:hover { color: var(--gold); }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px); border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(15,31,61,0.06); }
.contact-form-wrap h3 { font-size: var(--fs-h3); color: var(--navy); margin-bottom: 6px; }
.contact-form-wrap .form-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 16px; color: var(--text); background: var(--off-white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 15px; font-size: 15px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.form-success { display: none; background: #f0faf4; border: 1.5px solid var(--green); border-radius: 8px; padding: 24px; text-align: center; margin-bottom: 16px; }
.form-success .check-big { font-size: 36px; margin-bottom: 10px; }
.form-success h4 { font-family: 'Playfair Display', serif; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--slate); }
.form-error { display: none; color: var(--red); font-size: 13px; margin-bottom: 12px; }
.req { color: var(--red); }

/* CONTENT BLOCKS (interior pages) */
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 72px); align-items: center; }
.content-split.reverse .content-split-img { order: 2; }
.content-block h2 { font-size: var(--fs-h2); color: var(--navy); margin-bottom: 18px; }
.content-block h3 { font-size: var(--fs-h3); color: var(--navy); margin: 28px 0 12px; }
.content-block p { color: var(--slate); line-height: 1.8; margin-bottom: 16px; font-size: var(--fs-body); }
.content-block ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.content-block ul li { display: flex; align-items: flex-start; gap: 12px; font-size: var(--fs-body); color: var(--slate); line-height: 1.6; }
.content-block ul li span.li-check { color: var(--gold); flex-shrink: 0; font-weight: 700; margin-top: 1px; }
.content-split-img img { border-radius: var(--radius-lg); width: 100%; height: clamp(340px, 38vw, 460px); object-fit: cover; }

/* FEATURE CARDS (interior) */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 24px); margin-top: clamp(36px, 5vw, 48px); }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 32px); }
.feature-card .fc-icon { width: 48px; height: 48px; background: rgba(201,168,76,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* AGENTS */
.agents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); margin-top: clamp(36px, 5vw, 56px); }
.agent-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
.agent-card:hover { box-shadow: 0 12px 40px rgba(15,31,61,0.12); transform: translateY(-3px); }
.agent-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--wash); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 14px; }
.agent-photo img { width: 100%; height: 100%; object-fit: cover; }
.agent-info { padding: clamp(20px, 3vw, 28px); }
.agent-name { font-size: var(--fs-h3); color: var(--navy); margin-bottom: 4px; }
.agent-title { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.agent-bio { font-size: 14px; color: var(--slate); line-height: 1.75; margin-bottom: 18px; }
.agent-meta { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px solid var(--border); }
.agent-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.agent-meta-item span { color: var(--gold); }

/* FOOTER */
footer { background: var(--navy); padding: clamp(48px, 6vw, 64px) 0 0; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(32px, 4vw, 48px); margin-bottom: clamp(40px, 5vw, 56px); }
.footer-brand .nav-logo-name { color: var(--white); font-size: 1.375rem; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 16px; margin-bottom: 16px; }
.footer-serve { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 8px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; width: 100%; }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid, .why-us-inner, .about-grid, .faq-grid, .contact-grid,
  .content-split { grid-template-columns: 1fr; }
  .content-split.reverse .content-split-img { order: 0; }
  .hero-right, .about-img-wrap { display: none; }
  .trust-bar-inner { grid-template-columns: repeat(3, 1fr); gap: 20px 12px; }
  .trust-divider { display: none; }
  .services-grid, .pain-grid, .feature-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .content-split-img { display: none; }
}

/* Collapse the full nav to a hamburger before the links get cramped */
@media (max-width: 1180px) {
  .nav-links, nav .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .agents-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-actions .btn, .page-hero-actions .btn, .cta-actions .btn { width: 100%; }
  .pain-card, .feature-card { text-align: left; }
}

/* Larger screens — prevent over-stretching */
@media (min-width: 1400px) {
  .container { max-width: 1240px; }
}
