/* ===========================================================
   RIGHT TURN REMOVALS: production stylesheet
   Mockup-03 architecture. Mockup-02 light "paper" palette.
   Bebas Neue + Hanken Grotesk (self-hosted). Light theme.
   RED = action. GOLD = trust. INK = contrast bands.
   =========================================================== */

/* ── self-hosted fonts (no render-blocking Google round-trip) ── */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('fonts/bebas-neue-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal; font-weight: 400 800; font-display: swap;
  src: url('fonts/hanken-grotesk-latin.woff2') format('woff2');
}

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

:root {
  /* ── BRAND ── */
  --brand-red:   #f3230a;
  --brand-gold:  #fdb813;
  --brand-black: #130a12;

  /* ── light "paper" surface scale (from Mockup-02) ── */
  --paper:    #faf8f4;   /* page background */
  --paper-2:  #f1ede6;   /* tinted sections */
  --paper-3:  #eae4d9;   /* cards on tint */
  --hairline: #e2ddd3;   /* borders */
  --ink:      #130a12;   /* headings + ink bands */
  --ink-2:    #221a20;   /* ink card surface */
  --body:     #3a3733;   /* body text */
  --mute:     #6b6660;   /* muted text */

  /* ── accents ── */
  --red:      var(--brand-red);
  --red-b:    #fc321a;   /* red hover (brighter) */
  --red-d:    #b8180a;   /* deep red band base */
  --gold:     var(--brand-gold);
  --gold-d:   #c9930f;
  --on-red:   #fff5f4;
  --on-gold:  #201a08;
  --on-ink:   #f5f1f6;
  --mute-ink: #b7b1b8;   /* muted text on ink */

  --ff-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --ff-body:    'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 1200px;
}

html { scroll-behavior: smooth; overflow-x: hidden; overscroll-behavior-x: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--body);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}

.wrap { width: min(92%, var(--wrap)); margin-inline: auto; }
h1, h2, h3 { font-family: var(--ff-display); font-weight: 400; letter-spacing: 0.01em; line-height: 0.95; color: var(--ink); text-wrap: balance; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body); font-weight: 800;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow svg { width: 15px; height: 15px; }
.y { color: var(--red); }            /* accent word in light headings */
.on-ink .y, .band .y, .cta-box .y { color: var(--gold); }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-body); font-weight: 800; font-size: 15px;
  padding: 15px 26px; min-height: 50px; border-radius: 8px; cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px); }
.btn-red { background: var(--red); color: var(--on-red); }
.btn-red:hover { background: var(--red-b); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--on-ink); }
.btn-ink:hover { background: #2c2230; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--on-gold); }
.btn-gold:hover { background: var(--gold-d); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.on-ink .btn-ghost { color: var(--on-ink); border-color: rgba(245,241,246,0.28); }
.on-ink .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }

/* ── RIBBON (preview only) ─────────────────────────────── */
.ribbon {
  background: var(--ink); color: var(--on-ink);
  text-align: center; font-size: 13px; padding: 8px 16px; letter-spacing: 0.01em;
}
.ribbon strong { color: var(--gold); }

/* ── HEADER ─────────────────────────────── */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,248,244,0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo .badge {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%;
  overflow: hidden; background: var(--ink);
  box-shadow: 0 0 0 1px rgba(251,184,19,0.35), 0 6px 16px -8px rgba(243,35,10,0.55);
}
.logo .badge img { width: 100%; height: 100%; display: block; border-radius: 50%; object-fit: cover; }
.logo .name { display: flex; flex-direction: column; line-height: 1; }
.logo .name b { font-family: var(--ff-display); font-size: 26px; letter-spacing: 0.05em; color: var(--ink); white-space: nowrap; }
.logo .name b i { font-style: normal; color: var(--red); }
.logo .name small {
  font-family: var(--ff-body); font-weight: 800; font-size: 9.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); margin-top: 4px; white-space: nowrap;
}
nav.main { display: flex; gap: 26px; }
nav.main a { font-weight: 700; font-size: 15px; color: var(--mute); transition: color 0.15s ease; position: relative; }
nav.main a:hover, nav.main a.active { color: var(--ink); }
nav.main a.active::after { content: ''; position: absolute; left: 0; bottom: -26px; width: 100%; height: 3px; background: var(--red); }
.head-right { display: flex; align-items: center; gap: 16px; }
.head-tel { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 15px; color: var(--ink); }
.head-tel svg { width: 17px; height: 17px; color: var(--red); }
.menu-btn { display: none; background: none; border: none; color: var(--ink); cursor: pointer; padding: 4px; }

/* Mobile drawer */
.mobile-nav { display: none; flex-direction: column; gap: 2px; padding: 10px 4% 18px; border-bottom: 1px solid var(--hairline); background: var(--paper); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 13px 6px; color: var(--body); font-weight: 700; border-bottom: 1px solid var(--hairline); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: 12px; }
.mobile-nav .btn-red { color: var(--on-red); }

/* ── IMAGE FRAMES ─────────────────────────────── */
.has-ph { position: relative; }
.frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── HERO (light) ─────────────────────────────── */
.hero { position: relative; overflow: hidden; background: var(--paper); border-bottom: 1px solid var(--hairline); }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 84px 0 92px; }
.hero-inner { max-width: 620px; }
.hero h1 { font-size: clamp(52px, 7.5vw, 96px); margin: 20px 0 0; letter-spacing: 0.01em; }
.hero .lede { font-size: 19px; color: var(--body); max-width: 520px; margin: 22px 0 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-ticks { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px; list-style: none; }
.hero-ticks li { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; color: var(--ink); }
.hero-ticks svg { width: 19px; height: 19px; color: var(--red); flex-shrink: 0; }
.hero-media { position: relative; aspect-ratio: 4/3.4; border-radius: 18px; overflow: hidden; border: 1px solid var(--hairline); box-shadow: 0 30px 60px -30px rgba(19,10,18,0.4); background: var(--paper-2); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-rating {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: rgba(250,248,244,0.95); backdrop-filter: blur(6px);
  padding: 10px 14px; border-radius: 12px; box-shadow: 0 8px 20px -10px rgba(19,10,18,0.5);
}
.hero-rating .stars { color: var(--gold); letter-spacing: 1px; font-size: 15px; }
.hero-rating .rt { font-size: 12.5px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.hero-rating .rt small { display: block; font-weight: 600; color: var(--mute); font-size: 11px; }

/* ── PAGE BANNER (sub-pages, ink) ─────────────────────────────── */
.banner { position: relative; overflow: hidden; background: var(--ink); color: var(--on-ink); }
.banner .wrap { position: relative; z-index: 2; padding: 66px 0 60px; }
.banner h1 { font-size: clamp(44px, 6vw, 78px); margin: 14px 0 0; color: var(--on-ink); }
.banner p { color: var(--mute-ink); font-size: 18px; max-width: 600px; margin-top: 16px; }
.banner .eyebrow { color: var(--gold); }
.crumb { font-size: 13px; color: var(--mute-ink); letter-spacing: 0.03em; }
.crumb a:hover { color: var(--gold); }

/* ── TRUST STRIP ─────────────────────────────── */
.trust { border-bottom: 1px solid var(--hairline); background: var(--paper-2); }
.trust .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 30px; padding: 20px 0; }
.trust span { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; color: var(--body); }
.trust svg { width: 18px; height: 18px; color: var(--red); flex: none; }

/* ── SECTIONS ─────────────────────────────── */
section.block { padding: clamp(64px, 8vw, 96px) 0; }
section.block.tight { padding-top: 0; }
.section-tint { background: var(--paper-2); }
.sec-head { max-width: 720px; margin-bottom: 46px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(38px, 5vw, 58px); margin: 12px 0 14px; }
.sec-head p { color: var(--mute); font-size: 18px; }

/* ── FEATURED SERVICES (two big earners) ────────────── */
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 22px; }
.feat {
  position: relative; display: block; overflow: hidden;
  background: var(--paper); border: 1px solid var(--hairline); border-radius: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.feat:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: 0 24px 40px -28px rgba(19,10,18,0.45); }
.feat-media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--paper-2); }
.feat-media img { width: 100%; height: 100%; object-fit: cover; }
.feat-body { padding: 26px 30px 30px; }
.feat-flag {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 800; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 30px; background: var(--red); color: var(--on-red);
}
.feat-flag svg { width: 13px; height: 13px; }
.feat h3 { font-size: 38px; letter-spacing: 0.02em; margin-bottom: 10px; }
.feat p { color: var(--mute); font-size: 16px; line-height: 1.6; max-width: 46ch; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 20px; }
.feat-tags span { font-size: 13px; font-weight: 700; color: var(--body); padding: 6px 12px; border-radius: 30px; border: 1px solid var(--hairline); background: var(--paper-2); }
.feat .go { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 15px; color: var(--red); }
.feat .go svg { width: 17px; height: 17px; transition: transform 0.18s ease; }
.feat:hover .go svg { transform: translateX(4px); }

.sub-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin: 6px 0 22px; }
.sub-head h3 { font-family: var(--ff-display); font-size: 30px; letter-spacing: 0.02em; color: var(--ink); }
.sub-head p { color: var(--mute); font-size: 15.5px; }

/* ── SERVICES GRID (sub-services) ─────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.svc {
  background: var(--paper); border: 1px solid var(--hairline); border-radius: 14px;
  padding: 30px 28px 32px; display: block;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.svc:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: 0 18px 30px -24px rgba(19,10,18,0.4); }
.svc-ico {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 11px;
  background: rgba(243,35,10,0.1); color: var(--red); margin-bottom: 20px;
  transition: background 0.18s ease, color 0.18s ease;
}
.svc:hover .svc-ico { background: var(--red); color: var(--on-red); }
.svc-ico svg { width: 26px; height: 26px; }
.svc h3 { font-size: 26px; letter-spacing: 0.02em; margin-bottom: 9px; }
.svc p { color: var(--mute); font-size: 15.5px; line-height: 1.6; }
.svc .go { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-weight: 800; font-size: 14px; color: var(--red); }
.svc .go svg { width: 16px; height: 16px; transition: transform 0.18s ease; }
.svc:hover .go svg { transform: translateX(4px); }

/* ── SKIP vs US (grafted from Mockup-02) ─────────────────── */
.versus { display: grid; grid-template-columns: 1fr 1fr; border: 2px solid var(--ink); border-radius: 16px; overflow: hidden; }
.versus > div { padding: clamp(28px, 4vw, 44px); }
.versus .them { background: var(--paper-2); }
.versus .us { background: var(--ink); color: var(--on-ink); }
.versus h3 { font-size: 30px; letter-spacing: 0.02em; margin-bottom: 18px; }
.versus .us h3 { color: var(--gold); }
.versus ul { display: grid; gap: 11px; list-style: none; }
.versus li { display: flex; gap: 11px; align-items: baseline; font-size: 15.5px; }
.versus li svg { width: 16px; height: 16px; flex: none; transform: translateY(3px); }
.versus .them li svg { color: var(--red); }
.versus .us li { color: var(--on-ink); }
.versus .us li svg { color: var(--gold); }
.versus .price-line { margin-top: 24px; font-family: var(--ff-display); font-size: 26px; letter-spacing: 0.02em; }
.versus .them .price-line { color: var(--red); }
.versus .us .price-line { color: var(--gold); }

/* ── CONTRAST BAND (red) ─────────────────────────────── */
.band { background: radial-gradient(120% 140% at 88% 0%, #7a1004 0%, transparent 55%), var(--red-d); }
.band .wrap { padding: 84px 0; }
.band-top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; }
.band h2 { font-size: clamp(38px, 5vw, 56px); max-width: 620px; color: var(--on-red); }
.band-top p { color: #ffd6d1; max-width: 360px; font-size: 16px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { border-left: 3px solid var(--gold); padding-left: 20px; }
.stat .n { font-family: var(--ff-display); font-size: 58px; line-height: 0.9; color: var(--gold); }
.stat .l { font-weight: 800; font-size: 15px; color: var(--on-red); margin-top: 8px; }
.stat .s { font-size: 13.5px; color: #ffc7c1; margin-top: 3px; }

/* ── SPLIT (why / feature) ─────────────────────────────── */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.split.rev .split-img { order: 2; }
.split-img { border-radius: 16px; overflow: hidden; border: 1px solid var(--hairline); aspect-ratio: 4/3; background: var(--paper-2); position: relative; box-shadow: 0 24px 44px -30px rgba(19,10,18,0.4); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { font-size: clamp(34px, 4.6vw, 52px); margin: 12px 0 10px; }
.split .lead { color: var(--body); font-size: 17px; }
.checks { list-style: none; display: flex; flex-direction: column; gap: 13px; margin: 24px 0; }
.checks li { display: flex; gap: 12px; font-size: 16px; color: var(--ink); }
.checks svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.mini-stats { display: flex; gap: 30px; flex-wrap: wrap; margin: 24px 0 28px; }
.mini-stats .n { font-family: var(--ff-display); font-size: 38px; color: var(--red); line-height: 0.9; }
.mini-stats .l { font-size: 13.5px; color: var(--mute); }

/* ── STEPS ─────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: var(--paper); border: 1px solid var(--hairline); border-radius: 14px; padding: 28px 26px; border-top: 3px solid var(--red); }
.step .num { font-family: var(--ff-display); font-size: 44px; color: var(--red); line-height: 0.8; margin-bottom: 12px; }
.step h3 { font-size: 24px; letter-spacing: 0.02em; margin-bottom: 8px; }
.step p { color: var(--mute); font-size: 15px; }

/* ── RECENT JOBS (grafted from Mockup-02) ───────────────── */
.jobs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.job { border: 1px solid var(--hairline); border-radius: 14px; background: var(--paper); overflow: hidden; display: flex; flex-direction: column; }
.job-media { aspect-ratio: 16/10; background: var(--paper-2); position: relative; border-bottom: 1px solid var(--hairline); }
.job-media img { width: 100%; height: 100%; object-fit: cover; }
.job-meta { padding: 18px 22px 22px; }
.job-meta h3 { font-size: 23px; letter-spacing: 0.02em; }
.job-facts { display: flex; flex-wrap: wrap; margin-top: 10px; font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--mute); }
.job-facts span { padding-right: 10px; margin-right: 10px; border-right: 2px solid var(--hairline); }
.job-facts span:last-child { border: none; margin: 0; padding: 0; color: var(--red); }

/* ── REVIEWS ─────────────────────────────── */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review { background: var(--paper); border: 1px solid var(--hairline); border-radius: 14px; padding: 30px 28px; position: relative; display: flex; flex-direction: column; }
.review .src { position: absolute; top: 18px; right: 18px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); display: inline-flex; align-items: center; gap: 5px; }
.review .src svg { width: 13px; height: 13px; }
.review .stars { color: var(--gold); letter-spacing: 2px; font-size: 17px; margin-bottom: 14px; }
.review blockquote { color: var(--ink); font-size: 16px; line-height: 1.55; flex: 1; }
.review cite { display: flex; align-items: center; gap: 11px; margin-top: 20px; font-style: normal; }
.review cite .initial { width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: var(--on-red); font-family: var(--ff-display); font-size: 20px; display: grid; place-items: center; flex: none; }
.review cite b { display: block; font-weight: 800; font-size: 14px; color: var(--ink); }
.review cite small { display: block; font-weight: 600; font-size: 12.5px; color: var(--mute); }

/* ── AREA CHIPS ─────────────────────────────── */
.area-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); gap: 34px; align-items: center; }
.area-map { position: relative; overflow: hidden; min-height: 320px; border: 1px solid var(--hairline); border-radius: 18px; background: var(--paper-2); box-shadow: 0 20px 36px -30px rgba(19,10,18,0.5); }
.area-map iframe { width: 100%; height: 100%; min-height: 320px; aspect-ratio: 4/3; border: 0; display: block; pointer-events: none; }
.area-map__link { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; padding: 18px; }
.area-map__open { display: inline-flex; align-items: center; gap: 9px; padding: 11px 15px; border-radius: 8px; background: rgba(250,248,244,.96); color: var(--ink); box-shadow: 0 8px 24px -10px rgba(19,10,18,.65); font-size: 14px; font-weight: 800; transition: transform .15s ease, box-shadow .15s ease; }
.area-map__open svg { width: 20px; height: 20px; flex: none; }
.area-map__link:hover .area-map__open { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(19,10,18,.72); }

/* Click-to-load placeholder: no connection to Google until tapped. */
.area-map__placeholder { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; min-height: 320px; display: flex; align-items: center; justify-content: center; border: 0; cursor: pointer; background: linear-gradient(135deg, var(--paper-2), var(--paper-3)); color: var(--ink); font-family: inherit; }
.area-map__grid { position: absolute; inset: 0; pointer-events: none; opacity: .5; background-image: linear-gradient(var(--hairline) 1px, transparent 1px), linear-gradient(90deg, var(--hairline) 1px, transparent 1px); background-size: 44px 44px, 44px 44px; background-position: center; -webkit-mask-image: radial-gradient(circle at center, #000 45%, transparent 78%); mask-image: radial-gradient(circle at center, #000 45%, transparent 78%); }
.area-map__prompt { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; padding: 20px; }
.area-map__prompt svg { width: 34px; height: 34px; color: var(--red); margin-bottom: 6px; }
.area-map__prompt b { font-size: 17px; font-weight: 800; }
.area-map__prompt small { font-size: 13px; color: var(--mute); }
.area-map__placeholder:hover .area-map__prompt svg { transform: translateY(-2px); transition: transform .15s ease; }
.area-map__placeholder:focus-visible { outline: 3px solid var(--red); outline-offset: -3px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 9px 18px; border-radius: 30px; border: 1px solid var(--hairline); background: var(--paper); color: var(--body); font-weight: 700; font-size: 14.5px; }
.chip.home { background: var(--red); color: var(--on-red); border-color: var(--red); }
.area-layout .chips { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; align-content: center; }
.area-layout .chip { display: flex; align-items: center; justify-content: center; min-height: 44px; padding: 8px 12px; text-align: center; }
.area-layout .chip.home { grid-column: 1 / -1; }

/* ── SERVICE DETAIL ROWS ─────────────────────────────── */
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--hairline); scroll-margin-top: 90px; }
.detail.detail-single { grid-template-columns: minmax(0, 680px); }
.detail:last-child { border-bottom: none; }
.detail.rev .detail-media { order: 2; }
.detail-media { border-radius: 16px; overflow: hidden; border: 1px solid var(--hairline); aspect-ratio: 16/11; background: var(--paper-2); position: relative; box-shadow: 0 20px 40px -30px rgba(19,10,18,0.4); }
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail h2 { font-size: clamp(32px, 4.2vw, 46px); margin: 10px 0 12px; }
.detail p { color: var(--mute); font-size: 16.5px; }
.detail .checks { margin-top: 20px; }
.detail .price-tag { display: inline-block; margin-top: 20px; font-family: var(--ff-display); font-size: 22px; color: var(--red); letter-spacing: 0.02em; }
.detail-note { margin-top: 18px; padding: 14px 16px; background: var(--paper-2); border-left: 3px solid var(--red); border-radius: 8px; font-size: 14.5px; color: var(--mute); }
.anchor-offset { display: block; height: 0; scroll-margin-top: 90px; }

/* ── INSURED & LICENSED strip ─────────────────────────────── */
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 26px; border: 1px solid var(--hairline); border-radius: 16px; background: var(--paper-2); }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item svg { width: 34px; height: 34px; color: var(--red); flex-shrink: 0; }
.trust-item strong { display: block; font-size: 16px; color: var(--ink); }
.trust-item span { font-size: 13.5px; color: var(--mute); }
@media (max-width: 760px) { .trust-strip { grid-template-columns: 1fr; gap: 16px; } }

/* ── FAQ (grafted from Mockup-02) ─────────────────────────── */
.faq { max-width: 820px; border-top: 2px solid var(--ink); }
.faq details { border-bottom: 2px solid var(--hairline); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px 4px; cursor: pointer; list-style: none;
  font-family: var(--ff-display); font-size: 24px; letter-spacing: 0.02em; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--ff-display); font-size: 30px; color: var(--red); line-height: 1; }
.faq details[open] summary::after { content: "+"; }
.faq .faq-a { padding: 0 4px 24px; color: var(--mute); font-size: 16px; max-width: 68ch; }

/* ── CONTACT ─────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: start; }
.contact-grid > * { min-width: 0; }
.form { background: var(--paper); border: 2px solid var(--ink); border-radius: 16px; padding: 34px 32px; box-shadow: 8px 8px 0 var(--red); }
.form h2 { font-size: 32px; margin-bottom: 4px; }
.form .form-sub { color: var(--mute); font-size: 15px; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: var(--ink); margin-bottom: 7px; letter-spacing: 0.03em; text-transform: uppercase; }
.field label span { display: inline-grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: rgba(243,35,10,0.1); color: var(--red); font-size: 11px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--paper); border: 2px solid var(--hairline); border-radius: 9px;
  padding: 13px 15px; color: var(--ink); font-family: var(--ff-body); font-size: 15.5px; min-height: 50px;
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23130a12' stroke-width='3'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.form-note { font-size: 13.5px; color: var(--mute); display: flex; gap: 9px; align-items: baseline; margin: 6px 0 18px; }
.form-note svg { width: 15px; height: 15px; flex: none; color: var(--red); transform: translateY(2px); }
.field label em { text-transform: none; font-weight: 600; letter-spacing: 0; font-size: 11px; color: var(--mute); }
.send-choice { grid-column: 1; align-self: start; scroll-margin-top: 96px; }
.send-choice .btn { margin-bottom: 12px; justify-content: center; }
.send-choice .btn small { font-weight: 600; opacity: 0.85; margin-left: 4px; }
.send-or { text-align: center; font-size: 14.5px; color: var(--mute); margin: 14px 0 6px; }
.send-or a { color: var(--red); font-weight: 700; }
.send-back { display: block; margin: 8px auto 0; background: none; border: none; color: var(--mute); font-size: 13.5px; cursor: pointer; text-decoration: underline; }
.send-back:hover { color: var(--ink); }
.contact-aside .info-card { background: var(--paper-2); border: 1px solid var(--hairline); border-radius: 16px; padding: 30px; margin-bottom: 18px; }
.info-card h3 { font-size: 26px; letter-spacing: 0.02em; margin-bottom: 16px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .ic { width: 42px; height: 42px; flex-shrink: 0; display: grid; place-items: center; border-radius: 10px; background: rgba(243,35,10,0.1); color: var(--red); }
.info-row .ic svg { width: 19px; height: 19px; }
.info-row .lab { font-size: 12px; color: var(--mute); letter-spacing: 0.04em; text-transform: uppercase; }
.info-row .val { min-width: 0; overflow-wrap: anywhere; font-size: 16px; font-weight: 800; color: var(--ink); }
.info-row .val a:hover { color: var(--red); }

/* ── ABOUT ─────────────────────────────── */
.about-hero { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.about-portrait { border-radius: 18px; overflow: hidden; border: 1px solid var(--hairline); aspect-ratio: 4/5; background: var(--paper-2); position: relative; box-shadow: 0 30px 50px -34px rgba(19,10,18,0.45); }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-brand-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  padding: 42px; text-align: center; background: radial-gradient(circle at 50% 20%, #3b1b1d 0%, var(--ink) 58%);
}
.about-brand-card::before { content: ''; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(253,184,19,0.24); box-shadow: 0 0 0 24px rgba(243,35,10,0.08), 0 0 0 48px rgba(253,184,19,0.04); }
.about-brand-card img { position: relative; z-index: 1; width: min(78%, 320px); height: auto; object-fit: contain; border-radius: 50%; box-shadow: 0 18px 35px -20px rgba(0,0,0,0.8); }
.about-brand-card p { position: relative; z-index: 1; margin: 0; color: var(--on-ink); font-family: var(--ff-display); font-size: clamp(30px, 4vw, 48px); line-height: 0.95; letter-spacing: 0.025em; }
.prose p { color: var(--body); font-size: 17px; margin-bottom: 16px; }
.prose p strong { color: var(--ink); font-weight: 800; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.value { background: var(--paper); border: 1px solid var(--hairline); border-radius: 14px; padding: 26px 24px; }
.value .ic { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 11px; background: rgba(243,35,10,0.1); color: var(--red); margin-bottom: 16px; }
.value .ic svg { width: 23px; height: 23px; }
.value h3 { font-size: 23px; letter-spacing: 0.02em; margin-bottom: 8px; }
.value p { color: var(--mute); font-size: 15px; }

/* ── FINAL CTA ─────────────────────────────── */
.cta-final { padding: 0 0 96px; }
.cta-box {
  position: relative; overflow: hidden; border-radius: 20px;
  background: radial-gradient(120% 160% at 12% 0%, #2c2230 0%, var(--ink) 52%);
  color: var(--on-ink); padding: 60px 56px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px;
}
.cta-box h2 { font-size: clamp(36px, 4.6vw, 54px); max-width: 640px; color: var(--on-ink); }
.cta-box .sub { color: var(--mute-ink); margin-top: 12px; font-size: 17px; }
.cta-box .btn-ghost { color: var(--on-ink); border-color: rgba(245,241,246,0.38); }
.cta-box .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 240px; }

/* ── FOOTER ─────────────────────────────── */
footer.site { background: var(--ink); color: var(--on-ink); border-top: 3px solid var(--gold); padding: 56px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
footer.site .logo .name b { color: var(--on-ink); }
footer.site h5 { font-family: var(--ff-body); font-weight: 800; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.foot-links { display: flex; flex-direction: column; gap: 10px; }
.foot-links a { color: var(--mute-ink); font-size: 15px; transition: color 0.15s ease; }
.foot-links a:hover { color: var(--on-ink); }
.foot-about { color: var(--mute-ink); font-size: 15px; max-width: 300px; margin-top: 16px; }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(245,241,246,0.16); display: grid; place-items: center; color: var(--mute-ink); transition: border-color .15s, color .15s; }
.foot-social a:hover { border-color: var(--gold); color: var(--gold); }
.foot-social svg { width: 19px; height: 19px; }
.foot-social .google-icon { width: 20px; height: 20px; }
.foot-bot { border-top: 1px solid rgba(245,241,246,0.14); padding-top: 22px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; color: var(--mute-ink); font-size: 13.5px; }
.foot-bot .stamp { color: var(--gold); }
.foot-legal { flex-basis: 100%; order: 3; color: var(--mute-ink); opacity: .78; font-size: 12.5px; line-height: 1.5; }
.sitework-credit { display: inline-flex; align-items: center; gap: 9px; margin-left: auto; color: var(--mute-ink); transition: color 0.15s ease, transform 0.15s ease; }
.sitework-credit span { font-size: 11px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.sitework-credit img { display: block; width: 126px; height: auto; }
.sitework-credit:hover { color: var(--on-ink); transform: translateY(-1px); }
.sitework-credit:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; border-radius: 4px; }

/* ── STICKY MOBILE CALL BAR (grafted from Mockup-02) ────── */
.callbar { display: none; }

/* ── REVEAL ─────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .rv { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .rv.in { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1000px) {
  .svc-grid, .reviews { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .jobs { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  nav.main, .head-tel { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 64px; }
  .hero-media { order: -1; aspect-ratio: 16/11; }
  .feat-grid { grid-template-columns: 1fr; }
  .split, .split.rev, .contact-grid, .about-hero { grid-template-columns: 1fr; gap: 34px; }
  .split.rev .split-img, .split-img, .about-portrait { order: -1; }
  .detail, .detail.rev { grid-template-columns: 1fr; gap: 28px; }
  .detail.rev .detail-media { order: -1; }
  .area-layout { grid-template-columns: 1fr; gap: 24px; }
  .values { grid-template-columns: 1fr; }
  .versus { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .svc-grid, .reviews, .steps, .stats, .foot-grid { grid-template-columns: 1fr; }
  .feat h3 { font-size: 32px; }
  .cta-box { padding: 40px 26px; }
  .band .wrap, .form { padding-left: 24px; padding-right: 24px; }
  .contact-grid .form { width: calc(100% - 8px); }
  .form .btn { padding-left: 14px; padding-right: 14px; white-space: normal; text-align: center; line-height: 1.25; }
  .send-choice .btn { flex-wrap: wrap; }
  .send-choice .btn small { flex-basis: 100%; margin-left: 0; }
  .head-right .btn { display: none; }
  .logo .badge { width: 44px; height: 44px; }
  .logo .name b { font-size: 22px; }
  .logo .name small { font-size: 8.5px; letter-spacing: 0.16em; }
  .foot-bot { align-items: flex-start; }
  .sitework-credit { margin-left: 0; }
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; inset: auto 0 0 0; z-index: 500;
    background: var(--ink); border-top: 3px solid var(--gold);
  }
  .callbar a { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 58px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; font-size: 15px; color: var(--on-ink); }
  .callbar a svg { width: 19px; height: 19px; color: var(--gold); }
  .callbar .cb-call { background: var(--red); }
  body { padding-bottom: 61px; }
}
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .btn:hover, .svc:hover, .feat:hover { transform: none; }
}

/* Placeholder highlight for details still to confirm with the client */
.tbd { background: #fff2cf; color: #7a5a00; padding: 1px 7px; border-radius: 5px; font-style: italic; font-weight: 700; }

/* Cookie consent banner, rendered only when an optional configured tool is live. */
.rt-consent { position: fixed; inset: auto 0 0 0; z-index: 900; background: var(--ink); color: var(--on-ink); border-top: 3px solid var(--gold); box-shadow: 0 -12px 30px -18px rgba(0,0,0,.6); }
.rt-consent__inner { max-width: var(--wrap); margin: 0 auto; padding: 16px 20px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.rt-consent__text { flex: 1 1 320px; margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--mute-ink); }
.rt-consent__text a { color: var(--gold); font-weight: 700; text-decoration: underline; }
.rt-consent__choices { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.rt-consent__choices[hidden] { display: none; }
.rt-consent__choice { display: flex; gap: 10px; align-items: flex-start; padding: 11px 13px; border: 1px solid rgba(245,241,246,.28); border-radius: 9px; color: var(--on-ink); cursor: pointer; }
.rt-consent__choice input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--red); }
.rt-consent__choice strong, .rt-consent__choice small { display: block; }
.rt-consent__choice small { margin-top: 2px; color: var(--mute-ink); font-size: 12.5px; line-height: 1.4; }
.rt-consent__btns { display: flex; gap: 10px; flex: none; }
.rt-consent__btn { border: 0; cursor: pointer; font-family: inherit; font-weight: 800; font-size: 14.5px; padding: 11px 20px; border-radius: 9px; transition: transform .15s ease, background .15s ease; }
.rt-consent__btn:hover { transform: translateY(-1px); }
.rt-consent__btn--red { background: var(--red); color: var(--on-red); }
.rt-consent__btn--red:hover { background: var(--red-b); }
.rt-consent__btn--ghost { background: transparent; color: var(--on-ink); box-shadow: inset 0 0 0 1.5px rgba(245,241,246,.35); }
.rt-consent__btn--ghost:hover { box-shadow: inset 0 0 0 1.5px rgba(245,241,246,.7); }
@media (max-width: 860px) {
  .rt-consent { bottom: 61px; } /* clear the sticky mobile call bar */
  .rt-consent__inner { padding: 14px 16px; gap: 12px; }
  .rt-consent__btns { width: 100%; }
  .rt-consent__btn { flex: 1; }
  .rt-consent__choices { grid-template-columns: 1fr; }
}
