/* ═══════════════════════════════════════════════════════════════
   JOHN'S AUTO SERVICE — styles.css
   Design system: Warm forest green + cream + copper amber
   Fonts: Lora (serif headings) + DM Sans (body)
   Completely distinct from Israel Automotive (no Barlow, no dark industrial)
═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --green-deep:    #1B3A2D;
  --green-mid:     #2C6E49;
  --green-light:   #4A7A62;
  --green-pale:    #EAF2ED;

  --copper:        #C4873A;
  --copper-light:  #E5A855;
  --copper-pale:   #FDF4E8;

  --cream:         #F5F0E8;
  --cream-dark:    #EDE7DA;
  --warm-white:    #FDFAF5;

  --ink:           #1A1612;
  --ink-mid:       #3D3530;
  --ink-light:     #6B5F55;
  --ink-pale:      #9A8E84;

  --font-heading:  'Lora', Georgia, serif;
  --font-body:     'DM Sans', system-ui, -apple-system, sans-serif;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;

  --shadow-sm:     0 1px 4px rgba(27,58,45,0.08);
  --shadow-md:     0 4px 20px rgba(27,58,45,0.12);
  --shadow-lg:     0 12px 48px rgba(27,58,45,0.18);

  --max-width:     1200px;
  --section-pad:   clamp(64px, 8vw, 112px);
}

/* ─── RESET ───────────────────────────────────────────────── */
[hidden] { display: none !important; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
  border-radius: 3px;
}
ul { list-style: none; }
address { font-style: normal; }

/* ─── UTILITY ─────────────────────────────────────────────── */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.section-label.light { color: var(--copper-light); }

h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
h2 em {
  font-style: italic;
  color: var(--green-mid);
}
h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.unverified-note {
  font-size: 12px;
  color: var(--copper);
  background: var(--copper-pale);
  border: 1px solid rgba(196,135,58,0.25);
  border-radius: 4px;
  padding: 2px 7px;
  font-weight: 500;
  display: inline-block;
}
.demo-block {
  display: block;
  padding: 12px 16px;
  margin: 16px 0;
  border-radius: var(--radius-sm);
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--copper);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--copper);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--copper-light);
  border-color: var(--copper-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-primary.btn-large { font-size: 18px; padding: 20px 36px; }
.btn-primary.btn-light {
  background: var(--copper);
  color: #fff;
}
.btn-call svg { flex-shrink: 0; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-deep);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--green-deep);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover {
  background: var(--green-deep);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-mid);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid var(--green-mid);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-outline:hover { color: var(--copper); border-color: var(--copper); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--green-deep);
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover {
  background: var(--green-deep);
  color: #fff;
}

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--green-deep);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.logo-text em {
  font-style: italic;
  color: var(--green-mid);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.header-nav a:hover { color: var(--green-deep); background: var(--green-pale); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--copper);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--copper-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  background: var(--warm-white);
  border-top: 1px solid var(--cream-dark);
  padding: 16px clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-mid);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover { background: var(--green-pale); color: var(--green-deep); }
.mobile-call-btn {
  background: var(--copper) !important;
  color: #fff !important;
  text-align: center;
  font-weight: 600 !important;
  margin-top: 8px;
}
.mobile-call-btn:hover { background: var(--copper-light) !important; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 68px);
  display: flex;
  flex-direction: column;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 75% 50%, rgba(44,110,73,0.06) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(196,135,58,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  flex: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 60px) 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--copper);
  flex-shrink: 0;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
}
h1 em {
  font-style: italic;
  color: var(--green-mid);
  display: block;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-light);
  flex-wrap: wrap;
}
.hero-hours svg { flex-shrink: 0; color: var(--green-mid); }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-svg {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 20px 48px rgba(27,58,45,0.12));
}

/* Trust bar */
.trust-bar {
  background: var(--green-deep);
  color: #fff;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
}
.trust-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--copper-light);
}
.trust-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services { background: var(--warm-white); }
.section-sub {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--ink-mid);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 52px;
}
.services-grid {
  border-top: 1px solid var(--cream-dark);
}
.service-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: start;
  transition: background 0.2s;
}
.service-row {
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.service-row:hover { background: var(--green-pale); }
.service-number {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.05em;
  padding-top: 4px;
}
.service-content p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.65;
}
.services-cta {
  margin-top: 48px;
  padding: 36px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.services-cta p {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

/* ─── TRUST SECTION ──────────────────────────────────────── */
.trust-section {
  background: var(--green-deep);
  color: #fff;
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.trust-left { position: sticky; top: 80px; }
.trust-left h2 { color: #fff; }
.trust-left h2 em { color: var(--copper-light); }
.trust-left .section-label { color: var(--copper-light); }
.trust-left .btn-primary { margin-top: 28px; }

.review-pull {
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--copper);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 32px;
  margin-bottom: 36px;
}
.review-pull p {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2vw, 20px);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  margin-bottom: 12px;
}
.review-pull footer {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.trust-list li {
  display: flex;
  gap: 18px;
  align-items: start;
}
.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(196,135,58,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-light);
  flex-shrink: 0;
}
.trust-list li strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.trust-list li p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about { background: var(--cream); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-badge {
  background: var(--green-deep);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: flex-start;
}
.about-badge span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-badge strong {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--copper-light);
}
.about-map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--cream-dark);
  box-shadow: var(--shadow-md);
}
.about-map-placeholder svg { width: 100%; }

.about-text h2 { color: var(--ink); }
.about-lead {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 16px;
  font-weight: 500;
}
.about-text > p {
  color: var(--ink-mid);
  margin-bottom: 16px;
  line-height: 1.65;
}
.about-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
  padding: 24px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-dark);
}
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.detail-item svg { flex-shrink: 0; color: var(--green-mid); margin-top: 2px; }
.detail-item a { color: var(--green-mid); font-weight: 600; }
.detail-item a:hover { color: var(--copper); }

/* ─── SERVICE AREA ───────────────────────────────────────── */
.area { background: var(--green-deep); color: #fff; }
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.area-text h2 { color: #fff; }
.area-text h2 em { color: var(--copper-light); }
.area-text p { color: rgba(255,255,255,0.7); max-width: 440px; line-height: 1.65; }
.towns-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.towns-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.towns-list li:hover { background: rgba(196,135,58,0.15); }
.towns-list li svg { color: var(--copper-light); flex-shrink: 0; }
.area-note { margin-top: 16px; }

/* ─── REQUEST SERVICE ────────────────────────────────────── */
.request { background: var(--warm-white); }
.request-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.request-text h2 { color: var(--ink); }
.request-text h2 em { color: var(--green-mid); }
.request-text p {
  color: var(--ink-mid);
  margin-bottom: 28px;
  line-height: 1.65;
}

.service-form {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
}
.form-note {
  font-size: 12px;
  color: var(--copper);
  background: var(--copper-pale);
  border: 1px solid rgba(196,135,58,0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.field-row .field-group { margin-bottom: 0; }

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
label .optional {
  font-weight: 400;
  color: var(--ink-pale);
}
input, textarea, select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--warm-white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--ink-pale); }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(44,110,73,0.12);
}
textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  width: 100%;
  background: var(--green-deep);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--green-mid); transform: translateY(-1px); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq { background: var(--cream); }
.faq h2 { max-width: 500px; margin-bottom: 48px; }
.faq-list {
  max-width: 760px;
  border-top: 1px solid var(--cream-dark);
}
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green-mid); }
.faq-question[aria-expanded="true"] { color: var(--green-mid); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--ink-pale);
  transition: transform 0.25s, color 0.2s;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--green-mid);
}
.faq-answer {
  padding: 0 0 24px;
}
.faq-answer p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.65;
}
.faq-answer a { color: var(--green-mid); font-weight: 600; }
.faq-answer a:hover { color: var(--copper); }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact { background: var(--warm-white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-left h2 { color: var(--ink); }
.contact-left h2 em { color: var(--green-mid); }
.contact-left p {
  color: var(--ink-mid);
  margin-bottom: 28px;
  line-height: 1.65;
}
.contact-info-block {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-block h3 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail svg { color: var(--copper); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-detail span {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.contact-detail a { color: var(--green-mid); font-weight: 600; font-size: 15px; }
.contact-detail a:hover { color: var(--copper); }
.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-mid);
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  border-bottom: 1.5px solid var(--green-mid);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.directions-link:hover { color: var(--copper); border-color: var(--copper); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px clamp(20px, 5vw, 60px) 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo .logo-mark { background: rgba(255,255,255,0.1); }
.footer-logo .logo-text { color: rgba(255,255,255,0.9); }
.footer-tagline {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links nav a:hover { color: var(--copper-light); }
.footer-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--copper-light);
  margin-bottom: 12px;
}
.footer-phone:hover { color: var(--copper); }
.footer-contact address {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-credit a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-credit a:hover { color: var(--copper-light); }

/* ─── MOBILE CALL BAR ────────────────────────────────────── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--green-deep);
  padding: 12px 20px;
  gap: 12px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-call-bar-btn, .mobile-request-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}
.mobile-call-bar-btn {
  background: var(--copper);
  color: #fff;
}
.mobile-call-bar-btn:hover { background: var(--copper-light); }
.mobile-request-btn {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
}
.mobile-request-btn:hover { background: rgba(255,255,255,0.15); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; }
  .hero-content {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    gap: 32px;
  }
  .hero-visual { order: -1; }
  .hero-svg { max-width: 320px; margin: 0 auto; }

  .trust-inner { grid-template-columns: 1fr; gap: 40px; }
  .trust-left { position: static; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { flex-direction: column; }
  .about-badge { align-self: stretch; }

  .area-inner { grid-template-columns: 1fr; gap: 32px; }

  .request-inner { grid-template-columns: 1fr; gap: 40px; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  .mobile-call-bar { display: flex; }

  /* Pad bottom of page for mobile call bar */
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}

@media (max-width: 600px) {
  .trust-bar-inner {
    gap: 0;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trust-bar-inner::-webkit-scrollbar { display: none; }
  .trust-item { padding: 8px 20px; flex-shrink: 0; }
  .trust-divider { height: 28px; }

  .field-row { grid-template-columns: 1fr; }

  .services-cta { flex-direction: column; align-items: flex-start; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .towns-list { grid-template-columns: 1fr; }

  .service-form { padding: 24px 20px; }
  .review-pull { padding: 20px 24px; }
  .contact-info-block { padding: 24px 20px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .faq-answer {
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
}

/* ─── PRINT ──────────────────────────────────────────────── */
@media print {
  .site-header, .mobile-call-bar, .hero-visual { display: none !important; }
  .hero-content { grid-template-columns: 1fr; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 11px; color: #666; }
}
