/* ===================================================================
   ABQ LOCKSMITH & ROAD ASSISTANCE — premium auto-locksmith preview
   Palette: RED · GOLD · BLACK (from logo)
   Type: Saira Condensed (display) · Inter (body) · JetBrains Mono (labels)
   =================================================================== */

:root {
  --red:          #D72028;
  --red-bright:   #E63B41;
  --red-deep:     #9E1820;
  --red-glow:     rgba(215,32,40,0.32);

  --gold:         #F4C430;
  --gold-bright:  #FFDA5C;
  --gold-deep:    #BC9614;
  --gold-soft:    rgba(244,196,48,0.16);

  --black:        #0B0B0F;
  --ink:          #14151B;
  --ink-2:        #1B1D26;
  --steel:        #6E7480;
  --steel-soft:   #9099A6;

  --white:        #FFFFFF;
  --paper:        #F6F5F2;
  --paper-ink:    #14151B;
  --paper-muted:  #5B5F69;
  --paper-line:   rgba(11,11,15,0.10);

  --line:         rgba(255,255,255,0.10);
  --line-strong:  rgba(255,255,255,0.20);

  --bg:           #0B0B0F;
  --bg-1:         #14151B;
  --bg-2:         #1B1D26;

  --text:         #FFFFFF;
  --text-soft:    rgba(255,255,255,0.86);
  --muted:        rgba(255,255,255,0.66);
  --muted-soft:   rgba(255,255,255,0.46);
}

/* ═══════ BASE ═══════ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }
::selection { background: var(--red); color: var(--white); }

/* Focus rings — 4px red */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 120px 0; }
.section.tight { padding: 92px 0; }
.section.dark { background: var(--bg); }
.section.darker { background: var(--black); }
.section.layered { background: var(--bg-1); }
.section.paper { background: var(--paper); color: var(--paper-ink); }

/* ═══════ TYPOGRAPHY ═══════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.section.paper .eyebrow { color: var(--red-deep); }

h1, h2, h3, h4 {
  font-family: 'Saira Condensed', 'Anton', sans-serif;
  font-weight: 800;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 0.96;
}
h2 {
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 900;
  margin-bottom: 22px;
}
h2 .accent { color: var(--red); }
h2 .gold { color: var(--gold-bright); }
.section.paper h2 { color: var(--paper-ink); }
h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.section-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 720px;
  margin-bottom: 56px;
}
.section.paper .section-lead { color: var(--paper-muted); }
.section-head { margin-bottom: 64px; max-width: 880px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(215,32,40,0.28);
}
.btn-red:hover { background: var(--red-bright); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(215,32,40,0.45); }
.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 6px 18px rgba(244,196,48,0.26);
}
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(244,196,48,0.40); }
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.36);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.56); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--red); color: #fff; }
.btn-outline-dark {
  background: transparent;
  color: var(--paper-ink);
  border-color: rgba(11,11,15,0.22);
}
.btn-outline-dark:hover { background: #fff; border-color: var(--red); color: var(--red); }
.btn-xl { padding: 18px 32px; font-size: 14.5px; letter-spacing: 1.8px; }

/* ═══════ ANNOUNCE BAR ═══════ */
.announce {
  background: var(--black);
  border-bottom: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: var(--text-soft);
}
.announce-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 32px;
  flex-wrap: wrap; gap: 12px;
}
.announce-left { display: inline-flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.announce-left a { display: inline-flex; align-items: center; gap: 7px; color: var(--text-soft); transition: color .2s; }
.announce-left a:hover { color: var(--red-bright); }
.announce-left svg { width: 13px; height: 13px; color: var(--red); }
.announce-right { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-bright); font-weight: 600; }
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(215,32,40,0.32);
}
@media (prefers-reduced-motion: no-preference) {
  .pulse-dot { animation: pulse 1.8s ease-in-out infinite; }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(215,32,40,0.32); transform: scale(1); }
    50%      { box-shadow: 0 0 0 7px rgba(215,32,40,0.05); transform: scale(1.12); }
  }
}

/* ═══════ NAV ═══════ */
.nav-wrap {
  background: rgba(11,11,15,0.86);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 90;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  gap: 22px;
}
.brand {
  display: inline-flex; align-items: center;
  gap: 12px;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
.brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}
.brand-wordmark { display: flex; flex-direction: column; gap: 1px; }
.brand-wordmark .b1 { font-size: 15px; line-height: 1; letter-spacing: 0.04em; color: #fff; }
.brand-wordmark .b2 { font-size: 9.5px; line-height: 1; letter-spacing: 2px; color: var(--gold-bright); font-weight: 600; }

.nav-links { display: inline-flex; align-items: center; gap: 26px; }
.nav-link {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  padding: 5px 0;
  transition: color .2s;
}
.nav-link:hover { color: #fff; }
.nav-link.active { color: var(--red-bright); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--red);
}
.nav-right { display: inline-flex; align-items: center; gap: 12px; }
.burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: #fff;
  align-items: center; justify-content: center;
}
.burger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: 320px; max-width: 88vw;
  height: 100vh; height: 100dvh;
  background: var(--black);
  border-left: 1px solid var(--line);
  z-index: 200;
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 22px; right: 22px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
}
.drawer a {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.drawer-phone {
  margin-top: 12px;
  color: var(--red-bright) !important;
}
.drawer-cta { margin-top: 18px; }
.drawer-scrim {
  position: fixed; inset: 0;
  background: rgba(11,11,15,0.72);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  z-index: 180;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.drawer-scrim.show { opacity: 1; pointer-events: auto; }

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: var(--text);
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: brightness(0.42) saturate(1.18) contrast(1.10);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-bg img { animation: heroPan 28s ease-in-out infinite alternate; }
  @keyframes heroPan {
    0%   { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.12) translate(-2%, -1%); }
  }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,11,15,0.62) 0%, rgba(11,11,15,0.28) 35%, rgba(11,11,15,0.92) 100%),
    radial-gradient(circle at 50% 30%, rgba(215,32,40,0.20) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(244,196,48,0.10) 0%, transparent 50%);
}
.hero-inner {
  position: relative;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px 28px 130px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.7));
  border-radius: 8px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 18px 9px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: #fff;
  margin-bottom: 26px;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.hero h1 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  text-shadow: 0 4px 32px rgba(0,0,0,0.6);
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--red); }
.hero h1 .gold { color: var(--gold-bright); }
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,0.94);
  max-width: 720px;
  margin-bottom: 36px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-cta-row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line-strong);
}
.hero-stat {
  background: rgba(11,11,15,0.82);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  padding: 20px 22px;
  text-align: center;
}
.hero-stat .n {
  font-family: 'Saira Condensed', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1;
  color: var(--gold-bright);
  font-weight: 900;
  letter-spacing: 0.005em;
}
.hero-stat .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* Inner-page hero (compact for sub-pages) */
.page-hero {
  position: relative;
  padding: 96px 0 80px;
  background: var(--black);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(215,32,40,0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(244,196,48,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 1080px; }
.page-hero h1 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.page-hero h1 .accent { color: var(--red); }
.page-hero p.lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 720px;
}
.crumbs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.crumbs a { color: var(--red-bright); }
.crumbs span { color: var(--steel-soft); margin: 0 8px; }

/* ═══════ GOOGLE REVIEWS BAND ═══════ */
.grev-band { background: var(--paper); color: var(--paper-ink); padding: 44px 0 36px; border-bottom: 1px solid var(--paper-line); }
.grev-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 22px; }
.grev-head-left { display: inline-flex; align-items: center; gap: 18px; }
.grev-google { width: 42px; height: 42px; flex-shrink: 0; }
.grev-rating-block { display: flex; flex-direction: column; gap: 4px; }
.grev-top { display: inline-flex; align-items: center; gap: 10px; }
.grev-num { font-family: 'Saira Condensed', sans-serif; font-size: 30px; font-weight: 900; color: var(--paper-ink); line-height: 1; }
.grev-stars { display: inline-flex; gap: 2px; color: #FBBC05; }
.grev-stars svg { width: 20px; height: 20px; fill: currentColor; }
.grev-meta { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: var(--paper-muted); }
.grev-meta a { color: var(--red-deep); text-decoration: underline; text-decoration-color: rgba(158,24,32,0.4); text-underline-offset: 2px; }
.grev-meta a:hover { color: var(--red); }
.grev-write-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  background: #fff;
  border: 1.5px solid var(--paper-line);
  border-radius: 100px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--paper-ink);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.grev-write-btn:hover { border-color: var(--red); box-shadow: 0 8px 22px rgba(215,32,40,0.20); transform: translateY(-1px); color: var(--red); }
.grev-write-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
/* Carousel track wrapper with mask-fade edges */
.grev-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
}
.grev-track {
  display: flex;
  gap: 16px;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.grev-card {
  flex: 0 0 calc((100% - 48px) / 4);   /* 4 cards visible desktop */
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 14px;
  padding: 22px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform .2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.grev-card:hover { border-color: rgba(0,0,0,0.20); box-shadow: 0 14px 32px rgba(30,38,46,0.10); transform: translateY(-2px); }
.grev-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.grev-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 16px; font-weight: 800;
  flex-shrink: 0;
}
.grev-card-meta { flex: 1; min-width: 0; }
.grev-card-name { font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 700; color: var(--paper-ink); line-height: 1.2; }
.grev-card-when { font-size: 12px; font-weight: 500; color: var(--paper-muted); margin-top: 3px; }
.grev-g-mini { width: 16px; height: 16px; flex-shrink: 0; }
.grev-card-stars { display: inline-flex; align-items: center; gap: 3px; margin-bottom: 12px; color: #FBBC05; }
.grev-card-stars svg { width: 16px; height: 16px; fill: currentColor; }
.grev-card-text { font-family: 'Inter', sans-serif; font-size: 14.5px; line-height: 1.6; color: rgba(11,11,15,0.86); flex: 1; }

/* Carousel controls — arrows + dots */
.grev-controls {
  margin-top: 22px;
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
}
.grev-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--paper-line);
  color: var(--paper-ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  padding: 0;
}
.grev-arrow:hover { border-color: var(--red); color: var(--red); box-shadow: 0 6px 16px rgba(215,32,40,0.18); transform: translateY(-1px); }
.grev-arrow:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }
.grev-arrow svg { width: 16px; height: 16px; }
.grev-dots {
  display: inline-flex; align-items: center; gap: 8px;
}
.grev-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(11,11,15,0.18);
  border: 0; padding: 0;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, width 0.32s;
}
.grev-dot:hover { background: rgba(11,11,15,0.36); }
.grev-dot.active {
  background: var(--red);
  width: 22px;
  border-radius: 100px;
}
.grev-dot:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* ═══════ SERVICES OVERVIEW (homepage, 6-card) ═══════ */
.svc-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.32s, box-shadow 0.32s;
  cursor: pointer;
  border: 1px solid var(--line);
}
.svc-tile:hover { transform: translateY(-5px); box-shadow: 0 28px 64px rgba(215,32,40,0.22); border-color: rgba(215,32,40,0.32); }
.svc-tile-bg { position: absolute; inset: 0; z-index: -2; }
.svc-tile-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease, filter 0.4s;
  filter: brightness(0.58) saturate(1.10);
}
.svc-tile:hover .svc-tile-bg img { transform: scale(1.07); filter: brightness(0.72) saturate(1.18); }
.svc-tile::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 36%, rgba(11,11,15,0.94) 100%);
}
.svc-tile::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 1;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
}
.svc-tile-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px 24px;
  z-index: 1;
}
.svc-tile-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.svc-tile-name {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.svc-tile-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.84);
}
.svc-tile-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--red-bright);
}
.svc-tile-link svg { width: 12px; height: 12px; }
.svc-tile-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 1;
  transition: all 0.3s;
}
.svc-tile-arrow svg { width: 16px; height: 16px; }
.svc-tile:hover .svc-tile-arrow { background: var(--red); border-color: var(--red); transform: rotate(-45deg); }

/* ═══════ PORTFOLIO STRIP ═══════ */
.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .32s, box-shadow .32s;
  isolation: isolate;
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(0,0,0,0.5); }
.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s, filter .35s;
  filter: brightness(0.78) saturate(1.06);
}
.portfolio-card:hover img { transform: scale(1.05); filter: brightness(0.88) saturate(1.12); }
.portfolio-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,15,0.85) 100%);
  pointer-events: none;
}
.portfolio-cap {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  z-index: 1;
}
.portfolio-cap .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 6px;
}
.portfolio-cap .h {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
}

/* ═══════ TRUST / PILLARS ═══════ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 38px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  opacity: 0;
  transition: opacity .25s;
}
.pillar:hover { transform: translateY(-3px); border-color: rgba(215,32,40,0.32); box-shadow: 0 20px 44px rgba(0,0,0,0.4); }
.pillar:hover::before { opacity: 1; }
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gold-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
  margin-bottom: 22px;
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pillar p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.pillar-metric {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  color: var(--red-bright);
  letter-spacing: 0.005em;
}
.pillar-metric-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ═══════ PROCESS ═══════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-1);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.process-step {
  padding: 38px 30px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .25s;
}
.process-step:last-child { border-right: 0; }
.process-step:hover { background: var(--bg-2); }
.process-num {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.005em;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.process-step h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

/* ═══════ AREAS GRID ═══════ */
.areas-county { margin-top: 38px; }
.areas-county:first-of-type { margin-top: 0; }
.areas-county-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.areas-county-head .name {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.areas-county-head .badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area-pill {
  padding: 20px 22px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  transition: transform .2s, border-left-color .2s, background .2s;
}
.area-pill:hover { transform: translateY(-3px); border-left-color: var(--gold); background: var(--bg-2); }
.area-pill .n {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.area-pill .sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--muted);
  text-transform: uppercase;
}
.area-pill.flagship {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  border-color: var(--red);
}
.area-pill.flagship .n { color: #fff; }
.area-pill.flagship .sub { color: var(--gold-bright); font-weight: 700; letter-spacing: 1.6px; }

/* ═══════ FAQ ═══════ */
.faq-list { max-width: 920px; margin: 0 auto; }
.faq-item {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--red); box-shadow: 0 18px 36px rgba(215,32,40,0.14); }
.faq-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  line-height: 1.25;
}
.faq-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(215,32,40,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background .3s, transform .3s;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  width: 12px; height: 2px;
  background: var(--red-bright);
  transition: transform .3s, background .3s;
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item.open .faq-icon { background: var(--red); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: rotate(0deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-body { max-height: 600px; }
.faq-body-inner {
  padding: 0 24px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-soft);
}
.faq-body-inner strong { color: #fff; }

/* ═══════ SERVICES.HTML — SERVICE ROWS ═══════ */
.svc-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 88px;
}
.svc-row:last-child { margin-bottom: 0; }
.svc-row.reverse { direction: rtl; }
.svc-row.reverse > * { direction: ltr; }
.svc-row-info .eyebrow { color: var(--gold-bright); }
.svc-row-info h2 {
  font-size: clamp(36px, 4.4vw, 64px);
  margin-bottom: 22px;
}
.svc-row-info > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.svc-row-info > p strong { color: #fff; font-weight: 600; }
.svc-check {
  list-style: none;
  margin: 24px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.svc-check li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
}
.svc-check li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--red);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 11px 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.svc-row-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.svc-photos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: 320px;
  max-height: 380px;
}
.svc-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-1);
  transition: box-shadow .25s, transform .25s;
}
.svc-photo:hover { box-shadow: 0 18px 44px rgba(215,32,40,0.18); transform: translateY(-2px); }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.svc-photos > .svc-photo:first-child { grid-row: span 2; }

/* ═══════ FINAL CTA ═══════ */
.final-cta {
  position: relative;
  padding: 110px 0;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 1100px; height: 700px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 45% 50% at 30% 50%, var(--red-glow) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 70% 50%, rgba(244,196,48,0.16) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; padding: 0 32px; }
.final-cta h2 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.final-cta h2 .accent { color: var(--red); }
.final-cta p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}

/* ═══════ FOOTER ═══════ */
.footer {
  background: #07070A;
  border-top: 1px solid var(--line);
  padding: 80px 0 30px;
  color: var(--text-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img {
  height: 72px;
  width: auto;
  margin-bottom: 18px;
  border-radius: 6px;
}
.footer-about { font-size: 14px; line-height: 1.7; color: var(--text-soft); max-width: 320px; margin-bottom: 18px; }
.footer-bilingual {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(244,196,48,0.12);
  border: 1px solid rgba(244,196,48,0.32);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold-bright);
}
.footer-heading {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-heading.gold { color: var(--gold-bright); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; color: var(--text-soft); transition: color .2s; }
.footer-links a:hover { color: var(--red-bright); }
.footer-contact { display: flex; flex-direction: column; gap: 18px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--red-bright); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 3px;
}
.footer-contact-item .v { font-size: 14px; color: #fff; }
.footer-contact-item .v a { color: #fff; }
.footer-contact-item .v a:hover { color: var(--red-bright); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 12px;
  color: var(--muted-soft);
  letter-spacing: 0.4px;
}

/* ═══════ MOBILE STICKY CTA ═══════ */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  padding: 10px 12px 14px;
  background: rgba(11,11,15,0.96);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
}
.mobile-cta-inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 8px; }
.mobile-cta .btn { padding: 16px 12px; font-size: 13px; height: 56px; letter-spacing: 1.4px; }

/* ═══════ ABOUT PAGE ═══════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-portrait {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  box-shadow: 0 32px 72px rgba(0,0,0,0.5);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-portrait .pcap {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  padding: 14px 18px;
  background: rgba(11,11,15,0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}
.about-portrait .ppill {
  position: absolute;
  top: 18px; left: 18px;
  padding: 9px 16px;
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.about-info h2 { margin-bottom: 22px; }
.about-info p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.about-info p strong { color: #fff; }
.about-stats {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.about-stat .n {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: var(--red-bright);
}
.about-stat .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.values-grid .value-card { display: flex; flex-direction: column; }
.value-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform .25s, border-top-color .25s, box-shadow .25s;
}
.value-card:hover { transform: translateY(-3px); border-top-color: var(--gold); box-shadow: 0 18px 42px rgba(0,0,0,0.36); }
.value-card .vnum {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--gold-bright);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.value-card h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ═══════ CONTACT PAGE ═══════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.contact-form {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 44px;
}
.contact-form h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 12px; }
.contact-form .form-lead {
  color: var(--text-soft);
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.65;
}
.field { margin-bottom: 18px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  min-height: 48px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.40); }

.info-panel {
  display: flex; flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 100px;
}
.info-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}
.info-card.primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  border-color: var(--red);
}
.info-card.primary .info-label,
.info-card.primary .info-h { color: rgba(255,255,255,0.94); }
.info-card.primary .info-v { color: #fff; }
.info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 8px;
}
.info-h {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1;
}
.info-v {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
}
.info-v a { color: var(--gold-bright); }
.info-card .row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.info-card .row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-card .row:first-child { padding-top: 0; }
.info-card .row .ic {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
  flex-shrink: 0;
}
.info-card .row .ic svg { width: 18px; height: 18px; }
.info-card .row .kv .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.info-card .row .kv .v {
  font-size: 14.5px;
  color: #fff;
}

/* ═══════ MOBILE ═══════ */
@media (max-width: 900px) {
  .container { padding: 0 32px; }
  .section { padding: 60px 0; }
  .section.tight { padding: 52px 0; }

  /* Reviews carousel: 2 cards at tablet */
  .grev-band { padding: 36px 0 28px; }
  .grev-card { flex: 0 0 calc((100% - 16px) / 2); padding: 18px; }
  .grev-card-text { font-size: 13.5px; }
  .grev-head { margin-bottom: 18px; gap: 14px; }
  .grev-controls { margin-top: 18px; gap: 12px; }

  /* Nav */
  .nav-links { display: none; }
  .burger { display: inline-flex; }
  .nav-right .btn-ghost,
  .nav-right .btn-red { display: none; }

  /* Hero */
  .hero { min-height: 92vh; min-height: 92dvh; }
  .hero-inner { padding: 56px 24px 130px; }
  .hero-logo { max-width: 320px; margin-bottom: 22px; }
  .hero h1 { font-size: clamp(44px, 10vw, 64px); line-height: 0.96; }
  .hero-eyebrow { font-size: 10.5px; letter-spacing: 1.8px; padding: 7px 14px 7px 11px; }
  .hero-sub { font-size: 15.5px; margin-bottom: 28px; }
  .hero-cta-row { gap: 10px; }
  .btn-xl { padding: 15px 22px; font-size: 13px; letter-spacing: 1.4px; }
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero-stat { padding: 14px 8px; }
  .hero-stat .n { font-size: 20px; }
  .hero-stat .l { font-size: 9px; letter-spacing: 1.1px; margin-top: 5px; }

  /* Page hero */
  .page-hero { padding: 64px 0 56px; }
  .page-hero h1 { font-size: clamp(40px, 9vw, 60px); }
  .page-hero p.lead { font-size: 15.5px; }

  /* Section heads */
  .section-head { margin-bottom: 40px; }
  h2 { font-size: clamp(34px, 7vw, 52px); }
  .section-lead { font-size: 15.5px; margin-bottom: 36px; }

  /* Grev band */
  .grev-band { padding: 40px 0 44px; }
  .grev-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
  .grev-head-left { gap: 14px; }
  .grev-num { font-size: 26px; }
  .grev-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: 280px;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    margin: 0 -32px;
    padding: 0 32px 8px;
  }
  .grev-card { scroll-snap-align: start; }

  /* Services overview 6-card → 2-col */
  .svc-overview { grid-template-columns: 1fr 1fr; gap: 12px; }
  .svc-tile-name { font-size: 20px; }
  .svc-tile-desc { font-size: 12.5px; }
  .svc-tile-content { padding: 18px 16px; }
  .svc-tile-tag { font-size: 9.5px; letter-spacing: 1.4px; margin-bottom: 8px; }
  .svc-tile-arrow { width: 36px; height: 36px; top: 14px; right: 14px; }
  .svc-tile-arrow svg { width: 13px; height: 13px; }

  /* Portfolio strip */
  .portfolio { grid-template-columns: 1fr; gap: 12px; }
  .portfolio-card { aspect-ratio: 16 / 11; }

  /* Pillars */
  .pillars { grid-template-columns: 1fr; gap: 14px; }
  .pillar { padding: 28px 22px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 22px; }
  .process-step:last-child { border-bottom: 0; }
  .process-num { font-size: 44px; margin-bottom: 14px; }

  /* Areas */
  .area-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .area-pill { padding: 16px 16px; }
  .area-pill .n { font-size: 16px; }
  .area-pill .sub { font-size: 9.5px; }
  .areas-county-head .name { font-size: 18px; }

  /* FAQ */
  .faq-trigger { font-size: 16px; padding: 18px 18px; }
  .faq-body-inner { padding: 0 18px 20px; font-size: 14.5px; }

  /* Service rows */
  .svc-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; direction: ltr; }
  .svc-row.reverse { direction: ltr; }
  .svc-row.reverse > * { direction: ltr; }
  .svc-row-info h2 { font-size: clamp(32px, 7vw, 48px); }
  .svc-check { grid-template-columns: 1fr; gap: 8px; }
  .svc-photos {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 280px;
    max-height: 320px;
  }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-portrait { aspect-ratio: 4 / 5; max-width: 480px; margin: 0 auto; }
  .about-stats { grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
  .about-stat .n { font-size: 24px; }
  .about-stat .l { font-size: 9.5px; letter-spacing: 1.1px; }
  .values-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form { padding: 30px 24px; }
  .field.row { grid-template-columns: 1fr; }
  .info-panel { position: static; }

  /* Footer */
  .footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Final CTA */
  .final-cta { padding: 72px 0; }
  .final-cta h2 { font-size: clamp(36px, 8vw, 56px); }
  .final-cta p { font-size: 15.5px; margin-bottom: 28px; }

  /* Announce — hide right block to keep clean */
  .announce-inner { padding: 9px 32px; font-size: 10.5px; }
  .announce-left { gap: 14px; }
  .announce-right { font-size: 10px; }

  /* Mobile sticky CTA */
  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
}

@media (max-width: 640px) {
  /* Reviews carousel: 1 card at phone */
  .grev-card { flex: 0 0 100%; padding: 18px; }
}

@media (max-width: 520px) {
  .hero-cta-row { flex-direction: column; width: 100%; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; }
  .announce-left { font-size: 10px; gap: 10px; }
  .announce-left a:nth-child(2) { display: none; }
}

@media (max-width: 380px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 12px 8px; }
}

/* ═══════ ACCESSIBILITY ═══════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
