/* ==========================================================================
   Chase Automotive Inc. — stylesheet
   Built by Next Phase Labs

   Design language: body-shop industrial. Square corners, hairline rules,
   semi-condensed display type, flat colour blocks. No floating rounded
   cards, no icon-in-a-tinted-square, no soft shadows.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --ink:        #101112;
  --ink-2:      #191b1d;
  --ink-3:      #24272a;
  --line-dark:  rgba(255, 255, 255, .13);

  --paper:      #ffffff;
  --paper-2:    #f1efea;
  --paper-3:    #e4e1da;
  --line:       #d3cfc6;
  --line-soft:  #e6e3dc;

  --red:        #cf2317;
  --red-dark:   #a51a11;
  --red-soft:   rgba(207, 35, 23, .10);
  --amber:      #e2a02a;

  --text:       #101112;
  --text-soft:  #56585b;
  --text-mute:  #83868a;
  --on-dark:    #eceeef;
  --on-dark-soft:#9ca1a6;

  /* Type */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Semi-condensed display width — the industrial signage feel */
  --wd-display: 86%;
  --wd-tight: 80%;

  /* Space & shape — corners are essentially square on purpose */
  --wrap: 1220px;
  --wrap-narrow: 840px;
  --gutter: clamp(20px, 5vw, 48px);
  --sec-y: clamp(62px, 8.5vw, 112px);
  --r-sm: 1px;
  --r: 2px;
  --r-lg: 2px;
  --r-pill: 2px;

  --ease: cubic-bezier(.2, .6, .3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: var(--wd-display);
  line-height: 1.02;
  letter-spacing: -.012em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.7rem, 6.6vw, 4.9rem); letter-spacing: -.018em; }
h2 { font-size: clamp(2.05rem, 4.4vw, 3.15rem); }
h3 { font-size: clamp(1.18rem, 1.8vw, 1.38rem); letter-spacing: -.004em; font-stretch: 92%; }
h4 { font-size: 1rem; font-stretch: 92%; }

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

a { color: inherit; text-decoration: none; }
strong, b { font-weight: 600; }

ul, ol { margin: 0 0 1.05em; padding-left: 1.15em; }
li { margin-bottom: .35em; }

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

::selection { background: var(--red); color: #fff; }

[hidden] { display: none !important; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 14px 22px; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Shared hairline rule */
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--sec-y); }
.section--tight { padding-block: clamp(46px, 6vw, 74px); }

.section--dark { background: var(--ink); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--on-dark-soft); }

.section--tone { background: var(--paper-2); }

.center { text-align: center; }
/* .center may sit on the sec-head itself or on an ancestor — match both,
   or the block stays pinned left with only its text centred inside it. */
.sec-head.center,
.center .sec-head { margin-inline: auto; }

/* Section label — small caps over a hairline, not a floating pill */
.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700; font-stretch: 100%;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red);
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.eyebrow--center { display: inline-block; }

.sec-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head p { font-size: 1.1rem; color: var(--text-soft); }
.section--dark .sec-head p { color: var(--on-dark-soft); }

.lede { font-size: 1.17rem; color: var(--text-soft); }

/* --------------------------------------------------------------------------
   4. Buttons — squared, uppercase, mechanical
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-stretch: 96%;
  font-size: .89rem; letter-spacing: .09em; text-transform: uppercase;
  padding: 17px 30px;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
  text-align: center;
  line-height: 1.15;
}
.btn svg { flex: none; }

.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--dark:hover { background: var(--ink-3); border-color: var(--ink-3); }

.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn--ghost-light { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn--ghost-light:hover { border-color: #fff; background: #fff; color: var(--ink); }

.btn--lg { padding: 20px 36px; font-size: .95rem; }
.btn--sm { padding: 12px 20px; font-size: .78rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: var(--on-dark-soft);
  font-size: .8rem;
  letter-spacing: .02em;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 40px; flex-wrap: wrap;
}
.topbar__list {
  display: flex; gap: 0; align-items: center; flex-wrap: wrap;
  list-style: none; padding: 0; margin: 0;
}
.topbar__item {
  display: inline-flex; align-items: center; white-space: nowrap; margin: 0;
  padding: 0 16px; border-left: 1px solid var(--line-dark);
}
.topbar__item:first-child { padding-left: 0; border-left: 0; }
.topbar__list--secondary .topbar__item:first-child { padding-left: 16px; border-left: 1px solid var(--line-dark); }
.topbar a:hover { color: #fff; }
.topbar .is-open { color: #5fbf7d; font-weight: 600; }
.topbar .is-closed { color: #e08a6d; font-weight: 600; }

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: border-color .2s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--ink); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: 78px;
}

/* Logo — a hard red block, not a rounded app icon */
.logo { display: inline-flex; align-items: stretch; gap: 12px; flex: none; }
.logo__mark {
  width: 8px; background: var(--red); flex: none;
}
.logo__text { display: flex; flex-direction: column; justify-content: center; line-height: 1; }
.logo__name {
  font-family: var(--font-display); font-weight: 800; font-stretch: var(--wd-tight);
  font-size: 1.42rem; letter-spacing: .005em; color: var(--ink); text-transform: uppercase;
}
.logo__sub {
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-mute); font-weight: 600; margin-top: 5px;
}
.logo--light .logo__name { color: #fff; }
.logo--light .logo__sub { color: var(--on-dark-soft); }

/* Nav */
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 10px 15px;
  font-family: var(--font-display);
  font-weight: 600; font-stretch: 96%;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-soft);
  transition: color .16s var(--ease);
  position: relative;
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px;
  height: 2px; background: var(--red);
}
/* Buttons inside the nav keep their own colours — .nav a must not win. */
.nav a.btn--primary,
.nav a.btn--primary:hover,
.nav a.btn--primary[aria-current="page"] { color: #fff; background: var(--red); margin-left: 10px; }
.nav a.btn--primary:hover { background: var(--red-dark); }
.nav a.btn--primary[aria-current="page"]::after { display: none; }

.header-actions { display: flex; align-items: center; gap: 14px; flex: none; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 800; font-stretch: 90%;
  font-size: 1.24rem; color: var(--ink); letter-spacing: -.01em;
}
.header-phone svg { color: var(--red); }
.header-phone:hover { color: var(--red); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 46px; height: 46px; border: 2px solid var(--ink); background: transparent;
  border-radius: 0; cursor: pointer; padding: 0;
  place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px;
  background: var(--ink); transition: transform .22s var(--ease), opacity .16s;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(-1px); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate;
  background: var(--ink); color: #fff;
  padding-block: clamp(72px, 10vw, 132px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(14,15,16,.97) 0%, rgba(14,15,16,.93) 44%, rgba(14,15,16,.70) 74%, rgba(14,15,16,.60) 100%),
    linear-gradient(to top, rgba(14,15,16,.9), transparent 50%);
}
.hero__inner { max-width: 680px; }

/* Rating block — flat, ruled, not a floating pill */
.hero__badge {
  display: inline-flex; align-items: center; gap: 12px;
  border-left: 3px solid var(--red);
  padding: 3px 0 3px 14px;
  font-size: .87rem; color: var(--on-dark-soft);
  margin: 0 0 30px;
}
.hero__badge .stars { color: var(--amber); letter-spacing: 2px; font-size: .92rem; }
.hero__badge b {
  font-family: var(--font-display); font-weight: 800; font-stretch: 90%;
  font-size: 1.15rem; color: #fff;
}

.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--red); }

.hero__sub {
  font-size: clamp(1.04rem, 1.55vw, 1.18rem);
  color: #c9cdd1; max-width: 540px; margin-bottom: 36px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

/* Spec-sheet style list: red tick marks, no icon set */
.hero__points {
  display: flex; flex-wrap: wrap; gap: 10px 30px;
  padding: 0; margin: 0; list-style: none;
  border-top: 1px solid var(--line-dark); padding-top: 22px;
}
.hero__points li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: #c3c8cc; margin: 0;
  letter-spacing: .01em;
}
.hero__points li::before {
  content: ""; width: 7px; height: 7px; background: var(--red); flex: none;
}

/* Trust strip — hairline-divided figures */
.trust {
  background: var(--ink-2); color: var(--on-dark-soft);
  border-top: 1px solid var(--line-dark);
  padding-block: 30px;
}
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 0; }
.trust__item {
  text-align: center; padding-inline: 12px;
  border-left: 1px solid var(--line-dark);
}
.trust__item:first-child { border-left: 0; }
.trust__item strong {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-stretch: var(--wd-tight);
  font-size: clamp(1.7rem, 3vw, 2.4rem); color: #fff; line-height: 1; margin-bottom: 6px;
}
.trust__item span {
  font-size: .73rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
}

/* --------------------------------------------------------------------------
   7. Cards & grids
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.section--dark .grid { background: var(--line-dark); border-color: var(--line-dark); }

/* Service card — flush tiles separated by hairlines */
.svc {
  position: relative; background: var(--paper);
  display: flex; flex-direction: column;
  transition: background-color .2s var(--ease);
}
.svc:hover { background: var(--paper-2); }
.svc__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-3); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.05); }
.svc__body { padding: 28px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.svc__body h3 { margin-bottom: 10px; }
.svc__body p { color: var(--text-soft); font-size: .95rem; margin-bottom: 20px; }
.svc__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-stretch: 96%;
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red);
}
.svc__link .arw { transition: transform .2s var(--ease); display: inline-block; }
.svc:hover .svc__link .arw { transform: translateX(5px); }

/* Numbered feature tile — counter replaces the icon-in-a-box */
.grid { counter-reset: feat; }
.feat {
  background: var(--paper); padding: 34px 30px 36px;
  position: relative;
}
.section--dark .feat { background: var(--ink); }
.feat::before {
  counter-increment: feat;
  content: counter(feat, decimal-leading-zero);
  display: block;
  font-family: var(--font-display); font-weight: 800; font-stretch: var(--wd-tight);
  font-size: 2.6rem; line-height: 1; color: var(--paper-3);
  margin-bottom: 18px;
}
.section--dark .feat::before { color: var(--ink-3); }
.feat h3 { font-size: 1.08rem; margin-bottom: 9px; }
.feat p { color: var(--text-soft); font-size: .93rem; margin: 0; }
.section--dark .feat p { color: var(--on-dark-soft); }
/* Any leftover icon markup stays hidden — the numeral is the mark. */
.feat__icon { display: none; }

/* Split media + text */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 72px); align-items: center;
}
.split--flip .split__media { order: 2; }
.split--form { grid-template-columns: 1.55fr 1fr; align-items: start; }
.split--start { align-items: start; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4 / 3.15; object-fit: cover; }

/* Flat corner block instead of a blurred rounded overlay */
.split__stat {
  position: absolute; left: 0; bottom: 0;
  background: var(--red); color: #fff;
  padding: 20px 26px; max-width: 78%;
  display: flex; align-items: center; gap: 18px;
}
.split__stat strong {
  font-family: var(--font-display); font-size: 2.3rem; font-weight: 800;
  font-stretch: var(--wd-tight); line-height: 1;
}
.split__stat span { font-size: .85rem; line-height: 1.4; color: rgba(255,255,255,.9); }

/* Checklist — red square markers, no icon set */
.checks { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 0; }
.checks li {
  display: flex; gap: 16px; align-items: flex-start; margin: 0;
  font-size: 1rem;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.checks li:last-child { border-bottom: 1px solid var(--line); }
.checks li::before {
  content: ""; width: 9px; height: 9px; background: var(--red); flex: none; margin-top: 9px;
}
.checks b { display: block; font-weight: 600; margin-bottom: 2px; }
.checks small { color: var(--text-soft); font-size: .92rem; display: block; line-height: 1.5; }
.section--dark .checks li { border-color: var(--line-dark); }
.section--dark .checks small { color: var(--on-dark-soft); }
.section--dark .checks b { color: #fff; }

/* --------------------------------------------------------------------------
   8. Process steps
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step {
  position: relative; padding: 26px 26px 0 0;
  border-top: 2px solid var(--red);
}
.step + .step { padding-left: 26px; border-left: 1px solid var(--line-dark); }
.section:not(.section--dark) .step + .step { border-left-color: var(--line); }
.step__n {
  font-family: var(--font-display); font-weight: 800; font-stretch: 100%;
  font-size: .7rem; letter-spacing: .2em; color: var(--red);
  display: block; margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 9px; }
.step p { font-size: .93rem; color: var(--text-soft); margin: 0; }
.section--dark .step p { color: var(--on-dark-soft); }

/* --------------------------------------------------------------------------
   9. Reviews
   -------------------------------------------------------------------------- */
.rating-summary {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 34px;
  padding: 24px 0; margin-bottom: 44px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.rating-summary__score { display: flex; align-items: center; gap: 14px; }
.rating-summary__score b {
  font-family: var(--font-display); font-weight: 800; font-stretch: var(--wd-tight);
  font-size: 2.5rem; color: #fff; line-height: 1;
}
.rating-summary .stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; }
.rating-summary small {
  display: block; color: var(--on-dark-soft); font-size: .78rem; margin-top: 4px;
  letter-spacing: .06em; text-transform: uppercase;
}
.rating-summary__div { width: 1px; height: 42px; background: var(--line-dark); }

.reviews {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line-dark);
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
}
.review {
  background: var(--ink); padding: 32px 30px;
  display: flex; flex-direction: column;
}
.review .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 18px; font-size: .9rem; }
.review blockquote {
  margin: 0 0 24px; font-size: 1.03rem; line-height: 1.58; color: #e4e7e9;
}
.review blockquote::before { content: "\201C"; }
.review blockquote::after { content: "\201D"; }
/* Attribution as a typographic line, not an avatar circle */
.review figcaption {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-dark);
  font-size: .86rem; color: var(--on-dark-soft);
}
.review figcaption b {
  display: inline; color: #fff; font-weight: 600;
  font-family: var(--font-display); font-stretch: 96%; letter-spacing: .02em;
}
.review figcaption b::before { content: "\2014\00a0"; color: var(--red); }
.review figcaption small { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; color: var(--text-mute); }
.review__avatar { display: none; }

/* --------------------------------------------------------------------------
   10. Service area / map
   -------------------------------------------------------------------------- */
.areas {
  display: flex; flex-wrap: wrap; gap: 0; padding: 0; margin: 0;
  list-style: none; border-top: 1px solid var(--line);
}
.areas li {
  margin: 0; padding: 11px 18px 11px 0;
  font-size: .93rem; color: var(--text-soft);
  position: relative;
}
.areas li::after {
  content: "/"; color: var(--line); margin-left: 18px; position: absolute;
}
.areas li:last-child::after { display: none; }
.section--dark .areas { border-color: var(--line-dark); }
.section--dark .areas li { color: var(--on-dark-soft); }

.map-embed { border: 1px solid var(--line); background: var(--paper-3); }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* Info panel — bordered block, square */
.info-card { background: var(--paper); border: 1px solid var(--line); padding: 34px; }
.section--dark .info-card { background: var(--ink-2); border-color: var(--line-dark); }

.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--line-soft);
  font-size: .95rem; margin: 0;
}
.hours li:last-child { border-bottom: 0; }
.hours .hours__day {
  font-family: var(--font-display); font-weight: 600; font-stretch: 96%;
  letter-spacing: .06em; text-transform: uppercase; font-size: .84rem;
}
.hours li.is-today { color: var(--ink); }
.hours li.is-today .hours__day { color: var(--red); }
.hours li.is-today .hours__day::after {
  content: "\00a0\00b7 Today"; font-size: .74rem; letter-spacing: .1em; color: var(--red);
}
.hours .closed { color: var(--text-mute); }
.section--dark .hours li { border-color: var(--line-dark); color: var(--on-dark-soft); }
.section--dark .hours li.is-today { color: #fff; }

/* Contact list — label / value rows with a red rule, no icon squares */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: block; margin: 0; padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-list li:first-child { padding-top: 0; }
.contact-list b {
  display: block; font-family: var(--font-display);
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-mute); font-weight: 700; margin-bottom: 6px;
}
.contact-list a, .contact-list span {
  font-size: 1.05rem; color: var(--text); font-weight: 500;
  font-family: var(--font-display); font-stretch: 94%;
}
.contact-list a:hover { color: var(--red); }
.contact-list__icon { display: none; }
.section--dark .contact-list li { border-color: var(--line-dark); }
.section--dark .contact-list a, .section--dark .contact-list span { color: #fff; }

/* --------------------------------------------------------------------------
   11. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--ink); color: #fff;
  padding-block: clamp(58px, 7.5vw, 96px);
}
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(95deg, rgba(14,15,16,.96) 28%, rgba(14,15,16,.76) 100%);
}
.cta-band h2 { color: #fff; max-width: 16ch; }
.cta-band p { color: #bcc2c8; max-width: 46ch; font-size: 1.06rem; }
.cta-band__inner { display: grid; grid-template-columns: 1.25fr .9fr; gap: 40px; align-items: center; }
.cta-band__actions { display: grid; gap: 12px; }
.cta-band__note {
  font-size: .85rem; color: #949aa0; letter-spacing: .01em;
  padding-top: 10px; margin-top: 4px; border-top: 1px solid var(--line-dark);
}

/* --------------------------------------------------------------------------
   12. Forms
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--paper); border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 46px);
}

.form-card h2 {
  font-size: 1.3rem !important; font-stretch: 94%;
  letter-spacing: .01em;
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-display); font-weight: 700; font-stretch: 96%;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 9px; color: var(--ink);
}
.field .opt { color: var(--text-mute); font-weight: 500; letter-spacing: .08em; }
.field .req { color: var(--red); }

.field input[type="text"], .field input[type="tel"], .field input[type="email"],
.field input[type="date"], .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem;
  padding: 14px 15px;
  border: 1px solid var(--line); border-radius: 0;
  border-bottom-width: 2px;
  background: var(--paper-2); color: var(--text);
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2356585b' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 44px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink); border-bottom-color: var(--red);
  background: var(--paper);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: var(--red); background: var(--red-soft);
}
.field .error {
  display: none; color: var(--red); font-size: .85rem; font-weight: 500; margin-top: 8px;
}
.field.has-error .error { display: block; }
.field .hint { font-size: .85rem; color: var(--text-mute); margin-top: 8px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }

/* Choice chips — square toggles */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: block; padding: 11px 17px;
  border: 1px solid var(--line); background: var(--paper-2);
  font-size: .88rem; font-weight: 500; cursor: pointer;
  transition: all .14s var(--ease); user-select: none;
  letter-spacing: .02em;
}
.chip span:hover { border-color: var(--ink); }
.chip input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip input:focus-visible + span { outline: 2px solid var(--red); outline-offset: 2px; }

/* File drop */
.dropzone {
  border: 1px dashed var(--text-mute);
  background: var(--paper-2); padding: 26px 22px; text-align: center;
  cursor: pointer; transition: all .16s var(--ease); display: block;
}
.dropzone:hover, .dropzone.is-over { border-color: var(--red); background: var(--red-soft); }
.dropzone::before {
  content: "+"; display: block;
  font-family: var(--font-display); font-weight: 700; font-size: 1.9rem;
  line-height: 1; color: var(--text-mute); margin-bottom: 10px;
}
.dropzone strong {
  display: block; font-family: var(--font-display); font-weight: 700; font-stretch: 96%;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
}
.dropzone small { color: var(--text-mute); font-size: .84rem; }
.dropzone input { display: none; }
.dropzone svg { display: none; }

.filelist { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 6px; }
.filelist li {
  display: flex; align-items: center; gap: 10px; margin: 0;
  background: var(--paper-2); border: 1px solid var(--line);
  padding: 9px 12px; font-size: .88rem;
}
.filelist li span { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.filelist li small { color: var(--text-mute); flex: none; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .89rem; color: var(--text-soft);
  font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-weight: 400; }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--red); flex: none; }

.form-status {
  display: none; padding: 15px 17px;
  font-size: .93rem; margin-bottom: 22px; font-weight: 500;
  border-left: 3px solid;
}
.form-status.is-error { display: block; background: var(--red-soft); color: var(--red-dark); border-color: var(--red); }
.form-status.is-ok { display: block; background: rgba(23,120,66,.08); color: #146b3a; border-color: #146b3a; }

.form-success { text-align: center; padding: 22px 0; }
.form-success__icon {
  width: 60px; height: 60px; margin: 0 auto 24px;
  background: var(--red); color: #fff; display: grid; place-items: center;
}

/* Trust rail beside form */
.rail { display: grid; gap: 0; }
.rail__item { padding: 18px 0; border-top: 1px solid var(--line-soft); }
.rail__item:first-child { border-top: 0; padding-top: 0; }
.rail__item svg { display: none; }
.rail__item b {
  display: block; font-weight: 600; margin-bottom: 4px;
  font-family: var(--font-display); font-stretch: 94%; font-size: 1rem;
}
.rail__item p { font-size: .9rem; color: var(--text-soft); margin: 0; }
.section--dark .rail__item p { color: var(--on-dark-soft); }

/* --------------------------------------------------------------------------
   13. Accordion (FAQ)
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 24px 46px 24px 0; position: relative;
  font-family: var(--font-display); font-weight: 700; font-stretch: 94%;
  font-size: 1.1rem; letter-spacing: -.005em;
  transition: color .16s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--red); }
/* Plus / minus, drawn with rules rather than a chevron icon */
.faq summary::after,
.faq summary::before {
  content: ""; position: absolute; right: 6px; top: 50%;
  background: var(--red); transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.faq summary::after  { width: 15px; height: 2px; margin-top: -1px; }
.faq summary::before { width: 2px; height: 15px; margin-top: -7.5px; right: 12.5px; }
.faq details[open] summary::before { transform: scaleY(0); opacity: 0; }
.faq details > div { padding: 0 20px 26px 0; color: var(--text-soft); max-width: 68ch; }
.faq details > div p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   14. Page header (interior pages)
   -------------------------------------------------------------------------- */
.page-head {
  background: var(--ink); color: #fff;
  padding-block: clamp(50px, 6.5vw, 88px);
  border-bottom: 4px solid var(--red);
}
.page-head h1 { margin-bottom: 18px; font-size: clamp(2.3rem, 5.2vw, 3.9rem); }
.page-head p { color: #bcc2c8; font-size: 1.1rem; max-width: 58ch; }
.crumbs {
  font-size: .72rem; color: var(--text-mute); margin-bottom: 22px;
  letter-spacing: .16em; text-transform: uppercase;
  font-family: var(--font-display); font-weight: 600;
}
.crumbs a:hover { color: #fff; }
.crumbs span { margin: 0 9px; opacity: .45; }

/* --------------------------------------------------------------------------
   15. Detailed service rows (services page)
   -------------------------------------------------------------------------- */
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4.5vw, 60px); align-items: center;
  padding-block: clamp(42px, 5.5vw, 68px);
  border-bottom: 1px solid var(--line);
}
.svc-row:last-of-type { border-bottom: 0; }
.svc-row:nth-child(even) .svc-row__media { order: 2; }
.svc-row__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.svc-row__n {
  font-family: var(--font-display); font-weight: 800; font-stretch: 100%;
  font-size: .7rem; letter-spacing: .22em; color: var(--red);
  margin-bottom: 14px; display: block;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.svc-row h2 { font-size: clamp(1.75rem, 3vw, 2.3rem); margin-bottom: 16px; }
.svc-row p { color: var(--text-soft); }

/* Spec list, set as a ruled inline run */
.taglist {
  display: flex; flex-wrap: wrap; gap: 0; list-style: none; padding: 0;
  margin: 22px 0 0; border-top: 1px solid var(--line);
  padding-top: 14px;
}
.taglist li {
  margin: 0; padding: 4px 14px 4px 0;
  font-size: .82rem; color: var(--text-mute); font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  font-family: var(--font-display); font-stretch: 96%;
}
.taglist li::after { content: "\00a0\00a0/"; color: var(--line); }
.taglist li:last-child::after { display: none; }

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark-soft); padding-block: clamp(50px, 7vw, 74px) 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 40px 32px; padding-bottom: 48px;
}
.footer-grid h4 {
  color: #fff; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line-dark);
  font-weight: 700;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 11px; font-size: .92rem; }
.footer-grid a:hover { color: #fff; }
.footer-about p { font-size: .92rem; margin-top: 20px; max-width: 36ch; }
.footer-social { display: flex; gap: 8px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-dark); display: grid; place-items: center;
  transition: all .16s var(--ease);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 24px; font-size: .82rem;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom a:hover { color: #fff; }
.footer-bottom .made-by { color: #6b7075; }
.footer-bottom .made-by a { color: #93989d; }

/* --------------------------------------------------------------------------
   17. Sticky mobile call bar
   -------------------------------------------------------------------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; gap: 1px; padding: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: var(--line-dark);
  border-top: 2px solid var(--red);
}
.callbar .btn { flex: 1; padding: 16px 10px; font-size: .8rem; border: 0; border-radius: 0; }
.callbar .btn--ghost-light { background: var(--ink); color: #fff; }
.callbar .btn--ghost-light:hover { background: var(--ink-3); color: #fff; }

/* --------------------------------------------------------------------------
   18. Reveal animation
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(3) { padding-left: 0; border-left: 0; margin-top: 30px; }
  .step:nth-child(4) { margin-top: 30px; }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .trust__item:nth-child(3) { border-left: 0; }
}

@media (max-width: 900px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: grid; }

  .site-header.is-open .nav {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 2px solid var(--ink);
    padding: 8px var(--gutter) 22px; gap: 0;
    max-height: calc(100vh - 100px); overflow-y: auto;
  }
  .site-header.is-open .nav a {
    padding: 17px 2px; font-size: .95rem; border-bottom: 1px solid var(--line-soft);
  }
  .site-header.is-open .nav a[aria-current="page"]::after { left: 2px; right: auto; width: 26px; bottom: 8px; }
  .site-header.is-open .nav .btn { margin: 18px 0 0; border-bottom: 0; }
  .site-header .wrap { position: relative; }

  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split, .split--form, .svc-row, .cta-band__inner { grid-template-columns: 1fr; }
  .split--flip .split__media, .svc-row:nth-child(even) .svc-row__media { order: 0; }
  .cta-band h2, .cta-band p { max-width: none; }

  .topbar__list--secondary { display: none; }
  .topbar .wrap { justify-content: center; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .trust__item:nth-child(odd) { border-left: 0; }

  body { padding-bottom: 60px; }
  .callbar { display: flex; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  /* Keep the top bar to one line on phones — the address lives in the footer
     and on the contact page, and the sticky call bar covers the phone number. */
  .topbar__item--address { display: none; }
  .topbar__list { justify-content: center; }
  .topbar__item { border-left: 0; padding-left: 0; }

  .grid--2, .grid--3, .grid--4, .reviews { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step + .step { padding-left: 0; border-left: 0; margin-top: 30px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .btn { width: 100%; }
  .btn-row .btn, .hero__cta .btn { width: 100%; }
  .callbar .btn, .btn--sm { width: auto; }
  .nav .btn { width: 100%; }

  .rating-summary { gap: 18px; }
  .rating-summary__div { display: none; }
  .split__stat { position: static; max-width: none; }
  .hero__points { gap: 10px 20px; }
  .trust__item { border-left: 0; }
  .form-card { padding: 24px 20px; }
  .info-card { padding: 26px 22px; }
}

@media print {
  .site-header, .topbar, .callbar, .site-footer, .cta-band { display: none; }
  body { color: #000; }
}
