/* ============================================================
   RIDGELINE ROOFING & EXTERIORS — design system
   Display: Anton (condensed uppercase) · Body/UI: Barlow
   ============================================================ */

:root {
  /* ground + paper */
  --ink: #0d1925;
  --navy: #13283d;
  --navy-2: #1b3650;
  --navy-line: #284258;
  --steel: #5d738a;

  --paper: #f5f1e8;
  --paper-2: #ece6d8;
  --card: #ffffff;
  --line: #ddd5c5;

  /* accent — overridable by Tweaks */
  --accent: #f26419;
  --accent-d: #d4530f;
  --accent-ink: #ffffff;

  /* text */
  --tx: #16222e;
  --tx-soft: #4d5b67;
  --tx-inv: #f3eee3;
  --tx-inv-soft: #aebcc8;

  --radius: 4px;
  --radius-lg: 8px;
  --maxw: 1200px;
  --shadow: 0 1px 2px rgba(13,25,37,.06), 0 8px 28px rgba(13,25,37,.10);
  --shadow-lg: 0 24px 60px rgba(13,25,37,.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--tx);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Anton", "Barlow Condensed", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .96;
  margin: 0;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.center { text-align: center; }

/* eyebrow / kicker */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Barlow", sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent);
}
.kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--accent);
}
.kicker.k-light { color: var(--accent); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(38px, 5vw, 64px); margin: 14px 0 16px; }
.section-head p { color: var(--tx-soft); font-size: 19px; max-width: 60ch; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Barlow", sans-serif; font-weight: 700; font-size: 16px;
  letter-spacing: .02em;
  padding: 15px 26px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  text-transform: uppercase;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 6px 18px rgba(242,100,25,.32); }
.btn-primary:hover { background: var(--accent-d); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.32); color: var(--tx-inv); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-dark { background: var(--navy); color: var(--tx-inv); }
.btn-dark:hover { background: var(--ink); }
.btn-lg { padding: 18px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* ---- placeholder imagery ---- */
.ph {
  position: relative; overflow: hidden;
  background-color: var(--navy-2);
  background-image: repeating-linear-gradient(
    -45deg, rgba(255,255,255,.05) 0 12px, rgba(255,255,255,0) 12px 24px);
  display: flex; align-items: center; justify-content: center;
  color: var(--tx-inv-soft);
}
.ph::after {
  content: attr(data-label);
  font-family: "Barlow", monospace; font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  border: 1px dashed rgba(255,255,255,.28);
  padding: 7px 12px; border-radius: 3px; text-align: center;
  background: rgba(13,25,37,.35);
}
.ph.light {
  background-color: var(--paper-2);
  background-image: repeating-linear-gradient(
    -45deg, rgba(19,40,61,.05) 0 12px, rgba(19,40,61,0) 12px 24px);
}
.ph.light::after { color: var(--tx-soft); border-color: var(--line); background: rgba(255,255,255,.5); }

/* ---- real photos ---- */
.shot { position: absolute; inset: 0; overflow: hidden; }
.shot img, .ph > img { width: 100%; height: 100%; object-fit: cover; display: block; }
img.cover { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,25,37,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--tx-inv);
}
.nav {
  display: flex; align-items: center; gap: 28px;
  height: 76px; max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand .mark {
  width: 38px; height: 38px; flex: none; position: relative;
  background: var(--accent); border-radius: 3px;
  display: grid; place-items: center;
  clip-path: polygon(50% 0, 100% 42%, 100% 100%, 0 100%, 0 42%);
}
.brand .mark span {
  font-family: "Anton", sans-serif; font-size: 20px; color: #fff; margin-top: 6px;
}
.brand b { font-family: "Anton", sans-serif; font-size: 22px; letter-spacing: .02em; line-height: 1; }
.brand b small { display: block; font-family: "Barlow", sans-serif; font-weight: 600;
  font-size: 10px; letter-spacing: .26em; color: var(--tx-inv-soft); margin-top: 3px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-weight: 600; font-size: 15px; color: var(--tx-inv-soft);
  letter-spacing: .01em; transition: color .15s;
}
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; color: #fff; }
.nav-phone small { display: block; font-size: 10px; font-weight: 600; letter-spacing: .14em;
  color: var(--accent); text-transform: uppercase; }

.menu-btn { display: none; }

/* =========================================================
   HERO  (3 variants toggled via [data-hero] on body)
   ========================================================= */
.hero { position: relative; background: var(--navy); color: var(--tx-inv); overflow: hidden; }
.hero .wrap { position: relative; z-index: 2; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 8px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 100px;
  color: var(--tx-inv); background: rgba(255,255,255,.04);
}
.hero-badge b { color: var(--accent); }
.hero h1 { font-size: clamp(46px, 7vw, 92px); }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 20px; color: var(--tx-inv-soft); max-width: 50ch; margin: 22px 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-size: 14px; color: var(--tx-inv-soft); display: flex; align-items: center; gap: 8px; }

/* default = variant A: split */
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: 84px 0 92px;
}
.hero-media { position: relative; }
.hero-shot { height: 480px; border-radius: var(--radius-lg); overflow: hidden; }
.hero-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-stat-card {
  position: absolute; left: -28px; bottom: -28px;
  background: var(--card); color: var(--tx); border-radius: var(--radius-lg);
  padding: 18px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 16px;
}
.hero-stat-card .big { font-family: "Anton", sans-serif; font-size: 40px; color: var(--navy); line-height: .9; }
.hero-stat-card .lbl { font-size: 13px; color: var(--tx-soft); font-weight: 600; max-width: 14ch; }
.hero-stat-card .star { color: var(--accent); }

/* variant B: full-bleed image, overlaid text */
body[data-hero="bleed"] .hero-grid { grid-template-columns: 1fr; padding: 0; }
body[data-hero="bleed"] .hero-media {
  position: absolute; inset: 0; z-index: 0;
}
body[data-hero="bleed"] .hero-shot { height: 100%; border-radius: 0; }
body[data-hero="bleed"] .hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(11,22,33,.94) 0%, rgba(11,22,33,.78) 46%, rgba(11,22,33,.30) 100%);
}
body[data-hero="bleed"] .hero-stat-card { display: none; }
body[data-hero="bleed"] .hero-copy { padding: 120px 0; max-width: 640px; }

/* variant C: centered with stat band */
body[data-hero="centered"] .hero-grid { grid-template-columns: 1fr; padding: 96px 0 0; text-align: center; }
body[data-hero="centered"] .hero-copy { max-width: 880px; margin: 0 auto; }
body[data-hero="centered"] .kicker { justify-content: center; }
body[data-hero="centered"] .hero-sub { margin-left: auto; margin-right: auto; }
body[data-hero="centered"] .hero-actions { justify-content: center; }
body[data-hero="centered"] .hero-badges { justify-content: center; }
body[data-hero="centered"] .hero-media { margin-top: 56px; }
body[data-hero="centered"] .hero-shot { height: 360px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
body[data-hero="centered"] .hero-stat-card { display: none; }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trustbar { background: var(--ink); color: var(--tx-inv); border-top: 3px solid var(--accent); }
.trustbar .row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
}
.trust-item {
  padding: 26px 22px; display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust-item:last-child { border-right: none; }
.trust-item .t-big { font-family: "Anton", sans-serif; font-size: 30px; color: #fff; line-height: 1; }
.trust-item .t-big i { color: var(--accent); font-style: normal; }
.trust-item .t-lbl { font-size: 13px; color: var(--tx-inv-soft); font-weight: 600; letter-spacing: .03em; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--paper); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.svc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px 28px; transition: transform .16s ease, box-shadow .16s ease, border-color .16s;
  position: relative; overflow: hidden;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.svc-card .ic {
  width: 50px; height: 50px; border-radius: var(--radius); background: var(--navy);
  display: grid; place-items: center; margin-bottom: 18px;
}
.svc-card:hover .ic { background: var(--accent); }
.svc-card .ic svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.8; }
.svc-card h3 { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.svc-card p { font-size: 15px; color: var(--tx-soft); margin: 0; }
.svc-card .more { margin-top: 16px; font-weight: 700; font-size: 14px; color: var(--accent);
  text-transform: uppercase; letter-spacing: .04em; display: inline-flex; gap: 6px; }

/* =========================================================
   GALLERY  (before / after)
   ========================================================= */
.gallery { background: var(--navy); color: var(--tx-inv); }
.gallery .section-head h2 { color: #fff; }
.gallery .section-head p { color: var(--tx-inv-soft); }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter {
  font-family: "Barlow", sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .04em;
  text-transform: uppercase; padding: 9px 18px; border-radius: 100px; cursor: pointer;
  background: transparent; color: var(--tx-inv-soft); border: 1px solid rgba(255,255,255,.18);
  transition: all .15s;
}
.filter:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.filter.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gal-card {
  background: var(--ink); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.gal-card .gal-media { position: relative; height: 240px; }
.gal-card .gal-meta { padding: 16px 18px; display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.gal-card .gal-meta h4 { font-family: "Anton", sans-serif; text-transform: uppercase; font-size: 18px; margin: 0 0 2px; }
.gal-card .gal-meta span { font-size: 13px; color: var(--tx-inv-soft); }
.gal-tag { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent); border-radius: 3px; padding: 3px 8px; white-space: nowrap; }

/* before/after slider */
.ba {
  position: relative; height: 100%; width: 100%; overflow: hidden; cursor: ew-resize;
  user-select: none; touch-action: none;
}
.ba .ba-layer { position: absolute; inset: 0; }
.ba .ba-after { clip-path: inset(0 0 0 var(--split, 50%)); }
.ba .ph { height: 100%; }
.ba .ba-layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba .ba-cap {
  position: absolute; bottom: 12px; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; background: rgba(13,25,37,.7); padding: 4px 9px; border-radius: 3px;
  pointer-events: none;
}
.ba .ba-cap.before { left: 12px; }
.ba .ba-cap.after { right: 12px; }
.ba .ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--split, 50%); width: 3px;
  background: var(--accent); transform: translateX(-50%); pointer-events: none;
}
.ba .ba-knob {
  position: absolute; top: 50%; left: var(--split, 50%); transform: translate(-50%,-50%);
  width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 3px solid var(--accent);
  display: grid; place-items: center; box-shadow: 0 4px 14px rgba(0,0,0,.35); pointer-events: none;
}
.ba .ba-knob svg { width: 22px; height: 22px; fill: var(--accent); }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { background: var(--paper); }
.rev-top { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 44px; }
.rev-score { display: flex; align-items: center; gap: 18px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 18px 24px; box-shadow: var(--shadow); }
.rev-score .num { font-family: "Anton", sans-serif; font-size: 56px; color: var(--navy); line-height: .85; }
.rev-score .stars { color: var(--accent); font-size: 20px; letter-spacing: 2px; }
.rev-score .src { font-size: 13px; color: var(--tx-soft); font-weight: 600; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; display: flex; flex-direction: column; }
.rev-card .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }
.rev-card blockquote { margin: 0 0 20px; font-size: 17px; line-height: 1.55; color: var(--tx); }
.rev-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.rev-card .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-family: "Anton", sans-serif; font-size: 17px; }
.rev-card .who b { display: block; font-size: 15px; }
.rev-card .who span { font-size: 13px; color: var(--tx-soft); }

/* =========================================================
   SERVICE AREA
   ========================================================= */
.area { background: var(--ink); color: var(--tx-inv); }
.area-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.area .section-head h2 { color: #fff; }
.town-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.town-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 17px; }
.town-list li::before { content: ""; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex: none; }
.map { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 440px;
  border: 1px solid rgba(255,255,255,.1); }
.map .pin {
  position: absolute; transform: translate(-50%,-100%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.map .pin .dot { width: 16px; height: 16px; background: var(--accent); border: 3px solid #fff; border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,0,0,.4); }
.map .pin .nm { font-size: 12px; font-weight: 700; color: #fff; background: rgba(13,25,37,.8);
  padding: 2px 7px; border-radius: 3px; white-space: nowrap; }
.map .pin.hq .dot { width: 22px; height: 22px; background: #fff; border-color: var(--accent); }

/* =========================================================
   QUOTE FORM (multi-step)
   ========================================================= */
.quote { background: var(--paper); }
.quote-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.quote-aside h2 { font-size: clamp(38px, 4.5vw, 58px); color: var(--navy); margin-bottom: 18px; }
.quote-aside p { color: var(--tx-soft); font-size: 18px; }
.quote-perks { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; }
.quote-perks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; }
.quote-perks li svg { width: 22px; height: 22px; flex: none; stroke: var(--accent); fill: none; stroke-width: 2.4; margin-top: 1px; }

.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 34px 34px 30px; }
.steps-bar { display: flex; gap: 8px; margin-bottom: 28px; }
.steps-bar .sb { flex: 1; height: 5px; border-radius: 100px; background: var(--paper-2); overflow: hidden; }
.steps-bar .sb i { display: block; height: 100%; width: 0; background: var(--accent); transition: width .3s ease; }
.steps-bar .sb.done i { width: 100%; }
.steps-bar .sb.active i { width: 100%; }
.step-label { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.step h3 { font-size: 28px; color: var(--navy); margin-bottom: 22px; }
.fstep { display: none; animation: fade .25s ease; }
.fstep.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.opt {
  display: flex; align-items: center; gap: 12px; padding: 16px 16px; cursor: pointer;
  border: 2px solid var(--line); border-radius: var(--radius); transition: all .14s; background: #fff;
  font-weight: 600;
}
.opt:hover { border-color: var(--accent); }
.opt.sel { border-color: var(--accent); background: #fff5ef; }
.opt .box { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line); flex: none; display: grid; place-items: center; }
.opt.sel .box { border-color: var(--accent); background: var(--accent); }
.opt.sel .box::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fff; }

.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; font-family: "Barlow", sans-serif; font-size: 16px; padding: 13px 14px;
  border: 2px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--tx);
  transition: border-color .14s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field.err input, .field.err select { border-color: #d23b2e; background: #fdf3f2; }
.field .msg { color: #d23b2e; font-size: 13px; font-weight: 600; margin-top: 5px; display: none; }
.field.err .msg { display: block; }
.field.half { display: inline-block; width: calc(50% - 7px); }
.field.half + .field.half { margin-left: 12px; }

.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; gap: 12px; }
.form-nav .back { background: none; border: none; font-family: "Barlow", sans-serif; font-weight: 700;
  color: var(--tx-soft); cursor: pointer; font-size: 15px; text-transform: uppercase; letter-spacing: .03em; padding: 8px; }
.form-nav .back:hover { color: var(--navy); }
.form-nav .back[hidden] { visibility: hidden; }

.form-done { text-align: center; padding: 20px 10px; display: none; }
.form-done.show { display: block; animation: fade .3s ease; }
.form-done .check { width: 76px; height: 76px; border-radius: 50%; background: var(--accent); margin: 0 auto 20px;
  display: grid; place-items: center; }
.form-done .check svg { width: 38px; height: 38px; stroke: #fff; fill: none; stroke-width: 3; }
.form-done h3 { font-size: 32px; color: var(--navy); margin-bottom: 10px; }
.form-done p { color: var(--tx-soft); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--card); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px; font-family: "Barlow", sans-serif; font-weight: 700; font-size: 19px; color: var(--navy); }
.acc-q .pm { width: 28px; height: 28px; flex: none; border-radius: 50%; border: 2px solid var(--line);
  position: relative; transition: all .18s; }
.acc-q .pm::before, .acc-q .pm::after { content: ""; position: absolute; background: var(--navy);
  top: 50%; left: 50%; transform: translate(-50%,-50%); transition: all .18s; }
.acc-q .pm::before { width: 12px; height: 2px; }
.acc-q .pm::after { width: 2px; height: 12px; }
.acc-item.open .acc-q .pm { background: var(--accent); border-color: var(--accent); }
.acc-item.open .acc-q .pm::before, .acc-item.open .acc-q .pm::after { background: #fff; }
.acc-item.open .acc-q .pm::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.acc-a p { color: var(--tx-soft); padding: 0 4px 24px; margin: 0; max-width: 62ch; }

/* =========================================================
   CTA STRIP + FOOTER
   ========================================================= */
.cta-strip { background: var(--accent); color: #fff; }
.cta-strip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 56px 32px; flex-wrap: wrap; }
.cta-strip h2 { font-size: clamp(32px, 4vw, 52px); max-width: 22ch; }
.cta-strip .btn-dark { background: var(--ink); }
.cta-strip .btn-dark:hover { background: #06101a; }

.footer { background: var(--ink); color: var(--tx-inv-soft); padding: 64px 0 30px; }
.footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer h5 { font-family: "Anton", sans-serif; text-transform: uppercase; font-size: 15px; letter-spacing: .06em;
  color: #fff; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: #fff; }
.footer .legal { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }

.dds-demo-cta { padding: 64px 0; background: var(--paper); }
.dds-demo-cta h2 { margin: 14px 0 14px; color: var(--navy); font-size: clamp(38px, 5vw, 58px); }
.dds-demo-cta p { max-width: 66ch; color: var(--tx-soft); font-size: 18px; }
.dds-demo-cta .concept-page-disclaimer { margin-top: 18px; color: var(--steel); font-size: 13px; line-height: 1.55; }
.dds-demo-cta div div { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid, .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar .row { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3) { border-right: none; }
  .footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-phone small { display: none; }
  .hero-grid, .area-grid, .quote-grid, .faq-grid { grid-template-columns: 1fr !important; gap: 36px; }
  .hero-shot { height: 320px !important; }
  .hero-stat-card { left: 0; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .svc-grid, .gal-grid, .rev-grid, .town-list, .opt-grid { grid-template-columns: 1fr; }
  .trustbar .row { grid-template-columns: 1fr 1fr; }
  .field.half, .field.half + .field.half { width: 100%; margin-left: 0; }
}
