/* ========================================================================
   Covenant Construction · Moose Jaw, SK
   Family-owned asphalt paving since the 1940s · 4th generation
   Aesthetic: asphalt black + road-stripe yellow + warm concrete cream
   Display: Anton (slab cap) · UI: Barlow Condensed · Body: Barlow · Mono: JetBrains Mono
   ======================================================================== */

/* ===== 1. RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; overflow-x: clip; }
body { overflow-x: clip; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ===== 2. CUSTOM PROPERTIES ===== */
:root {
  --asphalt:        #0E0F10;
  --asphalt-2:      #15171A;
  --asphalt-3:      #1F2226;
  --asphalt-4:      #2A2D31;

  --stripe:         #F5C518;
  --stripe-bright:  #FFD028;
  --stripe-deep:    #C89E0B;
  --stripe-glow:    rgba(245, 197, 24, 0.55);
  --stripe-soft:    rgba(245, 197, 24, 0.18);

  --concrete:       #F2EEE5;
  --concrete-2:     #E6E0D2;
  --cream:          #F5F0E6;

  --steel:          #6B7177;
  --steel-2:        #9AA0A6;
  --steel-3:        #BDC1C6;

  --line:           rgba(255,255,255,0.08);
  --line-strong:    rgba(255,255,255,0.18);
  --line-dark:      rgba(14,15,16,0.12);
  --line-dark-2:    rgba(14,15,16,0.22);

  --max:            1320px;
  --max-narrow:     1080px;
  --pad-x:          clamp(20px, 4vw, 36px);
  --section-pad:    clamp(72px, 9vw, 130px);

  --font-display:   'Anton', 'Barlow Condensed', 'Bebas Neue', sans-serif;
  --font-ui:        'Barlow Condensed', 'Oswald', sans-serif;
  --font-body:      'Barlow', system-ui, sans-serif;
  --font-mono:      'JetBrains Mono', 'IBM Plex Mono', monospace;

  --ease:           cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snappy:    cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring:    cubic-bezier(0.34, 1.45, 0.64, 1);

  --t-fast:         0.18s var(--ease-snappy);
  --t-med:          0.32s var(--ease);
  --t-slow:         0.55s var(--ease);
}

/* ===== 3. BODY / GLOBAL CHROME ===== */
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--asphalt);
  background: var(--concrete);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http%3A//www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Custom scrollbar, brand-matched */
* { scrollbar-width: thin; scrollbar-color: var(--stripe) var(--asphalt); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--asphalt); }
::-webkit-scrollbar-thumb {
  background: var(--stripe);
  border: 2px solid var(--asphalt);
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: var(--stripe-bright); border-color: var(--asphalt); background-clip: padding-box; }
::-webkit-scrollbar-corner { background: var(--asphalt); }

::selection { background: var(--stripe); color: var(--asphalt); }
:focus-visible { outline: 2px solid var(--stripe); outline-offset: 3px; }

/* ===== 4. TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  color: inherit;
}

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-stripe { color: var(--stripe); }
.text-cream { color: var(--cream); }
.text-asphalt { color: var(--asphalt); }
.text-mute { color: var(--steel); }

em {
  font-style: normal;
  color: var(--stripe);
  position: relative;
}

/* ===== 5. LAYOUT UTILITIES ===== */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.wrap-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

section { padding: var(--section-pad) 0; position: relative; }
.section-pad { padding: var(--section-pad) 0; }
.section-pad-sm { padding: clamp(48px, 6vw, 84px) 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--stripe);
  color: var(--asphalt);
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.skip-link:focus { left: 0.5rem; }

/* ===== 6. ROAD STRIPE PRIMITIVES ===== */
.stripe-thick {
  height: 14px;
  background: repeating-linear-gradient(90deg, var(--stripe) 0 44px, transparent 44px 88px);
}
.stripe-thin {
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--stripe) 0 22px, transparent 22px 44px);
}
.road-divider {
  background: var(--asphalt);
  height: 64px;
  position: relative;
  overflow: hidden;
}
.road-divider::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0; height: 6px; transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, var(--stripe) 0 60px, transparent 60px 120px);
}
.road-divider::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0; width: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}

/* ===== 7. NAV ===== */
.nav {
  background: var(--asphalt);
  color: #fff;
  border-bottom: 1px solid var(--line);
}

.nav-top {
  background: #07080A;
  color: var(--steel-2);
  font-family: var(--font-ui);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}
.nav-top .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  gap: 18px;
}
.nav-top .left { display: flex; gap: 22px; align-items: center; }
.nav-top .left span { display: inline-flex; align-items: center; gap: 8px; }
.nav-top .dot {
  width: 7px; height: 7px;
  background: var(--stripe);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245,197,24,0.18);
  animation: dot-pulse 2.4s ease-in-out infinite;
}
.nav-top .right { display: flex; gap: 22px; align-items: center; }
.nav-top a:hover { color: var(--stripe); }

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245,197,24,0.18); }
  50% { box-shadow: 0 0 0 7px rgba(245,197,24,0.05); }
}

.nav-main {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--asphalt);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
}
.nav-main .wrap {
  display: flex;
  align-items: center;
  height: 92px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-logo img, .nav-logo svg {
  height: 60px;
  width: auto;
  transition: transform var(--t-fast), filter var(--t-fast);
  transform-origin: left center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0));
}
.nav-logo:hover img, .nav-logo:hover svg {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 14px rgba(245,197,24,0.45));
}

.nav-links {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
}
.nav-links a { padding: 8px 0; position: relative; transition: color var(--t-fast); }
.nav-links a:hover,
.nav-links a.active { color: var(--stripe); }
.nav-links a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -8px;
  height: 3px;
  background: var(--stripe);
}
.nav-links a:not(.active):hover::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -8px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--stripe) 0 8px, transparent 8px 16px);
  background-size: 16px 100%;
  animation: nav-stripe-flow 0.7s linear infinite;
}
@keyframes nav-stripe-flow {
  from { background-position: 0 0; }
  to { background-position: 16px 0; }
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--stripe); color: var(--asphalt);
  font-family: var(--font-ui); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 14px 22px; font-size: 14.5px;
  border: 2px solid var(--stripe);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.nav-cta:hover { background: transparent; color: var(--stripe); transform: translateY(-1px); }
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-direction: column;
}
.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--concrete);
  margin: 3px 0;
  transition: var(--t-fast);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--stripe); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--stripe); }

/* ===== 8. BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 26px;
  font-size: 15.5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t-fast);
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary { background: var(--stripe); color: var(--asphalt); border-color: var(--stripe); }
.btn-primary:hover { background: var(--stripe-bright); border-color: var(--stripe-bright); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(245,197,24,0.5); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.28); }
.btn-ghost:hover { border-color: var(--stripe); color: var(--stripe); }
.btn-ghost-dark { background: transparent; color: var(--asphalt); border-color: var(--asphalt); }
.btn-ghost-dark:hover { background: var(--asphalt); color: var(--stripe); }
.btn-dark { background: var(--asphalt); color: var(--stripe); border-color: var(--asphalt); }
.btn-dark:hover { background: transparent; color: var(--asphalt); }

.btn-sm { padding: 10px 16px; font-size: 13px; gap: 8px; }
.btn-lg { padding: 20px 32px; font-size: 17px; }

/* ===== 9. HERO ===== */
.hero {
  background: var(--asphalt);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent 0 60px,
    rgba(245, 197, 24, 0.025) 60px 61px
  );
  pointer-events: none;
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  padding-top: clamp(20px, 2.5vw, 36px);
  padding-bottom: clamp(28px, 3.5vw, 56px);
  align-items: start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--stripe);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow .bar { width: 56px; height: 2px; background: var(--stripe); }

.hero h1 {
  font-size: clamp(42px, 5.6vw, 92px);
  letter-spacing: -0.005em;
  color: var(--concrete);
  line-height: 0.98;
}
.hero h1 .stripe-word { position: relative; color: var(--stripe); display: inline-block; }
.hero h1 .stripe-word::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -10px; height: 5px;
  background: repeating-linear-gradient(90deg, var(--stripe) 0 14px, transparent 14px 28px);
}

.hero-lede { max-width: 540px; margin-top: 30px; font-size: 19px; color: #C9CDD2; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-meta > div { background: var(--asphalt); padding: 22px 8px 22px 0; }
.hero-meta .num { font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); color: var(--stripe); line-height: 1; }
.hero-meta .lbl { font-family: var(--font-ui); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--steel-2); margin-top: 8px; }

.hero-visual { position: relative; }
.hero-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background: var(--asphalt-2);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.hero-img img,
.hero-img .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05);
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  z-index: 0;
}
.hero-img .hero-slide.is-active { opacity: 1; z-index: 1; }

.hero-slide-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
  background: rgba(14,15,16,0.55);
  padding: 10px 14px;
  backdrop-filter: blur(4px);
}
.hero-slide-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(245,240,230,0.35);
  border-radius: 50%;
  transition: background var(--t-fast), transform var(--t-fast);
  cursor: pointer;
  border: 0;
  padding: 0;
}
.hero-slide-dots .dot:hover { background: rgba(245,197,24,0.6); }
.hero-slide-dots .dot.is-active { background: var(--stripe); transform: scale(1.3); }
.hero-img-tag {
  position: absolute;
  top: 18px; left: 18px;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(14,15,16,0.65);
  padding: 6px 10px;
  z-index: 2;
}
.hero-img-badge {
  position: absolute;
  bottom: 18px; right: 18px; left: 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--concrete);
  z-index: 2;
}
.hero-img-badge .big { font-family: var(--font-display); font-size: 56px; line-height: 0.9; color: var(--stripe); }
.hero-img-badge .sub { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.06em; font-size: 13px; }

.hero-card {
  position: absolute;
  bottom: -36px;
  left: -24px;
  background: var(--stripe);
  color: var(--asphalt);
  padding: 26px 30px;
  max-width: 360px;
  border: 4px solid var(--asphalt);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  z-index: 3;
}
.hero-card .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.hero-card .quote { font-family: var(--font-display); font-size: 28px; margin-top: 8px; line-height: 1; }
.hero-card .by { font-family: var(--font-ui); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; margin-top: 14px; opacity: 0.85; }

.hero-card--family {
  padding: 14px 18px 12px;
  max-width: 220px;
  border-width: 3px;
  bottom: -22px;
  left: -16px;
}
.hero-card--family .label { font-size: 9.5px; letter-spacing: 0.16em; }
.hero-card--family .quote {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: 4px;
}
.hero-card--family .by {
  opacity: 1;
  font-size: 10.5px;
  max-width: 200px;
  line-height: 1.3;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ===== 10. SECTION HEAD ===== */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow .num {
  background: var(--asphalt);
  color: var(--stripe);
  padding: 4px 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.section-eyebrow .bar { width: 40px; height: 1px; background: var(--asphalt); opacity: 0.4; }

.section-title { font-size: clamp(40px, 5.4vw, 88px); line-height: 0.95; max-width: 820px; }
.section-sub { max-width: 520px; font-size: 17px; color: #2E3236; line-height: 1.6; }

.section-head--center { display: block; text-align: center; max-width: 880px; margin-left: auto; margin-right: auto; }
.section-head--center .section-eyebrow { margin-bottom: 22px; justify-content: center; }
.section-head--center .section-sub { margin: 24px auto 0; }

.section-dark { background: var(--asphalt); color: #fff; }
.section-dark .section-eyebrow { color: var(--steel-2); }
.section-dark .section-eyebrow .bar { background: var(--steel); opacity: 0.5; }
.section-dark .section-title { color: var(--concrete); }
.section-dark .section-sub { color: #fff; font-weight: 500; }

/* The about section also uses a dark bg, give its copy the same readable white treatment */
.about .section-sub { color: #fff; font-weight: 500; }
.about .section-eyebrow { color: var(--steel-2); }
.about .section-eyebrow .bar { background: var(--steel); opacity: 0.5; }
.about-copy p { color: #fff; font-weight: 500; }
.about-copy p strong { color: #fff; font-weight: 700; }

/* ===== 11. SERVICES GRID (image-led cards) ===== */
.services { background: var(--concrete); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service {
  position: relative;
  transition: var(--t-med);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--asphalt);
  background: var(--asphalt);
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(14,15,16,0.08), 0 18px 36px -22px rgba(14,15,16,0.25);
}
.service:hover { transform: translateY(-4px); box-shadow: 0 1px 0 rgba(14,15,16,0.08), 0 28px 50px -22px rgba(14,15,16,0.45); }

.service-img {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--asphalt-2);
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
  filter: brightness(0.95);
}
.service:hover .service-img img { transform: scale(1.06); filter: brightness(0.85); }
.service-img::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--stripe) 0 16px, transparent 16px 32px);
  background-size: 32px 100%;
  z-index: 2;
  animation: stripe-flow 5s linear infinite;
  animation-play-state: paused;
}
.service:hover .service-img::after {
  animation-play-state: running;
  animation-duration: 0.9s;
  background: repeating-linear-gradient(90deg, var(--stripe-bright) 0 16px, transparent 16px 32px);
  background-size: 32px 100%;
  height: 5px;
}
@keyframes stripe-flow {
  from { background-position: 0 0; }
  to { background-position: 32px 0; }
}

.service-body {
  background: var(--asphalt);
  color: var(--cream);
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  isolation: isolate;
}
.service-body::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.service h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0.01em;
  color: var(--concrete);
}
.service-desc {
  font-size: 15px;
  color: #eae5d8;
  margin-top: 12px;
  flex: 1;
  line-height: 1.6;
  font-weight: 500;
  transition: var(--t-med);
}
.service-read-more {
  align-self: flex-start;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--stripe);
  transition: gap var(--t-fast), color var(--t-fast);
}
.service-arrow {
  width: 22px;
  height: 22px;
  color: var(--stripe);
  transition: transform var(--t-fast), color var(--t-fast);
}
.service:hover .service-read-more { color: var(--stripe-bright); gap: 16px; }
.service:hover .service-arrow { transform: translate(4px, -4px); color: var(--stripe-bright); }

/* ===== 12. ABOUT ===== */
.about { background: var(--asphalt); color: #fff; position: relative; overflow: hidden; padding-bottom: clamp(40px, 5vw, 72px); }
.about + .section-dark { padding-top: clamp(40px, 5vw, 72px); }
.about::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 10%, rgba(245,197,24,0.10), transparent 50%);
  pointer-events: none;
}
.about .wrap { position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-img {
  aspect-ratio: 5 / 6;
  background: var(--asphalt-2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.95) contrast(1.05); }
.about-img .badge {
  position: absolute;
  top: 22px; left: 22px;
  background: var(--stripe);
  color: var(--asphalt);
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  z-index: 2;
}
.about-img .tag {
  position: absolute;
  bottom: 22px; left: 22px;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(14,15,16,0.65);
  padding: 6px 10px;
  z-index: 2;
}

.about-copy h3 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 22px; color: var(--concrete); }
.about-copy p { color: var(--steel-3); font-size: 17px; margin: 0 0 18px 0; line-height: 1.6; }
.about-copy p strong { color: var(--concrete); font-weight: 600; }

.about-points { margin-top: 38px; border-top: 1px solid var(--line); }
.about-points li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
}
.about-points li .pt-num { font-family: var(--font-mono); font-size: 12px; color: var(--stripe); letter-spacing: 0.12em; }
.about-points li .pt-title { font-family: var(--font-ui); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 18px; }
.about-points li .pt-tag { font-family: var(--font-mono); font-size: 11px; color: var(--steel-2); letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== 13. CTA / MAP / INFO ===== */
.cta-map { background: var(--stripe); color: var(--asphalt); padding: 0; }
.cta-map-grid { display: grid; grid-template-columns: 1.1fr 1fr; min-height: 600px; }
.cta-map-left { padding: clamp(56px, 8vw, 96px) clamp(28px, 5vw, 64px); display: flex; flex-direction: column; justify-content: space-between; gap: 48px; }
.cta-map-left h2,
.cta-map-title { font-size: clamp(28px, 3.4vw, 52px); line-height: 0.98; max-width: 560px; margin-top: 24px; }
.cta-map-left .lede { font-size: 18px; margin-top: 26px; max-width: 480px; line-height: 1.55; }
.cta-map-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--asphalt);
}
.info-grid > div,
.info-grid > a.info-tile { padding: 22px 16px 22px 0; border-right: 1px solid rgba(14,15,16,0.20); display: block; color: var(--asphalt); text-decoration: none; transition: background var(--t-fast), color var(--t-fast), padding var(--t-fast); position: relative; }
.info-grid > div:last-child,
.info-grid > a.info-tile:last-child { border-right: 0; }
.info-grid > a.info-tile:hover { background: var(--asphalt); color: var(--stripe); padding-left: 12px; padding-right: 12px; }
.info-grid > a.info-tile:hover .lbl { opacity: 1; color: var(--stripe); }
.info-grid > a.info-tile::after { content: "↗"; position: absolute; top: 18px; right: 12px; font-family: var(--font-ui); font-weight: 700; color: var(--asphalt); opacity: 0; transition: opacity var(--t-fast), transform var(--t-fast); font-size: 16px; }
.info-grid > a.info-tile:hover::after { opacity: 1; color: var(--stripe); transform: translate(2px, -2px); }
.info-grid .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }
.info-grid .val { font-family: var(--font-ui); font-weight: 700; text-transform: uppercase; font-size: 18px; margin-top: 8px; letter-spacing: 0.02em; line-height: 1.25; }

.cta-map-right { background: var(--asphalt); position: relative; overflow: hidden; min-height: 480px; }
.cta-map-right iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.05); }

/* ===== 14. REVIEWS ===== */
.reviews { background: var(--concrete); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: #fff;
  padding: 36px 32px;
  border: 1px solid rgba(14,15,16,0.12);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--t-med);
}
.review:hover { border-color: var(--stripe); transform: translateY(-4px); box-shadow: 0 22px 40px -16px rgba(0,0,0,0.18); }
.review::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--stripe) 0 12px, transparent 12px 24px);
  opacity: 0.6;
}
.review-stars { color: var(--stripe); font-size: 18px; letter-spacing: 2px; }
.review-quote { font-family: var(--font-body); font-size: 18px; line-height: 1.55; margin: 20px 0 26px; flex: 1; color: var(--asphalt); }
.review-by { display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid rgba(14,15,16,0.08); }
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--asphalt);
  color: var(--stripe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 19px;
  flex-shrink: 0;
}
.review-by .name { font-family: var(--font-ui); font-weight: 700; text-transform: uppercase; font-size: 16px; letter-spacing: 0.04em; }
.review-by .meta { font-family: var(--font-mono); font-size: 11px; color: var(--steel); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

.reviews-summary {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 32px;
  background: var(--asphalt);
  color: #fff;
  flex-wrap: wrap;
}
.reviews-summary .big { font-family: var(--font-display); font-size: 64px; color: var(--stripe); line-height: 1; }
.reviews-summary .stars { color: var(--stripe); font-size: 22px; letter-spacing: 3px; }
.reviews-summary .lbl { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel-2); font-size: 13px; margin-top: 4px; }
.reviews-summary .sep { width: 1px; height: 60px; background: var(--line); }
.reviews-summary .right { margin-left: auto; display: flex; align-items: center; gap: 18px; font-family: var(--font-ui); text-transform: uppercase; font-size: 14px; letter-spacing: 0.06em; }

/* ===== 15. GALLERY / BEFORE-AFTER SLIDER ===== */
.gallery { background: var(--asphalt); color: #fff; }
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.ba-grid--3 { grid-template-columns: repeat(3, 1fr); }

.ba {
  position: relative;
  overflow: hidden;
  background: var(--asphalt-2);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  user-select: none;
  cursor: ew-resize;
  touch-action: none;
}
.ba-after { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ba-before {
  position: absolute; top: 0; left: 0; height: 100%;
  width: 50%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--stripe);
  box-shadow: 0 0 0 1px var(--asphalt), 0 0 18px rgba(245,197,24,0.5);
  z-index: 3;
  pointer-events: none;
}
.ba-handle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--stripe);
  border: 3px solid var(--asphalt);
  box-shadow: 0 0 0 1px var(--stripe), 0 6px 20px rgba(0,0,0,0.45);
}
.ba-handle::after {
  content: "↔";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--asphalt);
  font-weight: 900;
  font-size: 18px;
  z-index: 4;
  pointer-events: none;
}
.ba-label {
  position: absolute;
  top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(14,15,16,0.78);
  padding: 6px 12px;
  z-index: 2;
}
.ba-label--before { left: 16px; }
.ba-label--after { right: 16px; color: var(--asphalt); background: var(--stripe); }
.ba-caption { margin-top: 16px; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.ba-caption .ttl { font-family: var(--font-display); font-size: 22px; line-height: 1; color: var(--concrete); }
.ba-caption .sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel-2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: var(--t-med);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery-item:hover { border-color: var(--stripe); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .tag {
  position: absolute;
  top: 14px; left: 14px;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(14,15,16,0.65);
  padding: 5px 10px;
  z-index: 2;
}
.gallery-item .num {
  position: absolute;
  top: 14px; right: 14px;
  color: var(--stripe);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  background: rgba(14,15,16,0.65);
  padding: 5px 8px;
  z-index: 2;
}
.gallery-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 18px;
  background: linear-gradient(to top, rgba(14,15,16,0.92), rgba(14,15,16,0));
  color: #fff;
  transform: translateY(8px);
  opacity: 0.85;
  transition: var(--t-med);
}
.gallery-item:hover .gallery-meta { transform: translateY(0); opacity: 1; }
.gallery-meta .ttl { font-family: var(--font-display); font-size: 22px; line-height: 1; }
.gallery-meta .sub { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; margin-top: 6px; color: var(--steel-2); }
.g-2x2 { grid-column: span 2; grid-row: span 2; }
.g-2x1 { grid-column: span 2; }
.g-1x2 { grid-row: span 2; }

/* ===== 16. AREAS ===== */
.areas { background: var(--concrete-2); }
.areas-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.areas-copy h2 { font-size: clamp(40px, 5vw, 80px); margin-bottom: 24px; }
.areas-copy p { font-size: 17px; max-width: 420px; color: #2E3236; line-height: 1.6; }
.areas-radius {
  margin-top: 36px;
  background: var(--asphalt);
  color: #fff;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.areas-radius .big { font-family: var(--font-display); color: var(--stripe); font-size: 56px; line-height: 1; }
.areas-radius .lbl { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.04em; font-size: 14px; color: var(--steel-2); }
.areas-radius .lbl b { color: #fff; display: block; font-size: 17px; font-weight: 700; }

.areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--asphalt);
  border-bottom: 2px solid var(--asphalt);
}
.areas-list li {
  padding: 0;
  border-bottom: 1px solid rgba(14,15,16,0.12);
  border-right: 1px solid rgba(14,15,16,0.12);
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 16px;
  transition: var(--t-fast);
}
.areas-list li:nth-child(3n) { border-right: 0; }
.areas-list li a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 14px 10px;
}
.areas-list li:hover { background: rgba(14,15,16,0.04); }
.areas-list li:hover a { color: var(--stripe-deep); }
.areas-list li .miles { font-family: var(--font-mono); font-size: 11px; color: var(--steel); letter-spacing: 0.1em; font-weight: 400; }
.areas-list li.primary { background: var(--asphalt); color: var(--stripe); }
.areas-list li.primary:hover { background: #16181B; }
.areas-list li.primary .miles { color: var(--steel-2); }

/* ===== 17. PROCESS STEPS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--stripe);
  border-bottom: 2px solid var(--stripe);
  position: relative;
}
.process-step {
  padding: 36px 28px 40px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background var(--t-med), transform var(--t-med);
  cursor: default;
  isolation: isolate;
}
.process-step:last-child { border-right: 0; }
.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245,197,24,0.08) 0%, rgba(245,197,24,0) 100%);
  opacity: 0;
  transition: opacity var(--t-med);
  z-index: -1;
  pointer-events: none;
}
.process-step::after {
  content: "";
  position: absolute;
  left: 28px; right: 28px; bottom: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--stripe) 0 8px, transparent 8px 16px);
  background-size: 16px 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
}
.process-step:hover { transform: translateY(-4px); }
.process-step:hover::before { opacity: 1; }
.process-step:hover::after { transform: scaleX(1); animation: nav-stripe-flow 0.9s linear infinite; }
.process-step:hover .big-num { color: var(--stripe); transform: translateX(4px); }
.process-step:hover .icon { color: var(--stripe-bright); transform: scale(1.1); }

.process-step .num { font-family: var(--font-mono); font-size: 12px; color: var(--stripe); letter-spacing: 0.14em; text-transform: uppercase; }
.process-step .big-num { font-family: var(--font-display); font-size: 68px; color: var(--concrete); line-height: 1; margin: 6px 0 14px; transition: color var(--t-med), transform var(--t-med); }
.process-step h4 { font-size: 22px; margin-bottom: 12px; color: var(--concrete); letter-spacing: 0.02em; }
.process-step p { font-size: 15px; color: #fff; line-height: 1.6; font-weight: 500; }
.process-step .icon { width: 32px; height: 32px; color: var(--stripe); margin-bottom: 12px; transition: color var(--t-fast), transform var(--t-fast); }

/* ===== 18. CONTACT FORM ===== */
.contact-section { background: var(--asphalt); color: #fff; position: relative; overflow: hidden; }
.contact-hero { padding-top: clamp(32px, 4vw, 56px); padding-bottom: clamp(48px, 6vw, 88px); }
.contact-hero .crumbs { color: var(--steel-2); margin-bottom: 26px; }
.contact-hero-title { font-family: var(--font-display); font-size: clamp(40px, 5.4vw, 84px); color: var(--concrete); text-transform: uppercase; line-height: 1; letter-spacing: 0.01em; }
.contact-hero-title em { color: var(--stripe); font-style: normal; }
.contact-hero-lede { color: var(--steel-3); font-size: 18px; margin-top: 22px; max-width: 540px; line-height: 1.55; }
.contact-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.6;
  pointer-events: none;
}
.contact-section .wrap { position: relative; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-side h2 { color: var(--concrete); font-size: clamp(40px, 5vw, 84px); }
.contact-side p { color: var(--steel-3); font-size: 17px; margin-top: 24px; max-width: 420px; line-height: 1.6; }
.contact-stack { margin-top: 40px; display: grid; gap: 0; }
.contact-stack > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-stack > div:last-child { border-bottom: 1px solid var(--line); }
.contact-stack .lbl { font-family: var(--font-mono); font-size: 11px; color: var(--stripe); letter-spacing: 0.12em; text-transform: uppercase; padding-top: 4px; }
.contact-stack .val { font-family: var(--font-ui); font-weight: 600; font-size: 19px; text-transform: uppercase; letter-spacing: 0.02em; }
.contact-stack a:hover { color: var(--stripe); }

.form {
  background: var(--asphalt-2);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
}
.form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--stripe) 0 16px, transparent 16px 32px);
}
.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.form-head .ttl { font-family: var(--font-display); font-size: 28px; text-transform: uppercase; color: var(--concrete); }
.form-head .id { font-family: var(--font-mono); font-size: 11px; color: var(--steel-2); letter-spacing: 0.12em; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-mono); font-size: 11.5px; color: var(--stripe); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; font-weight: 500; }
.form-input, .form-field input, .form-field select, .form-field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--line-strong);
  color: #fff;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color var(--t-fast);
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-bottom-color: var(--stripe); }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%23F5C518'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px;
  padding-right: 24px;
}
.form-field select option { background: var(--asphalt); }
.form-field textarea { resize: vertical; min-height: 110px; }

.form-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  color: var(--steel-3);
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
  cursor: pointer;
  transition: var(--t-fast);
  user-select: none;
}
.chip:hover { border-color: var(--stripe); color: var(--stripe); }
.chip.on { background: var(--stripe); color: var(--asphalt); border-color: var(--stripe); }

.form-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 16px; }
.form-foot .note { font-family: var(--font-mono); font-size: 11px; color: var(--steel-2); letter-spacing: 0.08em; }
.form-honey { position: absolute; left: -9999px; }

.form-success { display: none; text-align: center; padding: 36px; }
.form-success.show { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--stripe);
  color: var(--asphalt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.form-success-title { font-size: 28px; color: var(--concrete); margin-bottom: 12px; }
.form-success-text { color: var(--steel-3); margin-bottom: 22px; }
.form-error {
  color: var(--asphalt);
  background: var(--stripe);
  padding: 12px 16px;
  margin: 14px 0;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
}

/* ===== 19. OFFER STRIP ===== */
.offer-strip {
  background: var(--stripe);
  color: var(--asphalt);
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}
.offer-strip::before, .offer-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  background: repeating-linear-gradient(45deg, var(--asphalt) 0 18px, var(--stripe) 18px 36px);
}
.offer-strip::before { left: 0; }
.offer-strip::after { right: 0; }
.offer-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(14px, 1.5vw, 18px);
  flex-wrap: wrap;
}
.offer-strip .big { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); color: var(--asphalt); }
.offer-strip a {
  border: 2px solid var(--asphalt);
  padding: 8px 16px;
  transition: var(--t-fast);
}
.offer-strip a:hover { background: var(--asphalt); color: var(--stripe); }

/* ===== 20. FOOTER ===== */
footer.site-footer {
  background: #07080A;
  color: var(--concrete);
  padding: 90px 0 32px;
  position: relative;
}
footer.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--stripe) 0 36px, transparent 36px 72px);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 60px; }
.footer-brand img, .footer-brand svg { height: 72px; width: auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }
.footer-brand p { color: var(--steel-2); font-size: 15px; max-width: 320px; margin: 22px 0 26px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--concrete);
  transition: var(--t-fast);
}
.footer-social a:hover { background: var(--stripe); color: var(--asphalt); border-color: var(--stripe); }

.footer-col h4 { font-family: var(--font-ui); font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--stripe); margin-bottom: 22px; font-weight: 700; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col li { color: var(--concrete); font-size: 15px; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--stripe); }
.footer-col .accent { color: var(--stripe); font-weight: 600; }

.footer-bottom {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-bottom a:hover { color: var(--stripe); }
.footer-legal-links { display: flex; gap: 18px; }

/* ===== 21. FLOATING / FIXED ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  background: var(--stripe);
  color: var(--asphalt);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px rgba(0,0,0,0.5);
  border: 3px solid var(--asphalt);
  transition: var(--t-fast);
}
.floating-cta:hover { transform: scale(1.08); }
.floating-cta svg { width: 24px; height: 24px; }

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 70;
  background: var(--asphalt);
  border-top: 3px solid var(--stripe);
  padding: 12px 16px;
  gap: 10px;
}
.mobile-cta-bar .btn { flex: 1; justify-content: center; padding: 14px 12px; font-size: 13px; }
.mobile-cta-bar--hidden { transform: translateY(110%); }

/* ===== 22. CITY SEARCH (service-areas page) ===== */
.city-search { margin-bottom: 28px; position: relative; }
.city-search input {
  width: 100%;
  background: #fff;
  border: 2px solid var(--asphalt);
  color: var(--asphalt);
  padding: 16px 20px 16px 50px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  outline: none;
  transition: var(--t-fast);
}
.city-search input:focus { border-color: var(--stripe-deep); }
.city-search::before {
  content: "";
  position: absolute;
  left: 18px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E0F10' stroke-width='2.5'><circle cx='11' cy='11' r='7'/><path d='m20 20-3-3'/></svg>") no-repeat;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: rgba(14,15,16,0.12);
  border: 1px solid rgba(14,15,16,0.12);
}
.city-grid a {
  background: #fff;
  padding: 14px 16px;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--t-fast);
}
.city-grid a:hover { background: var(--asphalt); color: var(--stripe); }
.city-grid a .arrow { color: var(--stripe-deep); font-size: 16px; transition: var(--t-fast); }
.city-grid a:hover .arrow { color: var(--stripe); transform: translateX(3px); }
.city-grid a.hidden { display: none; }

/* ===== 23. PAGE HEADER (interior pages) ===== */
.page-header {
  background: var(--asphalt);
  color: #fff;
  padding: clamp(32px, 4vw, 60px) 0 clamp(36px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  opacity: 0.6;
  pointer-events: none;
}
.page-header .wrap { position: relative; }
.page-header h1 { font-size: clamp(38px, 5vw, 78px); color: var(--concrete); max-width: 920px; line-height: 1; }
.page-header h1 em { color: var(--stripe); }
.page-header .lede { margin-top: 24px; font-size: 19px; color: var(--steel-3); max-width: 640px; line-height: 1.6; }
.crumbs {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--steel-2);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.crumbs a:hover { color: var(--stripe); }
.crumbs .sep { color: var(--stripe); }

/* ===== 24. ICONS / UTILS ===== */
.icon-inline { width: 18px; height: 18px; flex-shrink: 0; }
.icon-lg { width: 32px; height: 32px; }

/* ===== 25. SERVICE DETAIL PAGE ===== */
.svc-detail .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.svc-detail h2 { font-size: clamp(36px, 4vw, 60px); margin-bottom: 20px; }
.svc-detail h3 { font-size: clamp(24px, 2.2vw, 32px); margin: 36px 0 14px; }
.svc-detail p { font-size: 17px; line-height: 1.7; margin-bottom: 16px; color: #2E3236; }
.svc-detail ul { margin: 16px 0 24px; padding-left: 0; }
.svc-detail ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid var(--line-dark);
}
.svc-detail ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 18px; height: 4px;
  background: repeating-linear-gradient(90deg, var(--stripe) 0 6px, transparent 6px 12px);
}

.svc-sidebar {
  position: sticky;
  top: 130px;
  background: var(--asphalt);
  color: #fff;
  padding: 36px 32px;
  border-top: 4px solid var(--stripe);
}
.svc-sidebar h4 { font-size: 24px; color: var(--concrete); margin-bottom: 20px; }
.svc-sidebar p { color: var(--steel-3); font-size: 15px; margin-bottom: 22px; line-height: 1.55; }
.svc-sidebar .info { display: grid; gap: 14px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.svc-sidebar .info div { display: flex; gap: 14px; align-items: flex-start; }
.svc-sidebar .info .lbl { font-family: var(--font-mono); font-size: 11px; color: var(--stripe); letter-spacing: 0.12em; text-transform: uppercase; min-width: 70px; }
.svc-sidebar .info .val { font-family: var(--font-ui); font-weight: 600; font-size: 16px; }
.svc-sidebar .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

.svc-services-also {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(14,15,16,0.12);
  margin-top: 60px;
  border: 1px solid rgba(14,15,16,0.12);
}
.svc-services-also a {
  background: var(--concrete);
  padding: 22px 20px;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 16px;
  transition: var(--t-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.svc-services-also a:hover { background: var(--asphalt); color: var(--stripe); }

/* ===== 26. FAQ ===== */
.faq-list { display: grid; gap: 4px; max-width: 920px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-left: 4px solid var(--asphalt);
  transition: border-color var(--t-fast);
}
.faq-item.open { border-left-color: var(--stripe); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--asphalt);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--asphalt);
  color: var(--stripe);
  font-size: 18px;
  font-weight: 400;
  transition: var(--t-fast);
}
.faq-item.open .faq-q .plus { background: var(--stripe); color: var(--asphalt); transform: rotate(45deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med), padding var(--t-med);
}
.faq-item.open .faq-a { padding: 0 24px 24px; max-height: 600px; }
.faq-a p { color: #2E3236; line-height: 1.7; font-size: 16px; margin-bottom: 10px; }

/* ===== 27. ANIMATIONS ===== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== 28. RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero .wrap, .about-grid, .cta-map-grid, .contact-grid, .areas-grid, .section-head, .svc-detail .wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2n) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .ba-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .svc-services-also { grid-template-columns: repeat(2, 1fr); }
  .svc-sidebar { position: static; }
}

@media (max-width: 860px) {
  .nav-top .left span:nth-child(2) { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--asphalt);
    border-top: 3px solid var(--stripe);
    padding: 100px 24px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    z-index: 75;
    font-size: 18px;
    margin-left: 0;
  }
  .nav-links.open a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open a:hover::after,
  .nav-links.open a.active::after { display: none; }
  .nav-cta { display: none; }
  .nav-main .wrap { gap: 16px; height: 76px; }
  .nav-logo img, .nav-logo svg { height: 48px; }

  .hero { padding-top: 0; }
  .hero .wrap { padding-top: 24px; padding-bottom: 36px; }
  .hero-card { right: 0; bottom: -20px; max-width: 240px; padding: 16px 18px; }
  .hero-card .quote { font-size: 22px; }

  .services-grid, .reviews-grid, .ba-grid, .ba-grid--3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .g-2x2, .gallery-grid .g-2x1, .gallery-grid .g-1x2 { grid-column: auto; grid-row: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }

  .info-grid { grid-template-columns: 1fr; }
  .info-grid > div { border-right: 0; border-bottom: 1px solid rgba(14,15,16,0.20); padding-right: 0; }

  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-list { grid-template-columns: 1fr; }
  .areas-list li { border-right: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .mobile-cta-bar { display: flex; }
  .floating-cta { display: none; }

  .section-head { display: block; }
  .section-head > div + p { margin-top: 18px; }

  .reviews-summary { gap: 20px; padding: 22px 20px; }
  .reviews-summary .sep { display: none; }

  .cta-map-grid { grid-template-columns: 1fr; }
  .cta-map-right { min-height: 360px; }

  .svc-services-also { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero h1 { font-size: clamp(34px, 9vw, 54px); }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta > div { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .hero-meta > div:last-child { border-bottom: 0; }
  .btn { padding: 14px 18px; font-size: 14px; }
  .nav-top .left span:first-child { font-size: 11px; }
  .reviews-summary .right { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
