/* =========================================================
   Western Mechanical — design tokens
   Dark / industrial / patriotic accent
   ========================================================= */
:root {
  --bg: #0b0b0c;
  --bg-2: #111114;
  --bg-3: #17181c;
  --surface: #1c1d22;
  --line: #2a2c33;
  --line-2: #3a3d46;

  --text: #ececef;
  --text-dim: #b6b8c0;
  --muted: #8b8e98;

  --accent: #c8102e;        /* patriotic red, from card stripe */
  --accent-2: #ff3142;
  --gold: #d4af37;           /* star accent */
  --blue: #1f3a8a;

  --radius: 14px;
  --radius-sm: 8px;

  --container: 1180px;
  --space: clamp(1rem, 2vw, 1.5rem);

  --shadow-1: 0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-2: 0 20px 60px rgba(0, 0, 0, 0.55);

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Oswald', 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: .6rem 1rem;
  z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
}
.site-header.is-scrolled {
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: var(--line);
}
.site-header.is-scrolled .header-inner { padding: .55rem 0; }
.site-header .nav a { color: rgba(255,255,255,.85); }
.site-header .nav a:hover { color: #fff; }
.site-header .brand-text strong { color: #fff; }
.site-header.is-scrolled .nav a { color: var(--text-dim); }
.site-header.is-scrolled .nav a:hover { color: var(--text); }
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: .75rem 0;
}
.brand {
  display: flex; align-items: center; gap: .65rem;
  margin-right: auto;
}
.brand img {
  width: 44px; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.brand-text em {
  font-style: normal;
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav {
  display: flex; gap: 1.5rem;
  font-size: .9rem;
  font-weight: 500;
}
.nav a { color: var(--text-dim); transition: color .2s ease; }
.nav a:hover { color: var(--text); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(200, 16, 46, .35);
}
.btn--primary:hover { background: var(--accent-2); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--text); background: rgba(255,255,255,.04); }
.btn--call { font-variant-numeric: tabular-nums; }

@media (max-width: 720px) {
  .nav { display: none; }
  .brand-text em { display: none; }
}
@media (max-width: 480px) {
  .btn--call span, .btn--call svg { }
  .btn--call { padding: .55rem .75rem; font-size: .85rem; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero--cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: 8rem 0 6rem;
  text-align: center;
}
.hero-photo {
  position: absolute; inset: 0; z-index: -3;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  animation: heroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to   { transform: scale(1.15) translate3d(-1.5%, -1%, 0); }
}
.hero-veil {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.6) 55%, rgba(11,11,12,.92) 100%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.2) 100%);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(140% 90% at 45% 45%, transparent 0%, rgba(0,0,0,.35) 70%, rgba(0,0,0,.8) 100%),
    radial-gradient(800px 400px at 50% 0%, rgba(200,16,46,.10), transparent 70%);
  pointer-events: none;
}

.hero-stack {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.4rem;
  position: relative; z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  margin: 0;
  padding: .5rem 1.1rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(4px);
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(200,16,46,.25);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(200,16,46,.25); }
  50%      { box-shadow: 0 0 0 8px rgba(200,16,46,.05); }
}

.hero-title {
  display: flex; flex-direction: column; align-items: center;
  gap: .25rem;
  margin: .25rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: .9;
}
.hero-title-main {
  font-size: clamp(3.4rem, 12vw, 9.5rem);
  color: var(--accent-2);
  letter-spacing: -.01em;
  text-shadow: 0 6px 40px rgba(200,16,46,.45), 0 2px 0 rgba(0,0,0,.5);
}
.hero-title-sub {
  font-size: clamp(1.1rem, 3.2vw, 2.4rem);
  color: #fff;
  letter-spacing: .35em;
  font-weight: 500;
  margin-top: .35rem;
}

.hero-lede {
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 60ch;
  margin: .4rem auto .6rem;
  line-height: 1.55;
}

.hero-cta {
  display: flex; gap: .75rem; flex-wrap: wrap;
  justify-content: center;
  margin: .25rem 0;
}

.hero-services {
  list-style: none; padding: 0;
  margin: 1.5rem 0 0;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
}
.hero-services li {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.18);
}
.hero-services li:last-child { border-right: 0; }
.hero-services svg { color: var(--accent-2); flex: none; }

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .68rem;
  font-weight: 600;
  z-index: 3;
  text-decoration: none;
  transition: color .2s ease;
}
.hero-scroll:hover { color: #fff; }
.hero-scroll-line {
  display: block;
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,0));
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, var(--accent-2), rgba(255,49,66,0));
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(260%); opacity: 0; }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: revealUp .9s cubic-bezier(.22,.61,.36,1) forwards;
}
.reveal[data-reveal="1"] { animation-delay: .05s; }
.reveal[data-reveal="2"] { animation-delay: .18s; }
.reveal[data-reveal="3"] { animation-delay: .32s; }
.reveal[data-reveal="4"] { animation-delay: .48s; }
.reveal[data-reveal="5"] { animation-delay: .62s; }
.reveal[data-reveal="6"] { animation-delay: .78s; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-grid .service.reveal-on-scroll:nth-child(2) { transition-delay: .08s; }
.service-grid .service.reveal-on-scroll:nth-child(3) { transition-delay: .16s; }
.service-grid .service.reveal-on-scroll:nth-child(4) { transition-delay: .24s; }
.town-grid li.reveal-on-scroll { transition-duration: .55s; }

@media (max-width: 720px) {
  .hero--cinematic { padding: 7rem 0 5rem; min-height: 90vh; }
  .hero-title-main { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-services li { padding: .35rem .75rem; font-size: .78rem; }
  .hero-scroll { bottom: 1rem; }
}



/* =========================================================
   Section base
   ========================================================= */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.kicker {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  color: var(--accent-2);
  font-weight: 700;
  margin: 0 0 .8rem;
}
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
}
h2 .accent { color: var(--accent-2); }
h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 .5rem;
}

/* =========================================================
   Services
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}
.service {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), border-color .35s ease, background .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Left accent bar that draws in */
.service::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
/* Diagonal sheen that slides across on hover */
.service::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.04) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .8s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
  z-index: 1;
}
.service > * { position: relative; z-index: 2; }
.service:hover {
  transform: translateY(-6px);
  border-color: rgba(200,16,46,.45);
  background: #20212a;
  box-shadow: 0 18px 40px -20px rgba(200,16,46,.4), 0 8px 20px -10px rgba(0,0,0,.5);
}
.service:hover::before { transform: scaleY(1); }
.service:hover::after { transform: translateX(110%); }
.service .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(200,16,46,.12);
  color: var(--accent-2);
  margin-bottom: 1rem;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), background .35s ease, box-shadow .35s ease;
}
.service:hover .ico {
  transform: translateY(-2px) scale(1.08);
  background: rgba(200,16,46,.22);
  box-shadow: 0 0 0 1px rgba(200,16,46,.35), 0 8px 24px -6px rgba(200,16,46,.45);
}
.service p { color: var(--text-dim); margin: 0; font-size: .95rem; }

/* =========================================================
   About
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.about-grid p { color: var(--text-dim); }
.features {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem .9rem;
}
.features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .95rem;
}
.features li::before {
  content: "★";
  color: var(--gold);
  position: absolute; left: 0; top: 0;
  font-size: .9rem;
}

/* About: stat card */
.stat-card {
  background: linear-gradient(180deg, var(--bg-3), #131418);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.stat-card-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem;
  color: var(--text-dim);
  margin: 0 0 1.2rem;
  font-weight: 600;
}
.stats {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.stats li {
  background: var(--surface);
  padding: 1.1rem .9rem;
  display: flex; flex-direction: column; gap: .25rem;
  text-align: left;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .01em;
  line-height: 1;
}
.stats li:nth-child(2) .stat-value { color: var(--gold); }
.stats li:nth-child(1) .stat-value,
.stats li:nth-child(3) .stat-value,
.stats li:nth-child(4) .stat-value { color: var(--accent-2); }
.stat-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
}

/* =========================================================
   Contact
   ========================================================= */
.contact {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(200,16,46,.10), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.contact-info { min-width: 0; }
.contact-list {
  list-style: none; padding: 0; margin: 1.75rem 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-list li {
  background: var(--surface);
  padding: 1rem 1.1rem;
  display: flex; flex-direction: column; gap: .25rem;
  min-width: 0;
}
/* Emergency row spans full width (odd-count tile) */
.contact-list li:last-child { grid-column: 1 / -1; }
.contact-list .label {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.contact-list a {
  color: var(--text);
  font-weight: 600;
  font-size: .98rem;
  word-break: break-word;
}
.contact-list a:hover { color: var(--accent-2); }

/* =========================================================
   Contact form
   ========================================================= */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  display: grid;
  gap: 1rem;
  position: relative;
}
.contact-form .form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -.005em;
}
.contact-form .form-sub {
  margin: -.5rem 0 .25rem;
  color: var(--text-dim);
  font-size: .92rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex; flex-direction: column; gap: .4rem;
  min-width: 0;
}
.field > span {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(11,11,12,.55);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .75rem .9rem;
  color: var(--text);
  font: inherit;
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-dim) 50%),
                    linear-gradient(135deg, var(--text-dim) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,16,46,.18);
  background: rgba(11,11,12,.75);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.32); }
.field input:invalid:not(:placeholder-shown),
.field select:invalid:not(:focus),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 80, 80, .55);
}

.form-submit {
  margin-top: .25rem;
  justify-self: start;
  min-width: 180px;
  justify-content: center;
}
.form-submit[disabled] { opacity: .6; cursor: progress; }

.form-status {
  margin: 0;
  font-size: .92rem;
  color: var(--text-dim);
  min-height: 1.2em;
}
.form-status.is-success { color: #5ee08a; }
.form-status.is-error   { color: #ff7a7a; }

/* Honeypot — hidden from users, visible to bots */
.contact-form .hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-list { margin-top: 1.5rem; }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
  .contact-list { grid-template-columns: 1fr; }
  .form-submit { width: 100%; justify-self: stretch; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #07070a;
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  color: var(--text-dim);
  font-size: .88rem;
}
.footer-inner {
  display: flex; gap: 1rem; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
}
.foot-brand { display: flex; align-items: center; gap: .65rem; }
.foot-brand img {
  width: 36px; height: auto;
  object-fit: contain;
}
.foot-brand strong {
  font-family: var(--font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .95rem;
  color: var(--text);
  display: block;
}
.foot-brand span { font-size: .75rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

.foot-meta {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  align-items: center;
}
.foot-meta a:hover { color: var(--text); }

/* =========================================================
   Service points (bullet list inside service cards)
   ========================================================= */
.service-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .45rem;
}
.service-points li {
  position: relative;
  padding-left: 1.25rem;
  font-size: .92rem;
  color: var(--text-dim);
  line-height: 1.45;
}
.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* =========================================================
   Service Area
   ========================================================= */
.service-area {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, #101116 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-area .section-lead {
  max-width: 60ch;
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.town-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
  margin-top: 1.5rem;
}
.town-grid li {
  list-style: none;
  padding: .85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
  transition: border-color .2s ease, transform .2s ease;
}
.town-grid li:hover {
  border-left-color: var(--accent-2);
  transform: translateX(2px);
}
@media (max-width: 800px) {
  .town-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .town-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq {
  padding: 5rem 0;
}
.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: .75rem;
  max-width: 880px;
}
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-list details[open] {
  border-color: var(--accent);
}
.faq-list summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 3rem;
  transition: color .2s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform .2s ease;
  line-height: 1;
}
.faq-list details[open] summary::after {
  content: "−";
  color: var(--accent-2);
}
.faq-list summary:hover { color: var(--accent-2); }
.faq-list details > p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  color: var(--text-dim);
  line-height: 1.6;
  font-size: .95rem;
}

/* Footer meta breaks for hours */
.foot-meta span { line-height: 1.5; }


/* ========== Dopamine polish ========== */

/* =========================================================
   DOPAMINE POLISH LAYER
   ========================================================= */

/* --- Stat values: text vs counter --- */
.stat-value {
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
.stat-value--text { font-family: var(--font-display); font-weight: 700; }
.stat-value[data-count] {
  font-size: 1.9rem;
  background: linear-gradient(135deg, var(--accent-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(200,16,46,.0);
  transition: text-shadow .4s ease;
}
.stat-value[data-count].is-animated {
  text-shadow: 0 0 30px rgba(200,16,46,.35);
}
.stats li { transition: background .25s ease; }
.stats li:hover { background: #1f2026; }

/* --- Magnetic glow CTA buttons --- */
.btn--primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), background .25s ease, box-shadow .35s ease;
  box-shadow: 0 6px 18px -6px rgba(200,16,46,.5), 0 0 0 0 rgba(200,16,46,0);
}
.btn--primary::before {
  content: "";
  position: absolute; inset: -1px;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
  z-index: 1;
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--accent-2);
  box-shadow:
    0 12px 30px -8px rgba(200,16,46,.6),
    0 0 0 4px rgba(200,16,46,.12);
}
.btn--primary:hover::before { transform: translateX(110%); }
.btn--primary > * { position: relative; z-index: 2; }

.btn--ghost {
  transition: transform .3s cubic-bezier(.22,.61,.36,1), border-color .25s ease, background .25s ease, color .25s ease;
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.04);
}

/* --- Section dividers (animated accent lines on alt sections) --- */
.section--alt { position: relative; overflow: hidden; }
.section--alt::before,
.section--alt::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,.5) 40%, var(--accent) 50%, rgba(200,16,46,.5) 60%, transparent);
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(.22,.61,.36,1);
}
.section--alt::before { top: 0; }
.section--alt::after  { bottom: 0; }
.section--alt.is-visible::before,
.section--alt.is-visible::after {
  transform: scaleX(1);
}

/* Diagonal wedge above Service Area for industrial feel */
.service-area {
  position: relative;
  clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 100%);
  margin-top: -1px;
}
@media (max-width: 720px) {
  .service-area { clip-path: polygon(0 1%, 100% 0, 100% 100%, 0 100%); }
}

/* --- Animated dot grid behind about + service-area --- */
.about, .service-area {
  position: relative;
}
.about::before, .service-area::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 40%, transparent 100%);
  animation: dotDrift 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.about > .container, .service-area > .container { position: relative; z-index: 1; }
@keyframes dotDrift {
  from { background-position: 0 0; }
  to   { background-position: 28px 28px; }
}

/* Faint flame glow behind about heading */
.about::after {
  content: "";
  position: absolute;
  top: 10%; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(200,16,46,.15), transparent 65%);
  filter: blur(40px);
  animation: flameDrift 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes flameDrift {
  from { transform: translate(0,0) scale(1); opacity: .55; }
  to   { transform: translate(-30px,30px) scale(1.1); opacity: 1; }
}

/* --- Town grid spotlight effect (cursor-follow) --- */
.town-grid {
  position: relative;
  padding: .25rem;
  margin: 1.5rem -0.25rem 0;
}
.town-grid::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(200,16,46,.12), transparent 60%);
  pointer-events: none;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
}
.town-grid:hover::before { opacity: 1; }
.town-grid li {
  position: relative;
  z-index: 1;
  transition: border-color .25s ease, transform .25s cubic-bezier(.22,.61,.36,1), background .25s ease, box-shadow .25s ease;
}
.town-grid li:hover {
  transform: translateY(-3px);
  border-left-color: var(--gold);
  background: #1f2026;
  box-shadow: 0 10px 24px -10px rgba(212,175,55,.4);
}

/* --- Smooth FAQ accordion --- */
.faq-list details {
  transition: border-color .25s ease, background .25s ease, box-shadow .35s ease;
}
.faq-list details:hover { background: #1f2026; }
.faq-list details[open] {
  box-shadow: 0 12px 30px -16px rgba(200,16,46,.4);
}
.faq-list summary::after {
  transition: transform .35s cubic-bezier(.22,.61,.36,1), color .25s ease !important;
}
.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-list details > p {
  animation: faqOpen .35s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Refined hero scroll indicator (mouse-shape) --- */
.hero-scroll {
  bottom: 1.75rem;
}
.hero-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 12px;
  position: relative;
  display: block;
  transition: border-color .25s ease, transform .25s ease;
}
.hero-scroll-mouse::before {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  background: var(--accent-2);
  border-radius: 2px;
  animation: scrollWheel 1.8s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.hero-scroll:hover .hero-scroll-mouse {
  border-color: #fff;
}
.hero-scroll {
  animation: heroScrollBounce 2.8s ease-in-out infinite;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 4px); }
}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal, .reveal-on-scroll { opacity: 1 !important; transform: none !important; }
  .hero-photo img { transform: scale(1.05) !important; }
}
