@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/gilroy-300.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/gilroy-800.woff") format("woff");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #101418;
  --muted: #555e64;
  --paper: #f5f6f4;
  --line: #dce1e7;
  --white: #ffffff;
  --cyan: #08788d;
  --lime: #b9e64b;
  --red: #cf392c;
  --amber: #ffb547;
  --shadow: 0 18px 50px rgba(16, 20, 24, 0.14);
  --radius: 8px;
  --font-body: "Gilroy", "Segoe UI", Arial, sans-serif;
  --font-display: "Gilroy", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-weight: 300;
  font-kerning: auto;
  font-synthesis: none;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 34px;
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease;
  background: rgba(16, 20, 24, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--white);
  background: rgba(16, 20, 24, 0.97);
  backdrop-filter: blur(18px);
  border-color: rgba(16, 20, 24, 0.08);
}

.brand img {
  width: 156px;
  height: auto;
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, 0.25));
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  font-weight: 800;
  font-kerning: none;
  font-size: 0.92rem;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: rgba(0, 167, 200, 0.12);
}

.header-phone {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 800;
  font-kerning: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  padding: 0;
  place-items: center;
}

.nav-toggle img {
  filter: invert(1);
}

.nav-toggle .close-icon,
.site-header.is-open .nav-toggle .menu-icon {
  display: none;
}

.site-header.is-open .nav-toggle .close-icon {
  display: block;
}

.hero {
  position: relative;
  min-height: min(820px, 88svh);
  display: flex;
  align-items: flex-start;
  padding: 138px 0 64px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 56%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 20, 24, 0.94) 0%, rgba(16, 20, 24, 0.83) 24%, rgba(16, 20, 24, 0.26) 48%, rgba(16, 20, 24, 0.02) 68%),
    linear-gradient(180deg, rgba(16, 20, 24, 0.4), transparent 24%, transparent 84%, rgba(16, 20, 24, 0.16));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.hero-content > * {
  max-width: 460px;
}

.hero-brand {
  width: 360px;
  max-width: 100%;
  margin-bottom: 24px;
}

.brand-wordmark {
  width: 100%;
  height: auto;
  aspect-ratio: 158.913 / 47.5724;
}

.hero-offer {
  font-family: var(--font-display);
  font-weight: 800;
  font-kerning: none;
  font-size: 1.75rem;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-offer span {
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-weight: 800;
  font-kerning: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  overflow-wrap: break-word;
}

.eyebrow.dark {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 460px;
  margin-bottom: 16px;
  font-size: 3.75rem;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
.site-nav a,
.header-phone,
.eyebrow,
.button,
.label,
.strip-grid strong,
.hero-metrics span,
.hero-line span,
.tab,
.service-kicker,
.service-card a,
.estimator-output span,
.estimator-output strong,
.estimate-form label > span,
.region,
.steps span,
.proof-points span,
.contact-lines a,
.lead-form label > span,
.footer .label {
  font-family: var(--font-display);
  font-weight: 300;
  font-kerning: auto;
}

h1,
h2,
h3 {
  font-weight: 300;
  font-kerning: auto;
}

.site-nav a,
.header-phone,
.strip-grid strong,
.region,
.contact-lines a {
  letter-spacing: 0;
}

.button,
.hero-metrics span,
.tab,
.service-card a {
  font-weight: 800;
  font-kerning: none;
  letter-spacing: 0;
}

.eyebrow,
.label,
.hero-line span,
.service-kicker,
.estimator-output span,
.estimate-form label > span,
.steps span,
.proof-points span,
.lead-form label > span,
.footer .label {
  font-weight: 800;
  font-kerning: none;
  letter-spacing: 0;
}

.mobile-only-break {
  display: none;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.7rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 395px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
  font-kerning: none;
  cursor: pointer;
  gap: 9px;
  line-height: 1.3;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: none;
}

.button-primary:hover {
  background: #b92f24;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.button-dark:hover {
  background: #30383b;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 5px;
}

.hero a:focus-visible,
.site-header a:focus-visible,
.site-header button:focus-visible {
  outline-color: var(--lime);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
}

.hero-metrics span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-kerning: none;
}

.hero-line {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-line span {
  font-size: 0.78rem;
  font-weight: 800;
  font-kerning: none;
  text-transform: uppercase;
}

.hero-line i {
  position: relative;
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.hero-line i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  animation: light-flow 2200ms ease-in-out infinite;
}

@keyframes light-flow {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(260%);
  }
}

.priority-strip {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.strip-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 22px;
}

.label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  font-kerning: none;
  text-transform: uppercase;
}

.priority-strip .label {
  color: var(--amber);
}

.strip-grid strong {
  font-size: 1rem;
}

.strip-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 16px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-kerning: none;
}

.section {
  padding: 82px 0;
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 60px;
  align-items: center;
}

.intro p,
.regions-copy p,
.proof-copy p,
.brief-copy p,
.section-note,
.steps p,
.line-grid p,
.estimator-copy p,
.service-card p,
.footer p {
  color: var(--muted);
  line-height: 1.62;
}

.section-note {
  max-width: 430px;
  margin: 0;
}

.production-line {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 20, 24, 0.98), rgba(16, 20, 24, 0.94)),
    radial-gradient(circle at 78% 18%, rgba(0, 167, 200, 0.28), transparent 34%);
  color: var(--white);
}

.production-line .eyebrow.dark {
  color: var(--lime);
}

.production-line h2 {
  max-width: 720px;
}

.production-line .section-note,
.production-line .line-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.line-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.line-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 41px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--amber));
  box-shadow: 0 0 24px rgba(185, 230, 75, 0.34);
}

.line-grid article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.line-grid span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  font-kerning: none;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 34px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  font-kerning: none;
  cursor: pointer;
}

.tab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.service-card.is-hidden {
  display: none;
}

.service-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--line);
}

.service-media {
  position: relative;
  flex: none;
  width: 100%;
  aspect-ratio: 8 / 5;
  isolation: isolate;
  background: var(--line);
}

.service-media > img,
.service-media > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-media > video {
  opacity: 0;
  pointer-events: none;
}

.service-media.has-frame > video {
  opacity: 1;
}

.media-toggle {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgb(0 0 0 / 16%);
  border-radius: 50%;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 2px 8px rgb(0 0 0 / 14%);
  cursor: pointer;
}

.media-toggle[hidden] {
  display: none;
}

.media-toggle > img {
  width: 20px;
  height: 20px;
}

.media-toggle:hover,
.media-toggle:focus-visible {
  background: #fff;
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.media-toggle::after {
  content: attr(aria-label);
  position: absolute;
  right: 0;
  bottom: 54px;
  width: max-content;
  max-width: 210px;
  padding: 7px 10px;
  border-radius: 4px;
  background: #151719;
  color: #fff;
  font: 800 12px/1.35 Gilroy, Arial, sans-serif;
  text-align: left;
  opacity: 0;
  pointer-events: none;
}

.media-toggle:hover::after,
.media-toggle:focus-visible::after {
  opacity: 1;
}

.media-expand {
  left: 12px;
  right: auto;
}

.media-expand::after {
  left: 0;
  right: auto;
}

html.has-media-dialog {
  overflow: hidden;
  scrollbar-gutter: stable;
}

.media-dialog {
  width: min(1000px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  overflow: auto;
}

.media-dialog::backdrop {
  background: rgb(0 0 0 / 78%);
}

.media-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
}

.media-dialog-head h2 {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.media-dialog-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 210px);
  object-fit: contain;
  background: var(--ink);
}

.media-dialog-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
}

.media-dialog-status {
  flex: 1 1 240px;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.media-dialog-status:empty {
  display: none;
}

.service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  min-width: 0;
}

.service-kicker {
  margin-bottom: 12px;
  color: var(--cyan);
  font-weight: 800;
  font-kerning: none;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.service-card p {
  flex: 1;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.service-card a {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid var(--red);
  color: var(--ink);
  font-weight: 800;
  font-kerning: none;
}

.estimator {
  background: #edf1ed;
}

.estimator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: start;
}

.estimator-output {
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.estimator-output span {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 800;
  font-kerning: none;
  text-transform: uppercase;
}

.estimator-output strong {
  display: block;
  font-size: 2rem;
  line-height: 1.08;
}

.estimator-output p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.estimate-form label {
  display: grid;
  gap: 8px;
}

.estimate-form label > span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
  font-kerning: none;
}

.estimate-form input,
.estimate-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.estimate-form input:focus,
.estimate-form select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 167, 200, 0.16);
}

.estimate-form [hidden] {
  display: none !important;
}

.estimate-options {
  min-width: 0;
  margin: 0;
  padding: 12px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.estimate-options legend {
  padding: 0 12px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
  font-kerning: none;
}

.estimate-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 16px;
}

.estimate-choices-stacked {
  grid-template-columns: minmax(0, 1fr);
}

.estimate-form .estimate-option {
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  cursor: pointer;
}

.estimate-option input[type="checkbox"] {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  accent-color: var(--ink);
  cursor: pointer;
}

.estimate-form .estimate-option > span {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 300;
  overflow-wrap: anywhere;
}

.estimate-error {
  margin: 8px 0 0;
  color: #af2337;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .estimate-choices {
    grid-template-columns: minmax(0, 1fr);
  }
}

.regions {
  background: var(--white);
}

.regions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: center;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.region {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  font-weight: 800;
  font-kerning: none;
}

.region-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.work {
  background: #edf1ed;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.steps article {
  min-height: 230px;
  padding: 16px 24px 16px 0;
  border-top: 1px solid #c3cdc6;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  font-kerning: none;
}

.proof {
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.proof-image {
  overflow: hidden;
}

.proof-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.proof-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0 12px;
  font-weight: 800;
  font-kerning: none;
}

.brief {
  background: var(--ink);
  color: var(--white);
}

.brief-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: start;
}

.brief-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.brief .eyebrow.dark {
  color: var(--lime);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-lines a {
  font-size: 1.25rem;
  font-weight: 800;
  font-kerning: none;
}

.contact-lines .max-contact {
  color: var(--lime);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label > span {
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 800;
  font-kerning: none;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 13px;
  outline: none;
}

.lead-form input,
.lead-form select,
.estimate-form input,
.estimate-form select {
  min-width: 0;
  max-width: 100%;
}

.estimate-form select:disabled {
  color: #6b7378;
  background: #e9ecea;
  cursor: not-allowed;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 167, 200, 0.16);
}

.form-full {
  grid-column: 1 / -1;
}

.check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.check input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-height: 18px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  font-kerning: none;
}

.form-status.is-error {
  color: var(--red);
}

.form-status.is-success {
  color: #16804b;
}

.footer {
  padding: 44px 0;
  background: #0b0e11;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 34px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
  font-kerning: none;
}

.footer .label {
  color: var(--amber);
}

.footer p {
  color: #c5cbd0;
}

.check a,
.form-legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-legal {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px 32px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid #343a40;
}

.footer-legal p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-legal nav a {
  margin: 0;
  min-height: 44px;
  padding-block: 9px;
  font-size: 0.875rem;
  line-height: 1.7;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 50;
  left: 20px;
  top: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.mobile-contact-bar {
  display: none;
}

.request-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: 86svh;
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.request-dialog::backdrop {
  background: rgba(0, 0, 0, 0.65);
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dialog-head h2 {
  font-size: 1.75rem;
  margin: 0;
}

.dialog-close {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
}

.request-dialog label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.request-recipient {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.875rem;
}

.request-recipient .brand-wordmark {
  width: 130px;
  flex: 0 0 130px;
  filter: brightness(0);
}

.request-dialog textarea {
  display: block;
  width: 100%;
  min-height: 180px;
  max-height: 38svh;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  font-size: 1rem;
  line-height: 1.5;
  resize: vertical;
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 20px 0 14px;
}

.request-actions .button img {
  filter: invert(1);
}

.request-max-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.request-dialog .form-status {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 300;
  font-kerning: auto;
}

.site-nav a,
.header-phone,
h1,
h2,
h3,
.strip-grid strong,
.region,
.contact-lines a,
.footer a {
  font-weight: 800;
  font-kerning: none;
}

h1,
h2 {
  letter-spacing: 0;
}

h3 {
  letter-spacing: 0;
}

.site-nav a,
.header-phone,
.strip-grid strong,
.region,
.contact-lines a,
.footer a {
  letter-spacing: 0;
}

.button,
.hero-metrics span,
.tab,
.service-card a,
.form-status {
  font-weight: 800;
  font-kerning: none;
  letter-spacing: 0;
}

.eyebrow,
.label,
.hero-line span,
.service-kicker,
.estimator-output span,
.estimate-form label > span,
.steps span,
.proof-points span,
.lead-form label > span,
.footer .label {
  font-weight: 800;
  font-kerning: none;
  letter-spacing: 0;
}

@media (min-width: 1600px) {
  .hero-media {
    left: calc(100% - 1540px);
  }

  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 200px;
    background: linear-gradient(90deg, var(--ink), transparent);
  }
}

@media (max-width: 1020px) {
  .hero-shade {
    background: linear-gradient(90deg, rgba(16, 20, 24, 0.94) 0%, rgba(16, 20, 24, 0.82) 330px, rgba(16, 20, 24, 0.62) 430px, rgba(16, 20, 24, 0.12) 550px, rgba(16, 20, 24, 0.02) 100%);
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .nav-toggle {
    display: grid;
    flex: 0 0 44px;
  }

  .site-nav,
  .header-phone {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    justify-self: stretch;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
    max-height: calc(100dvh - 116px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scroll-padding-block: 14px;
  }

  .site-header.is-open .site-nav a {
    min-height: 44px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .strip-grid,
  .intro-grid,
  .regions-grid,
  .proof-grid,
  .brief-grid,
  .estimator-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .steps,
  .line-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .line-grid::before {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  html {
    scroll-padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .site-header.is-open .site-nav {
    max-height: calc(100dvh - 170px - env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 28px), 1180px);
  }

  .site-header {
    padding: 14px 16px;
    min-height: 72px;
  }

  .nav-toggle {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 30;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: min(730px, calc(100svh - 118px));
    padding: 102px 0 264px;
  }

  .hero-media {
    top: 260px;
  }

  .hero-media img {
    object-position: 62% 62%;
  }

  .hero-shade {
    background: linear-gradient(180deg, #101418 0%, #101418 32%, rgba(16, 20, 24, 0.88) 44%, rgba(16, 20, 24, 0.08) 64%, transparent 90%);
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  .mobile-only-break {
    display: block;
  }

  .hero-content > * {
    max-width: 100%;
  }

  .hero-content {
    width: calc(100% - 40px);
  }

  .hero-brand {
    width: 260px;
    margin-bottom: 18px;
  }

  .hero .eyebrow {
    font-size: 0.69rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .hero-offer {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .hero-offer br {
    display: none;
  }

  .hero-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-line i {
    display: none;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .hero-lead {
    font-size: 0.9rem;
  }

  .hero-metrics span {
    min-height: 36px;
    max-width: 100%;
    font-size: 0.88rem;
    white-space: normal;
  }

  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .hero-actions .button {
    padding: 10px 8px;
    min-height: 48px;
    font-size: 0.82rem;
  }

  .hero-actions .button-ghost {
    background: rgba(16, 20, 24, 0.56);
  }

  .strip-grid {
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .strip-grid strong {
    line-height: 1.5;
  }

  .tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .tab {
    min-height: 44px;
    padding: 0 5px;
    font-size: 0.875rem;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 25;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.07);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-family: var(--font-display);
    font-weight: 800;
    font-kerning: none;
    font-size: 0.9rem;
  }

  .mobile-contact-bar a:last-child {
    border-radius: 4px;
    background: var(--red);
    color: var(--white);
  }

  .request-dialog {
    padding: 18px;
  }

  .request-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section {
    padding: 54px 0;
  }

  .service-grid,
  .steps,
  .line-grid,
  .estimate-form,
  .lead-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 16px;
  }

  .region {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 720px) and (max-height: 720px) {
  .hero {
    min-height: 0;
    padding-top: 94px;
    padding-bottom: 120px;
  }

  .hero-brand {
    width: 230px;
  }

  .hero-lead {
    display: none;
  }

  .hero-media {
    top: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-line i::after {
    animation: none;
  }
}
