/* ============================================================
   One Stop Tires & Auto — North Hollywood
   Vintage garage aesthetic: cream + hunter green + charcoal
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --cream:        #F3ECDD;   /* warm paper background */
  --cream-deep:   #EAE0CC;   /* card / alt section */
  --cream-line:   #DDD0B6;   /* hairline dividers */
  --green:        #26493A;   /* hunter green — primary */
  --green-dark:   #1A3529;   /* deep green */
  --green-soft:   #3C6B54;   /* lighter green accent */
  --ink:          #24211A;   /* near-black text */
  --ink-soft:     #5C5341;   /* muted brown-grey text */
  --rust:         #B8552C;   /* warm accent (ESTD red) */
  --white:        #FBF8F1;

  /* Type */
  --display: "Anton", "Arial Narrow", sans-serif;
  --serif:   "Instrument Serif", Georgia, serif;
  --body:    "Instrument Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --wrap: 1140px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --shadow: 0 18px 50px -28px rgba(26, 53, 41, 0.55);
  --shadow-sm: 0 8px 24px -16px rgba(26, 53, 41, 0.5);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.02; font-weight: 400; }

/* Subtle paper grain over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--green-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--rust);
}
.eyebrow.centered { justify-content: center; }
.script { font-family: var(--serif); font-style: italic; }
.display {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
}
.section { padding-block: clamp(56px, 9vw, 120px); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 0.96;
  margin-top: 14px;
  color: var(--green);
}
.section-head p { color: var(--ink-soft); font-size: 1.06rem; margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 15px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline { border-color: var(--green); color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-rust { background: var(--rust); color: var(--white); }
.btn-rust:hover { background: #9d461f; transform: translateY(-2px); }
.btn-ghost { color: var(--green); padding-inline: 4px; }
.btn-ghost:hover { color: var(--rust); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 236, 221, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px -12px rgba(26,53,41,0.4); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b {
  font-family: var(--display);
  font-size: 1.16rem;
  letter-spacing: 0.02em;
  color: var(--green);
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-text span {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 3px;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--rust);
  transition: width 0.22s ease;
}
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--green);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.header-phone svg { width: 18px; height: 18px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--green);
  position: relative;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(56px, 9vw, 104px);
  overflow: hidden;
}
.hero-inner {
  max-width: 840px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--cream);
  padding: 7px 16px 7px 12px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-badge .stars { color: #F0C24B; letter-spacing: 0.05em; }
.hero h1 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.9rem, 8vw, 5.6rem);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.hero h1 .green { color: var(--green); display: block; }
.hero h1 .script {
  display: block;
  font-family: var(--serif);
  text-transform: none;
  font-style: italic;
  font-size: 0.44em;
  color: var(--rust);
  letter-spacing: 0;
  margin-top: 0.15em;
  font-weight: 400;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 34em;
  margin: 26px auto 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; justify-content: center; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 6vw, 60px);
  margin-top: 46px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-line);
  width: min(100%, 560px);
}
.hero-trust .stat { text-align: center; }
.hero-trust .stat b {
  font-family: var(--display);
  font-size: 1.9rem;
  color: var(--green);
  display: block;
  line-height: 1;
}
.hero-trust .stat span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.strip {
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
  border-block: 3px solid var(--green-dark);
}
.strip-track {
  display: flex;
  gap: 44px;
  padding-block: 15px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.strip:hover .strip-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.strip-item {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 44px;
}
.strip-item::after { content: "◆"; color: var(--rust); font-size: 0.7em; }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; flex-wrap: wrap; white-space: normal; width: auto; justify-content: center; } }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream-deep); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  color: var(--green);
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.service-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }
.services-note {
  margin-top: 34px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1rem;
}
.services-note a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   ABOUT / PROMISE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.about-visual { position: relative; }
.story-photo {
  position: relative;
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}
.story-photo img { width: 100%; height: auto; display: block; border-radius: 2px; }
.est-seal {
  position: absolute;
  top: -22px; left: -22px;
  z-index: 2;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: grid;
  place-content: center;
  text-align: center;
  border: 2px solid var(--green-dark);
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
}
.est-seal::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1.5px dashed rgba(240, 194, 75, 0.6);
  border-radius: 50%;
}
.est-seal span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F0C24B;
}
.est-seal b { font-family: var(--display); font-size: 1.85rem; line-height: 0.9; }
.story-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 15px 18px;
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
}
.story-caption svg { width: 18px; height: 18px; color: #F0C24B; flex: none; }

.promise-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: clamp(48px, 7vw, 74px);
  padding-top: 46px;
  border-top: 1px solid var(--cream-line);
}
.promise-item { display: flex; gap: 14px; align-items: flex-start; }
.promise-item .chk {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #F0C24B;
  display: grid;
  place-items: center;
}
.promise-item .chk svg { width: 17px; height: 17px; }
.promise-item b {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.promise-item p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
.about-body h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--green);
  line-height: 0.98;
  margin-top: 14px;
}
.about-body p { color: var(--ink-soft); margin-top: 20px; font-size: 1.06rem; }
.about-body .signature {
  margin-top: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--green);
}
.about-body .signature small {
  display: block;
  font-family: var(--body);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
  font-weight: 600;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--green); color: var(--cream); position: relative; }
.reviews .section-head h2 { color: var(--cream); }
.reviews .section-head p { color: var(--cream); }
.reviews .eyebrow { color: #F0C24B; }
.reviews .eyebrow::before { background: #F0C24B; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.review-card .stars { color: #F0C24B; letter-spacing: 0.12em; font-size: 1rem; margin-bottom: 14px; }
.review-card blockquote {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--cream);
  flex: 1;
}
.review-card .who {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-card .who b { font-weight: 700; }
.review-card .who span { color: rgba(243,236,221,0.6); }
.review-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(36px, 7vw, 72px);
  width: min(100%, 620px);
  margin: 52px auto 0;
  padding-top: 36px;
  border-top: 1px solid rgba(243, 236, 221, 0.16);
}
.review-stat { text-align: center; }
.review-stat b {
  display: block;
  font-family: var(--display);
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--cream);
}
.review-stat b .accent-star { color: #F0C24B; margin-left: 1px; }
.review-stat .stat-label {
  display: block;
  margin-top: 9px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: rgba(243, 236, 221, 0.6);
}
.reviews-cta { text-align: center; margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }
.btn-cream { background: var(--cream); color: var(--green); }
.btn-cream:hover { background: var(--white); transform: translateY(-2px); }

/* ============================================================
   CONTACT / BOOKING
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-info h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--green);
  line-height: 0.98;
  margin-top: 14px;
}
.contact-info > p { color: var(--ink-soft); margin-top: 18px; font-size: 1.06rem; }
.info-list { margin-top: 30px; display: flex; flex-direction: column; gap: 4px; }
.info-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--cream-line);
  align-items: flex-start;
}
.info-row:last-child { border-bottom: 1px solid var(--cream-line); }
.info-row .ico {
  width: 42px; height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius);
}
.info-row .ico svg { width: 20px; height: 20px; }
.info-row .meta span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 3px;
}
.info-row .meta b { font-size: 1.12rem; color: var(--ink); font-weight: 700; }
.info-row .meta a { color: var(--green); }
.info-row .meta a:hover { color: var(--rust); }
.hours-table { width: 100%; margin-top: 4px; font-size: 0.98rem; }
.hours-table div { display: flex; justify-content: space-between; gap: 24px; padding: 3px 0; }
.hours-table div span { white-space: nowrap; }
.hours-table .today { color: var(--rust); font-weight: 700; }
.hours-table span:first-child { color: var(--ink-soft); }
.hours-table .today span:first-child { color: var(--rust); }

/* Form */
.booking {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.booking h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.7rem;
  color: var(--green);
  margin-bottom: 6px;
}
.booking > p { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 24px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.field label .req { color: var(--rust); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(38,73,58,0.12);
}
.booking .btn-primary { width: 100%; justify-content: center; margin-top: 6px; padding-block: 16px; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: rgba(38,73,58,0.1); color: var(--green); border: 1px solid rgba(38,73,58,0.25); }
.form-status.err { background: rgba(184,85,44,0.1); color: var(--rust); border: 1px solid rgba(184,85,44,0.3); }

/* Map */
.map-wrap {
  grid-column: 1 / -1;
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-line);
  box-shadow: var(--shadow-sm);
  line-height: 0;
  background: var(--cream-deep);
}
.map-wrap iframe { width: 100%; height: 340px; border: 0; filter: grayscale(0.25) sepia(0.12); }
.map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--white);
  border-top: 1px solid var(--cream-line);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green);
  line-height: 1.2;
}
.map-link:hover { color: var(--rust); }
.map-link svg { width: 16px; height: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-dark); color: var(--cream); padding-block: 56px 30px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-brand .brand-text b { color: var(--cream); }
.footer-brand .brand-text span { color: rgba(243,236,221,0.6); }
.footer-brand p { color: rgba(243,236,221,0.7); font-size: 0.95rem; margin-top: 18px; max-width: 30em; }
.footer-col h4 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #F0C24B;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p { display: block; color: rgba(243,236,221,0.82); font-size: 0.94rem; padding: 5px 0; margin: 0; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(243,236,221,0.6);
}
.footer-bottom a { color: var(--cream); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #F0C24B; }

/* Floating mobile call bar */
.call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(26,53,41,0.97);
  backdrop-filter: blur(8px);
}
.call-bar .btn { flex: 1; justify-content: center; }

/* ============================================================
   DOCUMENT / LEGAL PAGES
   ============================================================ */
.doc { padding-block: clamp(56px, 8vw, 104px); }
.doc-inner { max-width: 760px; margin-inline: auto; }
.doc-inner.wide { max-width: 1040px; }
.doc-inner.wide .service-lead { max-width: 760px; }
.doc h1 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--green);
  line-height: 0.98;
  margin: 14px 0 0;
}
.doc .updated { color: var(--ink-soft); font-size: 0.9rem; margin-top: 16px; }
.doc h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  color: var(--green);
  margin: 44px 0 12px;
}
.doc p { color: var(--ink-soft); margin: 0 0 16px; }
.doc ul { color: var(--ink-soft); margin: 0 0 16px; padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc a:not(.btn) { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.doc a:not(.btn):hover { color: var(--rust); }
.doc strong { color: var(--ink); }
.doc .callout {
  margin-top: 28px;
  background: var(--cream-deep);
  border: 1px solid var(--cream-line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.doc .callout h2 { margin-top: 0; }
.doc .callout p:last-child { margin-bottom: 0; }
.doc .back { display: inline-flex; align-items: center; gap: 8px; margin-top: 44px; }
.doc .back svg { width: 16px; height: 16px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { margin-bottom: 22px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; padding: 0; margin: 0; font-size: 0.85rem; }
.breadcrumbs li { display: inline; color: var(--ink-soft); }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--cream-line); margin: 0 8px; font-weight: 600; }
.breadcrumbs a { color: var(--green); font-weight: 600; text-decoration: none; }
.breadcrumbs a:hover { color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumbs li[aria-current="page"] { color: var(--ink-soft); font-weight: 600; }

/* ---------- Service page extras (built on .doc) ---------- */
.service-icon-lg {
  width: 60px; height: 60px;
  color: var(--green);
  margin-bottom: 4px;
}
.doc .service-lead { font-size: 1.12rem; color: var(--ink-soft); margin-top: 18px; }
.service-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 30px;
  margin: 8px 0 12px;
  padding: 0;
  list-style: none;
}
.service-benefits li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
}
.service-benefits .chk {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #F0C24B;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.service-benefits .chk svg { width: 14px; height: 14px; }
.service-benefits b { display: block; color: var(--ink); font-size: 0.98rem; }
.service-benefits span { display: block; color: var(--ink-soft); font-size: 0.92rem; margin-top: 2px; }

.faq-list { margin-top: 6px; }
.faq-item { padding: 20px 0; border-top: 1px solid var(--cream-line); }
.faq-item:last-child { border-bottom: 1px solid var(--cream-line); }
.faq-item h3 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--ink);
  margin: 0 0 8px;
}
.faq-item p { margin: 0; color: var(--ink-soft); }

.related-services { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 4px; }
.related-services a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--cream-deep);
  border: 1px solid var(--cream-line);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}
.related-services a:hover { background: var(--green); color: var(--cream); border-color: var(--green); }

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}
.service-card .card-link svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.service-card .card-link:hover { color: var(--rust); }
.service-card .card-link:hover svg { transform: translateX(3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 480px; margin-inline: auto; }
  .promise-row { grid-template-columns: repeat(2, 1fr); gap: 22px 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* Collapse the header to a hamburger across the whole stacked-layout range,
     so the nav never gets crammed in the awkward ~760–940px zone. */
  .nav, .header-phone { display: none; }
  .header-cta .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-line);
    padding: 8px var(--pad) 20px;
    box-shadow: var(--shadow-sm);
  }
  .nav.open a { padding: 14px 0; border-bottom: 1px solid var(--cream-line); font-size: 1rem; }
  .nav.open a::after { display: none; }
  .call-bar { display: flex; }
  body { padding-bottom: 68px; }
  /* Lift the Sienna accessibility button above the sticky mobile call bar */
  .asw-menu-btn { bottom: 86px !important; }
}

@media (max-width: 760px) {
  .hero { padding-block: 40px 48px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .promise-row { grid-template-columns: 1fr; }
  .service-benefits { grid-template-columns: 1fr; }
}
