/* ================================================================
   VAL Chiropractic — Full Design System (Stage 2)
   Palette · Typography · Layout · Components · Responsive
================================================================ */

/* ── Custom properties ──────────────────────────────────────── */
:root {
  /* Brand palette */
  --g-900: #0e2017;
  --g-800: #1a3628;
  --g-700: #245238;
  --g-600: #2d7a4f;
  --g-500: #3a9562;
  --g-400: #5cb57e;
  --g-300: #8ed4a9;
  --g-200: #c1e8d2;
  --g-100: #e6f4ec;
  --g-50:  #f2f9f5;

  --cream-100: #faf8f5;
  --cream-200: #f3f0ea;
  --cream-300: #e8e2d6;

  --text:       #1a1a1a;
  --text-muted: #545454;
  --text-light: #8a8a8a;
  --white:      #ffffff;
  --border:     #dde8e2;

  /* Type */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Space scale (4px base) */
  --s1: .25rem;  --s2: .5rem;   --s3: .75rem;  --s4: 1rem;
  --s5: 1.25rem; --s6: 1.5rem;  --s8: 2rem;    --s10: 2.5rem;
  --s12: 3rem;   --s16: 4rem;   --s20: 5rem;

  /* Elevation */
  --shadow-xs: 0 1px 3px rgba(0,0,0,.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 6px 20px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 36px rgba(0,0,0,.11), 0 4px 10px rgba(0,0,0,.05);

  /* Shape */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-pill: 100px;

  /* Motion */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --t-fast: 150ms; --t-med: 260ms; --t-slow: 420ms;

  /* Layout */
  --header-h: 70px;
}

/* ── Motion kill switch ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;          /* both html AND body — iOS Safari fix */
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.72;
  color: var(--text);
  background: var(--cream-100);
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── Accessibility ──────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -200%; left: 1rem;
  background: var(--g-600); color: var(--white);
  padding: .625rem 1.25rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600; font-size: .9rem; z-index: 9999;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 0; }
:focus-visible {
  outline: 2.5px solid var(--g-500);
  outline-offset: 3px;
  border-radius: 3px;
}
.hidden { display: none !important; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--serif);
  line-height: 1.2;
  color: var(--g-800);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: .02em; }
p  { margin-bottom: var(--s4); color: var(--text-muted); }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); }

/* ── Global layout ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: var(--s20) 0; }
section[id], footer[id] { scroll-margin-top: calc(var(--header-h) + .75rem); }

.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--g-600);
  background: var(--g-100);
  padding: .28rem .8rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--s4);
}
.section-subhead {
  font-size: 1.08rem; color: var(--text-muted);
  max-width: 660px; margin: var(--s4) 0 var(--s10);
  line-height: 1.78;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .45rem; padding: .72rem 1.6rem;
  border-radius: var(--r-sm);
  font-family: var(--sans); font-weight: 600; font-size: .875rem;
  line-height: 1; cursor: pointer;
  border: 2px solid transparent;
  min-height: 44px; white-space: nowrap;
  text-decoration: none;
  transition:
    background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease),
    box-shadow var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease);
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--g-600); color: var(--white); border-color: var(--g-600);
}
.btn-primary:hover {
  background: var(--g-700); border-color: var(--g-700); color: var(--white);
  box-shadow: 0 4px 16px rgba(45,122,79,.38);
}
.btn-outline {
  background: transparent; color: var(--g-600); border-color: var(--g-600);
}
.btn-outline:hover { background: var(--g-600); color: var(--white); }
.btn-secondary {
  background: var(--white); color: var(--g-700); border-color: rgba(255,255,255,.55);
}
.btn-secondary:hover { background: var(--cream-100); color: var(--g-700); }
.btn-sm  { padding: .48rem .9rem; font-size: .78rem; min-height: 38px; }
.btn-lg  { padding: .88rem 2rem; font-size: .96rem; }
.btn-full { width: 100%; }

/* ── Photo placeholder ──────────────────────────────────────── */
.photo-placeholder {
  background: var(--g-50);
  border: 2px dashed var(--g-300);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--s4); color: var(--g-400);
  min-height: 380px; padding: var(--s8); text-align: center;
}
.photo-placeholder p  { color: var(--g-500); font-size: .85rem; }
.photo-placeholder small { color: var(--g-400); }

/* ── Scroll-reveal (driven by IntersectionObserver in JS) ───── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ================================================================
   HEADER
================================================================ */
#site-header {
  position: sticky; top: 0; z-index: 400;
  background: rgba(250,248,245,.93);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-med) var(--ease);
}
#site-header.is-scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center;
  gap: var(--s6); height: var(--header-h);
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: .55rem;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  font-family: var(--serif); font-size: 1.65rem; font-weight: 700;
  color: var(--g-600); letter-spacing: -.03em; line-height: 1;
}
.logo-text {
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  color: var(--g-800); letter-spacing: .05em; text-transform: uppercase;
  border-left: 1.5px solid var(--border); padding-left: .6rem; line-height: 1;
}

/* Desktop nav */
#primary-nav { margin-left: auto; }
#primary-nav ul { display: flex; align-items: center; gap: 2px; list-style: none; }
#primary-nav a {
  font-size: .84rem; font-weight: 500; color: var(--g-800);
  padding: .42rem .72rem; border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
#primary-nav a:hover { background: var(--g-100); color: var(--g-600); }

/* Header CTAs */
.header-ctas { display: flex; align-items: center; gap: var(--s3); flex-shrink: 0; }
.header-call { display: none; }   /* revealed at ≥1024px */

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: .6rem; border-radius: var(--r-sm); flex-shrink: 0;
}
.hamburger-line {
  display: block; height: 2px; width: 22px;
  background: var(--g-800); border-radius: 2px;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav drawer ──────────────────────────────────────────
   iOS Safari: position absolute + explicit px + visibility hidden
   so closed drawer can never cause horizontal scroll
──────────────────────────────────────────────────────────────── */
#mobile-nav {
  position: absolute;
  top: var(--header-h); left: 0; right: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: var(--s6) var(--s6) var(--s8);
  /* CLOSED */
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;      /* hides from AT + blocks pointer when closed */
  pointer-events: none;
  transition:
    transform var(--t-med) var(--ease),
    opacity   var(--t-med) var(--ease),
    visibility var(--t-med) var(--ease);
  z-index: 390;
}
#mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#mobile-nav ul { list-style: none; margin-bottom: var(--s6); }
#mobile-nav li { border-bottom: 1px solid var(--border); }
#mobile-nav li a {
  display: block; padding: .88rem 0;
  font-size: 1rem; font-weight: 500; color: var(--g-800);
  transition: color var(--t-fast);
}
#mobile-nav li a:hover { color: var(--g-600); }
.mobile-nav-ctas { display: flex; flex-direction: column; gap: var(--s3); }
body.nav-open { overflow: hidden; }

/* ================================================================
   HERO
================================================================ */
#hero {
  background: linear-gradient(140deg, var(--g-900) 0%, var(--g-800) 50%, var(--g-700) 100%);
  position: relative; overflow: hidden;
  padding: var(--s20) 0;
  min-height: calc(88vh - var(--header-h));
  display: flex; align-items: center;
}
/* Decorative orbs */
#hero::before, #hero::after {
  content: ''; position: absolute; border-radius: 50%;
  background: var(--white); opacity: .055; pointer-events: none;
}
#hero::before { width: 620px; height: 620px; top: -220px; right: -160px; }
#hero::after  { width: 380px; height: 380px; bottom: -130px; left: -90px; }

.hero-bg-image {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; filter: brightness(.42) saturate(.9);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }

#hero-heading {
  color: var(--white); font-size: clamp(2rem, 5.4vw, 3.5rem);
  line-height: 1.14; margin-bottom: var(--s5);
  text-shadow: 0 2px 14px rgba(0,0,0,.22);
}
.hero-subhead {
  color: rgba(255,255,255,.87); font-size: clamp(.98rem, 1.8vw, 1.18rem);
  max-width: 580px; margin-bottom: var(--s8); line-height: 1.74;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s4); margin-bottom: var(--s10); }

.trust-strip {
  display: flex; flex-wrap: wrap; gap: var(--s6); list-style: none;
  padding-top: var(--s8); border-top: 1px solid rgba(255,255,255,.18);
}
.trust-item { display: flex; flex-direction: column; gap: .2rem; }
.trust-item strong {
  font-family: var(--serif); font-size: 1.22rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.trust-item span {
  font-size: .7rem; font-weight: 500; color: rgba(255,255,255,.68);
  text-transform: uppercase; letter-spacing: .07em;
}

/* ================================================================
   PERSONAL INJURY
================================================================ */
#personal-injury { background: var(--cream-100); }

.pi-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s6); margin-bottom: var(--s10);
}
.pi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s8) var(--s6);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.pi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pi-icon {
  width: 54px; height: 54px;
  background: var(--g-100); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--g-600); margin-bottom: var(--s5);
  flex-shrink: 0;
}
.pi-card h3 { margin-bottom: var(--s3); }
.pi-card p  { font-size: .9rem; margin: 0; }

.pi-steps-box {
  background: linear-gradient(138deg, var(--g-900) 0%, var(--g-800) 100%);
  border-radius: var(--r-lg);
  padding: var(--s10) var(--s10);
}
.pi-steps-box h3 { color: var(--white); margin-bottom: var(--s6); }
.pi-steps { list-style: none; counter-reset: pi; display: flex; flex-direction: column; gap: var(--s4); margin-bottom: var(--s8); }
.pi-steps li {
  counter-increment: pi;
  display: flex; gap: var(--s4); align-items: flex-start;
  font-size: .93rem; color: rgba(255,255,255,.87); line-height: 1.65;
}
.pi-steps li::before {
  content: counter(pi); flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; margin-top: .14rem;
}
.pi-steps li strong { color: var(--white); }
.pi-steps li a { color: var(--g-300); text-decoration: underline; }

/* ================================================================
   CONDITIONS ACCORDION
================================================================ */
#conditions { background: var(--white); }

.accordion { display: flex; flex-direction: column; gap: var(--s3); }

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.accordion-item[open] {
  border-color: var(--g-300);
  box-shadow: 0 0 0 3px var(--g-100);
}
.accordion-item:not([open]):hover { box-shadow: var(--shadow-sm); }

.accordion-header {
  display: flex; align-items: center; gap: var(--s4);
  padding: var(--s5) var(--s6); cursor: pointer;
  list-style: none; user-select: none;
  min-height: 64px; -webkit-tap-highlight-color: transparent;
}
.accordion-header::-webkit-details-marker,
.accordion-header::marker { display: none; }

.accordion-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--g-100); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--g-600);
  transition: background var(--t-fast), color var(--t-fast);
}
.accordion-item[open] .accordion-icon { background: var(--g-600); color: var(--white); }

.accordion-title {
  font-family: var(--serif); font-size: 1.04rem; font-weight: 600;
  color: var(--g-800); flex: 1; line-height: 1.3;
}
.accordion-chevron {
  flex-shrink: 0; color: var(--text-light);
  transition: transform var(--t-med) var(--ease);
}
.accordion-item[open] .accordion-chevron { transform: rotate(180deg); }

.accordion-body {
  padding: 0 var(--s6) var(--s7);
  /* indent body to align with title text */
  padding-left: calc(var(--s6) + 40px + var(--s4));
}
.accordion-body h3 { color: var(--g-700); margin-bottom: var(--s3); font-size: 1.02rem; }
.accordion-body p  { font-size: .93rem; line-height: 1.76; margin-bottom: var(--s3); }
.accordion-body p:last-child { margin-bottom: 0; }

/* ================================================================
   ABOUT DR. NGUYEN
================================================================ */
#about { background: var(--cream-100); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: var(--s16); align-items: start;
}
.about-photo img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; }

.about-subtitle {
  font-size: .88rem; font-weight: 500; color: var(--g-600);
  margin-bottom: var(--s6); letter-spacing: .02em;
}
.about-content h2 { margin-bottom: var(--s2); }
.about-content p   { font-size: .94rem; }

.credentials-list {
  list-style: none; display: flex; flex-direction: column; gap: var(--s3);
  margin-top: var(--s6); padding-top: var(--s6);
  border-top: 1px solid var(--border);
}
.credentials-list li {
  display: flex; align-items: flex-start; gap: var(--s3);
  font-size: .9rem; color: var(--text-muted); line-height: 1.55;
}
.credentials-list svg { flex-shrink: 0; margin-top: .14rem; }

/* ================================================================
   HOW IT WORKS
================================================================ */
#how-it-works { background: var(--g-800); }
#how-it-works .section-label { background: rgba(255,255,255,.1); color: var(--g-200); }
#how-it-works h2 { color: var(--white); }
#how-it-works .section-subhead { color: rgba(255,255,255,.72); }

.steps-list {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--s5); counter-reset: steps;
}
.step-item {
  background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: var(--s8) var(--s6);
  transition: background var(--t-med);
}
.step-item:hover { background: rgba(255,255,255,.1); }
.step-number {
  font-family: var(--serif); font-size: 3rem; font-weight: 700; line-height: 1;
  color: rgba(255,255,255,.13); margin-bottom: var(--s5); letter-spacing: -.04em;
}
.step-content h3 { color: var(--white); font-size: 1.08rem; margin-bottom: var(--s3); }
.step-content p  { color: rgba(255,255,255,.72); font-size: .88rem; line-height: 1.72; margin: 0; }

/* ================================================================
   WHY CHOOSE
================================================================ */
#why-choose { background: var(--white); }

.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--s6);
}
.benefit-card {
  padding: var(--s8) var(--s6);
  border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--cream-100);
  transition: box-shadow var(--t-med), transform var(--t-med);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.benefit-icon {
  width: 52px; height: 52px;
  background: var(--g-100); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--g-600); margin-bottom: var(--s5);
}
.benefit-card h3 { font-size: 1.08rem; margin-bottom: var(--s3); }
.benefit-card p  { font-size: .88rem; margin: 0; }

/* ================================================================
   REVIEWS
================================================================ */
#reviews { background: var(--cream-100); }

.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--s6); margin-bottom: var(--s10);
}
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: var(--s8) var(--s6);
  box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column; gap: var(--s4);
  transition: box-shadow var(--t-med);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { font-size: 1.05rem; color: #f59e0b; letter-spacing: .04em; }
.stars-gold { color: #f59e0b; }
.trust-item .stars-gold { color: #f59e0b; }
.star-half {
  display: inline-block; position: relative; color: #d1d5db;
}
.star-half::before {
  content: '★'; position: absolute; left: 0; top: 0;
  color: #f59e0b; clip-path: inset(0 50% 0 0);
}
.review-card blockquote p {
  font-style: italic; font-size: .93rem;
  color: var(--text-muted); line-height: 1.72; margin: 0;
}
.review-author {
  display: flex; flex-direction: column; gap: .22rem;
  border-top: 1px solid var(--border); padding-top: var(--s4); margin-top: auto;
}
.review-author strong { font-size: .88rem; color: var(--text); }
.review-author span   { font-size: .78rem; color: var(--text-light); }

.review-ctas { text-align: center; }
.review-ctas > p { margin-bottom: var(--s5); font-size: 1rem; }
.review-links { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s4); }
.review-btn { gap: .5rem; }

/* ================================================================
   LOCATION & HOURS
================================================================ */
#location { background: var(--white); }

.location-grid {
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: var(--s10); align-items: start;
}
.map-wrapper {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.map-wrapper iframe { display: block; }

.location-info { display: flex; flex-direction: column; gap: var(--s8); }
.info-block { display: flex; flex-direction: column; gap: var(--s4); }
.info-block h3 {
  display: flex; align-items: center; gap: var(--s2);
  font-family: var(--sans); font-size: .95rem; font-weight: 600;
  color: var(--g-800); letter-spacing: 0; line-height: 1;
}
.info-block address, .info-block p {
  font-size: .92rem; color: var(--text-muted); margin: 0; line-height: 1.68;
}
.hours-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden;
}
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .48rem var(--s4);
  border-bottom: 1px solid var(--border); font-size: .88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row:nth-child(even) { background: var(--cream-200); }
.hours-row dt { font-weight: 500; color: var(--text); }
.hours-row dd { color: var(--text-muted); }

.phone-link {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  color: var(--g-600); letter-spacing: -.01em;
}
.phone-link:hover { color: var(--g-700); }
.parking-note {
  display: flex; align-items: center; gap: var(--s2);
  font-size: .82rem; color: var(--text-light); margin-top: var(--s1) !important;
}

/* ================================================================
   CONTACT
================================================================ */
#contact { background: var(--cream-100); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.65fr;
  gap: var(--s10); align-items: start;
}
.contact-info h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  margin-bottom: var(--s5); color: var(--g-800);
}
.contact-list {
  list-style: none; display: flex; flex-direction: column; gap: var(--s5);
  margin-bottom: var(--s8);
}
.contact-list li {
  display: flex; align-items: flex-start; gap: var(--s3);
  font-size: .93rem; color: var(--text-muted);
}
.contact-list svg { flex-shrink: 0; margin-top: .2rem; color: var(--g-600); }
.contact-list a { color: var(--g-600); font-weight: 500; }
.contact-list a:hover { color: var(--g-700); }
.contact-list address { color: var(--text-muted); }

.accident-cta-box {
  background: linear-gradient(138deg, var(--g-900), var(--g-800));
  border-radius: var(--r-md); padding: var(--s6);
}
.accident-cta-box strong {
  display: block; color: var(--white); font-size: .96rem; margin-bottom: var(--s2);
}
.accident-cta-box p { font-size: .85rem; color: rgba(255,255,255,.78); margin-bottom: var(--s5); }

/* Form */
#contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--s10);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: var(--s5);
}
.form-group { display: flex; flex-direction: column; gap: var(--s2); }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }

label {
  font-size: .82rem; font-weight: 600;
  color: var(--g-800); letter-spacing: .01em;
}
label span[aria-hidden] { color: var(--g-600); margin-left: .2em; }

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%; padding: .72rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--sans); font-size: .93rem; color: var(--text);
  background: var(--cream-100);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  min-height: 44px; appearance: none; -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-light); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--g-500);
  box-shadow: 0 0 0 3px var(--g-100);
  background: var(--white);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23545454' stroke-width='2'%3E%3Cpolyline points='1 1 6 7 11 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; cursor: pointer;
}
textarea { resize: vertical; min-height: 118px; line-height: 1.62; }
.form-note {
  font-size: .76rem; color: var(--text-light);
  text-align: center; margin: 0; line-height: 1.55;
}

/* ================================================================
   FOOTER
================================================================ */
#site-footer { background: var(--g-800); color: rgba(255,255,255,.72); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr;
  gap: var(--s10); padding: var(--s16) 0 var(--s12);
}
.footer-brand .logo-mark { color: var(--g-300); }
.footer-brand .logo-text { color: rgba(255,255,255,.78); border-color: rgba(255,255,255,.18); }
.footer-brand .site-logo  { margin-bottom: var(--s4); }
.footer-brand > p { font-size: .86rem; max-width: 240px; line-height: 1.68; margin-bottom: var(--s5); }

.footer-social { display: flex; gap: var(--s3); flex-wrap: wrap; }
.footer-social a {
  display: flex; align-items: center; gap: .42rem;
  font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  padding: .42rem .8rem; border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
.footer-social a:hover { background: rgba(255,255,255,.14); color: var(--white); }

.footer-col h4 {
  font-family: var(--sans); font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-bottom: var(--s4);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s3); }
.footer-col ul a {
  font-size: .86rem; color: rgba(255,255,255,.62);
  transition: color var(--t-fast);
}
.footer-col ul a:hover { color: var(--white); }
.footer-col address,
.footer-col p {
  font-size: .86rem; color: rgba(255,255,255,.62);
  margin-bottom: var(--s3); line-height: 1.68;
}
.footer-col p a { color: rgba(255,255,255,.62); }
.footer-col p a:hover { color: var(--white); }
#footer-email-link a { color: rgba(255,255,255,.62); }
#footer-email-link a:hover { color: var(--white); }
.footer-hours { font-size: .86rem; line-height: 1.72; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding: var(--s5) 0;
}
.footer-bottom p {
  font-size: .76rem; color: rgba(255,255,255,.36);
  margin: 0; text-align: center;
}

/* ================================================================
   STICKY MOBILE CALL BAR
================================================================ */
.mobile-call-bar { display: none; }

@media (max-width: 767px) {
  .mobile-call-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 500; background: var(--g-900);
    border-top: 1px solid rgba(255,255,255,.09);
    box-shadow: 0 -4px 18px rgba(0,0,0,.22);
  }
  .mobile-call-btn,
  .mobile-book-btn {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: .45rem; min-height: 56px;
    font-family: var(--sans); font-weight: 600; font-size: .88rem;
    text-decoration: none;
  }
  .mobile-call-btn { background: var(--g-600); color: var(--white); }
  .mobile-book-btn {
    background: var(--g-800); color: rgba(255,255,255,.82);
    border-left: 1px solid rgba(255,255,255,.08);
  }
  body { padding-bottom: 56px; }
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
================================================================ */

/* Show phone CTA in header on wide screens */
@media (min-width: 1024px) { .header-call { display: flex; } }

/* Collapse desktop nav → hamburger */
@media (max-width: 1023px) {
  #primary-nav            { display: none; }
  .nav-toggle             { display: flex; }
  .header-ctas .btn-primary { display: none; }
}

/* Stack about / location / contact at medium */
@media (max-width: 900px) {
  .about-grid    { grid-template-columns: 1fr; gap: var(--s10); }
  .about-photo   { max-width: 460px; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .footer-brand  { grid-column: 1 / -1; }
  .accordion-body { padding-left: var(--s6); }
}

/* Mobile */
@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .container { padding: 0 1.1rem; }

  #hero { min-height: auto; padding: 3.5rem 0 3rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }

  .pi-cards    { grid-template-columns: 1fr; }
  .pi-steps-box { padding: var(--s6) var(--s5); }

  .steps-list  { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }

  .accordion-header { padding: var(--s4); gap: var(--s3); }
  .accordion-body   { padding: 0 var(--s4) var(--s5); }

  .form-row { grid-template-columns: 1fr; }
  #contact-form { padding: var(--s6) var(--s5); }

  .footer-grid { grid-template-columns: 1fr; gap: var(--s8); }
  .footer-brand { grid-column: auto; }

  .review-links { flex-direction: column; align-items: center; }
}

/* Smallest iPhones */
@media (max-width: 375px) {
  .logo-text { display: none; }
  .trust-strip { flex-direction: column; gap: var(--s4); }
  #hero-heading { font-size: 1.75rem; }
}

/* ── Nav dropdown ───────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  background: none; border: none; cursor: pointer;
  font: inherit; font-size: .9rem; font-weight: 500;
  color: var(--text-muted); padding: .44rem .75rem;
  border-radius: var(--r-sm);
  display: flex; align-items: center; gap: .3rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-dropdown-btn:hover { background: var(--g-100); color: var(--g-600); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--shadow-md);
  list-style: none; min-width: 200px; padding: .5rem 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--t-med), visibility var(--t-med), transform var(--t-med);
  z-index: 200;
}
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu li a {
  display: block; padding: .55rem 1rem;
  font-size: .88rem; color: var(--text-muted);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-dropdown-menu li a:hover { background: var(--g-50); color: var(--g-700); }

/* ── Service page inner layout ──────────────────────────────── */
.service-hero {
  background: var(--g-800);
  padding: calc(var(--header-h) + var(--s16)) 0 var(--s16);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(90,181,126,.07);
  top: -150px; right: -100px; pointer-events: none;
}
.service-hero h1 { font-family: var(--serif); color: var(--white); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: var(--s4); }
.service-hero p { color: rgba(255,255,255,.78); max-width: 640px; margin: 0 auto var(--s6); font-size: 1.05rem; }
.service-hero .btn-primary { display: inline-flex; gap: .5rem; align-items: center; }
.service-body { max-width: 820px; margin: 0 auto; padding: var(--s16) var(--s4); }
.service-body h2 { font-family: var(--serif); font-size: 1.55rem; color: var(--g-800); margin: var(--s10) 0 var(--s4); }
.service-body h3 { font-size: 1.1rem; font-weight: 600; color: var(--g-700); margin: var(--s6) 0 var(--s3); }
.service-body p { color: var(--text-muted); margin-bottom: var(--s4); line-height: 1.78; }
.service-body ul, .service-body ol { color: var(--text-muted); margin: var(--s3) 0 var(--s5) var(--s5); line-height: 1.8; }
.service-body li { margin-bottom: var(--s2); }
.service-cta-box {
  background: var(--g-800); border-radius: var(--r-lg);
  padding: var(--s10) var(--s8); text-align: center;
  margin: var(--s12) 0;
}
.service-cta-box h2 { font-family: var(--serif); color: var(--white); margin-bottom: var(--s4); }
.service-cta-box p { color: rgba(255,255,255,.72); margin-bottom: var(--s6); }
.service-cta-box .btn-primary { display: inline-flex; }
.service-breadcrumb { font-size: .85rem; color: var(--text-light); margin-bottom: var(--s6); }
.service-breadcrumb a { color: var(--g-600); text-decoration: none; }
.service-breadcrumb a:hover { text-decoration: underline; }
.service-links { display: flex; flex-wrap: wrap; gap: var(--s3); margin: var(--s6) 0; }
.service-links a {
  background: var(--g-50); border: 1px solid var(--g-200);
  color: var(--g-700); text-decoration: none;
  padding: .4rem .9rem; border-radius: var(--r-pill);
  font-size: .85rem; font-weight: 500;
  transition: background var(--t-fast), color var(--t-fast);
}
.service-links a:hover { background: var(--g-100); color: var(--g-800); }
.faq-section { margin: var(--s12) 0; }
.faq-section h2 { font-family: var(--serif); font-size: 1.55rem; color: var(--g-800); margin-bottom: var(--s6); }
.location-chip {
  display: inline-block; background: var(--g-100); color: var(--g-700);
  border-radius: var(--r-pill); padding: .25rem .75rem;
  font-size: .82rem; font-weight: 500; margin: .2rem;
}

/* ── Service page enhancements ──────────────────────────────── */
.service-trust {
  display: flex; flex-wrap: wrap; gap: var(--s8); justify-content: center;
  margin-top: var(--s8); padding-top: var(--s8);
  border-top: 1px solid rgba(255,255,255,.18);
}
.service-trust-item { display: flex; flex-direction: column; align-items: center; gap: .2rem; text-align: center; }
.service-trust-item strong { color: var(--white); font-family: var(--serif); font-size: 1.15rem; line-height: 1; }
.service-trust-item span { font-size: .7rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .07em; }
.service-hero-btns { display: flex; flex-wrap: wrap; gap: var(--s4); justify-content: center; margin-bottom: var(--s8); }
.service-content { background: var(--white); }
.service-content-inner { max-width: 820px; margin: 0 auto; padding: var(--s16) var(--s4); }
.service-content-inner h2 {
  font-family: var(--serif); font-size: 1.5rem; color: var(--g-800);
  margin: var(--s10) 0 var(--s4); padding-left: var(--s4);
  border-left: 3px solid var(--g-500);
}
.service-content-inner h2:first-of-type { margin-top: 0; }
.service-content-inner p { color: var(--text-muted); line-height: 1.78; margin-bottom: var(--s4); }
.service-content-inner ul { color: var(--text-muted); padding-left: 0; list-style: none; margin-bottom: var(--s5); }
.service-content-inner ul li { padding: var(--s2) 0 var(--s2) var(--s6); position: relative; line-height: 1.72; }
.service-content-inner ul li::before {
  content: ''; position: absolute; left: 0; top: .85em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--g-500);
}
.service-faq-section { background: var(--g-800); padding: var(--s16) 0; }
.service-faq-section .section-label { background: rgba(255,255,255,.1); color: var(--g-200); }
.service-faq-section h2 { font-family: var(--serif); color: var(--white); font-size: clamp(1.6rem,3vw,2.1rem); margin-bottom: var(--s8); }
.service-faq-section .accordion-item { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.service-faq-section .accordion-header { color: rgba(255,255,255,.9); }
.service-faq-section .accordion-title { color: rgba(255,255,255,.9); }
.service-faq-section .accordion-body p { color: rgba(255,255,255,.72); }
.service-faq-section .accordion-chevron svg { stroke: rgba(255,255,255,.6); }
.service-highlight {
  background: var(--g-50); border-left: 3px solid var(--g-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--s5) var(--s6); margin: var(--s6) 0;
}
.service-highlight p { margin: 0; color: var(--text); }
.service-bottom-cta { padding: var(--s16) 0; background: var(--cream-100); }
