/* ============================================================
   McGlothlin Services LLC — Site Stylesheet
   Dark, industrial, mobile-first.
   Palette: charcoal, dark slate, warm off-white,
   construction orange, muted earth tones.
   ============================================================ */

:root {
  --charcoal: #141619;
  --charcoal-2: #1a1d21;
  --slate: #21262c;
  --slate-2: #2a3038;
  --line: #363d46;
  --offwhite: #f3efe7;
  --muted: #aab0b7;
  --muted-dark: #7c828a;
  --orange: #e8760f;
  --orange-bright: #f98a1f;
  --yellow: #f2b31c;
  --earth: #8a6f4d;
  --ink-on-orange: #17130c;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --header-h: 72px;
  --wrap: 1180px;
}

/* ---------- Reset / base ---------- */

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

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

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--offwhite);
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
}

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

h1, h2, h3, h4 {
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.12;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 7vw, 4.25rem); }
h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--orange-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { padding-left: 1.3em; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--yellow);
  color: #141414;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
}
.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin-inline: auto;
}

.section { padding: clamp(3.2rem, 8vw, 5.5rem) 0; }
.section-tight { padding: clamp(2.2rem, 6vw, 3.5rem) 0; }
.section-alt { background: var(--charcoal-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.eyebrow {
  display: inline-block;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--yellow);
  margin-bottom: 0.9rem;
  padding-left: 1.6rem;
  position: relative;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.1rem;
  height: 3px;
  background: var(--orange);
  transform: translateY(-50%);
}

.lead {
  font-size: clamp(1.1rem, 2.4vw, 1.25rem);
  color: var(--muted);
  max-width: 62ch;
}

.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.center .eyebrow { padding-left: 0; }
.center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  min-height: 48px;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: var(--ink-on-orange);
}
.btn-primary:hover { background: var(--orange-bright); }

.btn-outline {
  background: transparent;
  color: var(--offwhite);
  border-color: var(--offwhite);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-dark {
  background: var(--slate);
  color: var(--offwhite);
  border-color: var(--line);
}
.btn-dark:hover { border-color: var(--orange); }

.btn-lg { font-size: 1.1rem; padding: 1rem 2rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 22, 25, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.6rem 0;
}
@media (min-width: 1241px) {
  .site-header .wrap { width: min(1340px, calc(100% - 2.5rem)); }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--offwhite);
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }

.logo-mark {
  height: 56px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.logo-text {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  line-height: 1.05;
  padding-left: 0.85rem;
  margin-left: 0.15rem;
  border-left: 1px solid var(--line);
}
.logo-text .logo-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.logo-text .logo-tag {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

@media (max-width: 520px) {
  .logo-mark { height: 46px; }
  .logo-text { display: none; }
}

.main-nav { margin-left: auto; min-width: 0; }

.main-nav ul {
  display: flex;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--offwhite);
  padding: 0.4rem 0.1rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--yellow); text-decoration: none; }
.main-nav a[aria-current="page"] {
  color: var(--yellow);
  border-bottom-color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--offwhite);
  white-space: nowrap;
}
.header-phone:hover { color: var(--yellow); text-decoration: none; }
.header-phone svg { color: var(--orange); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  color: var(--offwhite);
  padding: 0.5rem 0.65rem;
  cursor: pointer;
}
.nav-toggle svg { display: block; }

@media (max-width: 1240px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--charcoal-2);
    border-top: 1px solid var(--line);
    padding: 1.5rem;
    display: none;
    overflow-y: auto;
    margin-left: 0;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid var(--line); }
  .main-nav a {
    display: block;
    padding: 1rem 0.2rem;
    font-size: 1.15rem;
    border-bottom: none;
  }
  .main-nav .nav-cta { border-bottom: none; padding-top: 1.4rem; }
  .main-nav .nav-cta a.btn-primary { color: var(--ink-on-orange); font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn { display: none; }
  .header-phone span { display: none; }
  .header-phone {
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 0.55rem 0.7rem;
  }
}

@media (min-width: 1241px) {
  .main-nav .nav-cta { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: min(88vh, 760px);
  padding: clamp(4rem, 10vw, 7rem) 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, rgba(15, 16, 19, 0.88) 0%, rgba(15, 16, 19, 0.66) 55%, rgba(15, 16, 19, 0.42) 100%);
}

.hero-content { max-width: 46rem; }

.hero h1 { margin-bottom: 0.35em; }

.hero .sub {
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  color: var(--offwhite);
  max-width: 40rem;
  margin-bottom: 1.8rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.trust-line .sep {
  margin: 0 0.75rem;
  color: var(--orange);
}

/* Page hero (interior pages) */

.page-hero {
  min-height: 0;
  padding: clamp(3.2rem, 9vw, 5.5rem) 0;
}
.page-hero h1 { font-size: clamp(2.1rem, 6vw, 3.4rem); }

.breadcrumb {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep { color: var(--orange); margin: 0 0.5rem; }

/* ---------- Hazard divider ---------- */

.hazard {
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange) 0 18px,
    var(--charcoal) 18px 36px
  );
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

/* ---------- Services grid ---------- */

.grid {
  display: grid;
  gap: 1.4rem;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }

.svc-card {
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.svc-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.svc-card .svc-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 3px solid var(--orange);
}
.svc-card .svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-card .svc-body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card h3 { margin-bottom: 0.45em; }
.svc-card p { color: var(--muted); font-size: 0.98rem; flex: 1; }

.svc-link {
  margin-top: 1rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
}
.svc-link::after { content: " \2192"; }

.svc-card a.svc-title-link { color: inherit; }
.svc-card a.svc-title-link:hover { color: var(--yellow); text-decoration: none; }

/* ---------- Feature split (Rocky Ground) ---------- */

.feature-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 880px) {
  .feature-split { grid-template-columns: 1.05fr 1fr; }
  .feature-split.flip > .feature-media { order: 2; }
}

.feature-media {
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Checklist ---------- */

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 680px) {
  .checklist.cols-2 { grid-template-columns: 1fr 1fr; }
}
.checklist li {
  position: relative;
  padding-left: 2rem;
  color: var(--offwhite);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.95rem;
  height: 0.55rem;
  border-left: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
}

/* ---------- Process steps ---------- */

.steps {
  counter-reset: step;
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  counter-increment: step;
  background: var(--slate);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.7rem;
}
.step h3 { font-size: 1.15rem; }
.step p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Why choose us ---------- */

.why-grid {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem 1.1rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
}
.why-item svg { color: var(--orange); flex-shrink: 0; }

.pull-quote {
  margin: 2.4rem auto 0;
  max-width: 46rem;
  border-left: 5px solid var(--orange);
  background: var(--slate);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--offwhite);
}

/* ---------- Big CTA band ---------- */

.cta-band {
  background:
    linear-gradient(rgba(20, 22, 25, 0.9), rgba(20, 22, 25, 0.9));
  border-top: 4px solid var(--orange);
  border-bottom: 4px solid var(--orange);
  text-align: center;
  padding: clamp(3rem, 8vw, 4.5rem) 0;
}
.cta-band h2 { margin-bottom: 0.4em; }
.cta-band p { color: var(--muted); max-width: 52ch; margin-inline: auto; }
.cta-band .hero-ctas { justify-content: center; margin-top: 1.6rem; margin-bottom: 0; }

/* ---------- Service area ---------- */

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
}
.area-tags li {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  color: var(--offwhite);
}
.area-tags li.county { border-color: var(--earth); color: var(--muted); }

/* ---------- Gallery ---------- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.8rem 0 2.2rem;
}
.filter-btn {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--slate);
  color: var(--offwhite);
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  min-height: 42px;
}
.filter-btn:hover { border-color: var(--orange); }
.filter-btn[aria-pressed="true"] {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--ink-on-orange);
}

.project-card {
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-photos {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 3px solid var(--orange);
}
.project-photos img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.project-photos img.active { opacity: 1; }

.photo-nav {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}
.photo-nav button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(20, 22, 25, 0.85);
  color: var(--offwhite);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.photo-nav button:hover { border-color: var(--orange); color: var(--yellow); }

.photo-count {
  position: absolute;
  bottom: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  background: rgba(20, 22, 25, 0.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.65rem;
  color: var(--muted);
}

.project-body { padding: 1.25rem 1.35rem 1.45rem; }

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}
.tag {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--yellow);
  padding: 0.2rem 0.55rem;
}
.tag.loc { color: var(--muted); }

.project-body h3 { font-size: 1.18rem; margin-bottom: 0.4em; }
.project-body p { color: var(--muted); font-size: 0.95rem; }

.challenge-solution {
  margin-top: 0.9rem;
  border-top: 1px dashed var(--line);
  padding-top: 0.9rem;
  display: grid;
  gap: 0.6rem;
  font-size: 0.92rem;
}
.challenge-solution strong {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--yellow);
  display: block;
}
.challenge-solution p { margin: 0; }

.gallery-note {
  margin-top: 2.5rem;
  background: var(--slate);
  border: 1px dashed var(--earth);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---------- Forms ---------- */

.form-panel {
  background: var(--slate);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 700px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}

.field label {
  display: block;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-bottom: 0.4rem;
}
.field .req { color: var(--orange-bright); }
.field .hint {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted-dark);
  margin-top: 0.15rem;
  font-weight: 400;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--offwhite);
  font: inherit;
  padding: 0.75rem 0.9rem;
  min-height: 48px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 0;
  border-color: var(--orange);
}
.field select { appearance: auto; }

.field input[type="file"] {
  width: 100%;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.6rem 0;
}
.field input[type="file"]::file-selector-button {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--slate-2);
  color: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  margin-right: 0.9rem;
  cursor: pointer;
}
.field input[type="file"]::file-selector-button:hover { border-color: var(--orange); }

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  padding-top: 0.25rem;
}
.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  cursor: pointer;
}
.radio-row input { accent-color: var(--orange); width: 1.2rem; height: 1.2rem; }

.check-field {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--muted);
}
.check-field input {
  accent-color: var(--orange);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* honeypot — hidden from humans, visible to naive bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  display: none;
  background: #3a1f18;
  border: 1px solid #a04326;
  border-radius: var(--radius);
  color: #ffd9c4;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.1rem;
}
.form-error.visible { display: block; }

.form-success {
  background: var(--slate);
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 2.8rem);
  text-align: center;
}
.form-success h2 { color: var(--yellow); }

/* ---------- Reviews (hidden until real reviews exist) ----------
   To publish: remove the `hidden` attribute from the
   <section id="reviews"> element and fill in real customer reviews. */

.review-card {
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
}
.review-card .stars { color: var(--yellow); letter-spacing: 0.2em; margin-bottom: 0.6rem; }
.review-card blockquote { margin: 0 0 0.9rem; font-size: 1rem; color: var(--offwhite); }
.review-card cite {
  font-style: normal;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Map ---------- */

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  filter: grayscale(0.35) contrast(1.05);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* ---------- FAQ / details ---------- */

.faq details {
  background: var(--slate);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 1.05rem 1.3rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 400;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details > div { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* ---------- Disclaimer ---------- */

.disclaimer {
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--earth);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  font-size: 0.93rem;
  color: var(--muted);
}

/* ---------- Footer ---------- */

.site-footer {
  background: #101215;
  border-top: 1px solid var(--line);
  padding: clamp(2.8rem, 7vw, 4rem) 0 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.footer-grid {
  display: grid;
  gap: 2.2rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

.footer-grid h3 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--offwhite);
  margin-bottom: 0.9rem;
}

.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--yellow); }

.footer-services-line { margin: 0.6rem 0 1rem; line-height: 1.9; }
.footer-services-line .sep { color: var(--orange); margin: 0 0.4rem; }

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--offwhite) !important;
  margin: 0.3rem 0 0.8rem;
}
.footer-phone svg { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

.badge-licensed {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}
.badge-licensed svg { color: var(--orange); }

/* ---------- Sticky mobile action bar ---------- */

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: #0e1013;
  border-top: 2px solid var(--orange);
  padding: 0.55rem 0.6rem calc(0.55rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
}
.mobile-bar .btn { font-size: 0.98rem; padding: 0.7rem 0.6rem; }

@media (max-width: 760px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 76px; }
}

/* ---------- Utility ---------- */

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.text-muted { color: var(--muted); }

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