﻿/* jezstav — modern industrial service site */
:root {
  --ink: #111110;
  --charcoal: #1a1918;
  --steel: #2b2a28;
  --stone: #eceae6;
  --fog: #e2ded8;
  --white: #fafaf8;
  --copper: #c4783f;
  --copper-deep: #a35f2d;
  --copper-glow: #e0a06a;
  --muted: rgba(250, 250, 248, 0.78);
  --muted-ink: rgba(17, 17, 16, 0.7);
  --line: rgba(250, 250, 248, 0.12);
  --line-ink: rgba(17, 17, 16, 0.1);
  --radius: 2px;
  --radius-md: 12px;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --header-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --max: 1180px;
  --pad: clamp(1.25rem, 4vw, 2rem);
  --reveal-distance: 28px;
  --progress: 0%;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--stone);
  background-image:
    radial-gradient(ellipse 80% 50% at 0% -10%, rgba(196, 120, 63, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(43, 42, 40, 0.05), transparent 50%),
    linear-gradient(180deg, #f3f1ed 0%, var(--stone) 28%, #e8e5df 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  overscroll-behavior-x: none;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.45;
  animation: ambientDrift 22s ease-in-out infinite alternate;
}
body::before {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(196, 120, 63, 0.22), transparent 68%);
}
body::after {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  bottom: 12%;
  left: -8%;
  background: radial-gradient(circle, rgba(43, 42, 40, 0.12), transparent 70%);
  animation-delay: -11s;
  animation-direction: alternate-reverse;
}
body > * { position: relative; z-index: 1; }

/* Paint containment for below-the-fold sections */
.trust,
.services,
.work,
.why,
.process,
.quote,
.coverage-map,
.b2b-tracks,
.b2b-dir,
.b2b-resale,
.page-section,
.gallery,
.contact,
.emergency,
.cta-band {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}
.hero,
.page-hero {
  content-visibility: visible;
}

img, picture {
  max-width: 100%;
  height: auto;
}
.hero__media img,
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 300;
  pointer-events: none;
  background: rgba(17, 17, 16, 0.06);
}
.scroll-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: var(--progress);
  background: linear-gradient(90deg, var(--copper-deep), var(--copper-glow));
  box-shadow: 0 0 12px rgba(196, 120, 63, 0.45);
  transition: width 0.08s linear;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 0.45em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.5rem, 6.8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.015em;
}
h2 {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 600;
  line-height: 1.16;
}
h3 {
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
  max-width: 100%;
}

main,
.header,
.footer,
.page-section,
.coverage-map,
.b2b-resale,
.contact,
.why,
.process,
.services,
.trust,
.quote,
.emergency,
.gallery {
  max-width: 100%;
  overflow-x: clip;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  background: var(--copper);
  color: #fff;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.35s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease-out);
  z-index: -1;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(120%); }
.btn__icon { width: 1rem; height: 1rem; }
.btn:hover { transform: translateY(-2px); }
.btn--accent {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 10px 28px rgba(163, 95, 45, 0.28);
}
.btn--accent:hover {
  background: var(--copper-deep);
  box-shadow: 0 14px 34px rgba(163, 95, 45, 0.38);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn--lg { padding: 1.05rem 1.9rem; }
.btn--block { width: 100%; }

.text-link {
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
  transition: color 0.2s ease;
}
.text-link:hover { color: var(--copper-deep); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
  border-radius: 1px;
}
.eyebrow--light { color: var(--copper-glow); }

.section-head {
  max-width: 36rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.section-head h2 {
  position: relative;
  padding-bottom: 0.55rem;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--copper), rgba(196, 120, 63, 0.15));
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0);
}
.section-head h2.is-in::after {
  animation: lineGrow 0.9s var(--ease-out) forwards;
}
.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: end;
}
.section-head__text {
  color: var(--muted-ink);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}
.section-head--split .section-head__text { margin-top: 0; max-width: 38ch; }
.section-head--invert { color: #fff; }
.section-head--invert .section-head__text { color: var(--muted); }
@keyframes accentGrow {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  overflow: visible;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
.header.is-solid {
  background: rgba(240, 238, 235, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line-ink);
}
.header:not(.is-solid) { color: #fff; }
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}
.brand__logos {
  position: relative;
  display: grid;
  width: clamp(108px, 18vw, 132px);
  max-height: calc(var(--header-h) - 20px);
}
.brand__logo {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  max-height: calc(var(--header-h) - 20px);
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.brand__logo--white {
  opacity: 1;
  transition: opacity 0.25s ease;
}
.brand__logo--dark {
  opacity: 0;
  transition: opacity 0.25s ease;
}
.header.is-solid .brand__logo--white,
.header.is-open .brand__logo--white {
  opacity: 0;
}
.header.is-solid .brand__logo--dark,
.header.is-open .brand__logo--dark {
  opacity: 1;
}
.brand__logo--footer {
  width: clamp(140px, 22vw, 180px);
  height: auto;
}
.brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.brand__mark svg { width: 100%; height: 100%; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.hero__logo {
  width: min(220px, 55vw);
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__list { display: flex; gap: 1.75rem; }
.nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.82;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }
.nav a:hover { opacity: 1; }
.header.is-solid .nav a:hover { color: var(--copper-deep); }
.nav__cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 12px 10px;
  z-index: 2;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: currentColor;
  margin: 7px 0;
  transition: 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep plumber + pipes in frame (portrait photo in wide/tall viewports) */
  object-position: 42% 38%;
  transform: scale(1.06);
  animation: heroZoom 20s var(--ease) forwards;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 9, 8, 0.84) 0%, rgba(10, 9, 8, 0.48) 48%, rgba(10, 9, 8, 0.22) 100%),
    linear-gradient(0deg, rgba(10, 9, 8, 0.72) 0%, transparent 42%);
}
.hero__scrim::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(224, 160, 106, 0.06) 48%,
    transparent 66%
  );
  animation: lightSweep 9s ease-in-out infinite;
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(105deg, rgba(0, 0, 0, 0.85), transparent 70%);
  animation: gridPulse 12s ease-in-out infinite;
}
.hero__frame {
  position: absolute;
  inset: calc(var(--header-h) + 1.25rem) 1.25rem 1.25rem;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(224, 160, 106, 0.18);
  animation: frameGlow 6s ease-in-out infinite;
}
.hero__frame::before,
.hero__frame::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--copper-glow);
  border-style: solid;
}
.hero__frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}
.hero__frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}
.hero__deco {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: min(160px, 18vw);
  color: rgba(224, 160, 106, 0.55);
  z-index: 1;
  pointer-events: none;
  animation: decoFloat 8s ease-in-out infinite;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - (var(--pad) * 2), var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 0 clamp(4.5rem, 10vw, 7rem);
  max-width: 42rem;
  margin-left: max(var(--pad), calc((100% - var(--max)) / 2));
}
.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
}
.hero__title {
  margin-bottom: 1rem;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.hero__title::after {
  content: "";
  display: block;
  width: min(5.5rem, 30%);
  height: 3px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--copper), transparent);
  border-radius: 2px;
}
.hero__lead {
  color: var(--muted);
  max-width: 34ch;
  font-size: 1.1rem;
  line-height: 1.55;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: #fff;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes heroZoom { to { transform: scale(1); } }
@keyframes decoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(16px); }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(196, 120, 63, 0.2); opacity: 1; }
  50% { box-shadow: 0 0 0 7px rgba(196, 120, 63, 0.08); opacity: 0.85; }
}
@keyframes ambientDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(24px, -18px) scale(1.06); }
}
@keyframes lightSweep {
  0%, 100% { opacity: 0.35; transform: translateX(-8%); }
  50% { opacity: 0.85; transform: translateX(8%); }
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.18; }
  50% { opacity: 0.28; }
}
@keyframes frameGlow {
  0%, 100% { border-color: rgba(224, 160, 106, 0.14); box-shadow: inset 0 0 0 0 rgba(224, 160, 106, 0); }
  50% { border-color: rgba(224, 160, 106, 0.32); box-shadow: inset 0 0 40px rgba(224, 160, 106, 0.04); }
}
@keyframes shineSweep {
  0% { transform: translateX(-120%) skewX(-12deg); }
  100% { transform: translateX(220%) skewX(-12deg); }
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 120, 63, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(196, 120, 63, 0); }
}

.reveal-hero {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 1.05s var(--ease-out) forwards;
}
.reveal-hero:nth-child(1) { animation-delay: 0.08s; }
.reveal-hero:nth-child(2) { animation-delay: 0.2s; }
.reveal-hero:nth-child(3) { animation-delay: 0.32s; }
.reveal-hero:nth-child(4) { animation-delay: 0.44s; }
.reveal-hero:nth-child(5) { animation-delay: 0.56s; }
@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Marquee */
.marquee {
  background:
    linear-gradient(90deg, rgba(163, 95, 45, 0.22), transparent 28%),
    var(--copper);
  color: #fff;
  overflow: hidden;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 1;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--copper), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--copper), transparent);
}
.marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__sep {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  rotate: 45deg;
  background: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Trust */
.trust {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(196, 120, 63, 0.16), transparent 45%),
    radial-gradient(ellipse at 80% 100%, rgba(196, 120, 63, 0.08), transparent 40%),
    var(--ink);
  color: #fff;
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.trust__wrap {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}
.trust__head {
  max-width: 42rem;
  margin-bottom: 0;
}
.trust__head h2 { color: #fff; }
.trust__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.trust__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.4s var(--ease), border-color 0.3s ease, background 0.3s ease, box-shadow 0.4s ease;
}
.trust__item:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 160, 106, 0.35);
  background: rgba(196, 120, 63, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}
.trust__item:hover .trust__icon {
  animation: iconBounce 0.6s var(--ease-spring);
}
.trust__body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #fff;
  letter-spacing: 0;
}
.trust__body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}
.trust__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--copper-glow);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(196, 120, 63, 0.14);
  border: 1px solid rgba(224, 160, 106, 0.28);
}
.trust__icon svg { width: 24px; height: 24px; }
.trust strong {
  color: var(--copper-glow);
  font-weight: 700;
  margin-right: 0.2rem;
}
.trust__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust__stat {
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.trust__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--copper-glow);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.trust__stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Coverage map */
.coverage-map {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(196, 120, 63, 0.14), transparent 50%),
    linear-gradient(180deg, var(--ink) 0%, #121110 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.coverage-map__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.coverage-map__head h2 { color: #fff; }
.coverage-map__layout {
  display: grid;
  grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
}
.coverage-map__panel {
  display: grid;
  gap: 1.1rem;
  align-content: start;
  padding: 1.35rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 2;
}
.coverage-map__field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.coverage-map__field--suggest {
  position: relative;
  z-index: 5;
}
.coverage-map__field > span:first-child {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.coverage-map__input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  border-radius: var(--radius);
  font: inherit;
}
.coverage-map__input::placeholder { color: rgba(255, 255, 255, 0.35); }
.coverage-map__input:focus {
  outline: none;
  border-color: var(--copper);
}
.coverage-map__suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #1c1b19;
  border: 1px solid rgba(224, 160, 106, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  max-height: 260px;
  overflow: auto;
  z-index: 20;
}
.coverage-map__suggest-item {
  display: grid;
  gap: 0.15rem;
  padding: 0.7rem 0.8rem;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.72);
  transition: background 0.15s ease, color 0.15s ease;
}
.coverage-map__suggest-item strong {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
.coverage-map__suggest-item span {
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--muted);
}
.coverage-map__suggest-item:hover,
.coverage-map__suggest-item.is-active {
  background: rgba(196, 120, 63, 0.18);
  color: #fff;
}
.coverage-map__status {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.9rem;
  color: var(--copper-glow);
}
.coverage-map__result {
  padding: 1.25rem;
  background: rgba(196, 120, 63, 0.1);
  border: 1px solid rgba(224, 160, 106, 0.28);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.coverage-map__result.is-shown {
  opacity: 1;
  transform: translateY(0);
}
.coverage-map__result-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-glow);
}
.coverage-map__result-price {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.coverage-map__result-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0 0 1rem;
}
.coverage-map__result-meta div {
  padding: 0.65rem 0.75rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.coverage-map__result-meta dt {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.coverage-map__result-meta dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}
.coverage-map__result-note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
.coverage-map__cta { width: 100%; }
.coverage-map__legend {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.coverage-map__legend-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.86rem;
  color: var(--muted);
  opacity: 0.7;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.coverage-map__legend-item.is-active {
  opacity: 1;
  color: #fff;
}
.coverage-map__legend-item strong {
  color: #fff;
  font-weight: 600;
}
.coverage-map__legend-item em {
  font-style: normal;
  opacity: 0.65;
  font-size: 0.82em;
}
.coverage-map__legend-dot {
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--copper);
  opacity: calc(1 - var(--zone-i, 0) * 0.15);
  box-shadow: 0 0 0 2px rgba(196, 120, 63, 0.25);
}
.coverage-map__loading {
  display: grid;
  place-items: center;
  min-height: 420px;
  color: var(--muted);
  font-size: 0.9rem;
}
.coverage-map__canvas {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.coverage-map__stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  aspect-ratio: 860 / 500;
}
.coverage-map__svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  cursor: grab;
  touch-action: none;
}
.coverage-map__svg.is-dragging { cursor: grabbing; }
.coverage-map__viewport {
  transform-origin: 0 0;
  will-change: transform;
}
.coverage-map__controls {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  display: grid;
  gap: 0.4rem;
  z-index: 3;
}
.coverage-map__zoom {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 19, 18, 0.88);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.coverage-map__zoom:hover {
  border-color: var(--copper);
  color: var(--copper-glow);
  background: rgba(40, 32, 26, 0.95);
}
.coverage-map__zoom--reset { font-size: 1rem; }
.coverage-map__city {
  font-family: var(--font-body);
  font-size: 11px;
  fill: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  pointer-events: none;
}
.coverage-map__city--hub {
  fill: var(--copper-glow);
  font-weight: 700;
  font-size: 12px;
}
.coverage-map__hub-pulse {
  pointer-events: none;
}
.coverage-map__zone {
  transition: stroke-opacity 0.35s ease, stroke-width 0.35s ease, fill-opacity 0.35s ease;
}
.coverage-map__zone.is-active {
  stroke-opacity: 0.85;
  stroke-width: 2;
}
.coverage-map__route .coverage-map__line {
  transition: none;
}
.coverage-map__dest,
.coverage-map__dest-ring {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0.85;
}
.coverage-map__dest.is-pop {
  animation: coverageDestPop 0.55s ease forwards;
}
.coverage-map__dest-ring.is-pop {
  animation: coverageDestRing 1.2s ease forwards;
}
@keyframes coverageDestPop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes coverageDestRing {
  0% { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}
.coverage-map__disclaimer {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.75;
  max-width: 62ch;
}
@media (prefers-reduced-motion: reduce) {
  .coverage-map__hub-pulse,
  .coverage-map__dest.is-pop,
  .coverage-map__dest-ring.is-pop { animation: none; }
  .coverage-map__result { opacity: 1; transform: none; transition: none; }
}

/* Service tiles */
.services {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(196, 120, 63, 0.12), transparent 45%),
    radial-gradient(ellipse at 0% 80%, rgba(17, 17, 16, 0.04), transparent 40%),
    transparent;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.service-tile {
  position: relative;
  display: grid;
  grid-template-rows: 220px 1fr;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line-ink);
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: transform 0.45s var(--ease), box-shadow 0.45s ease, border-color 0.3s ease;
}
.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.22) 50%, transparent 75%);
  transform: translateX(-120%) skewX(-12deg);
  transition: none;
  pointer-events: none;
  z-index: 3;
}
.service-tile:hover::after {
  animation: shineSweep 0.85s var(--ease-out);
}
.service-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--copper), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.service-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.12);
  border-color: rgba(196, 120, 63, 0.28);
}
.service-tile:hover::before { opacity: 1; }
.service-tile__media {
  position: relative;
  overflow: hidden;
  background: var(--steel);
}
.service-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s ease;
  filter: saturate(0.92);
}
.service-tile:hover .service-tile__media img {
  transform: scale(1.07);
  filter: saturate(1.05);
}
.service-tile__icon {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(17, 17, 16, 0.72);
  color: var(--copper-glow);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(224, 160, 106, 0.25);
  transition: transform 0.35s var(--ease), background 0.25s ease;
}
.service-tile:hover .service-tile__icon {
  transform: scale(1.06);
  background: rgba(17, 17, 16, 0.88);
}
.service-tile__icon svg { width: 28px; height: 28px; }
.service-tile__body {
  position: relative;
  padding: 1.35rem 1.35rem 1.5rem;
  display: grid;
  gap: 0.35rem;
  overflow: hidden;
}
.service-tile__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0.06em;
}
.service-tile__body::after {
  content: attr(data-num);
  position: absolute;
  right: -0.1rem;
  bottom: -0.55rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(17, 17, 16, 0.045);
  pointer-events: none;
  user-select: none;
}
.service-tile__body h3 { margin: 0; }
.service-tile__body p {
  color: var(--muted-ink);
  font-size: 0.95rem;
}

/* Work */
.work { background: var(--charcoal); }
.work__panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: min(72vh, 640px);
}
.work__panel--light {
  background: var(--fog);
  color: var(--ink);
}
.work__panel--dark { color: #fff; }
.work__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.work__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.work__panel:hover .work__media img { transform: scale(1.04); }
.work__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  background: rgba(17, 17, 16, 0.78);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.work__badge svg { width: 14px; height: 14px; color: var(--copper-glow); }
.work__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4.5rem);
}
.work__copy > p:not(.eyebrow) {
  margin: 0.5rem 0 1.25rem;
  max-width: 34ch;
  opacity: 0.78;
}
.work__points {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
}
.work__points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  opacity: 0.85;
}
.work__points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}
.work__panel--light .text-link { color: var(--ink); }
.work__panel--dark .text-link { color: #fff; }

/* Gallery bento */
.gallery {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  background: var(--stone);
}
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 220px;
  gap: 0.85rem;
}
.bento__item {
  position: relative;
  overflow: hidden;
  background: var(--steel);
}
.bento__item--lg {
  grid-row: 1 / 3;
}
.bento__item--wide {
  grid-column: 2 / 4;
}
.bento__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.bento__item:hover img { transform: scale(1.05); }
.bento__item figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.7rem;
  background: rgba(17, 17, 16, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

/* Why */
.why {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(196, 120, 63, 0.08), transparent 40%),
    linear-gradient(160deg, #ebe6df 0%, #f2efe9 55%, #e7e1d8 100%);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.why__item {
  padding: 1.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 17, 16, 0.06);
  border-top: 2px solid var(--copper);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease, background 0.25s ease, border-color 0.3s ease;
}
.why__item--link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.why__item--link:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}
.why__item:hover,
.why__item--link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(196, 120, 63, 0.22);
}
.why__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--copper-deep);
  letter-spacing: 0.02em;
}
.why__arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.why__item--link:hover .why__arrow {
  transform: translateX(4px);
}
.why__item--link:hover .why__link {
  color: var(--copper);
}
.why__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--copper-deep);
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(196, 120, 63, 0.1);
  border: 1px solid rgba(196, 120, 63, 0.2);
}
.why__icon svg { width: 24px; height: 24px; }
.why__item p {
  color: var(--muted-ink);
  font-size: 0.95rem;
}

/* Process */
.process {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(196, 120, 63, 0.18), transparent 65%);
  pointer-events: none;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(196, 120, 63, 0.35) 10%, rgba(196, 120, 63, 0.35) 90%, transparent);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.4s var(--ease-out);
}
.steps.is-in::before { transform: scaleX(1); }
.steps__item { position: relative; padding-right: 1rem; }
.steps__item.is-in .steps__visual {
  animation: stepPulse 2.4s ease-in-out infinite;
}
.steps__visual {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  border: 1px solid rgba(196, 120, 63, 0.4);
  border-radius: 50%;
  color: var(--copper-glow);
  background: rgba(196, 120, 63, 0.08);
}
.steps__visual svg { width: 40px; height: 40px; }
.steps__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}
.steps__item h3 { margin-bottom: 0.4rem; }
.steps__item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Quote */
.quote {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(196, 120, 63, 0.08), transparent 42%),
    var(--stone);
}
.quote__head {
  max-width: none;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.quote__summary {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding: 1.15rem 1.35rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line-ink);
  width: fit-content;
}
.quote__summary-score {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--copper-deep);
  letter-spacing: -0.03em;
  line-height: 1;
}
.quote__summary-score small {
  font-size: 0.45em;
  color: var(--muted-ink);
  font-weight: 600;
}
.quote__summary-meta {
  display: grid;
  gap: 0.2rem;
  font-size: 0.88rem;
  color: var(--muted-ink);
}
.quote__summary-stars {
  color: var(--copper);
  letter-spacing: 0.15em;
  font-size: 0.95rem;
}
.quote__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.quote__visual {
  overflow: hidden;
  min-height: 360px;
  background: var(--steel);
  border: 1px solid var(--line-ink);
}
.quote__visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}
.quote__featured {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--line-ink);
  border-top: 3px solid var(--copper);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}
.quote__stars {
  color: var(--copper);
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.quote__featured blockquote p,
.quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 0;
}
.quote__layout.is-in .quote__featured blockquote p {
  animation: rise 1s var(--ease-out) both;
}
.quote cite {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--muted-ink);
}
.quote__cite-text {
  display: grid;
  gap: 0.35rem;
}
.quote__cite-text strong {
  color: var(--ink);
  font-weight: 600;
}
.quote__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.quote__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.quote-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-ink);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.25s ease;
}
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(196, 120, 63, 0.25);
}
.quote-card__stars {
  color: var(--copper);
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}
.quote-card blockquote p {
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--ink);
}
.quote-card__foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.quote-card__foot cite {
  margin: 0;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.quote-card__foot .quote__avatar {
  width: 40px;
  height: 40px;
  font-size: 0.7rem;
}
.quote-card__tag {
  display: inline-block;
  padding: 0.22rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-deep);
  background: rgba(196, 120, 63, 0.1);
  border: 1px solid rgba(196, 120, 63, 0.2);
  width: fit-content;
}

/* Pricing */
.pricing {
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--stone);
}
.pricing__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--line-ink);
}
.pricing__layout > div > p:not(.eyebrow) {
  color: var(--muted-ink);
  margin-bottom: 1.5rem;
  max-width: 32ch;
}
.pricing__list li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-ink);
  font-size: 0.98rem;
}
.pricing__list li:first-child { border-top: 1px solid var(--line-ink); }
.pricing__icon {
  width: 24px;
  height: 24px;
  color: var(--copper);
}
.pricing__icon svg { width: 100%; height: 100%; }
.pricing__list strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--copper-deep);
  white-space: nowrap;
}

/* Emergency */
.emergency {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
  background: transparent;
}
.emergency__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 2.75rem);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(17, 17, 16, 0.9), rgba(17, 17, 16, 0.72)),
    url("https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?auto=format&fit=crop&w=1400&q=70") center/cover;
  color: #fff;
  border: 1px solid rgba(224, 160, 106, 0.2);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}
.emergency__inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--copper-glow), var(--copper-deep));
}
.emergency__inner::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(224, 160, 106, 0.2);
  border-radius: 50%;
  pointer-events: none;
  animation: decoFloat 10s ease-in-out infinite;
}
.emergency__copy { position: relative; z-index: 1; }
.emergency__copy h2 { margin-bottom: 0.4rem; }
.emergency__copy p:not(.eyebrow) {
  color: var(--muted);
  max-width: 36ch;
  margin: 0;
}

/* Contact */
.contact {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  background: linear-gradient(155deg, #161412 0%, var(--charcoal) 50%, #0f0e0d 100%);
  color: #fff;
}
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact__intro h2 { max-width: 10ch; }
.contact__intro > p {
  color: var(--muted);
  max-width: 32ch;
}
.contact__phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 1.75rem 0 0.35rem;
  color: var(--copper-glow);
  transition: letter-spacing 0.35s var(--ease);
}
.contact__phone:hover { letter-spacing: 0.02em; }
.contact__mail {
  opacity: 0.65;
  font-size: 0.95rem;
}
.contact__mail:hover { opacity: 1; color: var(--copper-glow); }
.contact__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.contact__chips span {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__form {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
}
.contact__form label { display: grid; gap: 0.4rem; }
.contact__form label span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
}
.contact__form input,
.contact__form textarea,
.contact__form select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  font: inherit;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.contact__form select option {
  color: #111;
  background: #fff;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: rgba(255, 255, 255, 0.32); }
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--copper);
}
.form-note {
  min-height: 1.2em;
  font-size: 0.9rem;
  color: var(--copper-glow);
}

/* Footer */
.footer {
  background: #0a0908;
  color: #fff;
  padding: clamp(3rem, 6vw, 4rem) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.footer__brand {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}
.footer__brand .brand--footer {
  display: inline-flex;
  width: fit-content;
}
.footer__brand-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.footer__tag {
  margin: 0;
  opacity: 0.62;
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 28ch;
}
.brand--footer { color: #fff; }
.footer h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-glow);
  margin-bottom: 1rem;
}
.footer ul li {
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  opacity: 0.72;
}
.footer ul li:last-child { margin-bottom: 0; }
.footer a {
  transition: opacity 0.2s ease, color 0.2s ease;
}
.footer a:hover { opacity: 1; color: var(--copper-glow); }
.footer__bottom {
  padding: 1.15rem 0 1.35rem;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.footer__copy {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.55;
}
.footer__mescon {
  display: inline-flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity 0.25s ease;
}
.footer__mescon:hover { opacity: 1; }
.footer__mescon img {
  display: block;
  height: 20px;
  width: auto;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.82rem;
}
.footer__social a {
  opacity: 0.55;
}
.footer__social a:hover {
  opacity: 1;
  color: var(--copper-glow);
}

/* FAB */
.fab {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--copper);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s var(--ease), background 0.2s ease, box-shadow 0.35s ease;
  animation: pulseDot 3s ease-in-out infinite;
}
.fab svg { width: 22px; height: 22px; }
.fab:hover {
  transform: scale(1.06);
  background: var(--copper-deep);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(var(--reveal-distance, 28px)) scale(0.99);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}
[data-reveal="left"] {
  transform: translateX(calc(var(--reveal-distance, 28px) * -1)) translateY(12px) scale(0.99);
}
[data-reveal="right"] {
  transform: translateX(var(--reveal-distance, 28px)) translateY(12px) scale(0.99);
}
[data-reveal="scale"] {
  transform: scale(0.94);
}
[data-reveal].is-in,
[data-reveal="left"].is-in,
[data-reveal="right"].is-in,
[data-reveal="scale"].is-in {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
.trust__inner .trust__item:nth-child(odd) { --reveal-distance: 22px; }
.trust__inner .trust__item:nth-child(even) { --reveal-distance: 28px; }
.service-grid .service-tile:nth-child(3n+1) { transition-delay: 0ms; }
.service-grid .service-tile:nth-child(3n+2) { transition-delay: 80ms; }
.service-grid .service-tile:nth-child(3n) { transition-delay: 160ms; }
.why__grid .why__item:nth-child(odd) { --reveal-distance: 24px; }
.work__panel:nth-child(even) [data-reveal] { --reveal-dir: right; }
.work__panel:nth-child(odd) [data-reveal] { --reveal-dir: left; }
html:not(.js-ready) [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (max-width: 820px) {
  [data-reveal="left"],
  [data-reveal="right"] {
    transform: translateY(var(--reveal-distance, 20px)) scale(0.99);
  }
  [data-reveal="left"].is-in,
  [data-reveal="right"].is-in {
    transform: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .steps::before { display: none; }
  .section-head--split,
  .trust__inner,
  .trust__stats,
  .quote__grid,
  .why__grid,
  .steps,
  .footer__grid,
  .quote__layout,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 200px 200px;
  }
  .bento__item--lg {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 260px;
  }
  .bento__item--wide { grid-column: 1 / -1; }
  .work__panel,
  .work__panel--light { grid-template-columns: 1fr; }
  .work__panel--light .work__media { order: -1; }
  .pricing__layout,
  .contact__layout,
  .coverage-map__layout { grid-template-columns: 1fr; }
  .coverage-map__canvas,
  .coverage-map__stage { min-height: 300px; }
  .coverage-map__svg { min-height: 280px; }
  .coverage-map__panel { z-index: 4; }
  .emergency__inner { flex-direction: column; align-items: flex-start; }
  .hero__deco,
  .hero__frame { display: none; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    margin: 0;
    padding: calc(var(--header-h) + 1.5rem) var(--pad) 2rem;
    background: var(--ink);
    color: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.35s var(--ease);
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__list {
    flex-direction: column;
    gap: 1.25rem;
  }
  .nav a {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    opacity: 1;
  }
  .header:not(.is-solid) .nav-toggle { color: #fff; }
  .header.is-solid .nav-toggle { color: var(--ink); }
  .header.is-open { color: #fff; }
  .header.is-open .nav-toggle { color: #fff; }
}

@media (max-width: 640px) {
  :root {
    --pad: 1.1rem;
    --reveal-distance: 16px;
  }
  body {
    background-attachment: scroll;
    font-size: 1.05rem;
  }
  body::before,
  body::after {
    width: min(280px, 60vw);
    height: min(280px, 60vw);
    opacity: 0.22;
    animation: none;
    filter: blur(60px);
  }
  .hero__grid,
  .hero__grain,
  .hero__frame,
  .hero__deco {
    display: none !important;
  }
  .marquee__track {
    animation-duration: 48s;
  }
  .trust__inner,
  .trust__stats,
  .quote__grid,
  .why__grid,
  .steps,
  .footer__grid,
  .service-grid,
  .section-head--split,
  .quote__layout,
  .bento,
  .pricing__list li {
    grid-template-columns: 1fr;
  }
  .pricing__list strong {
    white-space: normal;
    justify-self: start;
  }
  .quote__summary {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .bento {
    grid-template-rows: none;
  }
  .bento__item,
  .bento__item--lg,
  .bento__item--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }
  .trust__inner { gap: 1rem; }
  .hero { align-items: center; }
  .hero__media img {
    object-position: 38% 32%;
  }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(10, 9, 8, 0.35) 0%, rgba(10, 9, 8, 0.78) 48%, rgba(10, 9, 8, 0.92) 100%);
  }
  .hero__content {
    width: calc(100% - (var(--pad) * 2));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .page-hero__content {
    width: calc(100% - (var(--pad) * 2));
    max-width: none;
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__scroll { display: none; }
  .service-tile { grid-template-rows: 180px 1fr; }
  .filter-bar,
  .b2b-dir__filters,
  .contact__chips {
    max-width: 100%;
  }
  .price-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .coverage-map__canvas,
  .coverage-map__stage {
    min-height: 260px;
    aspect-ratio: auto;
    width: 100%;
  }
  .coverage-map__svg {
    min-height: 240px;
    max-width: 100%;
  }
  .b2b-card__head {
    flex-wrap: wrap;
  }
  .cta-band,
  .emergency__inner {
    max-width: 100%;
  }
  h1 { font-size: clamp(2rem, 9vw, 2.75rem); }
  h2 { font-size: clamp(1.55rem, 6.5vw, 2.1rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::before,
  body::after,
  .hero__media img,
  .reveal-hero,
  [data-reveal],
  .hero__scroll span,
  .work__media img,
  .marquee__track,
  .hero__deco,
  .hero__scrim::before,
  .hero__grid,
  .hero__frame,
  .cta-band::after,
  .service-tile__media img,
  .service-tile::after,
  .bento__item img,
  .fab,
  .steps__item.is-in .steps__visual {
    animation: none !important;
    transition: none !important;
  }
  .reveal-hero,
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .marquee__track { transform: none; }
  .steps::before { transform: scaleX(1); }
  .section-head h2::after,
  .hero__title::after,
  .page-hero__content h1::after,
  .hero__kicker::before,
  .btn::after {
    animation: none !important;
    transition: none !important;
  }
  .scroll-progress::after { transition: none; }
}

/* ========== Multi-page ========== */
.nav a.is-active {
  opacity: 1;
  color: var(--copper-deep);
}
.header:not(.is-solid) .nav a.is-active {
  color: var(--copper-glow);
}

.page-hero {
  position: relative;
  min-height: min(52vh, 480px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  padding-top: var(--header-h);
}
.page-hero__media {
  position: absolute;
  inset: 0;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) forwards;
}
.page-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 9, 8, 0.88) 0%, rgba(10, 9, 8, 0.55) 55%, rgba(10, 9, 8, 0.35) 100%),
    linear-gradient(0deg, rgba(10, 9, 8, 0.55), transparent 50%);
}
.page-hero__scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 75%);
  pointer-events: none;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--pad) * 2), var(--max));
  max-width: 100%;
  margin: 0 auto;
  padding: 3.5rem 0 3rem;
}
.page-hero__content h1 {
  max-width: 16ch;
  margin-bottom: 0.65rem;
}
.page-hero__content h1::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  margin-top: 0.9rem;
  background: linear-gradient(90deg, var(--copper), transparent);
  border-radius: 2px;
}
.page-hero__content p {
  color: var(--muted);
  max-width: 42ch;
  margin: 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--copper-glow); opacity: 1; }
.breadcrumb span[aria-hidden] { opacity: 0.5; }

.page-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.page-section--alt {
  background: linear-gradient(160deg, #ebe6df 0%, #f2efe9 55%, #e7e1d8 100%);
}
.page-section--dark {
  background: var(--ink);
  color: #fff;
}

.detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.detail:last-child { margin-bottom: 0; }
.detail--flip .detail__media { order: 2; }
.detail--flip .detail__copy { order: 1; }
.detail__media {
  overflow: hidden;
  min-height: 320px;
  background: var(--steel);
}
.detail__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.detail__copy h2 { margin-bottom: 0.75rem; }
.detail__copy > p {
  color: var(--muted-ink);
  margin-bottom: 1.25rem;
}
.page-section--dark .detail__copy > p { color: var(--muted); }
.detail__list {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.detail__list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.detail__list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

.prose {
  max-width: 62ch;
}
.prose p {
  color: var(--muted-ink);
  margin-bottom: 1.1rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.stats__item {
  padding: 1.35rem 1.1rem;
  background: rgba(255, 255, 255, 0.55);
  border-top: 2px solid var(--copper);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease, background 0.3s ease;
}
.stats__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.82);
}
.stats__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--copper-deep);
  margin-bottom: 0.25rem;
  font-variant-numeric: tabular-nums;
}
.stats__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted-ink);
}

.faq { display: grid; gap: 0; border-top: 1px solid var(--line-ink); }
.faq__item { border-bottom: 1px solid var(--line-ink); }
.faq__item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}
.faq__item button span {
  font-size: 1.4rem;
  color: var(--copper);
  line-height: 1;
}
.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s ease;
}
.faq__item.is-open .faq__panel {
  max-height: 240px;
  padding-bottom: 1.2rem;
}
.faq__panel p {
  color: var(--muted-ink);
  max-width: 60ch;
  margin: 0;
}

.cta-band {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(196, 120, 63, 0.28), transparent 50%),
    var(--charcoal);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(224, 160, 106, 0.08) 50%, transparent 60%);
  animation: lightSweep 8s ease-in-out infinite;
  pointer-events: none;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgba(224, 160, 106, 0.16);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin: 0 0 0.35rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-band p { margin: 0; color: var(--muted); }

.price-table {
  background: #fff;
  border: 1px solid var(--line-ink);
}
.price-table__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line-ink);
}
.price-table__row:last-child { border-bottom: 0; }
.price-table__row strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--copper-deep);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.price-table__row p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted-ink);
}
.price-table__head {
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.price-table__head strong { color: #fff; font-size: 0.72rem; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.filter-bar a,
.filter-bar span {
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line-ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.filter-bar a:hover,
.filter-bar a.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line-ink);
  overflow: hidden;
}
.team-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--steel);
}
.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__body { padding: 1.2rem 1.25rem 1.4rem; }
.team-card__body p {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--muted-ink);
}

@media (max-width: 980px) {
  .detail,
  .detail--flip,
  .stats,
  .team-grid,
  .price-table__row {
    grid-template-columns: 1fr;
  }
  .detail--flip .detail__media,
  .detail--flip .detail__copy { order: unset; }
  .detail--flip .detail__media { order: -1; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

/* CMS edit mode (admin preview) */
.cms-edit [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.cms-edit .reveal-hero {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
.cms-edit .cms-block {
  position: relative;
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: outline-color 0.2s ease;
  cursor: pointer;
}
.cms-edit .cms-block:hover {
  outline-color: rgba(196, 120, 63, 0.55);
}
.cms-edit .cms-block.is-selected {
  outline-color: var(--copper);
}
.cms-edit .cms-block.is-selected::before {
  content: attr(data-block-type);
  position: absolute;
  z-index: 40;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.28rem 0.55rem;
  background: var(--copper);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}
.cms-edit a,
.cms-edit button {
  pointer-events: none;
}

/* B2B partnership */
.b2b-tracks__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.b2b-track {
  padding: 1.4rem 1.35rem 1.5rem;
  border: 1px solid var(--line-ink);
  background:
    linear-gradient(160deg, rgba(196, 120, 63, 0.06), transparent 55%),
    #fff;
  display: grid;
  gap: 0.75rem;
  align-content: start;
  min-height: 100%;
}
.b2b-track__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.b2b-track__num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: -0.02em;
}
.b2b-track__badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(196, 120, 63, 0.12);
  padding: 0.35rem 0.55rem;
}
.b2b-track h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.b2b-track > p {
  margin: 0;
  color: var(--muted-ink);
  line-height: 1.55;
  font-size: 0.95rem;
}
.b2b-track__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.b2b-track__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: var(--ink);
}
.b2b-track__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--copper);
}
.b2b-dir__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.b2b-dir__chip {
  border: 1px solid var(--line-ink);
  background: #fff;
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.b2b-dir__chip:hover,
.b2b-dir__chip.is-active {
  border-color: var(--copper);
  background: rgba(196, 120, 63, 0.1);
  color: var(--ink);
}
.b2b-dir__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 1.25rem;
  align-items: start;
}
.b2b-dir__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.b2b-card {
  padding: 1.25rem;
  border: 1px solid var(--line-ink);
  background: #fff;
  display: grid;
  gap: 0.75rem;
}
.b2b-card--featured {
  border-color: rgba(196, 120, 63, 0.45);
  background:
    linear-gradient(145deg, rgba(196, 120, 63, 0.1), transparent 50%),
    #fff;
}
.b2b-card.is-hidden { display: none; }
.b2b-card__head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: start;
}
.b2b-card__role {
  margin: 0 0 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
}
.b2b-card h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.b2b-card__agency {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: var(--muted-ink);
}
.b2b-card__region {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line-ink);
  color: var(--muted-ink);
}
.b2b-card__focus {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}
.b2b-card__note {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted-ink);
  line-height: 1.45;
}
.b2b-card__contacts {
  display: grid;
  gap: 0.35rem;
}
.b2b-card__link {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}
.b2b-card__link:hover { color: var(--copper); }
.b2b-card__cta {
  justify-self: start;
  margin-top: 0.25rem;
}
.b2b-dir__join {
  padding: 1.4rem;
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 0.85rem;
  align-content: start;
  position: sticky;
  top: 5.5rem;
}
.b2b-dir__join h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}
.b2b-dir__join p { margin: 0; color: rgba(255,255,255,0.72); line-height: 1.55; }
.b2b-dir__note {
  margin: 1.25rem 0 0;
  font-size: 0.84rem;
  color: var(--muted-ink);
  max-width: 70ch;
}
.b2b-resale {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(196, 120, 63, 0.16), transparent 45%),
    linear-gradient(180deg, #141312 0%, var(--ink) 100%);
  color: #fff;
}
.b2b-resale__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.b2b-resale__point {
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.b2b-resale__point h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}
.b2b-resale__point p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
  font-size: 0.92rem;
}
.b2b-resale__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.b2b-resale__box {
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.22);
}
.b2b-resale__box--accent {
  border-color: rgba(224, 160, 106, 0.35);
  background: rgba(196, 120, 63, 0.12);
}
.b2b-resale__box h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}
.b2b-resale__box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.b2b-resale__box ul li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.b2b-resale__box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--copper-glow);
}
.b2b-resale__steps {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}
.b2b-resale__steps li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.75rem;
  align-items: start;
}
.b2b-resale__steps span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--copper-glow);
}
.b2b-resale__steps strong {
  display: block;
  margin-bottom: 0.2rem;
}
.b2b-resale__steps p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (max-width: 980px) {
  .b2b-tracks__grid,
  .b2b-resale__points,
  .b2b-resale__split,
  .b2b-dir__layout,
  .b2b-dir__grid {
    grid-template-columns: 1fr;
  }
  .b2b-dir__join { position: static; }
}
@media (min-width: 700px) and (max-width: 980px) {
  .b2b-tracks__grid,
  .b2b-dir__grid,
  .b2b-resale__points {
    grid-template-columns: 1fr 1fr;
  }
}
