@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,600&family=Inter+Tight:wght@400;450;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #159943;
  --primary-dark:   #0e7230;
  --primary-light:  #d4edde;
  --accent:         #B4D334;
  --accent-dim:     #d5e87a;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --ink-mid:        #3a3630;
  --muted:          #6B6660;
  --border:         rgba(26,24,20,0.12);
  --border-strong:  rgba(26,24,20,0.22);
  --primary-border: rgba(21,153,67,0.35);
  --shadow-sm:      0 2px 8px rgba(26,24,20,0.08);
  --shadow-md:      0 8px 28px rgba(26,24,20,0.12);
  --shadow-lg:      0 18px 48px rgba(26,24,20,0.16);
  --radius:         8px;
  --radius-pill:    999px;
  --section-py:     clamp(72px, 9vh, 120px);
  --content-width:  1240px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 450;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 64px !important;
  max-width: 220px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}
.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* Anchors inside headings */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

a { color: var(--ink); transition: color 150ms; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

ul, ol { list-style: none; }
p { line-height: 1.7; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, .hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

h2, .section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
}

.eyebrow, .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

/* Square bullet on eyebrow */
.eyebrow::before, .section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.wide-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  transition: background 200ms, border-color 200ms, transform 150ms, box-shadow 200ms;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--surface);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(21,153,67,0.35);
}

.btn-phone {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255,255,255,0.55);
}
.btn-phone:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
  color: var(--surface);
  text-decoration: none;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   FORMS
   ============================================================ */
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label,
.form-row label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea,
.form-row input,
.form-row textarea,
.contact-form input,
.contact-form textarea,
.contact-form-wrap input,
.contact-form-wrap textarea {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 150ms, box-shadow 150ms;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-row input:focus,
.form-row textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21,153,67,0.12);
}
.form-field textarea,
.form-row textarea,
.contact-form textarea,
.contact-form-wrap textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit, .contact-form button[type="submit"], .contact-form-wrap button[type="submit"] {
  background: var(--primary);
  color: var(--surface);
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 200ms, transform 150ms, box-shadow 200ms;
  width: 100%;
  margin-top: 8px;
}
.form-submit:hover, .contact-form button[type="submit"]:hover, .contact-form-wrap button[type="submit"]:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(21,153,67,0.3);
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1;
  transform: none;
}
.stagger > * { transition-delay: 0ms; }
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--primary);
  color: var(--surface);
  position: sticky;
  top: 0;
  z-index: 900;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px clamp(20px, 4vw, 48px);
  max-width: var(--content-width);
  margin-inline: auto;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-bar-left a {
  color: var(--surface);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.92;
  transition: opacity 150ms;
}
.top-bar-left a:hover { opacity: 1; text-decoration: none; color: var(--surface); }
.top-bar-left a svg, .top-bar-right svg { width: 16px; height: 16px; flex-shrink: 0; }
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 500;
}
.top-bar-hours { opacity: 0.85; }
.top-bar-badge {
  background: rgba(255,255,255,0.18);
  color: var(--surface);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.3);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 42px;
  z-index: 800;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 4vw, 48px);
  max-width: var(--content-width);
  margin-inline: auto;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  color: var(--ink);
}
.nav-links {
  display: none;
  gap: 0;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 150ms, background 150ms;
}
.nav-links a:hover { color: var(--primary); background: var(--primary-light); text-decoration: none; }
.nav-cta {
  display: none;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 300ms, opacity 300ms;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav SVG toggle icon */
.nav-toggle svg { width: 24px; height: 24px; }

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
}

/* Mobile open nav */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px clamp(20px, 4vw, 48px) 24px;
  box-shadow: var(--shadow-md);
  z-index: 799;
  gap: 4px;
}
.nav-links.open a { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: clamp(560px, 88vh, 920px);
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.9);
}
.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(10,15,10,0.22) 0%,
    rgba(10,15,10,0.55) 45%,
    rgba(10,18,12,0.82) 100%
  );
}
.hero-inner {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding: clamp(48px, 8vw, 80px) clamp(20px, 4vw, 48px);
  padding-bottom: clamp(64px, 9vw, 96px);
}
.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--surface);
  max-width: 760px;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 450;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-chip {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(180,211,52,0.55);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.trust-strip-inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.trust-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.trust-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  background: var(--canvas);
  white-space: nowrap;
  transition: border-color 150ms, background 150ms;
}
.trust-pill:hover { border-color: var(--primary); background: var(--primary-light); }
.trust-pill-accent {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}
.trust-pill-accent:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee, .marquee-section {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 80px !important;
  position: relative;
  z-index: 1;
  background: var(--canvas);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track,
.marquee-section:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-size: clamp(13px, 1.4vw, 18px) !important;
  line-height: 1.2 !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.marquee-item span:first-child { color: var(--primary); }
.marquee-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.stat {
  padding: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 40px);
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat:nth-child(even) { border-right: none; }
.stat:nth-last-child(-n+2) { border-bottom: none; }
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 10px;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: none; border-right: 1px solid var(--border); }
  .stat:last-child { border-right: none; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.services-header {
  margin-bottom: 40px;
}
.services-header h2 { margin-top: 0; }
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.service-tab {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink-mid);
  cursor: pointer;
  transition: background 200ms, border-color 200ms, color 200ms;
}
.service-tab:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.service-tab.active { background: var(--primary); color: var(--surface); border-color: var(--primary); }

.services-panels { position: relative; }
.service-panel { display: none; }
.service-panel.active { display: grid; grid-template-columns: 1fr; gap: 0; }
.service-panel-img {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.service-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  border-radius: 0;
  transition: transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.service-panel-img:hover img { transform: scale(1.03); }
.service-panel-no-img {
  background: linear-gradient(135deg, var(--primary-light) 0%, #e8f5e9 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-panel-body {
  background: var(--surface);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 0 0 var(--radius) var(--radius);
  border: 1px solid var(--border);
  border-top: none;
}
.service-panel-body h3 { margin-bottom: 12px; }
.service-panel-body p { color: var(--ink-mid); margin-bottom: 12px; line-height: 1.65; font-size: 15px; }
.service-panel-body a {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.04em;
}

@media (min-width: 900px) {
  .service-panel.active {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .service-panel-img { border-radius: var(--radius) 0 0 var(--radius); aspect-ratio: auto; min-height: 380px; }
  .service-panel-no-img { border-radius: var(--radius) 0 0 var(--radius); aspect-ratio: auto; min-height: 380px; }
  .service-panel-body { border-radius: 0 var(--radius) var(--radius) 0; border: 1px solid var(--border); border-left: none; }
}

/* ============================================================
   GUARANTEES
   ============================================================ */
.guarantees {
  padding: var(--section-py) 0;
  background: var(--ink);
}
.guarantees-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.guarantee-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.guarantee-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(21,153,67,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-icon svg { width: 24px; height: 24px; color: var(--accent); }
.guarantee-item h3 {
  color: var(--surface);
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 8px;
}
.guarantee-item p { color: rgba(250,246,238,0.7); font-size: 15px; line-height: 1.6; }

@media (min-width: 640px) { .guarantees-inner { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.about-content { order: 2; }
.about-photo { order: 1; }
.about-content h2 { margin-bottom: 20px; }
.about-divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 24px;
}
.about-content > p {
  color: var(--ink-mid);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
  margin-bottom: 28px;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-chip {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  background: var(--primary-light);
}
.about-photo img {
  width: 100%;
  height: clamp(300px, 45vw, 520px);
  object-fit: cover;
  border-radius: 12px;
  max-height: none;
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 3fr 2fr; }
  .about-content { order: 1; }
  .about-photo { order: 2; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: var(--section-py) 0;
  background: var(--surface);
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.reviews-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-eyebrow { display: inline-flex; margin-bottom: 12px; }
.reviews-rating-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.rating-number-large {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.rating-stars-row {
  display: flex;
  gap: 4px;
}
.rating-stars-row svg, .rating-stars-row .star-svg { width: 28px; height: 28px; color: var(--primary); fill: var(--primary); }
.rating-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.reviews-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  padding: 28px;
  border-radius: 12px;
  background: var(--canvas);
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.12); }
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.review-stars svg { width: 18px; height: 18px; color: var(--primary); fill: var(--primary); }
.review-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 16px;
}
.review-attribution {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.reviews-cta-block {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.reviews-google-prompt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 24px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  transition: border-color 200ms, background 200ms;
}
.reviews-google-prompt:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  text-decoration: none;
  color: var(--ink);
}
.google-g { width: 20px; height: 20px; }
.reviews-google-prompt svg:not(.google-g) { width: 16px; height: 16px; color: var(--primary); }

@media (min-width: 640px) { .reviews-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .reviews-cards-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: var(--section-py) 0;
  background: var(--ink);
  max-width: 100%;
}
.gallery-header {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-bottom: clamp(36px, 4vw, 56px);
}
.gallery-header .section-eyebrow { color: var(--accent); }
.gallery-header .section-eyebrow::before { background: var(--accent); }
.gallery-header h2, .gallery-header .section-title { color: var(--surface); }
.gallery-feature-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  align-items: start;
}
.gallery-feature-layout > div:first-child img {
  width: 100%;
  height: clamp(280px, 45vw, 560px);
  max-height: none;
  object-fit: cover;
  border-radius: var(--radius);
}
.gallery-stat-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery-stat-card {
  background: rgba(250,246,238,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.gallery-stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.gallery-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.55);
  margin-top: 8px;
}
.gallery-stat-desc {
  font-size: 14px;
  color: rgba(250,246,238,0.75);
  margin-top: 6px;
  line-height: 1.6;
}
.gallery-service-list {
  background: rgba(250,246,238,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.gallery-service-list h3 { color: var(--surface); margin-bottom: 16px; font-size: 18px; }
.gallery-service-items { display: flex; flex-direction: column; gap: 8px; }
.gallery-service-item {
  font-size: 14px;
  color: rgba(250,246,238,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gallery-service-item::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .gallery-feature-layout { grid-template-columns: 3fr 2fr; }
  .gallery-feature-layout > div:first-child img { height: clamp(400px, 55vh, 640px); }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.service-areas-inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.service-areas > .container > h2,
.service-areas-inner h2,
.service-areas-inner .section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 64px);
  margin-bottom: 32px;
}
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.areas-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.area-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  background: var(--surface);
  transition: border-color 150ms, background 150ms, color 150ms;
}
.area-pill:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }

/* service-areas-inner layout (reviews-gallery.html) */
.areas-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
  align-items: start;
}
.areas-intro { font-size: 16px; color: var(--ink-mid); margin-bottom: 20px; line-height: 1.7; }
.areas-perks { display: flex; flex-direction: column; gap: 10px; }
.areas-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
}
.perk-check { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

@media (min-width: 640px) { .areas-layout { grid-template-columns: 1fr 2fr; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.contact > .container > h2,
.contact-inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  margin-bottom: 40px;
}
.contact-inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form .form-row,
.contact-form-wrap .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form > .form-row:first-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-group, .contact-info-block { display: flex; flex-direction: column; gap: 6px; }
.contact-info-group h3, .contact-info-block h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-info-group a, .contact-info-block a {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.contact-info-group a:hover, .contact-info-block a:hover { color: var(--primary); text-decoration: none; }
.contact-phone-big {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.contact-phone-big:hover { color: var(--primary-dark); text-decoration: none; }
.contact-info-group p, .contact-info-block p { font-size: 15px; color: var(--ink-mid); line-height: 1.65; }
.contact-san-antonio a { font-size: 14px; color: var(--muted); }
.contact-hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
  font-size: 14px;
}
.day { color: var(--muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
.time { color: var(--ink-mid); }

.social-links { display: flex; gap: 12px; margin-top: 4px; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--canvas);
  border: 1px solid var(--border-strong);
  color: var(--ink-mid);
  transition: background 150ms, border-color 150ms, color 150ms;
  text-decoration: none;
}
.social-link svg { width: 20px; height: 20px; }
.social-link:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); text-decoration: none; }

@media (min-width: 900px) {
  .contact-split { grid-template-columns: 3fr 2fr; }
  .contact-layout { grid-template-columns: 3fr 2fr; }
}

/* ============================================================
   PROCESS STRIP
   ============================================================ */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.process-step { padding: 24px; border: 1px solid var(--border); border-radius: 8px; }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.12em; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
details.faq { border-bottom: 1px solid var(--border); padding: 18px 0; }
details.faq > summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after { content: "+"; font-weight: 300; transition: transform 200ms; font-size: 20px; }
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ============================================================
   SERVICE CARD HOVER
   ============================================================ */
.service-card {
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(250,246,238,0.75);
  padding: clamp(56px, 7vw, 96px) 0 0;
}
.footer-inner, .footer > .container {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; color: rgba(250,246,238,0.6); max-width: 280px; }
.footer-col h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.45);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(250,246,238,0.7);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col ul li a:hover { color: var(--accent); text-decoration: none; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(250,246,238,0.7);
}
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.footer-contact-item a { color: rgba(250,246,238,0.7); text-decoration: none; }
.footer-contact-item a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(250,246,238,0.45); }
.footer-certs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer-cert, .footer-cert-chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
}
.footer-bottom .footer-certs { margin-top: 0; }

@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--surface);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: background 200ms, transform 150ms, box-shadow 200ms;
}
.mobile-call-pill svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-call-pill:hover {
  background: var(--primary-dark);
  color: var(--surface);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -10px rgba(0,0,0,0.5);
}
@media (min-width: 900px) { .mobile-call-pill { display: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 639px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .contact-form > .form-row:first-child { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .trust-chips-row { gap: 8px; }
}

@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; }
  .btn { width: auto; }
}

@media (min-width: 1200px) {
  .about-grid { grid-template-columns: 3fr 2fr; gap: 100px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.fade-up { grid-column: 1 / -1; }
.service-panel-img { grid-column: 1 / -1; }
.service-panel-body { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.gallery-stat-panel { grid-column: 1 / -1; }
.day { grid-column: 1 / -1; }
.time { grid-column: 1 / -1; }
/* validator patch: never hide a wrapper that contains a heading */
.service-panel { display: block !important; }
