/* ============================================================
   Collins Heating & Cooling — site.css
   Design pass 2: typography, spacing, depth, motion.
   System fonts only. One stylesheet for every page.
   ============================================================ */
:root {
  /* ---- Color ---------------------------------------------- */
  --red: #B5121B;
  --red-hover: #991018;
  --red-deep: #7C0D13;
  --red-on-dark: #FF9AA0;
  --red-tint: #FCF0F0;

  --charcoal: #141414;
  --charcoal-2: #1D1D1D;
  --charcoal-3: #262626;
  --charcoal-line: #303030;

  --ink: #17191A;
  --ink-2: #33383B;
  --ink-soft: #62696E;
  --ink-faint: #8A9096;

  --paper: #F6F3ED;
  --paper-2: #F1EDE5;
  --white: #FFFFFF;
  --line: #E4E0D8;
  --light: #EFEBE3;   /* legacy alias used by inline styles */
  --line-2: #D4CFC5;

  --cool: #3F6275;
  --err: #A8241C;
  --dark-text: #CFCFCB;
  --dark-muted: #92928E;

  /* ---- Space (4px base) ------------------------------------ */
  --s1: 4px;   --s2: 8px;   --s3: 12px;  --s4: 16px;
  --s5: 24px;  --s6: 32px;  --s7: 44px;  --s8: 60px;
  --s9: 80px;  --s10: 104px; --s11: 132px;

  /* ---- Form ------------------------------------------------ */
  --radius: 12px;
  --radius-sm: 9px;
  --radius-xs: 6px;

  /* Layered shadows — one tight contact shadow, one soft ambient */
  --sh-1: 0 1px 2px rgba(18,18,18,.05), 0 1px 3px rgba(18,18,18,.04);
  --sh-2: 0 1px 2px rgba(18,18,18,.05), 0 6px 16px -4px rgba(18,18,18,.08);
  --sh-3: 0 1px 2px rgba(18,18,18,.05), 0 14px 34px -10px rgba(18,18,18,.14);
  --sh-4: 0 2px 4px rgba(18,18,18,.05), 0 26px 56px -16px rgba(18,18,18,.20);
  --sh-red: 0 1px 2px rgba(124,13,19,.20), 0 10px 24px -8px rgba(181,18,27,.44);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-cond: "Arial Narrow", "Helvetica Neue Condensed", "Segoe UI", Arial, sans-serif;

  --container: 1180px;
  --gutter: 22px;

  --ease: cubic-bezier(.22,.61,.24,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-bottom: 74px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
picture { display: block; }
a { color: var(--ink); }
::selection { background: var(--red); color: #fff; }

/* ---- Type scale ------------------------------------------- */
h1, h2, h3 { font-weight: 800; }
h1 {
  font-size: clamp(38px, 6.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.032em;
}
h2 {
  font-size: clamp(29px, 4.2vw, 43px);
  line-height: 1.08;
  letter-spacing: -0.026em;
}
h3 {
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: -0.014em;
  font-weight: 750;
}
[id] { scroll-margin-top: 124px; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 300; background: var(--charcoal); color: #fff; padding: 12px 20px; font-weight: 700; text-decoration: none; }
.skip-link:focus { left: 0; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ---- Section rhythm ---------------------------------------
   Deliberately unequal. Dense sections breathe less, feature
   moments breathe more. Uniform padding is what makes a page
   feel templated. ---------------------------------------- */
.section { padding: var(--s8) 0; }
.section-tight { padding: var(--s7) 0; }
.section-airy  { padding: var(--s9) 0; }
.section-white { background: var(--white); }
.section-paper { background: var(--paper-2); }
.section-dark  { background: var(--charcoal); color: #fff; }
.section-dark h2 { color: #fff; }

.eyebrow {
  font-weight: 800; font-size: 12px; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: var(--s3);
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: currentColor;
  border-radius: 2px; flex-shrink: 0; opacity: .85;
}
.section-dark .eyebrow, .rev-dark .eyebrow, .cta-final .eyebrow { color: var(--red-on-dark); }
.lead {
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 19.5px);
  line-height: 1.62;
  max-width: 58ch;
  letter-spacing: -0.004em;
}
.section-dark .lead, .rev-dark .lead, .cta-final p { color: var(--dark-text); }
.i { width: 1.25em; height: 1.25em; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; fill: none; flex-shrink: 0; vertical-align: -0.22em; }
.rule-red { width: 52px; height: 3px; background: var(--red); border: 0; border-radius: 2px; margin: 0 0 var(--s5); }

/* ---- Motion ------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .78s var(--ease-out), transform .78s var(--ease-out);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

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

/* ---- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 15px 28px;
  font: 700 16.5px/1 var(--font);
  letter-spacing: -0.008em;
  border-radius: var(--radius-sm);
  text-decoration: none; cursor: pointer; border: none;
  position: relative; white-space: nowrap;
  transition: background 180ms var(--ease), border-color 180ms var(--ease),
              transform 180ms var(--ease), box-shadow 220ms var(--ease), color 180ms var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.99); transition-duration: 60ms; }
.btn-red { background: var(--red); color: #fff; box-shadow: var(--sh-red); }
.btn-red:hover { background: var(--red-hover); box-shadow: 0 2px 5px rgba(124,13,19,.24), 0 16px 34px -8px rgba(181,18,27,.52); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(23,25,26,.03); }
.btn-ghost-dark { background: rgba(255,255,255,.04); color: #fff; border: 1.5px solid rgba(255,255,255,.28); }
.btn-ghost-dark:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.10); }
.btn-lg { min-height: 60px; font-size: 17.5px; padding: 17px 32px; }

/* ---- Header ------------------------------------------------ */
.util-bar { background: var(--charcoal); color: var(--dark-text); font-size: 13.5px; }
.util-in { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 12px; }
.util-in span { display: none; letter-spacing: -0.005em; }
.util-in a { color: #fff; font-weight: 800; font-size: 15px; text-decoration: none; letter-spacing: .1px; transition: color 160ms var(--ease); }
.util-in a:hover { color: var(--red-on-dark); }

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 260ms var(--ease);
}
.site-header.stuck { box-shadow: 0 1px 0 var(--line), 0 10px 30px -14px rgba(18,18,18,.22); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 74px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); line-height: 1; }
.logo-mark { height: 46px; width: auto; display: block; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo b { display: block; font-family: var(--font-cond); font-size: 27px; font-weight: 900; letter-spacing: .4px; }
.logo b span { color: var(--red); }
.logo small { display: block; font-size: 10px; font-weight: 700; letter-spacing: 3.2px; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }

.nav-desktop { display: none; align-items: center; gap: 28px; font-size: 15px; font-weight: 600; }
.nav-desktop > a { color: var(--ink); text-decoration: none; opacity: .78; padding: 9px 0; position: relative; transition: opacity 170ms var(--ease); letter-spacing: -0.008em; }
.nav-desktop > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--red); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 260ms var(--ease);
}
.nav-desktop > a:hover { opacity: 1; }
.nav-desktop > a:hover::after { transform: scaleX(1); }
.nav-desktop > a[aria-current="page"] { opacity: 1; }
.nav-desktop > a[aria-current="page"]::after { transform: scaleX(1); }

.dd { position: relative; }
.dd-btn { display: inline-flex; align-items: center; gap: 5px; background: none; border: none; font: inherit; font-weight: 600; color: var(--ink); opacity: .78; cursor: pointer; padding: 9px 0; letter-spacing: -0.008em; transition: opacity 170ms var(--ease); }
.dd-btn:hover { opacity: 1; }
.dd-btn .i { transition: transform 240ms var(--ease); }
.dd.open .dd-btn .i { transform: rotate(180deg); }
.dd-menu {
  position: absolute; top: calc(100% + 10px); left: -18px; min-width: 256px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--sh-4);
  list-style: none; padding: 7px; display: none; z-index: 95;
}
.dd.open .dd-menu, .dd:focus-within .dd-menu { display: block; animation: ddIn 200ms var(--ease-out); }
@keyframes ddIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.dd-menu a { display: block; padding: 11px 13px; border-radius: var(--radius-xs); text-decoration: none; color: var(--ink); font-weight: 550; font-size: 15.5px; transition: background 140ms var(--ease), color 140ms var(--ease); }
.dd-menu a:hover { background: var(--paper); color: var(--red); }

.head-call-btn { min-height: 46px; padding: 11px 19px; font-size: 15.5px; }
.head-call-btn .lbl { display: none; }
.menu-btn { display: inline-flex; align-items: center; gap: 8px; min-height: 46px; padding: 9px 15px; background: none; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm); font: 700 15px var(--font); color: var(--ink); cursor: pointer; transition: border-color 160ms var(--ease); }
.menu-btn:hover { border-color: var(--ink); }
.menu-btn .icon-close { display: none; }
.menu-btn[aria-expanded="true"] .icon-open { display: none; }
.menu-btn[aria-expanded="true"] .icon-close { display: inline; }
.nav-mobile { border-top: 1px solid var(--line); background: var(--white); padding: 12px var(--gutter) 24px; }
.nav-mobile ul { list-style: none; }
.nav-mobile li a { display: block; padding: 14px 4px; font-size: 17.5px; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.nav-mobile .group { padding: 18px 4px 6px; font-size: 11.5px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase; color: var(--red); }
.nav-mobile .btn { width: 100%; margin-top: 18px; }

/* ============================================================
   HERO — single editorial photograph, feathered into the panel.
   ============================================================ */
.hero { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.hero .grid { display: grid; position: relative; }
.hero .copy {
  padding: var(--s8) var(--gutter) var(--s7);
  max-width: calc(var(--container) / 2 + 74px);
  margin-left: auto; width: 100%;
  position: relative; z-index: 2;
}
.hero h1 { color: #fff; max-width: 13ch; }
.hero .lead { color: #C4C4C0; margin: var(--s5) 0 var(--s6); max-width: 44ch; }
.hero .cta-row { display: flex; flex-direction: column; gap: var(--s3); flex-wrap: wrap; }

.hero .shot { position: relative; min-height: 380px; overflow: hidden; }
.hero .shot picture, .hero .shot img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; }
/* Feather the photo into the charcoal so there is no hard seam */
.hero .shot::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(to bottom, var(--charcoal) 0%, rgba(20,20,20,.45) 22%, rgba(20,20,20,0) 52%),
    linear-gradient(to top, rgba(20,20,20,.55) 0%, rgba(20,20,20,0) 34%);
}
/* Vignette keeps the eye on the equipment */
.hero .shot::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(115% 85% at 55% 45%, rgba(0,0,0,0) 42%, rgba(0,0,0,.30) 100%);
}

/* ============================================================
   STATS BAND — the "nearly 40 years" moment.
   ============================================================ */
.stats {
  background: var(--charcoal);
  color: #fff;
  position: relative;
}
.stats::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 38%, var(--red-deep) 100%);
}
.stats .wrap { padding-top: var(--s8); padding-bottom: var(--s8); }

/* One hero figure. Everything else supports it. */
.stat-lead { padding-bottom: var(--s7); border-bottom: 1px solid var(--charcoal-line); }
.stat-lead .pre {
  display: block; font-size: 12px; font-weight: 800; letter-spacing: 2.6px;
  text-transform: uppercase; color: var(--red-on-dark); margin-bottom: var(--s4);
}
.stat-lead .fig {
  display: block;
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(84px, 19vw, 168px);
  line-height: .8;
  letter-spacing: -0.045em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.stat-lead .fig .sm {
  font-size: .19em; font-family: var(--font); font-weight: 800;
  letter-spacing: 1.6px; text-transform: uppercase;
  vertical-align: baseline; margin-left: 14px;
  color: var(--red-on-dark);
}
.stat-lead .cap {
  display: block; margin-top: var(--s5);
  font-size: 18px; line-height: 1.5; color: var(--dark-text); max-width: 40ch;
}

/* Supporting facts — the former trust strip, restyled */
.stat-facts { list-style: none; display: grid; gap: var(--s5); padding-top: var(--s7); }
.stat-facts li { display: flex; gap: var(--s3); align-items: flex-start; }
.stat-facts .i { width: 19px; height: 19px; color: var(--red-on-dark); margin-top: 3px; }
.stat-facts span { font-size: 15.5px; font-weight: 600; line-height: 1.45; color: #EDEDEA; letter-spacing: -0.008em; }

/* Legacy trust strip retained for interior pages */
.trust-strip { background: var(--red); color: #fff; }
.trust-strip ul { list-style: none; display: grid; gap: 14px 26px; padding: 22px 0; }
.trust-strip li { display: flex; gap: 11px; align-items: center; font-size: 15px; font-weight: 700; letter-spacing: -0.005em; }
.trust-strip .i { width: 21px; height: 21px; flex-shrink: 0; }

/* ---- Reviews ----------------------------------------------- */
.rev-dark { background: var(--charcoal); color: #fff; }
.rev-grid { display: grid; gap: var(--s4); margin-top: var(--s7); }
.rev-dark .rev {
  background: var(--charcoal-2);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius);
  padding: var(--s6) var(--s6) var(--s5);
  transition: border-color 300ms var(--ease), transform 300ms var(--ease), background 300ms var(--ease);
}
.rev-dark .rev:hover { border-color: #3E3E3E; background: var(--charcoal-3); transform: translateY(-3px); }
.rev .stars { color: var(--red-on-dark); letter-spacing: 4px; font-size: 14px; }
.rev-dark .rev p { margin: var(--s3) 0 var(--s5); font-size: clamp(17px, 1.9vw, 19px); line-height: 1.52; color: #fff; font-weight: 550; letter-spacing: -0.012em; }
.rev cite { font-style: normal; font-weight: 700; font-size: 13.5px; letter-spacing: -0.004em; }
.rev-dark cite { color: var(--dark-text); }
.rev cite span { font-weight: 400; color: var(--dark-muted); }
.rating-live { margin-top: var(--s5); font-weight: 700; }
.after-btn { margin-top: var(--s7); }

.rev-light .rev { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: var(--radius); padding: var(--s6) var(--s6) var(--s5); box-shadow: var(--sh-1); transition: box-shadow 300ms var(--ease), transform 300ms var(--ease); }
.rev-light .rev:hover { box-shadow: var(--sh-3); transform: translateY(-3px); }
.rev-light .rev p { margin: var(--s3) 0 var(--s4); font-size: 17px; letter-spacing: -0.01em; }
.rev-light .stars { color: var(--red); }
.rev-light cite span { color: var(--ink-soft); }

/* ---- Services ---------------------------------------------- */
.svc-grid { display: grid; gap: var(--s4); margin-top: var(--s7); }
.svc {
  display: flex; flex-direction: column; gap: var(--s2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s6) var(--s5) var(--s5);
  text-decoration: none; color: var(--ink);
  box-shadow: var(--sh-1);
  position: relative; overflow: hidden;
  transition: box-shadow 320ms var(--ease), transform 320ms var(--ease), border-color 320ms var(--ease);
}
/* Accent reads as a drawn edge, not a stacked border */
.svc::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 420ms var(--ease-out);
}
.svc:hover { box-shadow: var(--sh-3); transform: translateY(-4px); border-color: var(--line-2); }
.svc:hover::before { transform: scaleX(1); }
.svc .ic {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--red-tint); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s2);
  transition: background 280ms var(--ease), color 280ms var(--ease), transform 320ms var(--ease);
}
.svc:hover .ic { background: var(--red); color: #fff; transform: scale(1.05); }
.svc .ic .i { width: 23px; height: 23px; }
.svc.cool-card::before { background: var(--cool); }
.svc.cool-card .ic { background: #ECF1F4; color: var(--cool); }
.svc.cool-card:hover .ic { background: var(--cool); color: #fff; }
.svc p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.svc .go { margin-top: auto; padding-top: var(--s4); display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-weight: 750; font-size: 14.5px; letter-spacing: -0.008em; }
.svc .go .i { transition: transform 300ms var(--ease); }
.svc:hover .go .i { transform: translateX(4px); }
.svc.cool-card .go { color: var(--cool); }

/* ---- Work mosaic ------------------------------------------- */
.mosaic { display: grid; gap: var(--s3); margin-top: var(--s7); grid-template-columns: 1fr 1fr; }
.mosaic figure {
  margin: 0; position: relative;
  border-radius: var(--radius); overflow: hidden;
  background: var(--line);
  box-shadow: var(--sh-1);
}
.mosaic picture, .mosaic img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.mosaic figure:hover img { transform: scale(1.055); }
.mosaic figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: var(--s8) var(--s4) var(--s3);
  font-size: 13px; font-weight: 700; color: #fff;
  letter-spacing: .2px;
  background: linear-gradient(to top, rgba(10,10,10,.86) 0%, rgba(10,10,10,.52) 42%, rgba(10,10,10,0) 100%);
  transition: padding-bottom 400ms var(--ease);
}
.mosaic figure:hover figcaption { padding-bottom: var(--s4); }
.mosaic .m-lg { grid-column: span 2; aspect-ratio: 16 / 10; }
.mosaic .m-md { aspect-ratio: 1 / 1; }
.mosaic .m-sm { aspect-ratio: 1 / 1; }

/* ---- Why Collins ------------------------------------------- */
.why { background: var(--paper-2); }
.why .grid { display: grid; gap: var(--s7); }
.qual-list { list-style: none; display: grid; gap: var(--s2); }
.qual-list li {
  display: flex; gap: var(--s4); align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s4) var(--s5);
  transition: background 260ms var(--ease), border-color 260ms var(--ease), transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.qual-list li:hover { background: var(--white); border-color: var(--line-2); transform: translateX(3px); box-shadow: var(--sh-1); }
.qual-list .i { color: var(--red); margin-top: 3px; width: 20px; height: 20px; }
.qual-list b { display: block; font-size: 16px; letter-spacing: -0.012em; }
.qual-list span { color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; }

/* ---- Feature splits ---------------------------------------- */
.feature { display: grid; overflow: hidden; }
.feature .panel { padding: var(--s8) var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.feature .panel .inner { max-width: 520px; }
.feature .photo { min-height: 300px; overflow: hidden; position: relative; }
.feature .photo picture, .feature .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1100ms var(--ease-out); }
.feature:hover .photo img { transform: scale(1.04); }
.feature-red { background: var(--red); color: #fff; }
.feature-red h2 { color: #fff; }
.feature-red p { color: #F7CFD2; }
.feature-red .eyebrow { color: #FFD6D9; }
.feature-red .btn-ghost-dark { border-color: rgba(255,255,255,.5); }
.feature-red .btn-ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.feature-dark { background: var(--charcoal); color: #fff; }
.feature-dark h2 { color: #fff; }
.feature-dark p { color: var(--dark-text); }
.feature-light { background: var(--white); }
.feature-light p { color: var(--ink-soft); }
.feature .panel p { margin: var(--s4) 0 var(--s6); font-size: 17px; line-height: 1.6; max-width: 46ch; }

/* Centered band — breaks the split rhythm without new content */
.band { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band .inner { max-width: 640px; margin: 0 auto; text-align: center; }
.band .eyebrow { justify-content: center; }
.band .rule-red { margin-left: auto; margin-right: auto; }
.band p { color: var(--ink-soft); font-size: 17.5px; line-height: 1.62; margin: var(--s4) auto var(--s6); max-width: 52ch; }

/* ---- Page banner ------------------------------------------- */
.page-banner { background: var(--charcoal); color: #fff; padding-bottom: var(--s7); }
.page-banner h1 { color: #fff; }
.page-banner .lead { color: var(--dark-text); }
.page-banner .crumbs { padding: var(--s5) 0 0; }
.page-banner .crumbs ol { color: var(--dark-muted); }
.page-banner .crumbs a { color: var(--dark-muted); transition: color 160ms var(--ease); }
.page-banner .crumbs a:hover { color: #fff; }
.page-banner .crumbs li + li::before { color: #4A4A4A; }
.page-banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.page-banner .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.page-banner--photo { background-size: cover; background-position: center; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; }
.crumbs a { text-decoration: none; }
.crumbs li + li::before { content: "/"; margin-right: 6px; }
.page-head { padding: var(--s5) 0 var(--s2); }
.page-head .lead { margin-top: var(--s4); }

/* ---- Prose -------------------------------------------------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(24px, 3.2vw, 31px); margin: var(--s8) 0 var(--s4); }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: var(--s4); color: var(--ink-2); }
.prose ul { margin: 0 0 var(--s4) var(--s5); color: var(--ink-2); }
.prose li { margin-bottom: var(--s2); }
.prose a { color: var(--red); font-weight: 600; text-decoration: none; box-shadow: inset 0 -1px 0 rgba(181,18,27,.35); transition: box-shadow 180ms var(--ease); }
.prose a:hover { box-shadow: inset 0 -2px 0 var(--red); }
.split { display: grid; gap: var(--s7); align-items: start; }
.split .photo > div, .split .photo picture { border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-2); }

.pair-grid { display: grid; gap: var(--s4); margin: var(--s6) 0; }
.pair-grid figure { margin: 0; }
.pair-grid .ph { border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-1); }
.pair-grid .ph img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; transition: transform 900ms var(--ease-out); }
.pair-grid figure:hover .ph img { transform: scale(1.05); }
.pair-grid figcaption { font-weight: 750; font-size: 14px; margin-top: var(--s3); letter-spacing: -0.008em; }

.work-cat { margin-top: var(--s8); }
.work-cat h2 { font-size: clamp(22px, 2.9vw, 27px); padding-top: var(--s5); border-top: 2px solid var(--charcoal); display: inline-block; }
.work-cat .cat-note { color: var(--ink-soft); font-size: 15px; margin: var(--s2) 0 0; }

/* ---- Final CTA ---------------------------------------------- */
.cta-final { background: var(--charcoal); color: #fff; padding: var(--s9) 0; position: relative; }
.cta-final::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red-deep), var(--red) 45%, var(--red-deep));
}
.cta-final h2 { color: #fff; }
.cta-final .phone-line { margin: var(--s5) 0 var(--s2); }
.cta-final .phone-line a {
  font-family: var(--font-cond); font-weight: 900;
  font-size: clamp(40px, 7vw, 62px); letter-spacing: -0.01em;
  color: #fff; text-decoration: none;
  font-variant-numeric: tabular-nums;
  transition: color 200ms var(--ease);
}
.cta-final .phone-line a:hover { color: var(--red-on-dark); }
.cta-final p { margin: var(--s2) 0 var(--s6); max-width: 52ch; }
.cta-final .cta-row { display: flex; flex-direction: column; gap: var(--s3); flex-wrap: wrap; }

/* ---- Forms --------------------------------------------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s6);
  max-width: 560px;
  box-shadow: var(--sh-3);
  position: relative; overflow: hidden;
}
.form-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); }
.field { margin-bottom: var(--s4); }
.field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: var(--s2); letter-spacing: -0.006em; }
.field .opt { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 15px; font: inherit; font-size: 16.5px;
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  background: #FCFBF9; color: var(--ink);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: #BFB9AD; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none; border-color: var(--charcoal); background: var(--white);
  box-shadow: 0 0 0 4px rgba(20,20,20,.07);
}
.field.has-error input, .field.has-error select { border-color: var(--err); box-shadow: 0 0 0 4px rgba(168,36,28,.09); }
.error-msg { display: none; margin-top: var(--s2); font-size: 13.5px; font-weight: 700; color: var(--err); }
.field.has-error .error-msg { display: flex; align-items: center; gap: 5px; }
.form-note { display: none; margin-top: var(--s4); padding: var(--s4); background: #FCF3E2; border: 1px solid #E5C68F; border-radius: var(--radius-sm); font-size: 15px; }
.form-note.show { display: block; animation: ddIn 260ms var(--ease-out); }
.form-note a { font-weight: 800; color: var(--red); text-decoration: none; }

/* ---- Footer -------------------------------------------------- */
.site-footer { background: #0F0F0F; color: var(--dark-muted); font-size: 14.5px; padding: var(--s8) 0 var(--s9); }
.site-footer .cols { display: grid; gap: var(--s6); }
.site-footer h2 { font-size: 11.5px; letter-spacing: 2.6px; text-transform: uppercase; margin-bottom: var(--s4); color: #fff; font-weight: 800; }
.site-footer p { color: var(--dark-text); max-width: 40ch; margin-bottom: var(--s2); }
.f-name { font-family: var(--font-cond); font-size: 19px; font-weight: 900; color: #fff !important; letter-spacing: .4px; }
.f-pay { font-size: 13.5px; }
.site-footer ul { list-style: none; display: grid; gap: var(--s2); }
.site-footer a { color: var(--dark-text); text-decoration: none; transition: color 160ms var(--ease); }
.site-footer a:hover { color: #fff; }
.site-footer .legal { margin-top: var(--s7); padding-top: var(--s5); border-top: 1px solid #1F1F1F; font-size: 13px; }

/* ---- Mobile call bar ----------------------------------------- */
.callbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; display: flex; gap: 1px; background: var(--charcoal); box-shadow: 0 -6px 28px rgba(0,0,0,.28); padding-bottom: env(safe-area-inset-bottom); }
.callbar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 58px; font-weight: 800; font-size: 16px; text-decoration: none; padding: 8px; letter-spacing: -0.01em; }
.cb-call { flex: 1.4; background: var(--red); color: #fff; }
.callbar a.cb-call { font-size: 14.5px; gap: 7px; letter-spacing: -0.015em; }
.cb-req { background: var(--charcoal); color: #fff; }
[hidden] { display: none !important; }

/* Small phones: the header ran 81px past the viewport. Trim the
   logo lockup and drop the menu word — the phone number stays. */
@media (max-width: 420px) {
  .site-header .bar { gap: 8px; }
  .logo-mark { height: 36px; }
  .logo b { font-size: 24px; }
  .logo small { font-size: 9px; letter-spacing: 1.9px; }
  .menu-btn { padding: 9px 11px; gap: 0; }
  .mb-lbl { display: none; }
  .head-call-btn { padding: 11px 14px; font-size: 15px; gap: 7px; }
  .util-bar { font-size: 12.5px; }
}

/* Very small phones (SE-class) still ran 24px over. */
@media (max-width: 360px) {
  :root { --gutter: 15px; }
  .logo-mark { height: 32px; }
  .logo b { font-size: 22px; }
  .logo small { font-size: 8.5px; letter-spacing: 1.5px; }
  .head-call-btn { padding: 11px 12px; font-size: 14.5px; }
  .site-header .bar { gap: 6px; }
  .callbar a.cb-call { font-size: 13px; gap: 5px; }
}

/* ============================================================
   Breakpoints
   ============================================================ */
@media (min-width: 760px) {
  body { padding-bottom: 0; }
  .callbar { display: none; }
  .section { padding: var(--s9) 0; }
  .section-tight { padding: var(--s8) 0; }
  .section-airy { padding: var(--s11) 0; }
  .util-in span { display: inline; }

  .hero .grid { grid-template-columns: 1.06fr .94fr; min-height: 600px; }
  .hero .copy { padding: var(--s10) var(--s8) var(--s10) var(--gutter); }
  .hero .cta-row { flex-direction: row; align-items: center; }
  .hero .shot { min-height: 100%; }
  .hero .shot::before {
    background:
      linear-gradient(to right, var(--charcoal) 0%, rgba(20,20,20,.92) 6%, rgba(20,20,20,.62) 16%, rgba(20,20,20,.24) 30%, rgba(20,20,20,0) 48%),
      linear-gradient(to top, rgba(20,20,20,.55) 0%, rgba(20,20,20,0) 30%),
      linear-gradient(to bottom, rgba(20,20,20,.45) 0%, rgba(20,20,20,0) 18%);
  }

  .stats .wrap { padding-top: var(--s9); padding-bottom: var(--s9); }
  .stat-lead { display: grid; grid-template-columns: auto 1fr; align-items: end; gap: var(--s3) var(--s9); padding-bottom: var(--s8); }
  .stat-lead .pre { grid-column: 1 / -1; margin-bottom: var(--s2); }
  .stat-lead .cap { margin-top: 0; padding-bottom: var(--s4); font-size: 19px; max-width: 34ch; }
  .stat-facts { grid-template-columns: repeat(3, 1fr); gap: var(--s7); padding-top: var(--s8); }

  .trust-strip ul { grid-template-columns: repeat(4, auto); justify-content: space-between; padding: 24px 0; }
  .rev-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: repeat(4, 1fr); gap: var(--s4); }
  .mosaic .m-lg { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .mosaic .m-md { grid-column: span 2; aspect-ratio: 2 / 1; }
  .why .grid { grid-template-columns: 1fr 1.05fr; gap: var(--s9); align-items: start; }
  .feature { grid-template-columns: 1fr 1fr; }
  .feature .photo { min-height: 460px; }
  .feature .panel { padding: var(--s10) var(--s8); }
  .feature-rtl .photo { order: -1; }
  .split { grid-template-columns: 1.05fr .95fr; gap: var(--s9); }
  .pair-grid { grid-template-columns: 1fr 1fr; }
  .cta-final { padding: var(--s11) 0; }
  .cta-final .cta-row { flex-direction: row; }
  .site-footer .cols { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; }
  .head-call-btn .lbl { display: inline; }
  .form-card { padding: var(--s7); }
}

/* Desktop nav appears at 1020 but the full lockup needs more room
   until ~1160. Tighten the band in between rather than wrapping. */
@media (min-width: 1020px) and (max-width: 1160px) {
  .nav-desktop { gap: 18px; font-size: 14.5px; }
  .head-call-btn { padding: 11px 15px; font-size: 15px; }
  .logo small { letter-spacing: 2.6px; }
}

@media (min-width: 1020px) {
  .nav-desktop { display: flex; }
  .menu-btn { display: none; }
  .nav-mobile { display: none; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}
