/* ==========================================================================
   Stump Grinding Weatherford TX — professional contractor layout
   Mobile-first: base styles are the 375px layout, every query is min-width.
   Dark header/hero/footer bookends, warm light content sections, orange CTAs.
   ========================================================================== */

/* ---- Fonts (self-hosted) ---- */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/anton-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/barlow-400-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/barlow-600-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/barlow-700-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/barlowcond-600-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/barlowcond-700-latin.woff2') format('woff2');
}

/* ---- Tokens ---- */
:root {
  /* ink (dark) side */
  --ink: #0E0B09;
  --ink-2: #171310;
  --ink-3: #241D17;
  --line-dark: #3A2F24;
  --text-on-dark: #F0EADD;
  --dim-on-dark: #CFC5B2;
  --orange: #E28E38;         /* accent text on dark ≥6.7:1 */
  --orange-strong: #D9832E;  /* button and band fills */
  --btn-ink: #1C1006;        /* text on orange fills 6.4:1 */
  --focus-dark: #FFC97E;

  /* light side */
  --cream: #F5F1E8;
  --card: #FFFFFF;
  --text-on-light: #1C1610;
  --dim-on-light: #4A3E30;
  --orange-ink: #8F4A12;     /* accent text on light ≥5.5:1 */
  --line-light: #E3DCCC;     /* decorative card borders */
  --border-strong: #6E5D45;  /* functional borders on light */

  --error: #FFB4A8;
  --error-ink: #8C2B1A;
  --ok-ink: #2E5C33;

  --radius: 14px;
  --shadow-card: 0 6px 20px rgba(28, 22, 16, 0.08);
  --header-h: 64px;
  --font-display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --font-cond: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --space-section: clamp(3.5rem, 9vw, 6rem);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 0.75rem; }
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 5.5vw, 2.6rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.18rem;
}
p { margin: 0 0 1rem; }
a { color: var(--orange); }
a:hover { color: var(--focus-dark); }
ul { padding-left: 1.25rem; }

:focus-visible {
  outline: 3px solid var(--focus-dark);
  outline-offset: 2px;
  border-radius: 3px;
}
.band-light :focus-visible { outline-color: var(--text-on-light); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.tnum { font-variant-numeric: lining-nums tabular-nums; }

section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
section { padding-block: var(--space-section); }

/* ---- Light bands ---- */
.band-light {
  background: var(--cream);
  color: var(--text-on-light);
}
.band-light a { color: var(--orange-ink); }
.band-light a:hover { color: var(--text-on-light); }

/* ---- Section headers ---- */
.section-head { margin-bottom: 2.25rem; max-width: 700px; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.band-light .section-kicker { color: var(--orange-ink); }
.section-kicker::before {
  content: '';
  width: 2.25rem;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
}
.section-intro { max-width: 62ch; }
section:not(.band-light) .section-intro { color: var(--dim-on-dark); }
.band-light .section-intro { color: var(--dim-on-light); }

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -100px;
  z-index: 100;
  background: var(--orange-strong);
  color: var(--btn-ink);
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0.5rem; color: var(--btn-ink); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.6rem;
  border: 0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.btn-icon { width: 18px; height: 18px; flex: 0 0 auto; }
.btn-primary {
  background: var(--orange-strong);
  color: var(--btn-ink);
}
.btn-primary:hover { background: var(--orange); color: var(--btn-ink); }
.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  box-shadow: inset 0 0 0 2px var(--line-dark);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--orange); color: var(--text-on-dark); }
.band-light .btn-ghost {
  color: var(--text-on-light);
  box-shadow: inset 0 0 0 2px var(--text-on-light);
}
.band-light .btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--orange-ink); color: var(--orange-ink); }
.btn-dark {
  background: var(--ink);
  color: var(--text-on-dark);
}
.btn-dark:hover { background: var(--ink-3); color: var(--text-on-dark); }

/* ---- Header ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(58, 47, 36, 0.6);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-on-dark);
  margin-right: auto;
}
.brand img { width: 40px; height: 40px; }
.brand-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid var(--line-dark);
  border-radius: 10px;
  color: var(--text-on-dark);
  cursor: pointer;
}
.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; }

.site-nav {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(10, 8, 6, 0.97);
  border-bottom: 1px solid var(--line-dark);
  display: none;
}
.site-nav.is-open { display: block; }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1.25rem 1rem;
}
.site-nav a {
  display: block;
  padding: 0.75rem 0.25rem;
  color: var(--text-on-dark);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(58, 47, 36, 0.5);
}
.site-nav li:last-child a { border-bottom: 0; }
.site-nav a:hover { color: var(--orange); }
.header-call { display: none; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: block;
    background: transparent;
    border: 0;
  }
  .site-nav ul {
    display: flex;
    gap: 1.4rem;
    padding: 0;
    align-items: center;
  }
  .site-nav a { border: 0; padding: 0.5rem 0.15rem; }
  .header-call { display: inline-flex; min-height: 44px; padding: 0.5rem 1.1rem; }
}

/* ---- Hero: split layout, static photo ---- */
.hero {
  background: var(--ink);
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 3rem;
}
.hero-grid { display: grid; gap: 2rem; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--orange);
  margin: 0 0 0.9rem;
}
.hero-kicker::before {
  content: '';
  width: 2.25rem;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
}
h1 { margin: 0 0 1rem; }
.h1-display {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 9vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-on-dark);
}
.h1-display .accent { color: var(--orange); }
.h1-sub {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-weight: 600;
  color: var(--dim-on-dark);
}
.hero-lede { color: var(--dim-on-dark); max-width: 52ch; }
.trust-list {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}
.trust-check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange-strong);
  color: var(--btn-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-check svg { width: 13px; height: 13px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-call-hero { font-size: 1.1rem; padding: 0.85rem 1.6rem; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
}
.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--card);
  color: var(--text-on-light);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-badge-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--orange-ink);
  text-transform: uppercase;
}
.hero-badge-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim-on-light);
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .hero { padding-top: calc(var(--header-h) + 4rem); padding-bottom: 4.5rem; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; }
}

/* ---- Feature strip (icon columns under hero) ---- */
.feature-strip {
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding-block: 2.25rem;
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 2px var(--orange-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon img { width: 34px; height: 34px; }
.feature-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-on-dark);
  margin: 0 0 0.25rem;
}
.feature-item p:not(.feature-title) { color: var(--dim-on-dark); font-size: 0.95rem; margin: 0; }
@media (min-width: 640px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-list { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

/* ---- Cards ---- */
.card {
  background: var(--card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.75rem 1.5rem;
}

/* ---- How It Works ---- */
.step-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
.step-card { position: relative; }
.step-num {
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--orange-ink);
  letter-spacing: 0.05em;
}
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.step-icon img { width: 38px; height: 38px; }
.step-card h3 { margin-bottom: 0.4rem; }
.step-card p { color: var(--dim-on-light); margin: 0; }
@media (min-width: 768px) { .step-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- Why grind ---- */
.why-grid { display: grid; gap: 2.25rem; }
.benefit-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.benefit-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem 1.35rem; }
.benefit-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon img { width: 32px; height: 32px; }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.benefit-card p { color: var(--dim-on-light); font-size: 0.95rem; margin: 0; }
@media (min-width: 640px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }

.why-media { position: relative; }
.why-media img {
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-card);
}
.why-media-chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--card);
  color: var(--text-on-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(28, 22, 16, 0.25);
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
}

/* ---- Service area (dark band) ---- */
.area-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.area-grid li {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.area-pin {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--orange);
}
.area-note {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--orange-strong);
  border-radius: 0 10px 10px 0;
  background: var(--ink-2);
  color: var(--dim-on-dark);
}
.area-note a { font-weight: 700; }
@media (min-width: 768px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .area-grid { grid-template-columns: repeat(6, 1fr); } }

/* ---- Pricing ---- */
.price-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
.price-card { border-top: 4px solid var(--orange-strong); }
.price-card h3 { margin-bottom: 0.35rem; }
.price-card p { color: var(--dim-on-light); margin: 0; }
@media (min-width: 768px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- Orange CTA band ---- */
.cta-band {
  background: var(--orange-strong);
  color: var(--btn-ink);
  padding-block: clamp(3rem, 8vw, 4.5rem);
}
.cta-band .container {
  display: grid;
  gap: 1.25rem;
  justify-items: start;
}
.cta-band h2 { margin: 0; color: var(--btn-ink); }
.cta-band p { color: #3A2410; margin: 0; max-width: 56ch; font-weight: 600; }
.cta-phone {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--btn-ink);
  text-decoration: none;
  line-height: 1.1;
  font-variant-numeric: lining-nums tabular-nums;
}
.cta-phone:hover { color: #000000; }
.cta-band :focus-visible { outline-color: var(--btn-ink); }
@media (min-width: 1024px) {
  .cta-band .container {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .cta-band .cta-copy { max-width: 640px; }
}

/* ---- Calculator ---- */
.calc-card { max-width: 680px; padding: 2rem 1.5rem; }
.calc-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--line-light);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}
.calc-head h3 { margin: 0; }
.calc-badge {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-ink);
  white-space: nowrap;
}
.measure-figure { margin: 0 0 1.25rem; }
.measure-figure svg { width: 100%; max-width: 380px; height: auto; display: block; }
.calc-directions {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
  color: var(--dim-on-light);
}
.calc-directions li { margin-bottom: 0.4rem; }
.calc-directions strong { color: var(--text-on-light); }
.calc-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-on-light);
}
.calc-hint {
  display: block;
  color: var(--dim-on-light);
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 0.2rem;
}
.calc-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.6rem; }
input[type="text"], input[type="tel"], input[type="number"], textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-on-light);
  background: var(--card);
  border: 2px solid var(--border-strong);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  min-height: 48px;
}
input[type="number"] { font-variant-numeric: lining-nums tabular-nums; }
.calc-row input { flex: 1 1 180px; }
.calc-row .btn { flex: 0 0 auto; }
.field-error {
  color: var(--error-ink);
  font-weight: 700;
  margin: 0.5rem 0 0;
}
.field-error::before { content: "⚠ "; }
.field-error:empty { display: none; }
.field-error:empty::before { content: none; }
input[aria-invalid="true"] { border-color: var(--error-ink); }
.calc-result {
  margin-top: 1.25rem;
  border-top: 2px solid var(--line-light);
  padding-top: 1.25rem;
}
.calc-result-panel {
  background: var(--cream);
  border-left: 4px solid var(--orange-strong);
  border-radius: 0 10px 10px 0;
  padding: 0.9rem 1.2rem;
  display: inline-block;
}
.calc-result-kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-ink);
}
.calc-result-amount {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--text-on-light);
  display: block;
  line-height: 1.15;
  font-variant-numeric: lining-nums tabular-nums;
}
.calc-result-note { color: var(--dim-on-light); font-weight: 600; margin-top: 0.75rem; }
.calc-disclaimer { color: var(--dim-on-light); font-size: 0.9rem; margin-top: 1rem; }
.calc-cta { margin-top: 1rem; margin-bottom: 0; }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-item h3 { margin: 0; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: transparent;
  border: 0;
  color: var(--text-on-light);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  padding: 1.05rem 1.25rem;
  min-height: 48px;
  cursor: pointer;
}
.faq-question:hover { color: var(--orange-ink); }
.faq-question .faq-chevron {
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--orange-ink);
  transition: transform 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .faq-question .faq-chevron { transition: none; }
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 1.25rem 1.1rem; color: var(--dim-on-light); }
.faq-answer p:last-child { margin-bottom: 0; }

/* ---- Contact ---- */
.contact-layout { display: grid; gap: 2.5rem; }
.contact-info p { color: var(--dim-on-dark); }
.contact-phone-big {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 2.7rem);
  color: var(--orange);
  text-decoration: none;
  margin: 0.5rem 0 1rem;
  font-variant-numeric: lining-nums tabular-nums;
}
.contact-phone-big:hover { color: var(--focus-dark); }
.contact-card {
  background: var(--card);
  color: var(--text-on-light);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 1.9rem 1.5rem;
}
.contact-card-head {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-ink);
  border-bottom: 2px solid var(--line-light);
  padding-bottom: 0.6rem;
  margin-bottom: 1.25rem;
}
.contact-form { display: grid; gap: 1.1rem; }
.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-on-light);
}
.req { color: var(--orange-ink); }
.contact-card :focus-visible { outline-color: var(--text-on-light); }
.form-consent { color: var(--dim-on-light); font-size: 0.92rem; margin: 0; }
.form-consent a { color: var(--orange-ink); }
.form-consent a:hover { color: var(--text-on-light); }
.form-status { font-weight: 700; margin: 0; min-height: 1.5em; }
.form-status--ok { color: var(--ok-ink); }
.form-status--ok::before { content: "✓ "; }
.form-status--error { color: var(--error-ink); }
.form-status--error::before { content: "⚠ "; }
.hp-field { position: absolute; left: -9999px; }
@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: start; }
}

/* ---- Footer ---- */
.site-footer {
  background: #0A0806;
  border-top: 1px solid var(--line-dark);
  padding: 3rem 0 2rem;
  color: var(--dim-on-dark);
  /* base (mobile): keep clear of the fixed call bar */
  padding-bottom: calc(2rem + 76px + env(safe-area-inset-bottom));
}
.no-callbar .site-footer { padding-bottom: 2rem; }
.footer-grid { display: grid; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.85rem; color: var(--text-on-dark); font-weight: 700; }
.footer-brand img { width: 64px; height: 64px; }
.footer-brand span {
  font-family: var(--font-cond);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.1rem;
  line-height: 1.2;
}
.site-footer h3 {
  color: var(--text-on-dark);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: var(--dim-on-dark); text-decoration: underline; }
.site-footer a:hover { color: var(--orange); }
.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(58, 47, 36, 0.6);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
}
.footer-legal p { margin: 0; }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer { padding-bottom: 2rem; }
}

/* ---- Sticky mobile call bar: Call / Text split ---- */
.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(10, 8, 6, 0.95);
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.mobile-call-bar .btn { width: 100%; font-size: 1rem; padding-inline: 0.5rem; }
.mobile-call-bar .btn-ghost { box-shadow: inset 0 0 0 2px var(--orange-strong); }
@media (min-width: 768px) { .mobile-call-bar { display: none; } }

/* ---- Scroll reveals (motion-safe only, JS-gated) ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ---- Legal pages ---- */
.legal-main { padding-top: calc(var(--header-h) + 2rem); max-width: 800px; }
.legal-main h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--text-on-dark);
}
.legal-updated {
  color: var(--orange);
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-main h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.35rem;
  margin-top: 2.25rem;
}
.legal-main p, .legal-main li { color: var(--dim-on-dark); max-width: 72ch; }
.legal-main section { padding-block: 0; }
