/* ============ BUILDMAN — DESIGN SYSTEM v2 ============ */
:root {
  /* Brand — red & navy, matching the logo */
  --brand: #C8102E;            /* deep crimson red — hero brand */
  --brand-2: #A30D24;          /* darker red for hover */
  --brand-deep: #7C0A1B;       /* deepest red */
  --brand-soft: #FFF4F5;       /* light wash */
  --ink: #0A1628;              /* deep navy / near-black */
  --ink-2: #142233;
  --ink-3: #1F2D40;
  --muted: #5A6878;
  --line: #E5E8EE;
  --line-2: #D6DBE3;
  --bg: #ffffff;
  --bg-soft: #F7F8FB;
  --bg-warm: #FAF6F1;
  --bg-dark: #0A1628;
  --success: #16A34A;
  --gold: #B89366;             /* tasteful warm accent */

  /* Type */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Radius / shadow */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(10,22,40,.06), 0 1px 3px rgba(10,22,40,.04);
  --shadow-md: 0 8px 24px rgba(10,22,40,.10);
  --shadow-lg: 0 24px 60px rgba(10,22,40,.18);
  --shadow-red: 0 14px 30px rgba(200,16,46,.30);

  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 40px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
input, select, textarea { font-family: inherit; font-size: 16px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 .4em;
  line-height: 1.12;
  color: var(--ink);
}
h4 { font-family: var(--font-body); font-weight: 800; margin: 0 0 .4em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.4rem); }
p  { margin: 0 0 1em; color: var(--ink-2); }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.18rem); color: var(--muted); line-height: 1.6; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.section { padding: clamp(60px, 8vw, 110px) 0; }
.section-sm { padding: clamp(40px, 5vw, 60px) 0; }
.bg-soft { background: var(--bg-soft); }
.bg-warm { background: var(--bg-warm); }
.bg-dark { background: var(--bg-dark); color: #DDE2EA; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark p { color: #A8B0BD; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--brand);
}
.eyebrow.center { display: flex; justify-content: center; }
.bg-dark .eyebrow { color: var(--brand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--brand-2); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(200,16,46,.40); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-light:hover { border-color: var(--brand); color: var(--brand); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-lg { padding: 18px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn-block { width: 100%; }
.btn .arrow { display: inline-block; transition: transform .25s ease; font-weight: 600; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Top utility bar ---------- */
.utilbar {
  background: var(--ink);
  color: #C5CCD8;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.utilbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 10px;
}
.utilbar a { color: #fff; font-weight: 600; }
.utilbar a:hover { color: var(--brand); }
.util-badges { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.util-badge { display: inline-flex; align-items: center; gap: 7px; }
.util-badge svg { width: 14px; height: 14px; opacity: .8; }
.util-rating { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-weight: 600; }
.util-rating .stars { color: #FFB800; letter-spacing: 1.5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
  gap: 20px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 0;
}
.brand-logo img {
  height: 84px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 1280px) {
  .brand-logo img { height: 76px; max-width: 280px; }
}

/* ---------- Mega-menu nav ---------- */
.nav { display: flex; gap: 2px; align-items: center; flex-wrap: nowrap; flex-shrink: 0; }
.nav > a, .nav > .has-sub > a {
  display: inline-flex; align-items: center;
  padding: 9px 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  border-radius: var(--r-sm);
  white-space: nowrap;
  position: relative;
  transition: color .15s ease;
}
.nav > a:hover, .nav > .has-sub > a:hover { color: var(--brand); }
.nav .has-sub { position: relative; }
.nav .has-sub > a::after {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: .5;
}

/* Dropdown card */
.megamenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  transform: translateY(8px);
  width: 720px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-sub:hover .megamenu, .has-sub:focus-within .megamenu {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
/* Right-align dropdowns when there's not enough room on the right */
.has-sub:nth-last-child(-n+3) .megamenu { left: auto; right: 0; }

.megamenu .mm-heading {
  font-size: .72rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand);
  margin: 0 0 14px;
}
.megamenu .mm-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px;
}
.megamenu .mm-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 8px;
  border-radius: var(--r-sm);
  font-size: .92rem;
  color: var(--ink-2);
  font-weight: 500;
  transition: background .15s, color .15s;
}
.megamenu .mm-list a:hover { background: var(--brand-soft); color: var(--brand); }
.megamenu .mm-list a .mm-ico {
  width: 32px; height: 32px;
  background: var(--bg-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  flex: 0 0 32px;
}
.megamenu .mm-list a .mm-ico svg { width: 18px; height: 18px; }
.megamenu .mm-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  padding: 22px;
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 12px;
  background-image:
    linear-gradient(135deg, rgba(10,22,40,.4), rgba(10,22,40,.65)),
    var(--mm-bg, none);
  background-size: cover;
  background-position: center;
}
.megamenu .mm-cta strong { font-size: 1.1rem; font-weight: 800; line-height: 1.2; display: block; margin-bottom: 4px; }
.megamenu .mm-cta p { font-size: .85rem; color: rgba(255,255,255,.85); margin: 0; line-height: 1.45; }
.megamenu .mm-cta .btn { background: #fff; color: var(--brand); margin-top: auto; padding: 12px 18px; font-size: .85rem; }
.megamenu .mm-cta .btn:hover { background: var(--ink); color: #fff; }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; color: var(--ink); font-size: 1.02rem;
  white-space: nowrap;
}
.header-phone .ph-ico {
  width: 36px; height: 36px;
  background: var(--brand-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.header-phone svg { width: 16px; height: 16px; }
.header-phone .ph-text { display: flex; flex-direction: column; line-height: 1.1; }
.header-phone .ph-label { font-size: .68rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 1500px) {
  .header-phone .ph-text { display: none; }
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(10,22,40,.92) 0%, rgba(10,22,40,.78) 45%, rgba(10,22,40,.55) 75%, rgba(200,16,46,.35) 100%);
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
  padding-top: clamp(60px, 9vw, 100px);
  padding-bottom: clamp(60px, 9vw, 100px);
  z-index: 1;
  width: 100%;
}
/* Hero (homepage) — full-bleed project photo + premium navy gradient */
.hero-collage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-collage .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('/assets/images/projects/renovations/handyman-hero.jpg') center center / cover no-repeat;
}
.hero-collage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 86% 12%, rgba(200,16,46,.30), transparent 48%),
    linear-gradient(100deg, rgba(8,18,33,.93) 0%, rgba(8,18,33,.82) 33%, rgba(8,18,33,.55) 60%, rgba(8,18,33,.40) 100%),
    linear-gradient(0deg, rgba(8,18,33,.55) 0%, transparent 40%);
}
.hero-collage > .container {
  display: block;
}
/* Split hero — text left, vertical form right */
.hero-collage .container.hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
  text-align: left;
  padding-top: clamp(48px, 6vw, 76px);
  padding-bottom: clamp(48px, 6vw, 76px);
}
.hero-split .hero-text { color: #fff; }
.hero-split .hero-trust {
  justify-content: flex-start;
  gap: 30px;
  margin-top: 32px;
  padding-top: 26px;
}
.hero-split .lead-card { align-self: center; }
@media (max-width: 980px) {
  .hero-collage .container.hero-split { grid-template-columns: 1fr; gap: 34px; }
  .hero-split .hero-trust { gap: 24px; }
}
.hero-collage-inner {
  position: relative;
  text-align: center;
  padding-top: clamp(70px, 9vw, 110px);
  padding-bottom: clamp(80px, 9vw, 120px);
  max-width: 1100px;
}
.hero-collage-inner h1 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-collage-inner .lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 64ch;
}
.hero-collage-inner .hero-eyebrow { margin-bottom: 26px; }
.hero-collage-inner .hero-actions { justify-content: center; }
.hero-collage-inner .hero-trust {
  justify-content: center;
  gap: 56px;
}
@media (max-width: 720px) {
  .hero-collage-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); }
  .hero-collage-grid .hc-tile:nth-child(n+7) { display: none; }
  .hero-collage-inner .hero-trust { gap: 28px; }
  .hero-collage-inner .hero-trust .item .num { font-size: 1.5rem; }
}

/* Centered hero variant (homepage) — legacy */
.hero-centered { min-height: 0; }
.hero-centered .container {
  display: block;
  text-align: center;
  padding-top: clamp(70px, 10vw, 120px);
  padding-bottom: clamp(80px, 10vw, 130px);
  max-width: 1100px;
}
.hero-centered h1 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-centered .lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 64ch;
}
.hero-centered .hero-eyebrow {
  margin-bottom: 26px;
}
.hero-centered .hero-actions {
  justify-content: center;
}
.hero-centered .hero-trust {
  justify-content: center;
  gap: 56px;
}
@media (max-width: 720px) {
  .hero-centered .hero-trust { gap: 28px; }
  .hero-centered .hero-trust .item .num { font-size: 1.5rem; }
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  margin-bottom: 22px;
  line-height: 1.05;
}
.hero h1 .accent {
  color: var(--brand);
  font-style: italic;
  font-weight: 400;
}
.hero .lede { color: rgba(255,255,255,.85); font-size: 1.18rem; max-width: 56ch; line-height: 1.55; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,16,46,.18);
  border: 1px solid rgba(200,16,46,.4);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--brand); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(200,16,46,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200,16,46,.6); }
  70% { box-shadow: 0 0 0 14px rgba(200,16,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,16,46,0); }
}
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-trust .item {
  display: flex; align-items: center; gap: 12px;
}
.hero-trust .item .num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--brand);
  line-height: 1;
}
.hero-trust .item .lbl {
  font-size: .82rem; color: rgba(255,255,255,.85);
  line-height: 1.25;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* Hero card */
.lead-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 24px 24px 22px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--brand);
}
.lead-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.lead-card .price-strip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-weight: 700;
  margin: 4px 0 16px;
}
.lead-card .price-strip svg { width: 13px; height: 13px; }
/* Compact field sizing inside the lead form (keeps contact form & modal full-size) */
.lead-card .field { margin-bottom: 10px; }
.lead-card .field label { font-size: .74rem; margin-bottom: 4px; }
.lead-card .field input,
.lead-card .field select,
.lead-card .field textarea {
  padding: 10px 12px;
  font-size: 14px;
  border-width: 1px;
  border-radius: var(--r-sm);
}
.lead-card .field textarea { min-height: 56px; }
.lead-card .field-row { gap: 10px; }
.lead-card .btn.btn-lg { padding: 13px 22px; font-size: .95rem; margin-top: 4px; }
.lead-card .fineprint { font-size: .73rem; margin-top: 9px; }

/* Horizontal quote bar — full-width form below page header */
.quote-bar-wrap {
  position: relative;
  margin-top: -56px;
  z-index: 5;
  padding: 0 0 24px;
}
.quote-bar {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--brand);
  padding: 24px 28px 22px;
}
/* Homepage quote-bar: pull up further over hero collage, beefier styling */
.hero-collage + .quote-bar-wrap {
  margin-top: -88px;
  padding-bottom: 40px;
}
.hero-collage + .quote-bar-wrap .quote-bar {
  padding: 32px 36px 28px;
  border-top-width: 6px;
  box-shadow: 0 24px 80px rgba(10,22,40,.30);
}
.hero-collage + .quote-bar-wrap .quote-bar-head h3 {
  font-size: 1.7rem;
}
.hero-collage + .quote-bar-wrap .qb-sub {
  font-size: .88rem;
}
.hero-collage + .quote-bar-wrap .quote-bar-form .qb-submit {
  padding: 16px 32px;
  font-size: 1rem;
}
@media (max-width: 720px) {
  .hero-collage + .quote-bar-wrap { margin-top: -48px; }
  .hero-collage + .quote-bar-wrap .quote-bar { padding: 22px 18px 18px; }
}
.quote-bar-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.quote-bar-head h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0;
}
.qb-sub {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 700;
  color: var(--brand);
}
.qb-sub svg { width: 14px; height: 14px; }
.quote-bar-form .qb-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 12px;
}
.quote-bar-form .qb-row-2 {
  grid-template-columns: 1fr auto;
  margin-top: 12px;
  align-items: end;
}
.quote-bar-form .field { margin-bottom: 0; }
.quote-bar-form .field label {
  font-size: .72rem;
  margin-bottom: 5px;
  color: var(--ink-3);
}
.quote-bar-form .field input,
.quote-bar-form .field select,
.quote-bar-form .field textarea {
  padding: 11px 13px;
  font-size: 14px;
  border-radius: 8px;
}
.quote-bar-form textarea {
  resize: vertical;
  min-height: 44px;
}
.quote-bar-form .qb-submit {
  padding: 13px 26px;
  white-space: nowrap;
  height: fit-content;
  align-self: end;
  font-size: .92rem;
}
.quote-bar-form .fineprint {
  margin-top: 10px;
  font-size: .72rem;
  text-align: right;
}

@media (max-width: 980px) {
  .quote-bar-wrap { margin-top: -36px; }
  .quote-bar { padding: 22px 20px 18px; }
  .quote-bar-form .qb-row { grid-template-columns: 1fr 1fr; }
  .quote-bar-form .qb-row-2 { grid-template-columns: 1fr; }
  .quote-bar-form .qb-submit { width: 100%; }
}
@media (max-width: 540px) {
  .quote-bar-form .qb-row { grid-template-columns: 1fr; }
}

/* Compact variant — for internal pages (smaller, tighter) */
.lead-card.compact {
  padding: 22px 22px 20px;
  max-width: 360px;
  margin-left: auto;
}
.lead-card.compact h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.lead-card.compact .price-strip {
  font-size: .72rem;
  padding: 5px 11px;
  margin: 4px 0 14px;
}
.lead-card.compact .field { margin-bottom: 9px; }
.lead-card.compact .field label {
  font-size: .72rem;
  margin-bottom: 4px;
}
.lead-card.compact .field input,
.lead-card.compact .field select,
.lead-card.compact .field textarea {
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 6px;
  border-width: 1px;
}
.lead-card.compact .field-row { gap: 8px; }
.lead-card.compact .btn {
  padding: 13px 20px;
  font-size: .92rem;
  margin-top: 4px;
}
.lead-card.compact .fineprint {
  font-size: .72rem;
  margin-top: 8px;
  line-height: 1.4;
}

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: border .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(200,16,46,.10);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fineprint { font-size: .78rem; color: var(--muted); margin-top: 12px; line-height: 1.5; }

/* ---------- Trust strip ---------- */
.trustbar {
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.trustbar .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around;
  gap: 18px;
}
.trustbar .ti {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.9); font-weight: 600; font-size: .92rem;
}
.trustbar .ti svg { color: var(--brand); width: 22px; height: 22px; }

/* ---------- Section heads ---------- */
.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { display: inline-flex; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); }

/* ---------- Service grid ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: var(--brand);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .3s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleY(1); }
.svc-icon {
  width: 56px; height: 56px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background .25s, color .25s;
}
.svc-card:hover .svc-icon { background: var(--brand); color: #fff; }
.svc-icon svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.svc-card p { font-size: .94rem; color: var(--muted); margin-bottom: 14px; line-height: 1.55; }
.svc-card .more {
  font-weight: 700; color: var(--brand);
  display: inline-flex; align-items: center; gap: 6px; font-size: .9rem;
  font-family: var(--font-body);
}
.svc-card .more::after { content: "→"; transition: transform .2s; }
.svc-card:hover .more::after { transform: translateX(4px); }

/* Service card with image */
.svc-img-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}
.svc-img-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-img-card .img {
  aspect-ratio: 16 / 11;
  background: var(--bg-soft) center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.svc-img-card .img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,.55));
  opacity: 0; transition: opacity .25s;
}
.svc-img-card:hover .img::after { opacity: 1; }
.svc-img-card .body { padding: 24px 24px 28px; }
.svc-img-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.svc-img-card p { color: var(--muted); margin-bottom: 14px; font-size: .95rem; }
.svc-img-card .meta { display: flex; gap: 14px; margin-bottom: 14px; font-size: .82rem; color: var(--muted); }
.svc-img-card .meta span { display: flex; align-items: center; gap: 5px; }
.svc-img-card .more {
  font-weight: 700; color: var(--brand); font-size: .92rem;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  text-align: center;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.price-card .duration {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--ink-3);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: .78rem; font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-card .amount {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
  margin: 6px 0 8px;
}
.price-card .amount .currency {
  font-size: 1.4rem;
  vertical-align: top;
  margin-right: 2px;
  color: var(--muted);
  font-weight: 400;
}
.price-card .desc { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; text-align: left; }
.price-card li {
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .92rem;
  color: var(--ink-2);
  display: flex; gap: 10px; align-items: flex-start;
}
.price-card li:last-child { border-bottom: 0; }
.price-card li svg { color: var(--brand); flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px; }
.price-card.featured {
  border: 2px solid var(--brand);
  transform: scale(1.04);
  box-shadow: var(--shadow-red);
  background: linear-gradient(180deg, #fff, #FFF7F8);
}
.price-card.featured::before {
  content: "MOST POPULAR";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  padding: 7px 16px; border-radius: var(--r-pill);
  font-size: .7rem; font-weight: 800; letter-spacing: .12em;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.proc-step {
  background: #fff;
  border-radius: var(--r-md);
  padding: 30px 26px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.proc-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.proc-step .stepno {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 14px;
  font-style: italic;
}
.proc-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.proc-step p { color: var(--muted); font-size: .92rem; margin: 0; line-height: 1.55; }

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.split.reverse .split-img { order: -1; }
.split-img {
  position: relative;
}
.split-img img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split-img .badge {
  position: absolute;
  bottom: -20px; left: 24px; right: 24px;
  background: var(--brand);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-lg);
}
.split-img .badge .num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  line-height: 1;
}
.split-img .badge .lbl { font-size: .9rem; line-height: 1.3; }

.checklist { list-style: none; padding: 0; margin: 28px 0 32px; }
.checklist li {
  padding: 11px 0;
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 1rem;
  color: var(--ink-2);
}
.checklist li svg {
  width: 24px; height: 24px;
  flex: 0 0 24px;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  padding: 5px;
}

/* ---------- Testimonials ---------- */
.tlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: #fff;
  padding: 32px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  position: relative;
}
.tcard::before {
  content: "“";
  font-family: var(--font-display);
  position: absolute; top: 12px; right: 24px;
  font-size: 5rem; color: var(--brand-soft);
  line-height: 1;
}
.tstars { color: #FFB800; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.tcard blockquote {
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.65;
  position: relative;
}
.tperson { display: flex; align-items: center; gap: 14px; }
.tperson .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
}
.tperson .who { font-weight: 700; color: var(--ink); font-size: .98rem; }
.tperson .where { font-size: .85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin-bottom: 14px;
  transition: box-shadow .2s, border-color .2s;
}
.faq details[open] { box-shadow: var(--shadow-sm); border-color: var(--brand); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.06rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 14px; height: 14px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform .2s;
  flex: 0 0 14px;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p { margin: 16px 0 0; color: var(--muted); line-height: 1.7; }

/* ---------- Areas ---------- */
.areas {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
  margin-top: 30px;
}
.area-tag {
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-weight: 600;
  text-align: center;
  font-size: .9rem;
  transition: all .15s;
}
.area-tag:hover { border-color: var(--brand); color: var(--brand); }

/* ---------- Gallery / project grid ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.gallery .gitem {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
}
.gallery .gitem img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery .gitem:hover img { transform: scale(1.06); }
.gallery .gitem .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 18px 16px;
  background: linear-gradient(transparent, rgba(10,22,40,.85));
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.gallery .gitem:hover .cap { opacity: 1; transform: translateY(0); }

/* Masonry style grid */
.gallery-masonry {
  column-count: 3;
  column-gap: 14px;
}
.gallery-masonry .gitem {
  break-inside: avoid;
  margin-bottom: 14px;
  aspect-ratio: auto;
}
.gallery-masonry .gitem img { height: auto; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 50%, var(--brand-deep) 130%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,.30), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.82); margin-bottom: 0; }
.cta-banner .actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }

/* ---------- Page header ---------- */
.page-header {
  background: var(--ink);
  color: #fff;
  padding: clamp(60px, 8vw, 100px) 0 clamp(50px, 6vw, 70px);
  position: relative;
  overflow: hidden;
}
.page-header-form { padding-bottom: clamp(48px, 6vw, 72px); }
.page-header .ph-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 52px;
  align-items: center;
}
.page-header .ph-grid > div:first-child { min-width: 0; }
.page-header .ph-grid .lead-card { align-self: center; width: 100%; }
@media (max-width: 980px) {
  .page-header .ph-grid { grid-template-columns: 1fr; gap: 30px; }
  .lead-card.compact { max-width: 100%; margin-left: 0; }
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(200,16,46,.18), transparent 50%),
              var(--ph-bg, none) center/cover no-repeat;
  opacity: .9;
}
.page-header::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,.5), rgba(10,22,40,.85));
  opacity: var(--ph-overlay, 0);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .breadcrumb {
  font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 18px;
}
.page-header .breadcrumb a { color: var(--brand); font-weight: 600; }
.page-header h1 { color: #fff; margin-bottom: 16px; }
.page-header .lede { font-size: 1.18rem; color: rgba(255,255,255,.85); max-width: 64ch; }

/* ---------- 2-col / aside ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: flex-start;
}
.two-col aside.sidebar { position: sticky; top: 110px; }
.aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.aside-card.dark {
  background: var(--ink); color: #fff; border: 0;
  border-top: 4px solid var(--brand);
}
.aside-card.dark h3 { color: #fff; }
.aside-card.dark p { color: rgba(255,255,255,.75); }

.contact-row {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px; font-size: .94rem;
}
.contact-row svg { width: 18px; height: 18px; color: var(--brand); flex: 0 0 18px; margin-top: 3px; }

/* ---------- Footer ---------- */
.footer {
  background: #050B17;
  color: #A8B0BD;
  padding: 80px 0 28px;
}
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 18px; letter-spacing: .04em; }
.footer p, .footer .lede-foot {
  color: #A8B0BD;
  margin-top: 18px;
  font-size: .95rem;
  line-height: 1.65;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #142233;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: #A8B0BD; font-size: .94rem; transition: color .15s; }
.footer ul a:hover { color: var(--brand); }
.footer .contact-row { color: #A8B0BD; }
.footer .contact-row a { color: #A8B0BD; }
.footer .contact-row a:hover { color: var(--brand); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px; font-size: .85rem; color: #6E7681;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom a { color: var(--brand); font-weight: 700; }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- Floating phone CTA ---------- */
.float-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--ink);
  padding: 12px;
  z-index: 50;
  border-top: 1px solid #1F2D40;
  gap: 8px;
}
.float-cta .btn { flex: 1; padding: 14px; font-size: .92rem; }
.float-cta .btn-call {
  background: #1F2D40;
  color: #fff;
  border: 1px solid #2A3A50;
}
.float-cta .btn-call:hover { background: #2A3A50; }
.float-cta .btn-primary { color: #fff; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,22,40,.78);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  border-top: 4px solid var(--brand);
}
.modal .close-modal {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-soft);
  font-size: 1.5rem;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.modal .close-modal:hover { background: var(--brand-soft); color: var(--brand); }
.modal-body { padding: 38px 34px 32px; }

/* Multi-step */
.steps-nav { display: flex; gap: 8px; margin-bottom: 24px; }
.step-pill {
  flex: 1;
  height: 5px;
  background: var(--line);
  border-radius: var(--r-pill);
  transition: background .25s ease;
}
.step-pill.active { background: var(--brand); }
.step-pill.done   { background: var(--brand-deep); }
.step-title {
  font-size: .76rem; font-weight: 800;
  color: var(--brand); text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 8px;
}

.step-pane { display: none; }
.step-pane.active { display: block; }
.step-actions { display: flex; gap: 12px; margin-top: 22px; }
.step-actions .btn { flex: 1; }

.svc-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.svc-option {
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 14px;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  font-size: .9rem;
  transition: all .15s ease;
  background: #fff;
}
.svc-option:hover { border-color: var(--brand); }
.svc-option.selected { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }

.success-pane { text-align: center; padding: 30px 0; }
.success-pane .check {
  width: 84px; height: 84px;
  background: var(--brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  box-shadow: var(--shadow-red);
}
.success-pane .check svg { width: 40px; height: 40px; }

/* ---------- Mobile drawer ---------- */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 88%; max-width: 380px;
  height: 100vh;
  background: #fff;
  z-index: 80;
  padding: 28px;
  transition: right .3s ease;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { right: 0; }
.mobile-nav .close-mn {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.mobile-nav > a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.mobile-nav > a:hover { color: var(--brand); }
.mobile-nav details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.mobile-nav details summary {
  padding: 14px 4px;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav details summary::-webkit-details-marker { display: none; }
.mobile-nav details summary::after {
  content: "";
  width: 9px; height: 9px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform .2s;
  flex: 0 0 9px;
  margin-right: 4px;
}
.mobile-nav details[open] summary::after { transform: rotate(-135deg); }
.mobile-nav details .mn-sub {
  padding: 4px 0 14px 12px;
  border-top: 1px solid var(--bg-soft);
  display: flex;
  flex-direction: column;
}
.mobile-nav details a {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-weight: 500;
  font-size: .94rem;
  color: var(--ink-2);
  border: 0;
  border-bottom: 1px solid var(--bg-soft);
  text-decoration: none;
}
.mobile-nav details a:last-child { border-bottom: 0; }
.mobile-nav details a:hover { color: var(--brand); background: var(--brand-soft); }
.mobile-nav .btn { margin-top: 16px; width: 100%; }
.mobile-nav .btn-dark { color: #fff !important; background: var(--ink) !important; border: 0 !important; }
.mobile-nav .btn-primary { color: #fff !important; background: var(--brand) !important; border: 0 !important; }
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,22,40,.5);
  z-index: 70;
}
.mobile-overlay.open { display: block; }

/* ---------- Helper ---------- */
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1em; }
.prose li { margin-bottom: 8px; color: var(--ink-2); }

/* ---------- Service detail blocks ---------- */
.svc-detail {
  display: grid;
  grid-template-columns: 200px 1fr 160px;
  gap: 30px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.svc-detail:last-child { border-bottom: 0; }
.svc-detail .name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.svc-detail .blurb { color: var(--ink-2); margin: 0; font-size: .96rem; line-height: 1.6; }
.svc-detail .time {
  font-size: .8rem; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: .08em;
  text-align: right;
}
.svc-detail .time .hrs { display: block; font-size: 1.4rem; font-family: var(--font-display); font-weight: 700; color: var(--ink); margin-top: 4px; letter-spacing: 0; text-transform: none; }

/* ---------- Responsive ---------- */
/* On tablet and below, swap full nav for hamburger */
@media (max-width: 1320px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta .btn-primary { display: inline-flex; }
  .site-header .container { height: 96px; }
  .brand-logo img { height: 72px; max-width: 280px; }
}
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: 0; }
  .pricing { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-img { order: 0; }
  .tlist { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col aside.sidebar { position: static; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner .actions { justify-content: flex-start; }
  .gallery-masonry { column-count: 2; }
  .svc-detail { grid-template-columns: 1fr; gap: 12px; }
  .svc-detail .time { text-align: left; }
}
@media (max-width: 720px) {
  .header-cta > .btn-primary { display: none; }
  .float-cta { display: flex; }
  body { padding-bottom: 70px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .utilbar { font-size: .78rem; }
  .util-badges .util-badge:nth-child(n+3) { display: none; }
  .svc-options { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .gallery-masonry { column-count: 1; }
  .header-phone .ph-text { display: none; }
  .site-header .container { height: 84px; }
  .brand-logo img { height: 56px; }
}
