/* ============================================================
   THE SENIOR REAL ESTATE EXPERTS — Design System & Global Styles
   Hugo Palacios | REALTOR® SRES® | Keller Williams
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ======================== CSS CUSTOM PROPERTIES ======================== */
:root {
  /* Brand Colors */
  --black:       #09090b;
  --dark:        #111113;
  --dark-2:      #18181b;
  --dark-3:      #27272a;
  --white:       #ffffff;
  --cream:       #faf7f2;
  --cream-2:     #f2ede4;
  --gold:        #c9a052;
  --gold-light:  #e8c97e;
  --gold-pale:   #f6edda;
  --gold-dark:   #9e7830;
  --text-dark:   #1c1c1e;
  --text-mid:    #4b4b52;
  --text-muted:  #8a8a92;
  --border:      #e4e4e7;
  --border-dark: rgba(255,255,255,0.08);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type Scale (senior-accessible: 18px base) */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.5rem;
  --text-4xl:  3.25rem;
  --text-5xl:  4rem;
  --text-6xl:  5rem;

  /* Spacing */
  --sp-1:  0.25rem;  --sp-2:  0.5rem;   --sp-3:  0.75rem;
  --sp-4:  1rem;     --sp-5:  1.25rem;  --sp-6:  1.5rem;
  --sp-8:  2rem;     --sp-10: 2.5rem;   --sp-12: 3rem;
  --sp-16: 4rem;     --sp-20: 5rem;     --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radius */
  --r-sm: 6px;  --r-md: 12px;  --r-lg: 20px;  --r-xl: 32px;  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
  --shadow-xl:   0 16px 64px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 28px rgba(201,160,82,0.22);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 300ms ease;
  --t-slow: 500ms ease;

  /* Layout */
  --max-w:      1200px;
  --max-w-wide: 1400px;
  --max-w-text: 760px;
}

/* ======================== REDUCED MOTION ======================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ======================== RESET ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: var(--sp-6); }
li { margin-bottom: var(--sp-2); }
strong { font-weight: 600; }
button { font-family: inherit; }

/* ======================== ACCESSIBILITY ======================== */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.skip-link {
  position: absolute; top: -200%; left: var(--sp-4);
  background: var(--gold); color: var(--black);
  padding: var(--sp-3) var(--sp-6); font-weight: 700;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  text-decoration: none; z-index: 9999;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 0; }

/* Text size scaling for accessibility */
body.text-lg  { font-size: 1.2rem; }
body.text-xl  { font-size: 1.35rem; }

/* ======================== TYPOGRAPHY ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: inherit;
}
h1 { font-size: clamp(2.6rem, 5.5vw, var(--text-5xl)); }
h2 { font-size: clamp(2rem, 4vw,   var(--text-4xl)); }
h3 { font-size: clamp(1.5rem, 3vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); font-family: var(--font-sans); font-weight: 700; }
p  { margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }
a  { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; transition: color var(--t-fast); }
a:hover { color: var(--gold); }

/* ======================== LAYOUT ======================== */
.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 var(--sp-6);
}
.container--wide   { max-width: var(--max-w-wide); }
.container--narrow { max-width: var(--max-w-text); }
.section         { padding: var(--sp-24) 0; }
.section--sm     { padding: var(--sp-16) 0; }
.section--dark   { background: var(--dark);  color: var(--white); }
.section--black  { background: var(--black); color: var(--white); }
.section--cream  { background: var(--cream); }
.section--cream2 { background: var(--cream-2); }

/* ======================== SECTION COMPONENTS ======================== */
.section-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-3);
}
.section--dark .section-label,
.section--black .section-label { color: var(--gold-light); }

.gold-line {
  width: 48px; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: var(--sp-4) 0 var(--sp-6);
  border: none;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-16);
}
.section-header .section-label { display: block; }
.section-header h2 { margin-bottom: var(--sp-4); }
.section-header p {
  font-size: var(--text-lg);
  color: var(--text-mid);
  line-height: 1.7;
}
.section--dark  .section-header p,
.section--black .section-header p { color: rgba(255,255,255,0.68); }

/* ======================== GRID SYSTEM ======================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2); padding: 1rem 2.25rem;
  font-family: var(--font-sans); font-size: var(--text-base);
  font-weight: 600; letter-spacing: 0.01em;
  border: 2px solid transparent; border-radius: var(--r-sm);
  cursor: pointer; text-decoration: none;
  transition: all var(--t-base); min-height: 54px;
  white-space: nowrap; line-height: 1;
}
.btn--primary {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
  color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-gold);
}
.btn--secondary {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.btn--secondary:hover {
  background: var(--gold); color: var(--black);
  transform: translateY(-2px); box-shadow: var(--shadow-gold);
}
.btn--white {
  background: var(--white); color: var(--black); border-color: var(--white);
}
.btn--white:hover { background: var(--cream); transform: translateY(-2px); }
.btn--outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: var(--white); color: var(--black); transform: translateY(-2px);
}
.btn--lg { padding: 1.25rem 2.75rem; font-size: var(--text-lg); min-height: 62px; }
.btn--sm { padding: 0.75rem 1.5rem;  font-size: var(--text-sm); min-height: 46px; }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; }

/* ======================== NAVIGATION ======================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(9,9,11,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,160,82,0.18);
  transition: border-color var(--t-base);
}
.site-nav.scrolled { border-bottom-color: rgba(201,160,82,0.32); }

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 80px; padding: 0 var(--sp-6);
  max-width: var(--max-w-wide); margin: 0 auto;
}
.nav-logo {
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--white);
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--gold-light); }
.nav-logo-name {
  font-family: var(--font-serif); font-size: 1.05rem;
  font-weight: 600; color: inherit; line-height: 1.15;
  letter-spacing: 0.04em;
}
.nav-logo-tag {
  font-size: 0.6rem; color: var(--gold);
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center;
  list-style: none; padding: 0; margin: 0; gap: 2px;
}
.nav-links > li { position: relative; }
.nav-links a {
  display: block; padding: var(--sp-2) var(--sp-3);
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.nav-links a:hover {
  color: var(--gold-light);
  background: rgba(201,160,82,0.1);
}
.nav-right {
  display: flex; align-items: center; gap: var(--sp-4);
  flex-shrink: 0;
}
.nav-phone {
  color: var(--gold-light); text-decoration: none;
  font-size: 0.875rem; font-weight: 600;
  transition: color var(--t-fast);
  display: flex; align-items: center; gap: var(--sp-2);
}
.nav-phone:hover { color: var(--white); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm); cursor: pointer;
  padding: var(--sp-2); min-width: 44px; min-height: 44px;
  justify-content: center; align-items: center;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--white); transition: all var(--t-base);
  transform-origin: center;
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none; position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--dark); z-index: 999;
  overflow-y: auto; padding: var(--sp-6);
  opacity: 0; transform: translateX(100%);
  transition: opacity var(--t-base), transform var(--t-base);
  pointer-events: none;
}
.mobile-nav.open {
  opacity: 1; transform: translateX(0);
  pointer-events: all;
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li { border-bottom: 1px solid var(--border-dark); margin: 0; }
.mobile-nav a {
  display: block; padding: var(--sp-5) var(--sp-2);
  color: var(--white); text-decoration: none;
  font-size: var(--text-xl); font-family: var(--font-serif);
  transition: color var(--t-fast);
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav-bottom {
  margin-top: var(--sp-8); padding-top: var(--sp-8);
  border-top: 1px solid rgba(201,160,82,0.25);
}
.mobile-nav-bottom .btn { width: 100%; justify-content: center; margin-bottom: var(--sp-3); }

/* ======================== HERO ======================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--black); padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 45%, rgba(201,160,82,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(201,160,82,0.05) 0%, transparent 45%),
    linear-gradient(160deg, #09090b 0%, #131316 60%, #09090b 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,160,82,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,160,82,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-content {
  position: relative; z-index: 2;
  padding: var(--sp-20) 0;
  width: 100%;
}
.hero-layout {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-16); align-items: center;
}
.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700; color: var(--white);
  line-height: 1.08; margin-bottom: var(--sp-6);
}
.hero-headline em {
  font-style: italic; color: var(--gold-light);
}
.hero-sub {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.72);
  line-height: 1.65; margin-bottom: var(--sp-10);
  max-width: 520px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  margin-top: var(--sp-10); padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-trust-item {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); color: rgba(255,255,255,0.55);
}
.hero-trust-item strong { color: var(--gold-light); font-weight: 600; }
.hero-trust-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo-wrap {
  position: relative;
  width: 380px; max-width: 100%;
}
.hero-photo {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  border: 1px solid rgba(201,160,82,0.28);
  background: linear-gradient(155deg,
    rgba(201,160,82,0.12) 0%,
    rgba(201,160,82,0.04) 50%,
    rgba(201,160,82,0.08) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-placeholder {
  text-align: center; padding: var(--sp-8);
}
.hero-photo-placeholder-icon {
  font-size: 4rem; color: rgba(201,160,82,0.3);
  display: block; margin-bottom: var(--sp-4);
}
.hero-photo-placeholder-text {
  font-family: var(--font-serif); font-size: 0.9rem;
  font-style: italic; color: rgba(201,160,82,0.4);
  line-height: 1.5;
}
.hero-badge {
  position: absolute; bottom: -20px; left: -24px;
  background: var(--gold);
  color: var(--black); border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-6);
  box-shadow: var(--shadow-xl);
}
.hero-badge-name {
  font-family: var(--font-serif); font-size: 1.15rem;
  font-weight: 700; display: block; line-height: 1.2;
}
.hero-badge-title {
  font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 700;
  opacity: 0.75; display: block; margin-top: 3px;
}
.hero-creds {
  position: absolute; top: 12px; right: -24px;
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.hero-cred-badge {
  background: rgba(9,9,11,0.92);
  border: 1px solid rgba(201,160,82,0.4);
  border-radius: var(--r-sm);
  padding: var(--sp-2) var(--sp-3);
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.08em; color: var(--gold-light);
  text-align: center; white-space: nowrap;
}

/* ======================== CARDS ======================== */
.card {
  background: var(--white); border-radius: var(--r-lg);
  padding: var(--sp-8); box-shadow: var(--shadow-md);
  transition: all var(--t-base);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.card--dark {
  background: var(--dark-2); color: var(--white);
  border: 1px solid var(--border-dark);
}
.card--dark:hover { border-color: rgba(201,160,82,0.3); }
.card-icon {
  width: 54px; height: 54px; border-radius: var(--r-md);
  background: var(--gold-pale); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: var(--sp-5);
  flex-shrink: 0;
}
.card--dark .card-icon { background: rgba(201,160,82,0.12); }
.card h3 { margin-bottom: var(--sp-3); font-size: 1.25rem; }
.card p  { font-size: 0.95rem; color: var(--text-mid); }
.card--dark p { color: rgba(255,255,255,0.62); }

/* ======================== AUDIENCE CARDS ======================== */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
.audience-card {
  border-radius: var(--r-xl); padding: var(--sp-12);
  position: relative; overflow: hidden;
}
.audience-card--dark {
  background: linear-gradient(145deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border: 1px solid rgba(201,160,82,0.18); color: var(--white);
}
.audience-card--light {
  background: var(--cream); border: 1px solid var(--border); color: var(--text-dark);
}
.audience-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3); border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
}
.audience-card--dark  .audience-tag { background: rgba(201,160,82,0.18); color: var(--gold-light); }
.audience-card--light .audience-tag { background: rgba(0,0,0,0.07); color: var(--text-mid); }
.audience-card h3 { font-size: clamp(1.4rem,2.5vw,1.75rem); margin-bottom: var(--sp-4); line-height: 1.2; }
.audience-card p { line-height: 1.7; margin-bottom: var(--sp-6); opacity: 0.85; }
.audience-list { list-style: none; padding: 0; margin: 0 0 var(--sp-8); }
.audience-list li {
  margin-bottom: var(--sp-3); padding-left: var(--sp-6);
  position: relative; font-size: 0.975rem; opacity: 0.88;
}
.audience-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--gold); font-weight: 600;
}
.audience-card--light .audience-list li::before { color: var(--gold-dark); }

/* ======================== BARRIER SECTION ======================== */
.barrier-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5);
}
.barrier-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: var(--sp-8); border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base);
}
.barrier-card:hover { box-shadow: var(--shadow-lg); }
.barrier-q {
  font-family: var(--font-serif); font-style: italic;
  font-size: var(--text-lg); color: var(--text-mid);
  margin-bottom: var(--sp-3); line-height: 1.4;
}
.barrier-a {
  font-weight: 600; color: var(--text-dark);
  font-size: 0.95rem; line-height: 1.6;
}

/* ======================== PROCESS STEPS ======================== */
.process-track {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: var(--sp-4); position: relative;
}
.step {
  text-align: center; position: relative;
}
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(201,160,82,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-4);
  font-family: var(--font-serif); font-size: 1.6rem;
  font-weight: 700; color: var(--gold-light);
  position: relative; z-index: 1;
  transition: background var(--t-base);
}
.step:hover .step-num { background: rgba(201,160,82,0.2); }
.step::after {
  content: ''; position: absolute;
  top: 31px; left: calc(50% + 36px);
  width: calc(100% - 72px); height: 1px;
  background: linear-gradient(to right, rgba(201,160,82,0.6), rgba(201,160,82,0.15));
}
.step:last-child::after { display: none; }
.step-title {
  font-family: var(--font-serif); font-size: 1.05rem;
  font-weight: 600; color: var(--white);
  margin-bottom: var(--sp-2);
}
.step-desc { font-size: var(--text-sm); color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ======================== STATS BAR ======================== */
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat {
  text-align: center; padding: var(--sp-10) var(--sp-4);
  border-right: 1px solid var(--border-dark);
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif); font-size: clamp(2.5rem,4vw,3.5rem);
  font-weight: 700; color: var(--gold-light); line-height: 1;
  display: block;
}
.stat-label {
  font-size: var(--text-sm); color: rgba(255,255,255,0.55);
  margin-top: var(--sp-2); line-height: 1.4; display: block;
}

/* ======================== CREDENTIALS ======================== */
.creds-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.cred-item {
  background: var(--cream); border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  border-left: 3px solid var(--gold);
}
.cred-code { font-size: 0.8rem; font-weight: 700; color: var(--gold-dark); letter-spacing: 0.06em; display: block; }
.cred-name { font-size: 0.72rem; color: var(--text-mid); margin-top: 1px; display: block; line-height: 1.4; }

/* ======================== GUIDE / LEAD MAGNET CARDS ======================== */
.guide-card {
  background: var(--dark-2); border: 1px solid rgba(201,160,82,0.18);
  border-radius: var(--r-lg); padding: var(--sp-8);
  display: flex; flex-direction: column; height: 100%;
  transition: all var(--t-base);
}
.guide-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(201,160,82,0.14);
}
.guide-cover {
  width: 100%; aspect-ratio: 3/2;
  background: linear-gradient(135deg,
    rgba(201,160,82,0.15) 0%,
    rgba(201,160,82,0.05) 100%);
  border: 1px solid rgba(201,160,82,0.22);
  border-radius: var(--r-md); margin-bottom: var(--sp-6);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.guide-cover-icon { font-size: 2.5rem; color: rgba(201,160,82,0.5); }
.guide-free-badge {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  background: var(--gold); color: var(--black);
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-full);
}
.guide-card h3 { font-size: 1.15rem; color: var(--white); margin-bottom: var(--sp-3); }
.guide-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.58); flex-grow: 1; margin-bottom: var(--sp-6); }

/* ======================== TESTIMONIALS ======================== */
.testimonial-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: var(--sp-8); box-shadow: var(--shadow-md);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.06em; margin-bottom: var(--sp-4); }
.testimonial-quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: var(--text-xl); line-height: 1.65;
  color: var(--text-dark); margin-bottom: var(--sp-6);
}
.testimonial-author { display: flex; align-items: center; gap: var(--sp-3); }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-pale); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.15rem;
  color: var(--gold-dark); font-weight: 600; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: var(--text-base); color: var(--text-dark); display: block; }
.testimonial-loc  { font-size: var(--text-sm); color: var(--text-muted); }

/* ======================== SERVICE AREAS ======================== */
.area-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-3);
}
.area-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md); padding: var(--sp-5) var(--sp-4);
  text-align: center; transition: all var(--t-base);
  text-decoration: none; display: block; color: var(--white);
}
.area-card:hover {
  border-color: var(--gold); background: rgba(201,160,82,0.1);
  color: var(--gold-light); transform: translateY(-2px);
}
.area-name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; display: block; margin-bottom: 2px; }
.area-state { font-size: var(--text-sm); color: rgba(255,255,255,0.4); }
.area-card:hover .area-state { color: rgba(201,160,82,0.65); }

/* ======================== FAQ ======================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: var(--sp-6) 0; font-family: var(--font-sans);
  font-size: var(--text-lg); font-weight: 600;
  color: var(--text-dark); cursor: pointer;
  display: flex; justify-content: space-between;
  align-items: center; gap: var(--sp-4); min-height: 60px;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--gold); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold);
  transition: transform var(--t-base);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding-bottom 0.5s ease; }
.faq-item.open .faq-a { max-height: 600px; padding-bottom: var(--sp-6); }
.faq-a p { font-size: var(--text-base); color: var(--text-mid); line-height: 1.8; }

/* ======================== FORMS ======================== */
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block; font-size: var(--text-base); font-weight: 600;
  color: var(--text-dark); margin-bottom: var(--sp-2);
}
.form-label--white { color: var(--white); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.9rem 1rem;
  font-family: var(--font-sans); font-size: var(--text-base); line-height: 1.5;
  color: var(--text-dark); background: var(--white);
  border: 2px solid var(--border); border-radius: var(--r-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  min-height: 54px; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,160,82,0.14);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: var(--text-sm); color: var(--text-muted); margin-top: var(--sp-1); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234b4b52' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-privacy { font-size: var(--text-sm); color: var(--text-muted); margin-top: var(--sp-3); line-height: 1.5; }
.form-privacy a { color: var(--gold-dark); }
.form-success {
  display: none; text-align: center; padding: var(--sp-10) var(--sp-8);
  background: rgba(201,160,82,0.08); border: 1px solid var(--gold);
  border-radius: var(--r-lg);
}
.form-success-icon { font-size: 2.5rem; display: block; margin-bottom: var(--sp-4); }
.form-success h3 { font-size: var(--text-2xl); margin-bottom: var(--sp-3); color: var(--gold-dark); }

/* ======================== CTA SECTIONS ======================== */
.cta-section {
  background: linear-gradient(145deg, var(--dark) 0%, var(--black) 100%);
  text-align: center; padding: var(--sp-24) 0;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(201,160,82,0.15);
  border-bottom: 1px solid rgba(201,160,82,0.15);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(201,160,82,0.07) 0%, transparent 65%);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-kicker {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: var(--sp-4);
}
.cta-section h2 { color: var(--white); margin-bottom: var(--sp-4); }
.cta-section p { color: rgba(255,255,255,0.65); font-size: var(--text-lg); max-width: 540px; margin: 0 auto var(--sp-8); }

/* Inline CTA Bar */
.inline-cta {
  background: linear-gradient(to right, rgba(201,160,82,0.08), rgba(201,160,82,0.04));
  border: 1px solid rgba(201,160,82,0.28);
  border-radius: var(--r-lg); padding: var(--sp-8) var(--sp-10);
  display: flex; align-items: center;
  justify-content: space-between; gap: var(--sp-8);
}
.inline-cta h3 { font-size: 1.4rem; margin-bottom: var(--sp-2); }
.inline-cta p  { color: var(--text-mid); margin: 0; }
.inline-cta--dark { background: linear-gradient(to right, rgba(201,160,82,0.1), rgba(201,160,82,0.04)); }
.inline-cta--dark h3 { color: var(--white); }
.inline-cta--dark p  { color: rgba(255,255,255,0.6); }

/* ======================== PAGE HERO (Interior Pages) ======================== */
.page-hero {
  background: var(--dark); color: var(--white);
  padding: calc(80px + var(--sp-20)) 0 var(--sp-20);
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(201,160,82,0.18);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(201,160,82,0.07) 0%, transparent 60%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: var(--sp-4); }
.page-hero .hero-lead {
  font-size: var(--text-xl); color: rgba(255,255,255,0.72);
  line-height: 1.65; max-width: 640px;
}
.breadcrumb {
  display: flex; align-items: center; gap: var(--sp-2);
  list-style: none; padding: 0; margin-bottom: var(--sp-5);
  font-size: var(--text-sm);
}
.breadcrumb li + li::before { content: '/'; margin-right: var(--sp-2); color: rgba(255,255,255,0.3); }
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb [aria-current="page"] { color: var(--gold-light); }

/* ======================== BLOG CARDS ======================== */
.blog-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: all var(--t-base); text-decoration: none; color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.blog-thumb {
  aspect-ratio: 16/9; width: 100%;
  background: linear-gradient(135deg, var(--gold-pale), var(--cream-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: var(--gold);
}
.blog-body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: var(--sp-3);
}
.blog-title {
  font-family: var(--font-serif); font-size: 1.2rem;
  line-height: 1.3; color: var(--text-dark);
  margin-bottom: var(--sp-3); flex: 1;
}
.blog-excerpt { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin-bottom: var(--sp-4); }
.blog-meta {
  font-size: var(--text-xs); color: var(--text-muted);
  padding-top: var(--sp-4); border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; margin-top: auto;
  margin-bottom: 0;
}

/* ======================== NAV DROPDOWNS ======================== */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a {
  display: flex; align-items: center; gap: 3px;
}
.nav-chevron {
  font-size: 0.55rem; opacity: 0.55; margin-top: 1px;
  transition: transform var(--t-fast), opacity var(--t-fast);
  display: inline-block;
}
.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg); opacity: 1;
}
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(201,160,82,0.22);
  border-radius: var(--r-md);
  padding: var(--sp-2) 0;
  min-width: 230px; list-style: none;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  box-shadow: 0 12px 48px rgba(0,0,0,0.45);
  z-index: 200;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible;
  pointer-events: auto; transform: translateY(0);
}
.nav-dropdown a {
  display: block; padding: 0.45rem 1.25rem;
  color: rgba(255,255,255,0.78); font-size: 0.83rem;
  font-weight: 400; white-space: nowrap;
  border-radius: 0; transition: all var(--t-fast);
}
.nav-dropdown a:hover {
  color: var(--gold-light);
  background: rgba(201,160,82,0.1);
  padding-left: 1.5rem;
}
.nav-dropdown-divider {
  height: 1px; background: rgba(255,255,255,0.08);
  margin: var(--sp-2) 0;
}

/* Se habla español — nav */
.nav-phone-wrap {
  display: flex; flex-direction: column; align-items: flex-end;
}
.nav-se-habla {
  font-size: 0.6rem; color: var(--gold);
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; line-height: 1;
  margin-top: 2px;
}

/* Mobile nav section labels */
.mobile-nav-section-label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); padding: 1.25rem 0 0.35rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 0.5rem; list-style: none;
}
.mobile-nav-section-label:first-child { border-top: none; padding-top: 0; }

/* ======================== ANNOUNCEMENT BAR ======================== */
.announcement-bar {
  background: var(--gold); color: var(--black); text-align: center;
  padding: var(--sp-2) var(--sp-6); font-size: var(--text-sm);
  font-weight: 600; letter-spacing: 0.01em; position: relative; z-index: 1001;
}
.announcement-bar a { color: var(--black); font-weight: 700; }

/* ======================== FOOTER ======================== */
.site-footer {
  background: var(--black); color: rgba(255,255,255,0.65);
  padding: var(--sp-24) 0 var(--sp-8);
  border-top: 1px solid rgba(201,160,82,0.18);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12); padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--border-dark); margin-bottom: var(--sp-10);
}
.footer-brand-name {
  font-family: var(--font-serif); font-size: var(--text-xl);
  font-weight: 600; color: var(--white);
  line-height: 1.2; margin-bottom: var(--sp-2);
  display: block;
}
.footer-brand-tag {
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: var(--sp-6);
}
.footer-info a {
  color: var(--gold-light); text-decoration: none; font-size: 0.9rem;
}
.footer-info a:hover { color: var(--white); text-decoration: underline; }
.footer-info p { font-size: 0.88rem; margin-bottom: var(--sp-2); line-height: 1.5; }
.footer-col h5 {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); margin-bottom: var(--sp-5);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: var(--sp-2); }
.footer-col a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.9rem; transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: flex-start;
  gap: var(--sp-4);
}
.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-legal a { color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--gold-light); }
.equal-housing {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
}
.equal-housing-icon {
  width: 28px; height: 28px; border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem; color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

/* ======================== ACCESSIBILITY TOOLBAR ======================== */
.a11y-bar {
  position: fixed; bottom: var(--sp-6); right: var(--sp-6);
  z-index: 900; display: flex; flex-direction: column; gap: var(--sp-2);
}
.a11y-btn {
  background: rgba(9,9,11,0.9); border: 1px solid rgba(201,160,82,0.4);
  color: var(--gold-light); width: 44px; height: 44px;
  border-radius: var(--r-sm); cursor: pointer; font-size: 0.85rem;
  font-weight: 700; display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast); font-family: var(--font-sans);
}
.a11y-btn:hover {
  background: var(--gold); color: var(--black);
  border-color: var(--gold);
}

/* ======================== UTILITY CLASSES ======================== */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-gold-l { color: var(--gold-light); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mb-0  { margin-bottom: 0 !important; }
.fw-700 { font-weight: 700; }
.serif  { font-family: var(--font-serif); }

/* ======================== ANIMATIONS ======================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up { animation: fadeUp 0.7s ease both; }
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.2s; }
.anim-d3 { animation-delay: 0.3s; }
.anim-d4 { animation-delay: 0.4s; }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1100px) {
  .process-track { grid-template-columns: repeat(3,1fr); }
  .step:nth-child(3)::after { display: none; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .area-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .audience-grid { grid-template-columns: 1fr; }
  .barrier-grid { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
  .inline-cta { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .barrier-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2,1fr); }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .process-track { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding: var(--sp-12) 0; }
  .cta-section { padding: var(--sp-16) 0; }
  .section { padding: var(--sp-16) 0; }
  .nav-right .nav-phone { font-size: 0.8rem; }
}
/* ============================================================
   ENHANCED MOBILE STYLES
   ============================================================ */

/* Sticky mobile CTA bar — appears on scroll past hero */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--black);
  border-top: 1px solid rgba(201,160,82,.3);
  padding: 0.75rem 1rem;
  gap: 0.625rem;
}
.mobile-cta-bar .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.875rem;
  padding: 0.75rem 0.5rem;
  min-height: 48px;
}
@media (max-width: 900px) {
  .mobile-cta-bar { display: flex; }
  /* Add bottom padding so content isn't hidden under sticky bar */
  body { padding-bottom: 80px; }
  body.mobile-cta-hidden .mobile-cta-bar { display: none; }
  body.mobile-cta-hidden { padding-bottom: 0; }
}

/* ── Nav improvements on mobile ── */
@media (max-width: 900px) {
  .site-nav { padding: 0 1rem; }
  .nav-inner { height: 60px; }
  .nav-logo { font-size: 1rem; }
  .nav-logo-subtitle { display: none; }
  .nav-right { gap: 0.75rem; }
  .nav-phone { font-size: 0.8rem !important; }
  .mobile-nav {
    top: 60px;
    max-height: calc(100dvh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-nav-link {
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    min-height: 52px;
    display: flex;
    align-items: center;
  }
  .mobile-nav-link + .mobile-nav-link { border-top: 1px solid rgba(255,255,255,.07); }
  .mobile-nav-actions {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .mobile-nav-actions .btn { width: 100%; justify-content: center; min-height: 52px; font-size: 1rem; }
}

/* ── Hero mobile ── */
@media (max-width: 640px) {
  .hero { padding-top: 60px; }
  .hero-content { padding: var(--sp-10) 0 var(--sp-8); }
  .hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.12em; }
  .hero h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); line-height: 1.2; }
  .hero-lead { font-size: 1rem; line-height: 1.65; }
  .hero-trust-bar {
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
  }
  .hero-trust-bar span { white-space: nowrap; }
  .creds-badges { flex-wrap: wrap; gap: 0.5rem; }
  .cred-badge { font-size: 0.7rem; padding: 0.3rem 0.6rem; }
}

/* ── Typography mobile ── */
@media (max-width: 640px) {
  :root { --text-base: 1rem; }
  h2 { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  h3 { font-size: clamp(1.1rem, 4vw, 1.4rem); }
  .section-label { font-size: 0.7rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  .hero-lead, .page-hero .hero-lead { font-size: 1rem; }
}

/* ── Sections/spacing mobile ── */
@media (max-width: 640px) {
  .section { padding: var(--sp-12) 0; }
  .section-header { margin-bottom: var(--sp-8); }
  .section-header p { font-size: 1rem; }
  .container { padding: 0 1rem; }
  .page-hero { padding: calc(60px + var(--sp-8)) 0 var(--sp-10); }
}

/* ── Cards mobile ── */
@media (max-width: 640px) {
  .card { padding: 1.25rem; }
  .card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
  .guide-card { flex-direction: column; }
  .guide-icon { width: 100%; height: 140px; border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .guide-body { padding: 1.25rem; }
  .stat-item { padding: var(--sp-4); }
  .stat-number { font-size: clamp(2rem, 8vw, 3rem); }
}

/* ── Audience cards mobile ── */
@media (max-width: 640px) {
  .audience-card { padding: 1.5rem 1.25rem; }
  .audience-card-header { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .audience-list li { font-size: 0.95rem; padding: 0.375rem 0; }
}

/* ── Process steps mobile ── */
@media (max-width: 640px) {
  .process-track { gap: var(--sp-6); }
  .step { padding: 1.25rem; }
  .step-num { width: 44px; height: 44px; font-size: 1.1rem; }
}

/* ── Testimonials mobile ── */
@media (max-width: 640px) {
  .testimonial-card { padding: 1.25rem; }
  .testimonial-quote { font-size: 0.95rem; line-height: 1.7; }
  .testimonial-quote::before { font-size: 2.5rem; top: -0.5rem; left: -0.25rem; }
}

/* ── Forms mobile ── */
@media (max-width: 640px) {
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 1rem; /* prevent iOS auto-zoom */
    min-height: 48px;
  }
  .form-textarea { min-height: 100px; }
  .form-group { margin-bottom: 1rem; }
  .form-label { font-size: 0.9rem; }
  /* Stack side-by-side name fields */
  .form-row-2 { grid-template-columns: 1fr !important; }
}

/* ── CTA section mobile ── */
@media (max-width: 640px) {
  .cta-section { padding: var(--sp-12) 0; }
  .cta-section h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .cta-section p { font-size: 1rem; }
  .cta-kicker { font-size: 0.7rem; }
  .inline-cta { gap: 1.25rem; }
  .inline-cta-text h3 { font-size: 1.2rem; }
}

/* ── FAQ mobile ── */
@media (max-width: 640px) {
  .faq-question { font-size: 1rem; padding: 1rem 0; }
  .faq-answer { font-size: 0.95rem; }
  .faq-icon { width: 28px; height: 28px; flex-shrink: 0; }
}

/* ── Footer mobile ── */
@media (max-width: 640px) {
  .footer-brand p { font-size: 0.875rem; }
  .footer-col h4 { font-size: 0.8rem; margin-bottom: 0.75rem; }
  .footer-col ul li a { font-size: 0.875rem; }
  .footer-bottom { flex-direction: column; gap: 0.625rem; text-align: center; font-size: 0.8rem; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .footer-legal a { font-size: 0.8rem; }
}

/* ── Blog mobile ── */
@media (max-width: 640px) {
  .blog-card { flex-direction: column; }
  .blog-card-img { width: 100%; height: 180px; }
  .blog-card-body { padding: 1.25rem; }
  .blog-card h3 { font-size: 1.05rem; }
}

/* ── About / split layout mobile ── */
@media (max-width: 640px) {
  .about-layout { grid-template-columns: 1fr !important; gap: var(--sp-8) !important; }
  .about-photo-wrap { order: -1; }
  .about-photo { max-width: 260px; margin: 0 auto; }
}

/* ── Service area cards mobile ── */
@media (max-width: 640px) {
  .area-grid { grid-template-columns: 1fr !important; }
  .area-card { padding: 1.125rem; }
}

/* ── Announcement bar mobile ── */
@media (max-width: 640px) {
  .announcement-bar { font-size: 0.75rem; padding: 0.5rem 1rem; }
  .announcement-bar a { display: block; margin-top: 0.125rem; }
}

/* ── Breadcrumb mobile ── */
@media (max-width: 640px) {
  .breadcrumb { font-size: 0.8rem; gap: 0.25rem; }
}

/* ── County / service area page grids mobile ── */
@media (max-width: 640px) {
  .town-list { grid-template-columns: 1fr 1fr !important; font-size: 0.9rem; }
}

/* ── Smooth scrolling + tap highlight ── */
html { scroll-behavior: smooth; }
* { -webkit-tap-highlight-color: rgba(201,160,82,.18); }
button, a, [role="button"] { touch-action: manipulation; }

/* ── Accessibility toolbar mobile ── */
@media (max-width: 640px) {
  .a11y-toggle-btn { font-size: 0.8rem; padding: 0.375rem 0.625rem; }
}

@media (forced-colors: active) {
  .btn--primary { border: 2px solid ButtonText; }
}
@media print {
  .site-nav, .site-footer, .a11y-bar, .announcement-bar { display: none !important; }
  body { color: black; background: white; }
  h1,h2,h3 { color: black; }
}
