/* surfaced site system base css - Clean, professional, no glass effects */
/* Design principles: Clear hierarchy, subtle shadows, accessible contrast, fast loading */

:root {
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --layout-max-width: 1120px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --space-section: clamp(3rem, 6vw, 5rem);
  --space-gap: clamp(1rem, 2vw, 1.25rem);
  --shadow-card: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 4px 16px rgba(15, 23, 42, 0.10);
  --shadow-hero: 0 8px 32px rgba(15, 23, 42, 0.12);
  --transition-fast: 0.15s ease;
  --transition-base: 0.22s ease;
  
  /* Header height for calculations */
  --header-height: 64px;
  --top-cta-height: 52px;
  
  /* Clean color palette - no glass effects, solid backgrounds */
  --color-page: #f8f9fb;
  --color-surface: #ffffff;
  --color-surface-alt: #f1f4f8;
  --color-surface-dark: #1e3a5f;
  --color-brand: #1f5f95;
  --color-brand-alt: #2a6faa;
  --color-brand-light: #e8f1f8;
  --color-accent: #e8943a;
  --color-text: #1a2332;
  --color-text-muted: #5a6a7e;
  --color-text-inverse: #ffffff;
  --color-line: #e2e6ed;
  --color-success: #1a7f4b;
  --color-error: #c44b1a;
  --color-button-text: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
iframe { border: 0; max-width: 100%; }
button, input, select, textarea { font: inherit; }

/* Custom scrollbar - subtle */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-page); }
::-webkit-scrollbar-thumb { background: var(--color-line); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-text-muted); }

/* Selection styling */
::selection { background: var(--color-brand); color: var(--color-text-inverse); }

/* Focus visible for accessibility */
:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 2px; border-radius: 3px; }

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

.container { width: min(calc(100% - 32px), var(--layout-max-width)); margin: 0 auto; }
.section { padding: var(--space-section) 0; }
.section--alt { background: var(--color-surface-alt); }

/* Section headers - clean typography hierarchy */
.section__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section__header { max-width: 720px; margin-bottom: 28px; }
.section__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.section__intro { margin: 0; color: var(--color-text-muted); font-size: 1.05rem; max-width: 680px; }

/* Clean buttons - no glass effects */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button--primary { 
  background: var(--color-brand); 
  color: var(--color-button-text); 
  box-shadow: 0 2px 8px rgba(31, 95, 149, 0.25);
}
.button--primary:hover { 
  background: var(--color-brand-alt); 
  box-shadow: 0 4px 12px rgba(31, 95, 149, 0.3);
}
.button--secondary { 
  background: transparent; 
  color: var(--color-text-inverse); 
  border: 2px solid rgba(255,255,255,0.4);
}
.button--secondary:hover { 
  background: rgba(255,255,255,0.1); 
  border-color: rgba(255,255,255,0.6);
}
.button--secondary-dark { 
  background: transparent; 
  color: var(--color-brand); 
  border: 2px solid var(--color-brand);
}
.button--secondary-dark:hover { 
  background: var(--color-brand-light);
}

/* Button arrow icon */
.button__arrow { transition: transform var(--transition-fast); }
.button:hover .button__arrow { transform: translateX(2px); }

/* Site shell */
.site-shell { background: var(--color-surface); }

/* Clean header - solid background, no blur */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--color-surface-dark);
  color: var(--color-text-inverse);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: var(--header-height);
  padding: 0;
}
.site-header__identity { min-width: 0; flex-shrink: 0; }
.site-header__brand-link { display: inline-block; }
.site-header__brand { font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; line-height: 1.2; }
.site-header__meta { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 2px; }

/* Header nav - horizontal layout, wrapping handled gracefully */
.site-header__nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}
.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.site-header__nav-link:hover,
.site-header__nav-link.is-current {
  background: rgba(255,255,255,0.12);
  color: var(--color-text-inverse);
}
.site-header__cta { 
  flex-shrink: 0;
  white-space: nowrap; 
  min-height: 40px;
  font-size: 0.9rem;
}
.site-header__cta:hover { 
  background: var(--color-brand-alt); 
}

/* Mobile menu toggle */
.site-header__menu-toggle {
  display: none;
  padding: 8px;
  background: none;
  border: none;
  color: var(--color-text-inverse);
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.site-header__menu-toggle:hover { background: rgba(255,255,255,0.1); }

/* Clean breadcrumbs - no glass, simple path, accessible separators */
.breadcrumbs {
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-line);
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}
.breadcrumbs__item { display: flex; align-items: center; }
.breadcrumbs__item a { 
  color: var(--color-brand); 
  font-weight: 500;
  padding: 4px 0;
}
.breadcrumbs__item a:hover { text-decoration: underline; }
.breadcrumbs__separator {
  margin: 0 8px;
  color: var(--color-text-muted);
  opacity: 0.5;
  user-select: none;
}
.breadcrumbs__item--current {
  color: var(--color-text);
  font-weight: 600;
  padding: 4px 0;
}

/* Hero - clean gradient overlay, viewport-fitted */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--color-text-inverse);
  background: var(--color-surface-dark);
}

/* Hero top CTA integrated - removes double navigation feel */
.hero__top-cta {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 12px 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 70%, transparent 100%);
}
.hero__top-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero__top-cta-text {
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.4;
}
.hero__top-cta .button {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.875rem;
}

/* Hero media/overlay */
.hero__media,
.hero__overlay { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { 
  background: linear-gradient(180deg, rgba(30, 58, 95, 0.7) 0%, rgba(30, 58, 95, 0.5) 50%, rgba(31, 95, 149, 0.4) 100%); 
}
.hero__inner { position: relative; z-index: 5; padding: 48px 0 48px; width: 100%; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, 380px); gap: 28px; align-items: end; }
.hero__copy h1 {
  margin: 14px 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-text-inverse);
}
.hero__copy p { max-width: 580px; margin: 0 0 20px; color: rgba(255,255,255,0.88); font-size: clamp(1rem, 1.5vw, 1.1rem); line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

/* Clean stat cards - solid background, no blur */
.hero__stat {
  padding: 14px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  transition: background var(--transition-base), transform var(--transition-base);
}
.hero__stat:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.hero__stat-label,
.meta-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__stat-value { font-size: 0.95rem; font-weight: 600; }

/* Clean hero panel - solid, no glass */
.hero__panel {
  padding: 22px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hero);
  color: var(--color-text);
}
.hero__panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero__panel p { margin: 0; color: var(--color-text-muted); font-size: 0.95rem; }
.hero__checklist { list-style: none; margin: 14px 0 0; padding: 0; }
.hero__checklist li { 
  padding: 8px 0 8px 24px; 
  border-top: 1px solid var(--color-line); 
  position: relative;
  color: var(--color-text);
  font-size: 0.9rem;
}
.hero__checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--color-success);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Centered hero variant */
.hero--centered .hero__grid { grid-template-columns: 1fr; }
.hero--centered .hero__copy { text-align: center; max-width: 720px; margin: 0 auto; }
.hero--centered .hero__copy p { margin-left: auto; margin-right: auto; }
.hero--centered .hero__actions { justify-content: center; }
.hero--centered .hero__panel { display: none; }

/* Proof bar - clean, minimal */
.proof-bar {
  background: var(--color-brand-light);
  border-top: 1px solid rgba(31, 95, 149, 0.15);
  border-bottom: 1px solid rgba(31, 95, 149, 0.15);
}
.proof-bar__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  padding: 12px 0;
}
.proof-bar__item { 
  font-weight: 600; 
  color: var(--color-text); 
  font-size: 0.9rem;
  display: flex; 
  align-items: center; 
  gap: 8px; 
}
.proof-bar__item span { color: var(--color-text-muted); font-weight: 400; }
.proof-bar__item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-brand);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Grid layouts - clean and functional */
.services-grid,
.reviews-grid,
.contact-card-list,
.internal-links {
  display: grid;
  gap: 16px;
}
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-card-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.internal-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Clean card design - solid backgrounds, subtle shadows */
.service-card,
.review-card,
.contact-card,
.location-card,
.internal-links__card,
.cta-banner,
.footer-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.service-card:hover,
.review-card:hover,
.contact-card:hover,
.location-card:hover,
.internal-links__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(31, 95, 149, 0.25);
}

/* Internal links cards - clean with icon */
.internal-links__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
}
.internal-links__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-light);
  border-radius: var(--radius-sm);
  color: var(--color-brand);
}
.internal-links__content { flex: 1; min-width: 0; }
.internal-links__title {
  color: var(--color-text);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 4px;
}
.internal-links__detail {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}
.internal-links__arrow {
  flex-shrink: 0;
  color: var(--color-brand);
  font-size: 1.2rem;
  opacity: 0.6;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.internal-links__card:hover .internal-links__arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* Service cards */
.service-card { position: relative; overflow: hidden; }
.service-card__kicker {
  color: var(--color-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.25;
}
.service-card p { margin: 0; color: var(--color-text-muted); font-size: 0.9rem; }
.service-card__number {
  position: absolute;
  bottom: -4px;
  right: 12px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(31, 95, 149, 0.05);
  line-height: 1;
  pointer-events: none;
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
}

/* Review cards */
.review-card__rating { margin-bottom: 12px; }
.review-card blockquote {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}
.review-card footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.review-card__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  color: var(--color-brand);
}

/* SVG star rating */
.star-rating { display: flex; gap: 2px; color: var(--color-accent); }
.star-rating svg { width: 16px; height: 16px; fill: currentColor; }
.star-rating--small svg { width: 13px; height: 13px; }
.star-rating--large svg { width: 22px; height: 22px; }
.star-rating--empty { color: var(--color-line); }

/* Contact cards */
.contact-card__kicker {
  color: var(--color-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.25;
}
.contact-card p { margin: 0; color: var(--color-text-muted); font-size: 0.9rem; }
.contact-card__link { color: var(--color-brand); font-weight: 600; display: inline-block; margin-top: 8px; }
.contact-card__link:hover { color: var(--color-brand-alt); text-decoration: underline; }

/* Location map section */
.location-map-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 24px;
  align-items: stretch;
}
.location-map {
  overflow: hidden;
  min-height: 380px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-line);
}
.location-map iframe { width: 100%; min-height: 380px; }
.location-card ul { list-style: none; padding: 0; margin: 12px 0 0; }
.location-card li { padding: 10px 0; border-top: 1px solid var(--color-line); font-size: 0.9rem; }
.location-card li strong { color: var(--color-text); display: block; margin-bottom: 2px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.location-card p { margin: 0 0 12px; color: var(--color-text-muted); }

/* FAQ accordion - clean and accessible */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.faq-item:hover { border-color: rgba(31, 95, 149, 0.25); }
.faq-item[open] { box-shadow: var(--shadow-card); border-color: rgba(31, 95, 149, 0.25); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 44px 16px 18px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-text);
  position: relative;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.faq-item summary:hover { color: var(--color-brand); background: var(--color-surface-alt); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: transform var(--transition-base), color var(--transition-fast);
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--color-brand);
}
.faq-item[open] summary { border-bottom: 1px solid var(--color-line); }
.faq-item__answer {
  padding: 14px 18px 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* CTA banner - clean, solid */
.cta-banner {
  padding: 28px 32px;
  background: var(--color-surface-dark);
  color: var(--color-text-inverse);
  border-radius: var(--radius-md);
}
.cta-banner h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cta-banner p { margin: 0 0 16px; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Page navigation - prev/next links between service pages */
.page-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.page-nav__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  min-height: 100px;
}
.page-nav__link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(31, 95, 149, 0.25);
}
.page-nav__link--next { text-align: right; }
.page-nav__direction {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand);
}
.page-nav__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}
.page-nav__detail {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Site footer - clean and informative */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.8);
  padding: 40px 0 48px;
}
.site-footer__inner { display: grid; gap: 24px; }
.site-footer__brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-inverse);
  margin-bottom: 4px;
}
.site-footer__tagline { font-size: 0.9rem; opacity: 0.7; }
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.site-footer__nav a { 
  color: rgba(255,255,255,0.8); 
  font-size: 0.9rem;
  padding: 4px 0;
}
.site-footer__nav a:hover { color: var(--color-text-inverse); text-decoration: underline; }
.site-footer__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 8px;
}
.site-footer__copy { font-size: 0.85rem; opacity: 0.6; }
.site-footer__links { display: flex; gap: 16px; }
.site-footer__links a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.site-footer__links a:hover { color: var(--color-text-inverse); }

/* surfaced lead-form block - clean design */
.lead-form-section{padding:4rem 1.5rem;background:var(--color-surface-alt)}
.lead-form-shell{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1fr) minmax(340px,480px);gap:2.5rem;align-items:start}
.lead-form-copy{padding:0.5rem 0}
.lead-form-eyebrow{display:inline-block;margin-bottom:0.75rem;font-size:.8rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--color-brand)}
.lead-form-copy h2{font-size:clamp(1.5rem,2.5vw,2rem);margin-bottom:0.85rem;color:var(--color-text);letter-spacing:-0.02em}
.lead-form-copy p{color:var(--color-text-muted);max-width:36rem;margin-bottom:1.25rem;font-size:.95rem}
.lead-form-highlights{display:grid;gap:.75rem;margin-bottom:1.25rem}
.lead-form-highlight{background:var(--color-surface);border:1px solid var(--color-line);border-radius:var(--radius-md);padding:.9rem 1rem;box-shadow:var(--shadow-card)}
.lead-form-highlight strong{display:block;color:var(--color-text);margin-bottom:.15rem;font-size:.95rem}
.lead-form-highlight span{color:var(--color-text-muted);font-size:.9rem}
.lead-form-card{background:var(--color-surface);border:1px solid var(--color-line);border-radius:var(--radius-md);padding:1.25rem;box-shadow:var(--shadow-card)}
.lead-form-status{border-radius:var(--radius-sm);padding:.85rem 1rem;margin-bottom:1rem;font-size:.9rem;font-weight:600}
.lead-form-status.is-success{background:#e8f5ed;color:var(--color-success);border:1px solid #b8dfc6}
.lead-form-status.is-error{background:#fdf0eb;color:var(--color-error);border:1px solid #f5cbb0}
.lead-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:.9rem}
.lead-form-field{display:flex;flex-direction:column;gap:.4rem}
.lead-form-field span{font-size:.85rem;font-weight:600;color:var(--color-text)}
.lead-form-field-full{grid-column:1/-1}
.lead-form-field input,.lead-form-field select,.lead-form-field textarea{width:100%;border:1px solid var(--color-line);border-radius:var(--radius-sm);padding:.85rem 1rem;font:inherit;color:var(--color-text);background:var(--color-surface);transition:border-color .2s,box-shadow .2s;appearance:none}
.lead-form-field textarea{resize:vertical;min-height:110px}
.lead-form-field input:focus,.lead-form-field select:focus,.lead-form-field textarea:focus{outline:none;border-color:var(--color-brand);box-shadow:0 0 0 3px rgba(31,95,149,0.12)}
.lead-form-field input:not(:placeholder-shown):invalid,.lead-form-field textarea:not(:placeholder-shown):invalid{border-color:var(--color-error);box-shadow:0 0 0 3px rgba(196,75,26,0.1)}
.lead-form-field--error input,.lead-form-field--error select,.lead-form-field--error textarea{border-color:var(--color-error);}
.lead-form-field__error{font-size:.8rem;color:var(--color-error);margin-top:.3rem;display:none}
.lead-form-field--error .lead-form-field__error{display:block}
.lead-form-field input::placeholder,.lead-form-field textarea::placeholder{color:var(--color-text-muted);opacity:.7}
.lead-form-honeypot{position:absolute;left:-9999px;opacity:0;pointer-events:none}
.lead-form-button{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.9rem 1.25rem;border:0;border-radius:var(--radius-md);background:var(--color-brand);color:var(--color-button-text);text-decoration:none;font:inherit;font-weight:600;line-height:1.1;cursor:pointer;box-shadow:0 2px 8px rgba(31,95,149,0.2);transition:transform .15s ease,box-shadow .15s ease,background .15s ease}
.lead-form-button:hover,.lead-form-button:focus-visible{transform:translateY(-1px);box-shadow:0 4px 12px rgba(31,95,149,0.25);background:var(--color-brand-alt)}
.lead-form-button:focus-visible{outline:2px solid var(--color-brand);outline-offset:2px}
.lead-form-button-submit{width:100%;margin-top:.9rem}
.lead-form-note{font-size:.82rem;line-height:1.6;color:var(--color-text-muted);margin-top:.75rem}
#lead-form,.lead-form-section,.lead-form-anchor,.quote-section{scroll-margin-top:5rem}

/* Subtle entrance animations - no fade effects */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* mobile responsiveness guardrails */
html, body { max-width: 100%; overflow-x: hidden; }
body { overflow-wrap: break-word; }
h1, h2, h3, p, a, li, dt, dd, blockquote, figcaption, span, strong, small { overflow-wrap: break-word; }
[class*="grid"], [class*="layout"], [class*="columns"], [class*="row"], [class*="band"] { min-width: 0; }

/* Tablet */
@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero__grid,
  .services-grid,
  .reviews-grid,
  .contact-card-list,
  .internal-links,
  .location-map-split,
  .lead-form-shell { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero--split .hero__inner { padding-top: 80px; }
  .location-map-split,
  .lead-form-shell { grid-template-columns: 1fr; }
  .internal-links { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 720px) {
  .section { padding: 48px 0; }
  
  /* Header - stack on mobile */
  .site-header__row { 
    flex-wrap: wrap;
    min-height: auto;
    padding: 8px 0;
    gap: 8px;
  }
  .site-header__brand { font-size: 0.95rem; }
  .site-header__meta { font-size: 0.7rem; }
  
  /* Nav becomes dropdown on mobile */
  .site-header__nav-wrap {
    display: none;
    order: 4;
    width: 100%;
  }
  .site-header__nav-wrap.is-open { display: block; }
  .site-header__nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
    background: rgba(30, 58, 95, 0.98);
    border-radius: var(--radius-sm);
    padding: 8px;
    margin-top: 8px;
  }
  .site-header__nav-link { 
    width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
  }
  .site-header__menu-toggle { display: block; }
  .site-header__cta { 
    order: 3;
    width: 100%;
    justify-content: center;
  }
  
  /* Breadcrumbs - scrollable on mobile */
  .breadcrumbs__list { 
    font-size: 0.8rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .breadcrumbs__list::-webkit-scrollbar { display: none; }
  
  /* Grids - single column */
  .services-grid,
  .reviews-grid,
  .contact-card-list,
  .internal-links,
  .hero__stats,
  .lead-form-grid { grid-template-columns: 1fr; }
  
  /* Hero mobile */
  .hero__top-cta .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__top-cta .button { width: 100%; justify-content: center; }
  .hero__inner { padding: 32px 0 36px; }
  .hero__copy h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .hero__copy p { font-size: 0.95rem; }
  
  /* Buttons - full width */
  .button,
  .lead-form-button,
  .site-header__cta { width: 100%; }
  
  /* CTA banner */
  .cta-banner { padding: 20px; }
  .cta-banner__actions { flex-direction: column; }
  
  /* Page nav */
  .page-nav { grid-template-columns: 1fr; }
  .page-nav__link--next { text-align: left; }
}

/* Small mobile */
@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--layout-max-width)); }
  .hero__inner { padding-bottom: 28px; }
  .location-map,
  .location-map iframe { min-height: 280px; }
  .site-footer__nav { gap: 6px 16px; }
}


:root {
  --font-body: Georgia, 'Times New Roman', serif;
  --font-heading: Georgia, 'Times New Roman', serif;
  --layout-max-width: 1120px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --space-section: clamp(4rem, 7vw, 6rem);
  --space-gap: clamp(1rem, 2vw, 1.5rem);
  --shadow-card: 0 18px 48px rgba(69, 47, 25, 0.12);
  --shadow-hero: 0 30px 80px rgba(44, 29, 14, 0.24);
  --shadow-card-hover: 0 24px 60px rgba(69, 47, 25, 0.18);
  --color-page: #faf6ef;
  --color-surface: #fffdf9;
  --color-surface-alt: #f6f0e7;
  --color-surface-dark: #4a3423;
  --color-brand: #6b4a2f;
  --color-brand-alt: #8c6140;
  --color-accent: #c98d3a;
  --color-text: #2e241d;
  --color-text-muted: #695a4c;
  --color-text-inverse: #fffdf9;
  --color-line: rgba(75, 52, 35, 0.12);
  --color-success: #3f8f5a;
  --color-error: #b45309;
  --color-hero-overlay: linear-gradient(135deg, rgba(29, 21, 14, 0.88) 0%, rgba(53, 36, 20, 0.72) 48%, rgba(107, 74, 47, 0.34) 100%);
  --color-button-text: #fffdf9;
  --color-button-alt-text: #4a3423;
}
