/* ==========================================================================
   OKC Concrete Driveway — stylesheet
   Plain CSS. No frameworks. Mobile-first: base rules are the phone layout,
   and the media queries at the bottom of each block scale it up.

   Contents
   1.  Design tokens (colors, type, spacing) — EDIT BRAND COLORS HERE
   2.  Base elements
   3.  Layout helpers
   4.  Buttons
   5.  Header + navigation
   6.  Hero + quote form
   7.  Section furniture (headings, scored-joint dividers)
   8.  Cards + media
   9.  Slab cross-section diagram (signature element)
   10. Tables
   11. FAQ
   12. Closing CTA + footer + sticky call bar
   13. Motion / reveal
   ========================================================================== */

/* 1. TOKENS ================================================================ */
:root {
  /* EDIT BRAND COLORS HERE — pulled from the logo */
  --navy:        #00174b;   /* logo ink, primary brand color */
  --navy-deep:   #000d2c;   /* darkest surface */
  --navy-mid:    #0b2a5f;   /* raised navy surface */
  --steel:       #8695d6;   /* the periwinkle arc in the logo mark */
  --steel-soft:  #b9c2e6;

  --clay:        #c4531d;   /* Oklahoma red-clay accent, used for CTAs */
  --clay-dark:   #a2400f;
  --clay-soft:   #f6ece5;

  --paper:       #ffffff;
  --concrete:    #efeeea;   /* warm gray page bands */
  --concrete-2:  #e2e0d9;
  --rule:        #d7d4cc;

  --ink:         #1a1f29;   /* body copy */
  --ink-soft:    #555e6e;   /* secondary copy */
  --ink-invert:  #ffffff;

  /* Type */
  --font-display: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-body:    'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Spacing scale — everything on the page uses one of these */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;

  --radius:    10px;
  --radius-lg: 16px;

  /* Layered, color-tinted shadows — never a flat gray box shadow */
  --shadow-1: 0 1px 2px rgba(0, 23, 75, .06), 0 2px 6px rgba(0, 23, 75, .05);
  --shadow-2: 0 2px 4px rgba(0, 23, 75, .06), 0 8px 20px rgba(0, 23, 75, .08);
  --shadow-3: 0 4px 8px rgba(0, 23, 75, .08), 0 18px 44px rgba(0, 23, 75, .16);

  --ease: cubic-bezier(.2, .7, .3, 1);
  --wrap: 1180px;
  --header-h: 66px;
}

/* 2. BASE ================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Anchor links land below the sticky header instead of under it */
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 var(--s-4);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 900;
  text-wrap: balance;
}

h1 { font-size: clamp(1.8rem, 6.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 5.2vw, 2.5rem); }
h3 { font-size: clamp(1.18rem, 3.4vw, 1.45rem); letter-spacing: -0.02em; }

p  { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--clay); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 var(--s-4); padding-left: 1.15rem; }
li { margin-bottom: var(--s-2); }

strong { font-weight: 600; }

/* Visible keyboard focus on every interactive element */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--ink-invert);
  padding: var(--s-3) var(--s-4);
  z-index: 200;
}
.skip-link:focus { left: var(--s-3); top: var(--s-3); color: var(--ink-invert); }

/* 3. LAYOUT ================================================================ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--s-5);
}

.section { padding: var(--s-8) 0; }
.section--alt {
  background: var(--concrete);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.section--dark {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .84);
}
.section--dark h2,
.section--dark h3 { color: var(--ink-invert); }
.section--dark a { color: var(--steel-soft); }

@media (min-width: 900px) {
  .section { padding: var(--s-9) 0; }
}

/* Grids. Single column on phones, widening as space allows. */
.grid { display: grid; gap: var(--s-5); }
@media (min-width: 640px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  /* Five cards: 3 on top, 2 centred underneath rather than a hanging gap */
  .grid--five { grid-template-columns: repeat(6, 1fr); }
  .grid--five > * { grid-column: span 2; }
  .grid--five > :nth-child(4) { grid-column: 2 / span 2; }
  .grid--five > :nth-child(5) { grid-column: 4 / span 2; }
}

/* 4. BUTTONS =============================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  /* Only transform and opacity animate — never transition-all */
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), opacity .18s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.995); }

.btn--primary {
  background: var(--clay);
  color: var(--ink-invert);
  box-shadow: 0 1px 2px rgba(96, 32, 8, .3), 0 6px 18px rgba(196, 83, 29, .28);
}
.btn--primary:hover {
  background: var(--clay-dark);
  color: var(--ink-invert);
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(96, 32, 8, .3), 0 12px 26px rgba(196, 83, 29, .34);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(0, 23, 75, .28);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--ink-invert);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.btn--onDark {
  background: rgba(255, 255, 255, .08);
  color: var(--ink-invert);
  border-color: rgba(255, 255, 255, .34);
}
.btn--onDark:hover {
  background: var(--ink-invert);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--block { width: 100%; }

.btn-row { display: flex; flex-direction: column; gap: var(--s-3); margin-bottom: var(--s-5); }
@media (min-width: 560px) {
  .btn-row { flex-direction: row; flex-wrap: wrap; }
  .btn-row .btn { width: auto; }
}

/* 5. HEADER ================================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow-1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  min-height: var(--header-h);
  padding-block: var(--s-2);
}

.header__logo { display: block; flex-shrink: 0; }
.header__logo img { width: 168px; height: auto; }

.header__actions { display: flex; align-items: center; gap: var(--s-3); }

.header__phone {
  display: none;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .18s var(--ease), opacity .18s var(--ease);
}
.header__phone:hover { color: var(--clay); transform: translateY(-1px); }
.header__phone svg { width: 18px; height: 18px; flex-shrink: 0; }

.header__cta { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--navy);
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.nav-toggle:hover { transform: translateY(-1px); box-shadow: var(--shadow-1); }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open  { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile: the nav drops down as a panel under the header */
.nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow-2);
  padding-block: var(--s-4) var(--s-5);
}
.nav.is-open { display: block; }

.nav__list { list-style: none; margin: 0 0 var(--s-4); padding: 0; }
.nav__list li { margin: 0; border-bottom: 1px solid var(--rule); }
.nav__list a {
  display: block;
  padding: var(--s-3) 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
}
.nav__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-3);
  margin-top: var(--s-3);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
}

@media (min-width: 1200px) {
  .nav {
    display: block;
    position: static;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-inline: auto;
  }
  .nav > .wrap { padding: 0; max-width: none; display: flex; align-items: center; }
  .nav__list { display: flex; gap: var(--s-4); margin: 0; }
  .nav__list li { border: 0; }
  .nav__list a {
    padding: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
    position: relative;
    white-space: nowrap;
  }
  .nav__list a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--clay);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s var(--ease);
  }
  .nav__list a:hover { color: var(--navy); }
  .nav__list a:hover::after { transform: scaleX(1); }
  .nav__cta, .nav__phone { display: none; }
  .header__cta { white-space: nowrap; padding-inline: 1.15rem; }
  .nav-toggle { display: none; }
  .header__phone { display: inline-flex; }
  .header__cta { display: inline-flex; }
  .header__logo img { width: 200px; }
}

/* 6. HERO ================================================================== */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .86);
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Color treatment over the photo, then a navy wash for text contrast */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  mix-blend-mode: multiply;
  opacity: .5;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(130% 80% at 8% 4%, rgba(0, 13, 44, .82), transparent 70%),
    radial-gradient(90% 70% at 96% 98%, rgba(196, 83, 29, .24), transparent 62%),
    linear-gradient(180deg, rgba(0, 13, 44, .6), rgba(0, 13, 44, .86));
}
/* Grain, for depth over the photograph */
.hero__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .32;
  pointer-events: none;
}

.hero__inner { position: relative; padding-block: var(--s-7) var(--s-8); }

.hero__grid { display: grid; gap: var(--s-6); }

.hero h1 { color: var(--ink-invert); margin-bottom: var(--s-4); }

.hero__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .9);
  margin-bottom: var(--s-4);
}
.hero__intro { color: rgba(255, 255, 255, .72); font-size: 0.92rem; line-height: 1.62; }

.hero__meta { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-2); }
.hero__meta li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, .8);
}
.hero__meta svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 4px; color: var(--steel); }

@media (min-width: 1000px) {
  .hero__inner { padding-block: var(--s-8) var(--s-9); }
  .hero__grid { grid-template-columns: 1.08fr 0.92fr; gap: var(--s-7); align-items: start; }
}

/* --- Quote form ----------------------------------------------------------- */
.form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-3);
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.form__heading { font-size: 1.4rem; margin-bottom: var(--s-2); }
.form__intro { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: var(--s-5); }

.form__grid { display: grid; gap: var(--s-4); }
@media (min-width: 480px) {
  .form__grid { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: var(--s-2);
}
.field .req { color: var(--clay); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--concrete);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: box-shadow .18s var(--ease);
}
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #b9b5aa; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--paper);
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 23, 75, .12);
  outline-offset: 0;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300174b' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 18px; padding-right: 2.4rem; }

.field [data-fs-error] { display: block; color: var(--clay-dark); font-size: 0.85rem; margin-top: var(--s-1); }

/* Honeypot — off-screen for people, still reachable by bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__footnote { font-size: 0.82rem; color: var(--ink-soft); margin-top: var(--s-4); }

/* Success / error panels. Formspree's script adds data-fs-active to reveal one. */
.form__status {
  display: none;
  margin-top: var(--s-4);
  padding: var(--s-4);
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.form .form__status[data-fs-success],
.form .form__status[data-fs-error] { display: none; }
.form .form__status[data-fs-success][data-fs-active],
.form .form__status[data-fs-error][data-fs-active] { display: block; }
.form .form__status[data-fs-success][data-fs-active] {
  background: #eaf3ec;
  color: #1d5130;
  border: 1px solid #bcdcc6;
}
.form .form__status[data-fs-error][data-fs-active] {
  background: var(--clay-soft);
  color: var(--clay-dark);
  border: 1px solid #e6c4ae;
}

/* 7. SECTION FURNITURE ===================================================== */
/* Scored-joint divider — reads like a saw cut in a slab, not a plain hairline */
.seam {
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(0, 23, 75, .16);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .95);
}

.section-head { max-width: 62ch; margin-bottom: var(--s-6); }
.section-head--wide { max-width: 72ch; }

.lede { font-size: 1.05rem; color: var(--ink-soft); }
.section--dark .lede { color: rgba(255, 255, 255, .74); }

/* 8. CARDS ================================================================= */
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }

.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--concrete-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
/* Tall photos shown whole rather than cropped to the 4:3 card.
   The colour-treatment layers are dropped so the matte stays clean. */
.card__media--contain { background: var(--concrete-2); }
.card__media--contain::before,
.card__media--contain::after { display: none; }
.card__media img.fit-contain { object-fit: contain; }
.card:hover .card__media img.fit-contain { transform: none; }
.card:hover .card__media img { transform: scale(1.035); }
/* Color treatment + gradient so photos sit in one family */
.card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(200deg, rgba(11, 42, 95, .16), rgba(196, 83, 29, .08));
  mix-blend-mode: multiply;
}
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 13, 44, .45), transparent 52%);
}

.card__body { padding: var(--s-5); flex: 1; }
.card__body p { font-size: 0.97rem; color: var(--ink-soft); }
.card__body p + p { margin-top: var(--s-4); }

/* Wide service rows: photo on one side, copy on the other */
.svc { display: grid; gap: var(--s-5); align-items: center; }
.svc + .svc { margin-top: var(--s-7); padding-top: var(--s-7); border-top: 1px solid var(--rule); }
.svc__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-2);
}
.svc__media img { width: 100%; height: 100%; object-fit: cover; }
.svc__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(200deg, rgba(11, 42, 95, .18), rgba(196, 83, 29, .08));
  mix-blend-mode: multiply;
}
.svc__body p { color: var(--ink-soft); }

@media (min-width: 860px) {
  .svc { grid-template-columns: 0.85fr 1.15fr; gap: var(--s-7); }
  .svc--flip .svc__media { order: 2; }
}

/* Small no-photo cards (Why us, flatwork) */
.minicard {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--s-5);
  box-shadow: var(--shadow-1);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.minicard:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.minicard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: var(--s-4);
  border-radius: 12px;
  background: var(--clay-soft);
  color: var(--clay-dark);
}
.minicard__icon svg { width: 24px; height: 24px; }
.section--dark .minicard__icon {
  background: rgba(196, 83, 29, .16);
  color: #f0a778;
}
.minicard h3 { font-size: 1.1rem; margin-bottom: var(--s-3); }
.minicard p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.minicard p + p { margin-top: var(--s-2); }

.section--dark .minicard {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: none;
}
.section--dark .minicard p { color: rgba(255, 255, 255, .74); }

/* Bulleted option lists (stain types, process steps) */
.spec-list { list-style: none; padding: 0; margin: 0 0 var(--s-4); }
.spec-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: var(--s-3);
  color: var(--ink-soft);
}
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 2px;
  background: var(--clay);
}
.spec-list strong, .spec-list b { color: var(--ink); }
.section--dark .spec-list li { color: rgba(255, 255, 255, .78); }
.section--dark .spec-list strong { color: var(--ink-invert); }

/* Two-up rows: copy beside a photo */
.split-grid { display: grid; gap: var(--s-6); align-items: center; }
@media (min-width: 900px) {
  .split-grid { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
}

/* 10. TABLES =============================================================== */
/* Real tables. On phones they scroll sideways inside a bordered frame. */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-1);
}
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
caption {
  caption-side: top;
  text-align: left;
  padding: var(--s-4) var(--s-5) 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
th, td { padding: var(--s-4) var(--s-5); text-align: left; vertical-align: top; }
thead th {
  background: var(--navy);
  color: var(--ink-invert);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
tbody tr + tr { border-top: 1px solid var(--rule); }
tbody tr:nth-child(even) { background: rgba(0, 23, 75, .025); }
tbody th { font-family: var(--font-display); font-weight: 700; color: var(--navy); white-space: nowrap; }
tbody td { color: var(--ink-soft); min-width: 15rem; }

/* Service areas: table beside the map on desktop, stacked on phones */
.areas-grid { display: grid; gap: var(--s-5); align-items: stretch; }
.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-2);
  background: var(--concrete-2);
  min-height: 320px;
}
.map iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }
.areas-copy { margin-top: var(--s-6); max-width: 78ch; }
.areas-copy p { color: var(--ink-soft); }

@media (min-width: 860px) {
  .areas-grid { grid-template-columns: 0.85fr 1.15fr; gap: var(--s-6); }
  .map { min-height: 100%; }
  /* Table fills the row so its bottom edge lines up with the map's */
  .areas-grid .table-wrap { display: flex; }
  .areas-grid .table--areas { height: 100%; }
}

/* Service-area table cells */
.table--areas tbody td {
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}
.table--areas th, .table--areas td { padding-block: var(--s-3); }

.table-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: var(--s-3); }

/* 11. FAQ ================================================================== */
.faq { display: grid; gap: var(--s-3); }
.faq__item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.faq__item[open] { border-color: rgba(0, 23, 75, .3); box-shadow: var(--shadow-2); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-4) var(--s-5);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-4);
  transition: background-color .18s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: var(--concrete); }

.faq__item summary h3 {
  font-size: 1.02rem;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--clay);
  transition: transform .22s var(--ease);
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }

.faq__answer { padding: 0 var(--s-5) var(--s-5); color: var(--ink-soft); font-size: 0.97rem; }

/* 12. CLOSING CTA, FOOTER, STICKY BAR ====================================== */
.cta {
  position: relative;
  background: var(--navy);
  color: rgba(255, 255, 255, .84);
  overflow: hidden;
}
.cta__media { position: absolute; inset: 0; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 13, 44, .95) 30%, rgba(0, 13, 44, .55) 70%, rgba(0, 13, 44, .4));
}
.cta__inner { position: relative; padding-block: var(--s-8); text-align: left; max-width: 44rem; }
.cta h2 { color: var(--ink-invert); }
.cta p { color: rgba(255, 255, 255, .78); }

.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .7);
  padding-block: var(--s-7);
  font-size: 0.93rem;
}
.footer__grid { display: grid; gap: var(--s-6); }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-7); } }

.footer h2 {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: var(--s-4);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: var(--s-2); }
.footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.footer a:hover { color: var(--ink-invert); text-decoration: underline; }
.footer__logo img { width: 210px; background: var(--paper); border-radius: var(--radius); padding: var(--s-3); margin-bottom: var(--s-4); }
.footer__phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink-invert) !important;
}
.footer__bottom {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .55);
}

/* Persistent call bar — phones only */
.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  gap: var(--s-3);
  padding: var(--s-3);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -2px 6px rgba(0, 23, 75, .08), 0 -10px 30px rgba(0, 23, 75, .1);
}
.stickybar .btn { flex: 1; padding-block: 0.85rem; font-size: 0.95rem; }
body { padding-bottom: 76px; }

@media (min-width: 1200px) {
  .stickybar { display: none; }
  body { padding-bottom: 0; }
}

/* 13. MOTION =============================================================== */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
