/* =========================================================
   HEATSHIELD ROOF RESTORATIONS · Master Stylesheet
   ========================================================= */

:root {
  --ink: #0B0B0D;
  --graphite: #1C1C1E;
  --steel: #2A2A2E;
  --concrete: #8A8783;
  --paper: #F5F2ED;
  --line: #E3DFD8;
  --red: #B91C1C;
  --red-deep: #8A1414;
  --orange: #EF4E23;
  --yellow: #F5C518;
  --white: #FFFFFF;

  --section-py: 40px;
  --header-btn-h: 48px;
  --radius: 3px;
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --t: 200ms var(--ease);
}
@media (max-width: 720px) {
  :root { --section-py: 32px; --header-btn-h: 40px; }
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-wrap: pretty;
}
@media (min-width: 720px) { body { font-size: 1.05rem; } }
img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, textarea, select { font: inherit; color: inherit; font-size: 16px; }
ul { list-style: none; }

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
}
.section-dark { background: var(--ink); color: var(--paper); }
.section-paper { background: var(--paper); color: var(--ink); }

h1, h2, h3, h4, h5 {
  font-family: 'Anton', 'Oswald', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}
.eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--red);
}
.section-paper h2, .section-paper h3, .section-paper h4 {
  color: var(--ink);
  text-shadow: 0 2px 0 rgba(0,0,0,0.04);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--paper); }

.section-head {
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(2rem, 3.5vw + 1rem, 3.5rem);
  margin: 10px auto 8px;
  max-width: 20ch;
}
.section-head p {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--concrete);
  max-width: 560px;
  margin: 0 auto;
  text-wrap: pretty;
}
.section-dark .section-head p { color: rgba(245,242,237,0.78); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background var(--t), color var(--t), box-shadow var(--t), transform var(--t), border-color var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn .arrow { transition: transform var(--t); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(185,28,28,0.28);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(185,28,28,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline-light,
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover,
.btn-outline:hover { background: var(--white); color: var(--ink); }

.btn-outline-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 12px 24px;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: var(--radius);
  transition: background var(--t), color var(--t), transform var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline-orange:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-orange .chev {
  width: 16px; height: 16px;
  transition: transform var(--t);
}
.btn-outline-orange[aria-expanded="true"] .chev { transform: rotate(180deg); }

/* Phone pill */
.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 56px;
  padding: 14px 22px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 4px 14px rgba(185,28,28,0.28);
  text-align: center;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
  max-width: 100%;
}
.phone-pill:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(185,28,28,0.4);
}
.phone-pill svg { width: 20px; height: 20px; flex-shrink: 0; }
.phone-pill-label {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  white-space: nowrap;
}
.phone-pill-sm { min-height: 52px; padding: 12px 20px; }
@media (max-width: 480px) {
  .phone-pill { padding: 12px 16px; min-height: 52px; }
  .phone-pill-label { font-size: clamp(0.85rem, 3.5vw, 1rem); }
  .phone-pill svg { width: 18px; height: 18px; }
}

/* Announce ticker */
.announce-bar {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.announce-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-left 60s linear infinite;
  will-change: transform;
}
.announce-bar:hover .announce-track { animation-play-state: paused; }
.announce-track span {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  padding-inline: 1.1rem;
  display: inline-flex;
  align-items: center;
}
.announce-track .hot { color: var(--red); }
.announce-track .dot { color: var(--paper); opacity: 0.35; padding-inline: 0.3rem; }
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.site-header .wrap { max-width: 1100px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px;
  gap: clamp(1rem, 3vw, 2.5rem);
}
@media (max-width: 720px) {
  .site-header .wrap { max-width: 100%; padding-left: 16px; padding-right: 16px; }
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: var(--header-btn-h);
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}
.mobile-sheet .brand-logo { height: var(--header-btn-h); }
.site-header .nav-cta .btn {
  height: var(--header-btn-h);
  min-height: var(--header-btn-h);
  padding-top: 0;
  padding-bottom: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.8rem;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  color: rgba(245,242,237,0.88);
  transition: color var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  color: var(--paper);
  transition: color var(--t);
}
.nav-phone:hover { color: var(--red); }
.nav-phone svg { width: 16px; height: 16px; color: var(--red); }

.nav-burger {
  display: none;
  width: var(--header-btn-h);
  height: var(--header-btn-h);
  place-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--paper);
  position: relative;
}
.nav-burger span::before, .nav-burger span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--paper);
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after  { top: 6px; }

/* Mobile sheet */
.mobile-sheet {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 90vw);
  background: var(--ink);
  color: var(--paper);
  z-index: 200;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 260ms var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-sheet.open { transform: translateX(0); }
.mobile-sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.mobile-sheet .close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  color: var(--paper);
  font-size: 1.2rem;
}
.mobile-sheet ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-family: 'Anton', sans-serif;
  font-size: 1.85rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-align: center;
}
.mobile-sheet a { color: var(--paper); }
.mobile-sheet a:hover { color: var(--red); }
.mobile-cta {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* HERO · three zones */
.hero {
  position: relative;
  min-height: 720px;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  background: var(--ink);
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  filter: none;
  backdrop-filter: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: auto;
  filter: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.25) 25%,
    rgba(0,0,0,0.10) 50%,
    rgba(0,0,0,0.25) 75%,
    rgba(0,0,0,0.70) 100%
  );
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 80px 24px 64px;
}
.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 720px;
}
.hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--red);
  margin: 0;
}
.hero-headline {
  font-family: 'Anton', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--paper);
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 640px;
  color: var(--paper);
  opacity: 0.9;
  margin: 0;
  text-wrap: pretty;
}

/* Services ticker */
.ticker {
  background: var(--ink);
  border-block: 1px solid rgba(255,255,255,0.06);
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-left 50s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: 'Anton', sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding-inline: 1rem;
  display: inline-flex;
  align-items: center;
}
.ticker-track span:nth-child(odd)  { color: var(--paper); }
.ticker-track span:nth-child(even) { color: var(--orange); }
.ticker-track .sep { color: var(--steel); padding-inline: 0.4rem; }

/* Services grid · 4-step pattern · equal heights */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
  align-items: stretch;
}
.service-card {
  position: relative;
  padding: 32px 24px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 240px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t);
  overflow: visible;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 14px 28px -14px rgba(0,0,0,0.25);
}
.service-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}
.service-card p {
  color: var(--concrete);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
  text-wrap: pretty;
}
.service-card .learn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  color: var(--red);
}
.service-card .learn .arrow { transition: transform var(--t); }
.service-card:hover .learn .arrow { transform: translateX(4px); }

/* POPULAR sticker · crooked, layered shadow effect */
.service-tag {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 64px;
  height: 64px;
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 3;
  transform: rotate(-8deg);
  transition: transform 300ms var(--ease), background var(--t);
  line-height: 1;
  box-shadow:
    inset 0 0 0 2px var(--paper),
    inset 0 0 0 3.5px rgba(0,0,0,0.08),
    inset 0 1px 2px rgba(255,255,255,0.2),
    0 3px 8px rgba(0,0,0,0.25);
}
.service-card:hover .service-tag {
  transform: rotate(-4deg) scale(1.05);
  background: var(--red-deep);
  box-shadow:
    inset 0 0 0 2px var(--paper),
    inset 0 0 0 3.5px rgba(0,0,0,0.08),
    inset 0 1px 2px rgba(255,255,255,0.2),
    0 3px 8px rgba(0,0,0,0.25),
    0 0 12px rgba(245, 197, 24, 0.3);
}

.services-cta-block { text-align: center; }
.services-also {
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  text-wrap: pretty;
}

/* About */
#about { padding-top: calc(var(--section-py) * 0.75); }
.about-body {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.about-body p {
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 14px;
  text-wrap: pretty;
}
.about-stats {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--concrete);
  overflow: visible;
  white-space: nowrap;
}
.about-stat-line { display: inline-flex; align-items: baseline; gap: 6px; }
.about-stat-line strong { color: var(--red); font-weight: 600; letter-spacing: 0.1em; }
.about-stat-sep { color: var(--orange); }

/* How it works · equal-height cards */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
  align-items: stretch;
}
.process-step {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--graphite);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--t), transform var(--t);
}
.process-step:hover { border-color: var(--red); transform: translateY(-2px); }
.process-step .num {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 2.1rem;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.process-step h4 {
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.process-step p {
  color: rgba(245,242,237,0.72);
  font-size: 0.9rem;
  line-height: 1.55;
  text-wrap: pretty;
  flex: 1;
}
@media (max-width: 960px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}

/* Video blocks */
.video-block {
  max-width: 1000px;
  margin: 24px auto 0;
  text-align: center;
}
.featured-job .video-block { max-width: 1200px; }
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(45deg,
      var(--graphite), var(--graphite) 14px,
      var(--steel) 14px, var(--steel) 28px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px -12px rgba(0,0,0,0.5);
}
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--ink);
}
.video-wrap.fallback::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 10px 28px rgba(185,28,28,0.4);
}
.video-wrap.fallback::after {
  content: '';
  position: absolute;
  top: 50%; left: calc(50% + 4px);
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-left: 22px solid var(--white);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}
.video-wrap.fallback video { display: none; }
.video-caption {
  margin-top: 12px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}

/* Before / after slider */
.ba-caption {
  max-width: 1200px;
  margin: 0 auto 10px;
  padding: 0 0.25rem;
  text-align: center;
}
.ba-type {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.15rem;
  color: var(--paper);
}
.section-paper .ba-type { color: var(--ink); }

.ba-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}
.ba-slider-sm { aspect-ratio: 4 / 3; }
.ba-slider .pane { position: absolute; inset: 0; overflow: hidden; }
.ba-slider .pane img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-slider .pane.after { clip-path: inset(0 0 0 50%); }
.ba-slider .ba-label {
  position: absolute;
  top: 14px;
  background: rgba(11,11,13,0.75);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  z-index: 3;
  pointer-events: none;
}
.ba-label-before { left: 14px; }
.ba-label-after  { right: 14px; }

/* Handle · thin line + minimal rectangle grip */
.ba-slider .handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 4;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.ba-slider .handle-grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 32px;
  background: rgba(11,11,13,0.75);
  border: 1px solid var(--white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: background var(--t);
}
.ba-slider:hover .handle-grip { background: var(--red); }
.ba-slider .handle-grip svg { width: 10px; height: 10px; color: var(--white); }

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Gallery · constant drift, dot navigation */
.gallery-viewport {
  position: relative;
  overflow: hidden;
  margin: 24px auto 0;
  width: 100%;
}
.gallery-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
  transform: translateX(0);
}
.gallery-track.is-jumping {
  transition: transform 600ms var(--ease);
}
.gallery-track img {
  flex-shrink: 0;
  height: 360px;
  width: auto;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  background: var(--graphite);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  padding: 0 24px;
  flex-wrap: wrap;
}
.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245,242,237,0.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  flex-shrink: 0;
}
.gallery-dot:hover { background: rgba(245,242,237,0.55); }
.gallery-dot.is-active {
  background: var(--red);
  transform: scale(1.35);
}
@media (max-width: 720px) {
  .gallery-viewport { margin-top: 18px; }
  .gallery-track { gap: 10px; }
  .gallery-track img { height: 280px; }
  .gallery-dots { gap: 8px; margin-top: 18px; }
  .gallery-dot { width: 8px; height: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .gallery-track { transform: none !important; }
  /* Hide the duplicate set: only the 10 originals should be scrollable here.
     The duplicates exist solely for the RAF-driven seamless loop, which is off. */
  .gallery-track img[aria-hidden="true"] { display: none; }
  .gallery-dots { display: none; }
}

/* Colour guide */
.colour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.colour-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
  cursor: pointer;
}
.colour-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -18px rgba(0,0,0,0.22);
}
.colour-swatch {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
}
.colour-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
}
.colour-swatch[data-pale] { box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); }
.colour-meta {
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.colour-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.colour-hex {
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--concrete);
  margin-top: 2px;
}
.colour-tone {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--concrete);
  border: 1px solid var(--line);
  padding: 3px 6px;
  border-radius: 2px;
  flex-shrink: 0;
}
.colour-expand-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.colour-extra {
  overflow: hidden;
  transition: max-height 400ms var(--ease);
  max-height: 0;
  margin-top: 0;
}
.colour-extra[hidden] { display: block; max-height: 0; }
.colour-extra.open { max-height: 4000px; margin-top: 14px; }
.colour-cta-wrap { margin-top: 22px; text-align: center; }
.colour-cta-lead { font-size: 1.02rem; margin-bottom: 12px; color: var(--ink); }
.colour-disclaimer {
  max-width: 680px;
  margin: 16px auto 0;
  font-size: 0.85rem;
  color: var(--concrete);
  line-height: 1.55;
  text-wrap: pretty;
}

/* Guarantee */
.guarantee .section-head { margin-bottom: 22px; }
.guarantee-gauge {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
}
.gauge-svg { width: 100%; height: 100%; display: block; }
.gauge-track { stroke: var(--line); }
.gauge-arc {
  stroke: var(--red);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1500ms var(--ease);
}
.guarantee-gauge.animate .gauge-arc { stroke-dashoffset: 0; }
.gauge-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}
.gauge-num {
  font-family: 'Anton', sans-serif;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.gauge-unit {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-top: 0.2rem;
}
.gauge-sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 0.5rem;
}

/* Reviews carousel */
.reviews-carousel {
  position: relative;
  max-width: 1200px;
  margin: 24px auto 0;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 calc((100% / 3) - (40px / 3));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.review-stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 16px;
}
.review-stars svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}
.review-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  margin: 0 0 20px;
  text-wrap: pretty;
}
.review-divider {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--orange);
  margin-bottom: 12px;
}
.review-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.reviews-arrow:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.08);
}
.reviews-arrow svg { width: 18px; height: 18px; }
.reviews-arrow-prev { left: 8px; }
.reviews-arrow-next { right: 8px; }
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(138,135,131,0.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.review-dot:hover { transform: scale(1.2); background: rgba(138,135,131,0.55); }
.review-dot.is-active { background: var(--red); transform: scale(1.2); }
@media (max-width: 960px) {
  .review-card { flex: 0 0 85%; padding: 24px; }
  .reviews-arrow { display: none; }
  .reviews-carousel { overflow: visible; }
}

/* Areas */
.areas-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 1000px;
  margin: 0 auto 20px;
  text-align: center;
}
details.areas-col { margin: 0; }
details.areas-col > summary { list-style: none; cursor: default; }
details.areas-col > summary::-webkit-details-marker { display: none; }
.areas-col-title {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  color: var(--paper);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--steel);
}
.areas-col-count, .areas-col-chev { display: none; }
details.areas-col > ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
details.areas-col > ul li {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.88rem;
  color: var(--concrete);
}
details.areas-col > ul li::before {
  content: '/ ';
  color: var(--red);
  font-weight: 700;
}
.areas-cta { display: flex; justify-content: center; margin-top: 20px; }

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--t);
}
.faq-item[open] { border-color: var(--red); }
.faq-q {
  list-style: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  text-align: left;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .plus {
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.05rem;
  line-height: 1;
  transition: transform var(--t), background var(--t);
  flex-shrink: 0;
}
.faq-item[open] .faq-q .plus { transform: rotate(45deg); }
.faq-q:hover .plus { background: var(--red-deep); }
.faq-a {
  padding: 0 20px 18px;
  color: var(--concrete);
  font-size: 0.98rem;
  line-height: 1.65;
  text-align: left;
  text-wrap: pretty;
}

/* Quote form · restructured */
.quote-section { padding-bottom: 32px !important; }
.quote-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--graphite);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.honey-field,
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field > label { display: flex; flex-direction: column; gap: 0.4rem; cursor: text; margin: 0; padding: 0; }
.field > label.field-above { cursor: default; }
.field-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--paper);
}
.modal-card .field-label,
.lead-popup-form .field-label { color: var(--ink); }
.lead-popup-form .field-label { font-size: 0.72rem; }
.field-help {
  font-size: 0.78rem;
  color: rgba(245,242,237,0.6);
  line-height: 1.4;
  margin-top: -2px;
}
.modal-card .field-help,
.lead-popup-form .field-help { color: var(--concrete); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  transition: border-color var(--t), background var(--t);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(245,242,237,0.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--red);
  background: var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 8px; }
.form-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--concrete);
  text-align: center;
}

/* File dropzone */
.file-dropzone {
  display: block;
  border: 2px dashed var(--steel);
  border-radius: var(--radius);
  padding: 32px 16px;
  text-align: center;
  background: var(--ink);
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
}
.file-dropzone:hover {
  border-color: var(--red);
  background: rgba(185,28,28,0.04);
}
.file-dropzone.drag-over {
  border-color: var(--red);
  border-style: solid;
  background: rgba(185,28,28,0.08);
}
.file-dropzone-sm { padding: 20px 14px; }
.file-dropzone input[type="file"] { position: absolute; left: -10000px; opacity: 0; width: 1px; height: 1px; }
.dropzone-icon {
  width: 32px;
  height: 32px;
  color: rgba(245,242,237,0.55);
  margin: 0 auto 10px;
}
.dropzone-text {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.7);
}
.file-dropzone:hover .dropzone-icon,
.file-dropzone:hover .dropzone-text { color: var(--red); }

.dropzone-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.dropzone-previews:empty { display: none; }
.dropzone-preview {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--steel);
}
.dropzone-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.dropzone-preview button {
  position: absolute;
  top: 2px; right: 2px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 1;
  cursor: pointer;
}
.dropzone-preview button:hover { background: var(--red); }
.dropzone-error {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 500;
}

/* Modal card · file-dropzone variant on light bg */
.modal-card .file-dropzone {
  background: var(--white);
  border-color: var(--line);
}
.modal-card .file-dropzone:hover {
  background: rgba(185,28,28,0.04);
  border-color: var(--red);
}
.modal-card .dropzone-text { color: var(--concrete); }
.modal-card .dropzone-icon { color: var(--concrete); }

/* Footer · centred, bigger logo */
.footer {
  background: var(--ink);
  color: rgba(245,242,237,0.72);
  padding-top: 32px;
  padding-bottom: 48px;
}
.footer-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.footer-logo-link { display: inline-flex; }
.footer-logo {
  width: clamp(220px, 40vw, 320px);
  height: auto;
  display: block;
}
.footer-phone {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--red);
  text-transform: uppercase;
  transition: color var(--t), text-decoration-color var(--t);
  text-decoration-color: transparent;
}
.footer-phone:hover {
  color: var(--red-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--red-deep);
}
.footer-email {
  font-size: 0.95rem;
  color: var(--paper);
  transition: color var(--t);
}
.footer-email:hover { color: var(--red); }
.footer-creds {
  font-size: 0.85rem;
  color: var(--concrete);
  line-height: 1.5;
  max-width: 520px;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-meta p {
  font-size: 0.8rem;
  color: var(--concrete);
  line-height: 1.4;
}
.footer-credentials-line {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--concrete);
  text-align: center;
  line-height: 1.4;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--ink);
  border-radius: 50%;
  transition: background var(--t), transform var(--t);
}
.footer-social a:hover { background: var(--red-deep); transform: scale(1.05); }
.footer-social svg { width: 20px; height: 20px; }
.footer-line {
  width: 60px;
  height: 1px;
  background: var(--red);
  margin: 6px 0 2px;
}
.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--concrete);
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-cta .btn {
  flex: 1 1 0;
  min-width: 0;
  height: 56px;
  border-radius: 0;
  padding: 0 0.75rem;
  font-size: 0.82rem;
  box-shadow: none;
  min-height: 0;
}
.sticky-cta .btn-primary:hover { background: var(--red-deep); transform: none; box-shadow: none; }
.sticky-cta .btn-outline-light { border: 0; border-right: 1px solid rgba(255,255,255,0.15); }

/* Quote modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11,11,13,0.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: auto;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(24px, 4vw, 32px);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  animation: fadeUp 240ms var(--ease);
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 8px; right: 8px;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--ink);
  border-radius: 50%;
  transition: background var(--t);
}
.modal-close:hover { background: rgba(11,11,13,0.06); }
.modal-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.modal-sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 4px;
  margin-bottom: 18px;
  display: block;
}
.modal-card .field { text-align: left; }
.modal-card .field label { color: var(--ink); }
.modal-card .field input,
.modal-card .field select,
.modal-card .field textarea {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.modal-card .field input::placeholder, .modal-card .field textarea::placeholder { color: var(--concrete); }
.modal-quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.modal-open { overflow: hidden; }

/* LEAD-CAPTURE POPUP */
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
}
.lead-popup.open { display: flex; animation: popupFade 200ms var(--ease); }
.lead-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11,11,13,0.75);
  cursor: pointer;
}
.lead-popup-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  margin: auto;
  background: var(--paper);
  color: var(--ink);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
  text-align: center;
  animation: popupSlide 300ms var(--ease);
}
@media (max-width: 720px) {
  .lead-popup-card { padding: 28px 22px; max-width: 420px; width: calc(100% - 32px); }
}
.lead-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--concrete);
  border-radius: 50%;
  transition: color var(--t), background var(--t);
}
.lead-popup-close:hover { color: var(--ink); background: rgba(11,11,13,0.06); }
.lead-popup-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2rem);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.04);
}
.lead-popup-accent {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 12px;
}
.lead-popup-sub {
  font-size: 0.95rem;
  color: rgba(11,11,13,0.8);
  line-height: 1.5;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.lead-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.lead-popup-form .field label { color: var(--ink); font-size: 0.72rem; }
.lead-popup-form .field input,
.lead-popup-form .field select,
.lead-popup-form .field textarea {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 12px 14px;
}
.lead-popup-form .field input::placeholder { color: var(--concrete); }
.lead-popup-form .file-dropzone {
  background: var(--white);
  border-color: var(--line);
}
.lead-popup-form .file-dropzone .dropzone-icon,
.lead-popup-form .file-dropzone .dropzone-text { color: var(--concrete); }
.lead-popup-form .file-dropzone:hover {
  border-color: var(--red);
  background: rgba(185,28,28,0.04);
}
.lead-popup-submit,
.lead-popup-form .form-submit {
  width: 100%;
  height: 56px;
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.lead-popup-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 18px 0 14px;
}
.lead-popup-phone-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.lead-popup-or {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--concrete);
}
.lead-popup-phone {
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  color: var(--red);
  letter-spacing: 0.01em;
  transition: color var(--t);
}
.lead-popup-phone:hover { color: var(--red-deep); }
.lead-popup-footnote {
  font-size: 0.75rem;
  color: var(--concrete);
  font-style: italic;
  margin-top: 12px;
}
body.popup-open { overflow: hidden; }

@keyframes popupFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes popupSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Service-area / thanks */
.local-hero {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2rem, 6vw, 4rem) 0;
  text-align: center;
}
.breadcrumb {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245,242,237,0.6);
  margin-bottom: 1rem;
}
.breadcrumb .current { color: var(--red); }
.local-hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}
.local-hero .sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--red);
  margin-top: 10px;
}
.local-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  text-align: center;
}
.local-body .content { text-align: center; }
.local-body .content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.local-body .content h2:first-child { margin-top: 0; }
.local-body .content p { margin-bottom: 1rem; color: var(--ink); text-wrap: pretty; }
.local-body .sidebar {
  position: sticky;
  top: 100px;
  padding: 24px;
  background: var(--ink);
  color: var(--paper);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  text-align: center;
}

.thanks {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 3rem;
}
.thanks .check {
  width: 96px; height: 96px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.thanks .check svg { width: 48px; height: 48px; }
.thanks h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.thanks p {
  color: var(--concrete);
  max-width: 50ch;
  margin: 0 auto 14px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .announce-track, .ticker-track { animation: none !important; }
  .guarantee-gauge .gauge-arc { stroke-dashoffset: 0 !important; }
}

/* Responsive */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: span 2; }
  .ba-pair { grid-template-columns: 1fr; }
  .colour-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links, .nav-phone, .nav-cta .btn { display: none; }
  .nav-burger { display: grid; }
  .local-body { grid-template-columns: 1fr; }
  .local-body .sidebar { position: static; }
}

@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 64px; }

  .site-header .brand-logo { max-width: 220px; }
  .nav { padding: 20px 20px; gap: 1rem; }

  .announce-track span { font-size: 0.7rem; padding-inline: 0.85rem; letter-spacing: 0.15em; }

  .ticker { height: 40px; }
  .ticker-track span { font-size: 1rem; padding-inline: 0.6rem; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card {
    padding: 36px 16px 16px;
    min-height: 210px;
    background: var(--paper);
    color: var(--ink);
    border-color: var(--line);
  }
  .service-card h3 { color: var(--ink); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; margin-bottom: 8px; }
  .service-card.featured h3 { color: var(--ink); font-size: 0.95rem; }
  .service-card p { color: var(--concrete); font-size: 0.85rem; line-height: 1.45; font-family: 'Montserrat', sans-serif; }
  .service-card.featured p { color: var(--concrete); }
  .service-card .learn { font-size: 0.7rem; margin-top: 12px; }
  .service-card.featured { grid-column: auto; background: var(--paper); color: var(--ink); border-color: var(--line); }
  .service-tag {
    width: 45px;
    height: 45px;
    top: -12px;
    left: -12px;
    font-size: 0.55rem;
  }

  .about-stats {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    gap: 16px;
    padding-top: 14px;
    margin-top: 16px;
  }
  .about-stat-line strong { letter-spacing: 0.06em; }

  .process { grid-template-columns: 1fr 1fr; gap: 10px; }
  .process-step { padding: 14px; }
  .process-step .num { font-size: 1.5rem; margin-bottom: 5px; }
  .process-step h4 { font-size: 0.95rem; margin-bottom: 5px; }
  .process-step p { font-size: 0.8rem; line-height: 1.45; }

  .ba-slider .handle-grip { width: 36px; height: 28px; }

  .colour-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .guarantee-gauge { width: 180px; height: 180px; }
  .gauge-num { font-size: 3rem; }

  .areas-cols { display: block; max-width: 100%; text-align: left; }
  details.areas-col {
    border: 1px solid var(--steel);
    border-radius: var(--radius);
    margin-bottom: 10px;
    background: var(--graphite);
  }
  details.areas-col > summary {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
  }
  details.areas-col > summary .areas-col-title {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 0.9rem;
    text-align: left;
  }
  details.areas-col > summary .areas-col-count {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--concrete);
  }
  details.areas-col > summary .areas-col-chev {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--red);
    transition: transform 240ms var(--ease);
  }
  details.areas-col[open] > summary .areas-col-chev { transform: rotate(180deg); }
  details.areas-col[open] { border-color: var(--red); }
  details.areas-col > ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    padding: 4px 16px 14px;
    align-items: start;
    text-align: left;
  }
  details.areas-col > ul li { justify-self: start; }

  .quote-form { padding: 18px 16px; }
  .footer-logo { width: clamp(180px, 60vw, 240px); }
}

/* ==== MOBILE HERO · sub in top cluster, roof visible, CTAs alone at bottom ==== */
@media (max-width: 720px) {
  .hero {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    overflow: hidden;
  }
  .hero picture,
  .hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero .hero-bg {
    object-fit: cover;
    object-position: center 60%;
    display: block;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.55) 28%,
      rgba(0,0,0,0.15) 45%,
      rgba(0,0,0,0.15) 75%,
      rgba(0,0,0,0.65) 100%
    );
    z-index: 1;
  }
  .hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 32px 20px 32px;
  }
  .hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    margin: 0;
    white-space: nowrap;
  }
  .hero-headline {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1;
    margin: 0;
  }
  .hero-sub {
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 300px;
    margin: 0;
    color: var(--paper);
  }
  .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 280px;
  }
  .hero-ctas .btn,
  .hero-ctas a {
    width: 100%;
    height: 44px;
    min-height: 44px;
    min-width: 0;
    padding: 0 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* =========================================================
   HEATSHIELD · placeholders, badges, wordmark
   ========================================================= */

/* Generic placeholder block · diagonal stripes in ink/graphite */
.placeholder-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg,
      var(--ink), var(--ink) 18px,
      var(--graphite) 18px, var(--graphite) 36px);
  color: rgba(245,242,237,0.85);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius);
  overflow: hidden;
}
.placeholder-block .ph-label {
  background: rgba(11,11,13,0.78);
  padding: 8px 14px;
  border-radius: 2px;
  border: 1px solid rgba(245,242,237,0.18);
  white-space: nowrap;
}

/* Hero placeholder · sits in place of the .hero-bg image */
.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background:
    repeating-linear-gradient(45deg,
      var(--ink), var(--ink) 24px,
      var(--graphite) 24px, var(--graphite) 48px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-placeholder .ph-label {
  background: rgba(11,11,13,0.7);
  padding: 8px 14px;
  border-radius: 2px;
  border: 1px solid rgba(245,242,237,0.2);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.9);
  white-space: nowrap;
}

/* Hero copy · mobile/desktop variants */
.hero-sub-mobile { display: none; }
.hero-sub-desktop { display: block; }
@media (max-width: 720px) {
  .hero-sub-mobile { display: block; }
  .hero-sub-desktop { display: none; }
}

/* Before/after placeholder panes · concrete diagonal for before, deep red for after */
.ba-pane-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.85);
}
.ba-pane-placeholder.before {
  background:
    repeating-linear-gradient(45deg,
      #4D4A45, #4D4A45 18px,
      var(--concrete) 18px, var(--concrete) 36px);
}
.ba-pane-placeholder.after {
  background:
    repeating-linear-gradient(45deg,
      var(--red-deep), var(--red-deep) 18px,
      #2E0A0A 18px, #2E0A0A 36px);
}
.ba-pane-placeholder .ph-label {
  background: rgba(11,11,13,0.7);
  padding: 8px 14px;
  border-radius: 2px;
  border: 1px solid rgba(245,242,237,0.2);
}

/* Gallery placeholder tiles */
.gallery-track .gallery-tile {
  flex-shrink: 0;
  height: 360px;
  width: 480px;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg,
      var(--ink), var(--ink) 22px,
      var(--graphite) 22px, var(--graphite) 44px);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  pointer-events: none;
}
.gallery-track .gallery-tile span {
  background: rgba(11,11,13,0.78);
  padding: 8px 14px;
  border-radius: 2px;
  border: 1px solid rgba(245,242,237,0.18);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.85);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .gallery-track .gallery-tile { height: 280px; width: 360px; }
}

/* $1.50 per screw badge · sits below service title */
.service-badge {
  display: inline-block;
  margin-top: -2px;
  margin-bottom: 8px;
  padding: 4px 8px;
  background: var(--paper);
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid var(--line);
  line-height: 1;
}
@media (max-width: 720px) {
  .service-badge {
    font-size: 0.65rem;
    padding: 3px 6px;
  }
}

/* Heatshield wordmark footer logo */
.footer-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.footer-wordmark-main {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.04em;
  color: var(--paper);
  text-transform: uppercase;
  line-height: 1;
}
.footer-wordmark-sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
}

/* Header wordmark (for site-header brand area) */
.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.brand-wordmark-main {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--paper);
  text-transform: uppercase;
  line-height: 1;
}
.brand-wordmark-sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .brand-wordmark-main { font-size: 1.25rem; }
  .brand-wordmark-sub { font-size: 0.55rem; letter-spacing: 0.14em; }
}
.mobile-sheet .brand-wordmark-main { font-size: 1.4rem; }
