/* ==========================================================================
   The Carolina Injury Lawyer — Design System
   trade-name confirmation. Do not publish until cleared.
   --------------------------------------------------------------------------
   Single stylesheet for the entire static site. No external assets, no
   webfonts, no JS dependencies. Mobile-first. WCAG AA contrast throughout.
   Contract for content agents: see /TEMPLATE_GUIDE.md — use the classes
   defined here; do not add page-level <style> blocks.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Palette — "Navy & Hearth"
     Deep Upstate navy + warm paper + hearth-copper accent + brass detail.
     Verified AA pairs:
       white on --navy-800  : 15.0:1
       white on --copper    :  5.2:1
       --copper on --paper  :  4.9:1
       --brass on --navy-800:  6.7:1
       --ink on --paper     : 14.0:1                                        */
  --navy-900: #0B1B2B;   /* footer, consult band            */
  --navy-800: #12283F;   /* primary brand navy              */
  --navy-700: #1B3A5C;   /* hovers, secondary surfaces      */
  --navy-100: #E3EAF2;   /* pale navy tint                  */
  --paper:    #FAF7F2;   /* page background, warm off-white */
  --paper-warm: #F3EDE1; /* alternate section background    */
  --white:    #FFFFFF;   /* cards                           */
  --copper:   #B34E1B;   /* hearth copper — primary accent  */
  --copper-dark: #93400F;/* accent hover / active           */
  --brass:    #D9A441;   /* gold detail on dark surfaces    */
  --ink:      #1C2733;   /* body text                       */
  --ink-soft: #52565E;   /* secondary text (7.0:1 on paper) */
  --line:     #E4DCCC;   /* hairline borders                */
  --line-dark: rgba(255, 255, 255, 0.18);
  --ok:       #1E6B3C;   /* form success                    */
  --error:    #B3261E;   /* form errors                     */
  --focus:    #1B6DC1;   /* focus ring (visible on paper & navy) */

  /* Type */
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
                "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;

  /* Fluid type scale (minor third-ish, clamped) */
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.94rem);
  --step-0:  clamp(1.00rem, 0.96rem + 0.20vw, 1.13rem);
  --step-1:  clamp(1.20rem, 1.14rem + 0.30vw, 1.38rem);
  --step-2:  clamp(1.44rem, 1.34rem + 0.50vw, 1.70rem);
  --step-3:  clamp(1.73rem, 1.56rem + 0.85vw, 2.20rem);
  --step-4:  clamp(2.07rem, 1.80rem + 1.35vw, 2.85rem);
  --step-5:  clamp(2.49rem, 2.05rem + 2.20vw, 3.60rem);

  /* Space */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --section-pad: clamp(2.75rem, 2rem + 4vw, 5rem);

  /* Shape */
  --radius-sm: 6px;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(18, 40, 63, 0.10);
  --shadow: 0 6px 24px -8px rgba(18, 40, 63, 0.22);

  /* Layout */
  --container: 72rem;
  --container-narrow: 46rem;
  --callbar-h: 3.75rem;
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-800);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); letter-spacing: -0.01em; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
h4 { font-size: var(--step-0); }

p, ul, ol { margin: 0 0 1em; }
ul, ol { padding-left: 1.25em; }

a { color: var(--copper); text-underline-offset: 0.15em; }
a:hover { color: var(--copper-dark); }

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

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: var(--sp-6) 0;
}

strong { color: inherit; }

blockquote {
  margin: var(--sp-5) 0;
  padding: var(--sp-4) var(--sp-5);
  border-left: 4px solid var(--brass);
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-size: var(--step-1);
  color: var(--navy-800);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection { background: var(--brass); color: var(--navy-900); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   3. LAYOUT + UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-pad); }
.section--alt { background: var(--paper-warm); }
.section--tight { padding-block: calc(var(--section-pad) * 0.55); }

.grid { display: grid; gap: var(--sp-5); }
@media (min-width: 40em) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 60em) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.center { text-align: center; }
.flow > * + * { margin-top: var(--sp-4); }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--sp-2);
}
.on-dark .eyebrow, .eyebrow--brass { color: var(--brass); }

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
}

.fine-print {
  font-size: var(--step--1);
  color: var(--ink-soft);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -100px;
  z-index: 200;
  background: var(--navy-800);
  color: var(--white);
  padding: var(--sp-3) var(--sp-4);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { top: 0; color: var(--white); }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75em 1.5em;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease,
              border-color 0.15s ease;
}
.btn--primary { background: var(--copper); color: var(--white); }
.btn--primary:hover,
.btn--primary:focus-visible { background: var(--copper-dark); color: var(--white); }

.btn--navy { background: var(--navy-800); color: var(--white); }
.btn--navy:hover,
.btn--navy:focus-visible { background: var(--navy-700); color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn--outline:hover,
.btn--outline:focus-visible { background: var(--navy-800); color: var(--white); }

/* Outline for dark backgrounds */
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-light:hover,
.btn--outline-light:focus-visible { background: var(--white); color: var(--navy-900); }

.btn--lg { font-size: var(--step-1); padding: 0.8em 1.7em; }
.btn--block { display: flex; width: 100%; }

/* --------------------------------------------------------------------------
   5. HEADER / NAV
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-900);
  color: var(--white);
  font-size: var(--step--1);
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2) var(--sp-4);
  padding-block: var(--sp-2);
}
.topbar a { color: var(--brass); font-weight: 700; text-decoration: none; }
.topbar a:hover { text-decoration: underline; color: var(--brass); }
.topbar__note { margin: 0; color: rgba(255, 255, 255, 0.85); }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: none;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}
.brand__name {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1rem + 0.9vw, 1.5rem);
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}
.brand__tag {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
}
.brand:hover .brand__name { color: var(--navy-700); }

.header-cta { display: none; }

/* Mobile nav toggle — pure CSS checkbox pattern, no JS */
.nav-checkbox { position: absolute; opacity: 0; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-checkbox:focus-visible + .nav-toggle {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.nav-checkbox:checked + .nav-toggle .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-checkbox:checked + .nav-toggle .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-checkbox:checked + .nav-toggle .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
}
.nav-checkbox:checked ~ .site-nav { display: block; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: var(--sp-3) clamp(1rem, 4vw, 2rem) var(--sp-5);
}
.site-nav li { border-bottom: 1px solid var(--line); }
.site-nav li:last-child { border-bottom: 0; }
.site-nav a,
.site-nav summary {
  display: block;
  padding: var(--sp-3) var(--sp-2);
  color: var(--navy-800);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.site-nav a:hover,
.site-nav summary:hover { color: var(--copper); }
.site-nav a[aria-current="page"] {
  color: var(--copper);
  box-shadow: inset 3px 0 0 var(--copper);
}

/* "All Practice Areas" dropdown — <details> pattern, works without JS */
.nav-dropdown summary { list-style: none; position: relative; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after {
  content: "";
  display: inline-block;
  margin-left: 0.45em;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.15em);
  transition: transform 0.15s ease;
}
.nav-dropdown[open] > summary::after { transform: rotate(225deg) translateY(-0.1em); }
.nav-dropdown__panel {
  list-style: none;
  margin: 0;
  padding: 0 0 var(--sp-2) var(--sp-4);
}
.nav-dropdown__panel li { border-bottom: 0; }
.nav-dropdown__panel a {
  font-weight: 400;
  padding-block: var(--sp-2);
}

@media (min-width: 64em) {
  .nav-toggle { display: none; }
  .header-cta { display: inline-flex; margin-left: auto; }

  /* Two-row desktop header: brand + CTA above, full-width nav below */
  .site-header .container {
    flex-wrap: wrap;
    padding-block: var(--sp-3) 0;
  }
  .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    flex-basis: 100%;
    order: 4;
    border-top: 1px solid var(--line);
    margin-top: var(--sp-3);
  }
  .site-nav > ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-1);
    padding: var(--sp-1) 0;
    margin-left: calc(-1 * var(--sp-3));
  }
  .site-nav li { border-bottom: 0; position: relative; }
  .site-nav a,
  .site-nav summary {
    padding: var(--sp-2) var(--sp-3);
    font-size: var(--step--1);
    white-space: nowrap;
  }
  .site-nav a[aria-current="page"] {
    box-shadow: inset 0 -3px 0 var(--copper);
  }
  .nav-dropdown__panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 16rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: var(--sp-2);
    z-index: 110;
  }
  .nav-dropdown__panel a {
    padding: var(--sp-2) var(--sp-3);
    white-space: nowrap;
    border-radius: var(--radius-sm);
  }
  .nav-dropdown__panel a:hover { background: var(--paper-warm); }
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3rem, 2rem + 5vw, 6rem);
}
.hero h1 { max-width: 22ch; }
.hero__sub {
  font-size: var(--step-1);
  color: var(--ink-soft);
  max-width: 58ch;
  margin-bottom: var(--sp-5);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.hero__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--navy-800);
}
.hero__points li { display: flex; align-items: baseline; gap: 0.5em; }
.hero__points li::before {
  content: "";
  flex: none;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: var(--copper);
  transform: translateY(-0.05em);
}

/* Dark hero (home page) */
.hero--dark {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 70%, var(--navy-700) 100%);
  border-bottom: 4px solid var(--brass);
}
.hero--dark h1 { color: var(--white); }
.hero--dark .hero__sub { color: rgba(255, 255, 255, 0.88); }
.hero--dark .hero__points { color: var(--white); }
.hero--dark .hero__points li::before { background: var(--brass); }

/* Trust chips (BBB, reviews, house calls, Greek) */
.chips {
  list-style: none;
  padding: 0;
  margin: var(--sp-5) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.chip {
  display: inline-block;
  padding: 0.35em 0.9em;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--navy-800);
}
.hero--dark .chip,
.on-dark .chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-dark);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   7. CTA BANDS
   -------------------------------------------------------------------------- */
.band { padding-block: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem); }
.band h2, .band h3 { margin-bottom: var(--sp-3); }
.band p:last-child { margin-bottom: 0; }

/* 7a. House-call band — THE differentiator. Navy, brass keyline. */
.band--housecall {
  background: var(--navy-800);
  color: var(--white);
  border-top: 4px solid var(--brass);
}
.band--housecall h2,
.band--housecall h3 { color: var(--white); }
.band--housecall .band__inner {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
}
@media (min-width: 48em) {
  .band--housecall .band__inner { grid-template-columns: auto 1fr auto; }
}
.band__icon {
  flex: none;
  width: 3.25rem;
  height: 3.25rem;
  color: var(--brass);
}
.band--housecall p { color: rgba(255, 255, 255, 0.9); max-width: 60ch; }

/* 7b. Cell-promise band — warm paper, copper rule, Tom's signature. */
.band--cell {
  background: var(--paper-warm);
  border-block: 1px solid var(--line);
}
.band--cell .band__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
  border-left: 5px solid var(--copper);
  padding-left: clamp(1rem, 3vw, 2rem);
}
.band--cell .promise {
  font-family: var(--font-serif);
  font-size: var(--step-2);
  line-height: 1.35;
  color: var(--navy-800);
  margin-bottom: var(--sp-3);
}
.band--cell .expectation {
  color: var(--ink-soft);
  margin-bottom: var(--sp-3);
}

.signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--step-1);
  color: var(--navy-800);
}
.on-dark .signature,
.band--housecall .signature { color: var(--brass); }

/* 7c. Consultation band — deepest navy, single big action. */
.band--consult {
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
}
.band--consult h2 { color: var(--white); }
.band--consult p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 55ch;
  margin-inline: auto;
}
.band--consult .band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.band--consult .band__phone {
  display: block;
  margin-top: var(--sp-4);
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.75);
}
.band--consult .band__phone a { color: var(--brass); font-weight: 700; }

/* --------------------------------------------------------------------------
   8. CARDS
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card__kicker {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--sp-2);
}
.card__title { margin-bottom: var(--sp-2); }
.card__title a { color: var(--navy-800); text-decoration: none; }
.card__title a::after { content: ""; position: absolute; inset: 0; } /* stretched link */
.card__title a:hover { color: var(--copper); }
.card p { color: var(--ink-soft); font-size: var(--step--1); margin-bottom: 0; }
.card__more {
  margin-top: auto;
  padding-top: var(--sp-3);
  font-weight: 700;
  font-size: var(--step--1);
  color: var(--copper);
}

/* --------------------------------------------------------------------------
   9. FAQ (details/summary)
   -------------------------------------------------------------------------- */
.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.faq {
  border-bottom: 1px solid var(--line);
}
.faq:last-child { border-bottom: 0; }
.faq summary {
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--font-serif);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--navy-800);
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--copper); }
.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-sans);
  font-size: 1.4em;
  line-height: 1;
  color: var(--copper);
  transition: transform 0.15s ease;
}
.faq[open] summary::after { content: "–"; }
.faq__a { padding: 0 var(--sp-5) var(--sp-5); }
.faq__a > *:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   10. RESULTS TABLE
   -------------------------------------------------------------------------- */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.results-table {
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
  font-size: var(--step--1);
}
.results-table caption {
  text-align: left;
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--font-serif);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--navy-800);
}
.results-table th,
.results-table td {
  padding: var(--sp-3) var(--sp-5);
  text-align: left;
  border-top: 1px solid var(--line);
}
.results-table thead th {
  background: var(--navy-800);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 0;
}
.results-table .amt {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--copper-dark);
  white-space: nowrap;
}
.results-table tbody tr:nth-child(even) { background: var(--paper); }

.disclaimer {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: var(--step--1);
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   11. BREADCRUMBS
   -------------------------------------------------------------------------- */
.breadcrumbs {
  padding-block: var(--sp-3);
  font-size: var(--step--1);
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1) var(--sp-2);
}
.breadcrumbs li { display: flex; align-items: center; gap: var(--sp-2); }
.breadcrumbs li + li::before {
  content: "\203A"; /* › */
  color: var(--ink-soft);
}
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--copper); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--navy-800); font-weight: 600; }

/* --------------------------------------------------------------------------
   12. FORMS (static markup — no backend wired yet)
   -------------------------------------------------------------------------- */
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 40em) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
}
.field label {
  display: block;
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: var(--sp-1);
}
.field .req { color: var(--error); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.65em 0.85em;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #C9C0AD;
  border-radius: var(--radius-sm);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 1px;
  background: var(--white);
}
.field__hint {
  font-size: var(--step--1);
  color: var(--ink-soft);
  margin: var(--sp-1) 0 0;
}
.form__consent {
  font-size: var(--step--1);
  color: var(--ink-soft);
}
.form__consent input { width: auto; margin-right: 0.5em; }
/* Honeypot — must stay visually removed but present in DOM */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   13. STICKY MOBILE CALL BAR
   -------------------------------------------------------------------------- */
.callbar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 150;
  display: flex;
  height: var(--callbar-h);
  box-shadow: 0 -4px 16px rgba(11, 27, 43, 0.25);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.callbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-weight: 800;
  font-size: var(--step-0);
  text-decoration: none;
}
.callbar__call { background: var(--copper); color: var(--white); }
.callbar__call:hover { background: var(--copper-dark); color: var(--white); }
.callbar__consult { background: var(--navy-800); color: var(--white); }
.callbar__consult:hover { background: var(--navy-700); color: var(--white); }

body { padding-bottom: calc(var(--callbar-h) + env(safe-area-inset-bottom, 0px)); }
@media (min-width: 48em) {
  .callbar { display: none; }
  body { padding-bottom: 0; }
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--step--1);
  border-top: 4px solid var(--brass);
}
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { color: var(--brass); text-decoration: underline; }

.footer-grid {
  display: grid;
  gap: var(--sp-6);
  padding-block: var(--sp-7);
}
@media (min-width: 40em) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64em) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer-col h2 {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-3);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li { margin-bottom: var(--sp-2); }

.footer-brand__name {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
}
.footer-brand address {
  font-style: normal;
  margin-bottom: var(--sp-3);
  line-height: 1.7;
}
.footer-brand .tel {
  display: inline-block;
  font-size: var(--step-1);
  font-weight: 800;
  color: var(--brass);
}

.footer-legal {
  border-top: 1px solid var(--line-dark);
  padding-block: var(--sp-5);
  color: rgba(255, 255, 255, 0.6);
}
.footer-legal p { margin-bottom: var(--sp-2); max-width: none; }
.footer-legal p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   15. MISC BLOCKS
   -------------------------------------------------------------------------- */
.notice {
  padding: var(--sp-4) var(--sp-5);
  background: var(--navy-100);
  border-left: 4px solid var(--navy-800);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.byline {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--step--1);
  color: var(--ink-soft);
  margin-bottom: var(--sp-5);
}
.byline strong { color: var(--navy-800); }

.img-slot {
  background: var(--paper-warm);
  border: 1px dashed #C9C0AD;
  border-radius: var(--radius);
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: var(--step--1);
}

/* --------------------------------------------------------------------------
   16. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .topbar, .nav-toggle, .site-nav, .callbar, .header-cta,
  .skip-link, .hero__actions, .band__actions, .form, .btn { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; font-size: 11pt; }
  .hero, .hero--dark, .band--housecall, .band--consult, .band--cell,
  .section--alt, .site-footer {
    background: #fff !important;
    color: #000 !important;
    border: 0 !important;
  }
  .hero--dark h1, .band--housecall h2, .band--housecall h3,
  .band--consult h2, .band--housecall p, .band--consult p,
  .site-footer, .site-footer a { color: #000 !important; }
  h1, h2, h3, h4 { color: #000; page-break-after: avoid; }
  .card, .faq-list, .table-scroll { box-shadow: none; page-break-inside: avoid; }
  a { color: #000; text-decoration: underline; }
  main a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 90%; }
  main a[href^="tel:"]::after, main a[href^="sms:"]::after { content: ""; }
}

/* Credentials strip (added 2026-08-02 — user-confirmed memberships) */
.cred-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem 2.5rem; padding: 1.25rem 0; }
.cred-strip img { height: 44px; width: auto; opacity: 0.85; }
.cred-strip__note { width: 100%; text-align: center; font-size: 0.85rem; color: var(--color-muted, #5a6572); margin: 0; }

/* Printable accident checklist sheet (added 2026-08-02) */
.sheet { background: #fff; border: 1px solid var(--color-border, #d9d2c7); border-radius: 8px; max-width: 720px; margin: 0 auto; overflow: hidden; box-shadow: 0 2px 12px rgba(18,40,63,0.08); }
.sheet__head { background: #12283F; color: #fff; padding: 1.25rem 1.75rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.sheet__brand { font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 1rem; }
.sheet__label { font-size: 0.85rem; opacity: 0.85; }
.sheet__warn { background: #1d3a5f; color: #fff; text-align: center; padding: 0.9rem 1.5rem; font-size: 0.95rem; }
.sheet__warn strong { color: #E86A33; }
.sheet__body { padding: 1.5rem 1.75rem; }
.sheet__item { display: flex; gap: 0.9rem; margin-bottom: 1.4rem; }
.sheet__box { flex: 0 0 auto; width: 22px; height: 22px; border: 2px solid #12283F; border-radius: 4px; margin-top: 0.2rem; }
.sheet__item h3 { color: #B33A28; margin: 0 0 0.3rem; font-size: 1.05rem; }
.sheet__item p { margin: 0; font-size: 0.92rem; line-height: 1.55; }
.sheet__foot { text-align: center; padding: 1.1rem 1.5rem 1.5rem; border-top: 1px solid var(--color-border, #d9d2c7); }
.sheet__foot .num { font-size: 1.25rem; font-weight: 700; color: #B33A28; }
@media print {
  .topbar, .site-header, .callbar, .breadcrumbs, .band, .no-print, footer, .site-footer { display: none !important; }
  body { background: #fff; }
  .sheet { border: none; box-shadow: none; max-width: 100%; }
  @page { size: letter; margin: 0.5in; }
}

/* Spartan helmet brand mark (added 2026-08-03 — user directive: heritage mark from Sparta, Greece) */
.brand__mark { height: 40px; width: auto; flex: 0 0 auto; }
.brand__text { display: flex; flex-direction: column; }
@media (max-width: 480px) { .brand__mark { height: 34px; } }
.cred-strip__tall { height: 58px !important; }
