/* Heritage Plumbing & Drain — 2026 */

:root {
  --ink: #161310;
  --ink-soft: #3a342c;
  --paper: #f3eee6;
  --paper-2: #e8e1d6;
  --cream: #faf7f2;
  --brass: #9c6b32;
  --brass-2: #b88445;
  --brass-pale: #d4b48a;
  --urgent: #b42318;
  --line: rgba(22, 19, 16, 0.12);
  --white: #fff;

  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: "Source Sans 3", "Source Sans Pro", "Segoe UI", sans-serif;

  --fs-xs: clamp(0.7rem, 0.66rem + 0.18vw, 0.78rem);
  --fs-sm: clamp(0.84rem, 0.8rem + 0.2vw, 0.95rem);
  --fs-md: clamp(1rem, 0.94rem + 0.28vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 1.02rem + 0.45vw, 1.35rem);
  --fs-xl: clamp(1.4rem, 1.15rem + 1vw, 2rem);
  --fs-2xl: clamp(1.85rem, 1.35rem + 2vw, 3.15rem);
  --fs-3xl: clamp(2.4rem, 1.55rem + 3.4vw, 5.1rem);

  --pad: clamp(1.25rem, 4vw, 2.75rem);
  --max: 72rem;
  --wide: 82rem;
  --section: clamp(4.5rem, 8vw, 8.5rem);
  --bar: 2.35rem;
  --nav: 4.35rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 50px rgba(22, 19, 16, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--sans);
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -0.011em;
  color: var(--ink-soft);
  background: var(--paper);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
button, input, select, textarea { font: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--brass); color: var(--white); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1rem;
}
.skip-link:focus { top: 3rem; }

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

.kicker {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.9rem;
}
.kicker--light { color: var(--brass-pale); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); font-weight: 500; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.92rem 1.45rem;
  border-radius: 999px;
  transition: transform 0.45s var(--ease), background 0.35s var(--ease), color 0.35s, box-shadow 0.45s var(--ease);
}
.btn--lg { padding: 1.05rem 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--brass {
  background: var(--brass);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(156, 107, 50, 0.28);
}
.btn--brass:hover { background: var(--brass-2); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 247, 242, 0.35);
}
.btn--ghost:hover { background: rgba(250, 247, 242, 0.08); }
.btn--urgent {
  background: var(--urgent);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(180, 35, 24, 0.3);
}
.btn--urgent:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn__arrow { transition: transform 0.35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* Top bar */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--bar);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: var(--ink);
  color: rgba(250, 247, 242, 0.78);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.topbar a {
  color: var(--brass-pale);
  font-weight: 600;
}
.topbar__live {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: #d94a3d;
  box-shadow: 0 0 0 0 rgba(217, 74, 61, 0.6);
  animation: live 2.2s ease-out infinite;
  vertical-align: 1px;
}
@keyframes live {
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* Header */
.header {
  position: fixed;
  top: var(--bar);
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav);
  color: var(--cream);
  transition: background 0.5s var(--ease), color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.header.is-solid {
  background: rgba(243, 238, 230, 0.92);
  color: var(--ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2 * var(--pad), var(--wide));
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand__mark {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 0.35rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  opacity: 0.95;
}
.brand__copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.brand__sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 0.18rem;
}

.nav ul {
  display: flex;
  gap: 1.75rem;
}
.nav a {
  font-size: var(--fs-sm);
  font-weight: 600;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}
.nav a:hover::after,
.nav a.is-on::after { width: 100%; }

.header__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.phone-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: 600;
  font-size: var(--fs-sm);
  line-height: 1.15;
}
.phone-link__label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.5;
}
.header.is-solid .btn--brass { box-shadow: none; }

.menu-btn {
  display: none;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  background: none;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  height: 1.5px;
  background: currentColor;
  margin: 6px 0;
  transition: transform 0.4s var(--ease);
}
.menu-btn.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-btn.is-open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
}
.hero__stage {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: calc(var(--bar) + var(--nav));
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  clip-path: inset(7% 6% 9% 6% round 1.5rem);
  transform: scale(1.08);
  will-change: clip-path, transform;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 19, 16, 0.28) 0%, rgba(22, 19, 16, 0.22) 35%, rgba(22, 19, 16, 0.82) 100%),
    linear-gradient(90deg, rgba(22, 19, 16, 0.55) 0%, rgba(22, 19, 16, 0.12) 55%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: clamp(2.5rem, 8vh, 6rem);
  padding-bottom: 2rem;
  max-width: 46rem;
  margin-left: max(var(--pad), calc((100% - var(--wide)) / 2 + var(--pad)));
  margin-right: auto;
  width: min(100% - 2 * var(--pad), 46rem);
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-pale);
  margin-bottom: 1.4rem;
}
.eyebrow__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.hero__title {
  color: var(--cream);
  font-size: var(--fs-3xl);
  font-weight: 500;
  line-height: 0.98;
  margin-bottom: 1.35rem;
}
.hero__line { display: block; }
.hero__line--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--brass-pale);
}

.hero__lede {
  max-width: 34rem;
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: rgba(250, 247, 242, 0.78);
  margin-bottom: 1.8rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__proof {
  position: relative;
  z-index: 2;
  width: min(100% - 2 * var(--pad), var(--wide));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250, 247, 242, 0.14);
  margin-bottom: 1.5rem;
}
.hero__proof li {
  padding: 1.15rem 1.1rem 1.15rem 0;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(250, 247, 242, 0.72);
  border-right: 1px solid rgba(250, 247, 242, 0.1);
}
.hero__proof li:last-child { border-right: 0; }

.hero [data-hero-line],
.hero [data-hero-fade],
.hero [data-hero-proof] {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 1.05s var(--ease) forwards;
}
.hero [data-hero-line]:nth-child(1) { animation-delay: 0.12s; }
.hero [data-hero-line]:nth-child(2) { animation-delay: 0.24s; }
.hero [data-hero-fade]:nth-of-type(1) { animation-delay: 0.05s; }
.hero .hero__lede { animation-delay: 0.38s; }
.hero .hero__actions { animation-delay: 0.5s; }
.hero [data-hero-proof] { animation-delay: 0.62s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* Trust */
.trust {
  padding: var(--section) 0;
  background: var(--cream);
}
.trust__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.trust__intro p:last-child {
  margin-top: 1.1rem;
  max-width: 36rem;
}
.trust__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.metric {
  background: var(--cream);
  padding: 1.6rem 1.4rem;
}
.metric__num {
  font-family: var(--serif);
  font-size: var(--fs-2xl);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
}
.metric__num small {
  font-size: 0.45em;
  color: var(--brass);
  margin-left: 0.15rem;
}
.metric__label {
  margin-top: 0.45rem;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
}

/* Services */
.services { padding: var(--section) 0 calc(var(--section) * 0.7); }
.block-head { max-width: 40rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.block-head__lede { margin-top: 1rem; }

.service-rail {
  width: min(100% - 2 * var(--pad), var(--wide));
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: 2.25rem 0;
  border-top: 1px solid var(--line);
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service:nth-child(even) .service__fig { order: 2; }

.service__fig {
  overflow: hidden;
  border-radius: 0.2rem;
  aspect-ratio: 5 / 3.4;
}
.service__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.1s var(--ease);
}
.service:hover .service__fig img { transform: scale(1.1); }

.service__index {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  margin-bottom: 0.5rem;
}
.service__body p { margin: 0.7rem 0 1rem; max-width: 34rem; }
.service__body a {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--brass);
  letter-spacing: 0.02em;
}
.service__body a:hover { text-decoration: underline; }

/* Why */
.why {
  position: relative;
  color: rgba(250, 247, 242, 0.72);
  overflow: hidden;
}
.why__bg {
  position: absolute;
  inset: 0;
}
.why__bg img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}
.why__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(22, 19, 16, 0.94) 12%, rgba(22, 19, 16, 0.78) 55%, rgba(22, 19, 16, 0.7) 100%);
}
.why__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  padding: var(--section) 0;
}
.why__sticky {
  position: sticky;
  top: calc(var(--bar) + var(--nav) + 2rem);
  align-self: start;
}
.why h2, .why h3 { color: var(--cream); }
.why__list { display: flex; flex-direction: column; gap: 0; }
.why__list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
}
.why__list li:last-child { border-bottom: 1px solid rgba(250, 247, 242, 0.1); }
.why__list span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-pale);
}
.why__list h3 { margin-bottom: 0.45rem; font-size: clamp(1.2rem, 1rem + 0.7vw, 1.55rem); }

/* Area */
.area { padding: var(--section) 0; background: var(--cream); }
.area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.area__lede { margin: 1rem 0; }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.4rem 0 1rem;
}
.chips li {
  border: 1px solid var(--line);
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
}
.area__note { font-size: var(--fs-sm); font-style: italic; }

.map__field {
  position: relative;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 48% 52%, rgba(156, 107, 50, 0.12), transparent 42%),
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(22, 19, 16, 0.05) 27px 28px),
    repeating-linear-gradient(90deg, transparent 0 27px, rgba(22, 19, 16, 0.05) 27px 28px),
    #efe8dc;
  border-radius: 0.25rem;
  overflow: hidden;
}
.map__ring {
  position: absolute;
  top: 50%;
  left: 48%;
  width: 46%;
  height: 46%;
  border: 1px dashed rgba(156, 107, 50, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 5s var(--ease) infinite;
}
.map__ring--2 {
  width: 72%;
  height: 72%;
  animation-delay: -2.4s;
  opacity: 0.55;
}
@keyframes pulse-ring {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.8; }
}
.map__pin {
  position: absolute;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  padding: 0.22rem 0.45rem;
  box-shadow: var(--shadow);
}
.map__pin--hq { top: 46%; left: 40%; display: flex; align-items: center; gap: 0.35rem; }
.map__pin--hq i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 4px rgba(156, 107, 50, 0.25);
}
.map__pin--a { top: 38%; left: 68%; }
.map__pin--b { top: 42%; left: 14%; }
.map__pin--c { top: 22%; left: 44%; }
.map__pin--d { top: 72%; left: 58%; }
.map__caption {
  margin-top: 0.85rem;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
}

/* Process */
.process { padding: var(--section) 0; }
.steps { position: relative; }
.steps ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.steps__track {
  position: absolute;
  top: 1.15rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
}
.steps__fill {
  height: 100%;
  width: 0;
  background: var(--brass);
  transform-origin: left;
}
.step__num {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--serif);
  color: var(--brass);
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}
.step h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.step p { font-size: var(--fs-sm); }

/* Reviews */
.reviews { padding: var(--section) 0; background: var(--cream); }
.reviews__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 3rem;
}
.reviews__score {
  margin-top: 1rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--brass);
}
.quotes { display: grid; gap: 1.15rem; }
.quote {
  background: var(--paper);
  padding: 1.4rem 1.5rem;
  border-left: 2px solid var(--brass);
}
.quote--lead {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.82);
  border-left-color: var(--brass-pale);
}
.quote--lead cite { color: var(--cream); }
.quote p {
  font-family: var(--serif);
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: inherit;
}
.quote footer {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.quote cite {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--ink);
}
.quote span {
  font-size: var(--fs-xs);
  opacity: 0.7;
}

/* Emergency */
.emergency { padding: 0 0 var(--section); background: var(--cream); }
.emergency__panel {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  background: #2a120f;
  color: rgba(250, 247, 242, 0.75);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.emergency h2 { color: var(--cream); margin: 0.6rem 0 0.7rem; }
.emergency__flag {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0a098;
}
.emergency__action { text-align: right; flex-shrink: 0; }
.emergency__action p { margin-top: 0.7rem; font-size: var(--fs-xs); }

/* FAQ */
.faq { padding: 0 0 var(--section); }
.faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
}
details {
  border-top: 1px solid var(--line);
  padding: 1.05rem 0;
}
details:last-child { border-bottom: 1px solid var(--line); }
summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--brass);
}
details[open] summary::after { content: "–"; }
details p { margin-top: 0.7rem; max-width: 38rem; }

/* Contact */
.contact { padding: 0 0 var(--section); }
.contact__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.contact__lede { margin: 1rem 0 1.6rem; }
.vcard {
  display: grid;
  gap: 1.1rem;
}
.vcard span {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.2rem;
}
.vcard a, .vcard address, .vcard p { font-weight: 600; color: var(--ink); }
.vcard a:hover { color: var(--brass); }
.vcard strong { font-weight: 700; color: var(--urgent); }

.form {
  background: var(--cream);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.form label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.85rem;
}
.form input,
.form select,
.form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.72rem 0.85rem;
  color: var(--ink);
  border-radius: 0.15rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(156, 107, 50, 0.14);
}
.form .is-error { border-color: var(--urgent); }
.form__fine {
  margin-top: 0.75rem;
  font-size: var(--fs-xs);
  text-align: center;
}

.form.is-sent {
  display: grid;
  place-items: center;
  min-height: 22rem;
  text-align: center;
  font-family: var(--serif);
  font-size: var(--fs-xl);
  color: var(--ink);
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.58);
  padding-top: 4rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}
.brand--foot { color: var(--cream); margin-bottom: 1rem; }
.footer__h {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
  margin-bottom: 0.9rem;
}
.footer .brand + p {
  font-size: var(--fs-sm);
  max-width: 20rem;
  margin-top: 1rem;
}
.footer ul { display: grid; gap: 0.45rem; }
.footer a { font-size: var(--fs-sm); }
.footer a:hover { color: var(--cream); }
.footer address { font-size: var(--fs-sm); line-height: 1.75; }
.footer__hours { margin-top: 0.8rem !important; font-size: var(--fs-xs) !important; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 1.8rem;
  font-size: var(--fs-xs);
}
.footer__bottom nav { display: flex; gap: 1.2rem; }

body.subpage .header {
  top: 0;
}
body.subpage .legal-page {
  padding-top: calc(var(--nav) + 4rem);
}
.legal-page h1 { font-size: var(--fs-2xl); margin-bottom: 1rem; }
.legal-page p { margin: 0.9rem 0; }

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .nav, .header__cta .phone-link { display: none; }
  .menu-btn { display: block; }
  .nav.is-open {
    display: block;
    position: fixed;
    inset: calc(var(--bar) + var(--nav)) 0 0;
    background: var(--paper);
    color: var(--ink);
    padding: 2.2rem var(--pad);
  }
  .nav.is-open ul { flex-direction: column; gap: 1.4rem; }
  .nav.is-open a { font-family: var(--serif); font-size: 1.8rem; }

  .hero__proof { grid-template-columns: 1fr 1fr; }
  .hero__proof li:nth-child(2) { border-right: 0; }
  .trust__grid,
  .area__grid,
  .why__layout,
  .reviews__grid,
  .faq__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .why__sticky { position: static; }
  .service { grid-template-columns: 1fr; }
  .service:nth-child(even) .service__fig { order: 0; }
  .steps ol { grid-template-columns: 1fr 1fr; }
  .steps__track { display: none; }
  .emergency__panel { flex-direction: column; text-align: left; }
  .emergency__action { text-align: left; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .topbar p { display: none; }
  .hero__media { clip-path: inset(0)!important; transform: scale(1.06)!important; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__proof { grid-template-columns: 1fr; }
  .hero__proof li { border-right: 0; border-bottom: 1px solid rgba(250,247,242,.1); padding: 0.8rem 0; }
  .trust__stats { grid-template-columns: 1fr 1fr; }
  .steps ol { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}
