/* ==========================================================================
   Waurika Auto Pros — styles.css  (v2 redesign)
   Design system: "Highway 70" — Trust & Authority for rural Oklahoma
   Type: Barlow Condensed (headings, highway-signage DNA) + Barlow (body)
   Palette: brand maroon on warm cream, amber CTA accent, charcoal ink
   A11y: 18px body, 4.5:1+ contrast, visible focus, reduced-motion respected
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --maroon:       #7B1E22;
  --maroon-deep:  #5C1518;
  --maroon-ink:   #3A1012;

  /* Warm neutrals */
  --cream:        #F6F1E7;   /* page background */
  --cream-2:      #FDFBF5;   /* card background */
  --sand:         #EAE2D2;   /* borders, dividers */
  --ink:          #2B2320;   /* primary text  (13.4:1 on cream) */
  --ink-soft:     #5C524B;   /* muted text    (6.2:1 on cream) */

  /* Accent */
  --amber:        #E8A33C;   /* highlight accent (decor only on dark) */
  --amber-deep:   #B97A14;   /* accessible amber for light bg */

  /* Dark surfaces */
  --night:        #211A17;
  --night-2:      #2E2521;

  /* Type */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Barlow", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --container:    1160px;
  --radius:       10px;
  --radius-sm:    6px;
  --shadow-sm:    0 1px 3px rgba(43, 35, 32, 0.10);
  --shadow-md:    0 6px 24px -6px rgba(43, 35, 32, 0.18);
  --shadow-lg:    0 18px 48px -12px rgba(43, 35, 32, 0.28);
  --speed:        200ms;

  /* z-scale */
  --z-nav:        50;
  --z-float:      40;
  --z-skip:       100;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;             /* older-reader friendly */
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, iframe { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.06;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: var(--maroon); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: 88px; }

/* Focus — chunky and obvious for keyboard users */
:focus-visible {
  outline: 3px solid var(--amber-deep);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -48px; left: 16px;
  z-index: var(--z-skip);
  background: var(--night);
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top var(--speed) ease;
}
.skip-link:focus { top: 0; }

/* Scroll reveal (JS adds .is-visible). No-JS pages show everything. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;            /* >44px touch target */
  padding: 12px 26px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--speed) ease, border-color var(--speed) ease,
              color var(--speed) ease, box-shadow var(--speed) ease;
}
.btn-icon { width: 20px; height: 20px; flex: none; }

.btn-primary {
  background: var(--maroon);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--maroon-deep); box-shadow: var(--shadow-md); }

.btn-cta {
  background: var(--amber);
  color: var(--night);
  box-shadow: var(--shadow-sm);
}
.btn-cta:hover { background: #F0B255; box-shadow: var(--shadow-md); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}
.btn-outline:hover { background: var(--maroon); color: #fff; }

.btn-lg { min-height: 60px; padding: 16px 32px; font-size: 1.3rem; }
.btn-block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--night);
  color: #D8CFC6;
  font-size: 0.92rem;
  border-bottom: 3px solid var(--amber);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
  padding-block: 6px;
}
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 16px; height: 16px; color: var(--amber); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--cream-2);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow var(--speed) ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.logo-shield {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  background: var(--maroon);
  color: #fff;
  border-radius: var(--radius-sm);
  border-bottom: 3px solid var(--amber);
}
.logo-shield svg { width: 24px; height: 24px; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}
.logo-text em {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.78em;
  color: var(--maroon);
  letter-spacing: 0.12em;
}

.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: inline-block;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--speed) ease, background-color var(--speed) ease;
}
.main-nav a:hover { color: var(--maroon); background: rgba(123, 30, 34, 0.07); }

.btn-call {
  background: var(--maroon);
  color: #fff;
  min-height: 48px;
  padding: 10px 20px;
  font-size: 1.05rem;
  white-space: nowrap;
}
.btn-call:hover { background: var(--maroon-deep); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 10px;
  background: transparent;
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--speed) ease, opacity var(--speed) ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--night);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(33, 26, 23, 0.96) 0%, rgba(59, 18, 20, 0.88) 55%, rgba(33, 26, 23, 0.72) 100%),
    url("https://images.unsplash.com/photo-1486006920555-c77dcf18193c?auto=format&fit=crop&w=1600&q=70") center/cover no-repeat;
}
/* Amber hazard stripe along the hero base — workshop signage motif */
.hero-stripe {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--amber) 0 22px,
    var(--night) 22px 44px
  );
}

.hero-inner { position: relative; padding-block: 110px 124px; }
.hero-content { max-width: 660px; }

.hero-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
/* Route-shield style badge */
.hwy-shield {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 58px; height: 62px;
  background: #fff;
  color: var(--night);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 0.9;
  border-radius: 10px 10px 18px 18px;
  border: 3px solid var(--night);
  box-shadow: 0 0 0 3px #fff;
}
.hwy-shield small {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.hero-eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--amber);
}

.hero-title {
  font-size: clamp(3rem, 7.5vw, 5.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
}
.hero-title span {
  color: var(--amber);
}

.hero-subtitle {
  font-size: 1.22rem;
  line-height: 1.6;
  color: #E7DFD6;
  max-width: 56ch;
  margin-bottom: 34px;
}
.hero-subtitle strong { color: #fff; }

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.trust-strip li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
  font-size: 1.02rem;
  color: #E7DFD6;
}
.trust-strip li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px; height: 12px;
  border-right: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
  margin-top: -2px;
}

/* ---------- Promise bar ---------- */
.promise-bar {
  background: var(--maroon);
  color: #fff;
  border-bottom: 1px solid var(--maroon-deep);
}
.promise-inner { padding-block: 26px; text-align: center; }
.promise-inner p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.55;
}
.promise-inner strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.1em;
  color: var(--amber);
}
.promise-inner em { font-style: italic; }

/* ---------- Section heads ---------- */
.section-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--maroon);
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--amber);
}
.section-eyebrow.light { color: var(--amber); }

.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  font-weight: 800;
}
.section-title.light { color: #fff; }

.section-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Services ---------- */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--cream-2);
  border: 1px solid var(--sand);
  border-top: 4px solid var(--maroon);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--speed) ease, border-color var(--speed) ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-top-color: var(--amber-deep);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-bottom: 18px;
  background: rgba(123, 30, 34, 0.08);
  color: var(--maroon);
  border-radius: var(--radius-sm);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.42rem; margin-bottom: 8px; }
.service-card p { margin: 0; color: var(--ink-soft); font-size: 1rem; }

.services-note {
  margin: 40px 0 0;
  text-align: center;
  color: var(--ink-soft);
}
.services-note a { font-weight: 700; }

/* ---------- Why us ---------- */
.why-us {
  background: var(--night);
  color: #E7DFD6;
}
.why-us .section-title { color: #fff; }
.why-us .section-lead { color: #B8ACA2; }
.why-us .section-eyebrow { color: var(--amber); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.why-card {
  background: var(--night-2);
  border: 1px solid #3E332D;
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color var(--speed) ease, background-color var(--speed) ease;
}
.why-card:hover { border-color: var(--amber); background: #352A24; }
.why-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--amber);
  margin-bottom: 14px;
}
.why-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.why-card p { margin: 0; color: #B8ACA2; font-size: 1rem; }

/* ---------- About ---------- */
.about { background: var(--cream-2); }
.about-inner {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) 7fr;
  gap: 56px;
  align-items: center;
}
.about-media { position: relative; }
.about-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(33, 26, 23, 0) 55%, rgba(33, 26, 23, 0.45) 100%),
    url("https://images.unsplash.com/photo-1530046339160-ce3e530c7d2f?auto=format&fit=crop&w=900&q=70") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand);
}
.about-badge {
  position: absolute;
  right: -18px; bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--maroon);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  border-bottom: 4px solid var(--amber);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 175px;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-label {
  font-size: 0.88rem;
  line-height: 1.35;
  margin-top: 4px;
  color: #F0DFC8;
}

.about-content .section-eyebrow { margin-bottom: 6px; }
.about-content .section-title { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.about-content p { color: var(--ink-soft); }
.about-content p strong { color: var(--ink); }

.about-points { margin: 22px 0 30px; display: grid; gap: 12px; }
.about-points li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
}
.about-points li::before {
  content: "";
  position: absolute;
  left: 4px; top: 6px;
  width: 7px; height: 13px;
  border-right: 3px solid var(--maroon);
  border-bottom: 3px solid var(--maroon);
  transform: rotate(45deg);
}

/* ---------- Service area ---------- */
.service-area { background: var(--cream); }
.area-inner {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) 3fr;
  gap: 40px;
  align-items: start;
}
.area-info h3 { font-size: 1.5rem; }
.area-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 28px;
}
/* Towns as little highway-sign chips */
.area-towns li {
  background: #1D5632;            /* guide-sign green */
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: 6px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #1D5632, var(--shadow-sm);
}
.area-address {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream-2);
  border: 1px solid var(--sand);
  border-left: 4px solid var(--maroon);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 24px;
}
.area-address svg { width: 26px; height: 26px; color: var(--maroon); flex: none; margin-top: 2px; }

.area-map {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-md);
  background: var(--sand);            /* reserve space; avoid CLS */
}
.area-map iframe { width: 100%; height: 100%; min-height: 420px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream-2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.review-card {
  margin: 0;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--amber-deep);
  letter-spacing: 4px;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.review-card blockquote {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}
.review-card figcaption {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-top: 1px solid var(--sand);
  padding-top: 14px;
}
.review-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.review-loc { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact {
  background:
    linear-gradient(160deg, var(--maroon-ink) 0%, var(--maroon-deep) 60%, var(--maroon) 100%);
  color: #fff;
}
.contact-inner {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) 6fr;
  gap: 56px;
  align-items: start;
}
.contact-lead { color: #EBD9D2; font-size: 1.1rem; }

.contact-details { display: grid; gap: 24px; margin-top: 34px; }
.contact-details li { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  flex: none;
}
.contact-detail-icon svg { width: 26px; height: 26px; color: var(--amber); }
.contact-detail-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #D9B9B0;
  margin-bottom: 2px;
}
.contact-detail-value {
  font-size: 1.18rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
a.contact-detail-value:hover { color: var(--amber); }
.contact-detail-value small { color: #D9B9B0; }

/* Lead form */
.contact-form-wrap {
  background: var(--cream-2);
  border-radius: var(--radius);
  border-top: 5px solid var(--amber);
  box-shadow: var(--shadow-lg);
  padding: 36px 32px;
  color: var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.req { color: var(--maroon); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  font: inherit;
  font-size: 1.02rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  transition: border-color var(--speed) ease, box-shadow var(--speed) ease;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(123, 30, 34, 0.18);
}
.form-group.invalid input,
.form-group.invalid select { border-color: #B3261E; }
.error-msg {
  display: block;
  min-height: 1.2em;
  margin-top: 4px;
  color: #B3261E;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-disclaimer {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
}

.form-success {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 20px;
  background: #EDF7EE;
  border: 1px solid #BCE0BF;
  border-radius: var(--radius-sm);
  padding: 18px;
  color: #1E4620;
}
.form-success svg { width: 30px; height: 30px; color: #2E7D32; flex: none; }
.form-success p { margin: 4px 0 0; font-size: 0.98rem; }
.form-success a { color: #1E4620; font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--night);
  color: #B8ACA2;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: 64px;
}
.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-text em { color: var(--amber); }
.footer-tagline { margin-top: 14px; font-size: 0.98rem; }

.site-footer h4 {
  color: #fff;
  font-size: 1.12rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links li, .footer-contact li { margin-bottom: 10px; }
.footer-links a, .footer-contact a {
  color: #B8ACA2;
  text-decoration: none;
  transition: color var(--speed) ease;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--amber); }
.footer-contact small { color: #8A7E74; }

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.footer-bottom {
  border-top: 1px solid #3E332D;
  padding-block: 20px;
  font-size: 0.9rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; }

/* ---------- Floating mobile call bar ---------- */
.floating-call {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: var(--z-float);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  background: var(--maroon);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius);
  border-bottom: 4px solid var(--amber);
  box-shadow: var(--shadow-lg);
}
.floating-call svg { width: 22px; height: 22px; }
.floating-call:active { background: var(--maroon-deep); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .about-inner { grid-template-columns: 1fr; gap: 64px; }
  .about-media { max-width: 460px; margin-inline: auto; }
  .about-badge { right: 8px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .area-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream-2);
    border-bottom: 1px solid var(--sand);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--speed) ease;
  }
  .main-nav.open { max-height: 360px; }
  .main-nav ul { flex-direction: column; padding: 12px 24px 20px; }
  .main-nav a { display: block; padding: 14px 10px; font-size: 1.2rem; }
  .nav-toggle { display: flex; }
  .header-cta-text { display: none; }    /* icon-only phone btn on small header */
  .btn-call { padding: 10px 14px; }
}

@media (max-width: 640px) {
  .section { padding-block: 64px; }
  .hero-inner { padding-block: 76px 96px; }
  .hero-title { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .hero-cta-group .btn { width: 100%; }
  .topbar-hours { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .floating-call { display: inline-flex; }
  body { padding-bottom: 84px; }        /* room for floating call bar */
  .area-map { min-height: 320px; }
  .area-map iframe { min-height: 320px; }
}
