:root {
  --ink: #0d0d0d;
  --ink-soft: #171717;
  --panel: #202020;
  --paper: #f8f6f2;
  --paper-deep: #ece7de;
  --white: #fffdf9;
  --muted: #9b9891;
  --muted-dark: #625f59;
  --red: #d0021b;
  --red-light: #ff6b78;
  --red-dark: #9b0015;
  --gold: #c9a84c;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(13, 13, 13, 0.15);
  --display: "Bebas Neue", Impact, sans-serif;
  --body: "Montserrat", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: var(--white);
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(84px, 10vw, 144px) 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-180%);
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

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

.topbar {
  background: var(--red);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.topbar-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
}

.topbar a span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 180ms ease;
}

.topbar a:hover span {
  transform: translate(3px, -3px);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 13, 13, 0.98);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.24);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 49px;
  height: 49px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08);
  mix-blend-mode: screen;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.brand-copy strong span {
  color: var(--red-light);
}

.hero .eyebrow,
.services-section .eyebrow,
.zones-section .eyebrow,
.site-footer .eyebrow,
.site-footer .footer-column h3 {
  color: var(--red-light);
}

.brand-copy small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  margin-left: auto;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  content: "";
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-cta,
.button,
.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta {
  background: var(--red);
  color: var(--white);
}

.header-cta:hover,
.button-primary:hover,
.mobile-nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.header-cta span,
.button span,
.mobile-nav-cta span {
  font-size: 1rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: min(850px, calc(100svh - 34px));
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 27%, rgba(208, 2, 27, 0.19), transparent 25%),
    radial-gradient(circle at 10% 75%, rgba(201, 168, 76, 0.08), transparent 28%),
    var(--ink);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 76%);
}

.hero-paint {
  position: absolute;
  z-index: 1;
  width: 2px;
  background: var(--red);
  opacity: 0.62;
  transform-origin: top;
  animation: paint-drop 1.8s var(--ease) both;
}

.hero-paint::after {
  position: absolute;
  bottom: -7px;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50% 50% 50% 0;
  background: inherit;
  content: "";
  transform: rotate(-45deg);
}

.hero-paint-one {
  top: 0;
  right: 15%;
  height: 180px;
}

.hero-paint-two {
  top: 0;
  right: 10.5%;
  height: 112px;
  opacity: 0.32;
  animation-delay: 250ms;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: min(780px, calc(100svh - 34px));
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  padding-block: 80px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.proof-copy h2,
.zones-copy h2,
.quote-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 7vw, 7.6rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.87;
  text-transform: uppercase;
}

.hero h1 em,
.section-heading h2 em,
.proof-copy h2 em,
.zones-copy h2 em,
.quote-copy h2 em {
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: none;
}

.hero-intro {
  max-width: 530px;
  margin: 30px 0 0;
  color: rgba(255, 253, 249, 0.68);
  font-size: 0.96rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

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

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

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

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

.button-dark:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.hero-facts {
  display: grid;
  max-width: 610px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 48px 0 0;
}

.hero-facts div {
  display: grid;
  gap: 4px;
  padding: 14px 15px;
  border-left: 1px solid var(--red);
  background: rgba(255, 255, 255, 0.04);
}

.hero-facts strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.9;
}

.hero-facts span {
  color: rgba(255, 253, 249, 0.54);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--panel);
  box-shadow: 16px 16px 0 var(--red);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.08) 30%, rgba(13, 13, 13, 0.88) 100%);
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.07);
  transition: transform 800ms var(--ease);
}

.hero-visual:hover img {
  transform: scale(1.035);
}

.hero-visual-topline,
.hero-visual-caption,
.hero-stamp {
  position: absolute;
  z-index: 2;
}

.hero-visual-topline {
  top: 20px;
  right: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hero-visual-caption {
  right: 30px;
  bottom: 32px;
  left: 30px;
  display: grid;
  gap: 7px;
}

.hero-visual-caption span {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-visual-caption strong {
  max-width: 480px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-stamp {
  top: 68px;
  left: 25px;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 0.72;
  text-align: center;
  transform: rotate(-12deg);
}

.hero-stamp small {
  font-family: var(--body);
  font-size: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 30px;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll span:last-child {
  color: var(--red);
  font-size: 1.1rem;
}

.services-section {
  background: var(--ink-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 60px;
}

.section-heading h2,
.proof-copy h2,
.zones-copy h2,
.quote-copy h2 {
  font-size: clamp(3.5rem, 6vw, 6rem);
}

.section-heading > p,
.zones-copy > p,
.quote-copy > p,
.proof-copy > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 28px 25px 25px;
  overflow: hidden;
  background: var(--panel);
  transition: background 220ms ease, transform 220ms var(--ease);
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.service-card:hover {
  z-index: 1;
  background: #272727;
  transform: translateY(-5px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-accent {
  background: #26211b;
}

.service-index {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.service-card svg {
  width: 48px;
  height: 48px;
  margin: 55px 0 24px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.7;
}

.service-card a {
  position: absolute;
  right: 25px;
  bottom: 24px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--white);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-card a span {
  color: var(--red);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.service-card a:hover span {
  transform: translate(3px, -3px);
}

.projects-section {
  background: var(--paper);
  color: var(--ink);
}

.projects-section .section-heading > p {
  color: var(--muted-dark);
}

.projects-section .eyebrow {
  color: var(--red);
}

.projects-heading {
  margin-bottom: 32px;
}

.project-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--muted-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.filter-status {
  margin-left: auto;
  color: var(--muted-dark);
  font-size: 0.62rem;
  font-weight: 600;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--white);
  transition: box-shadow 220ms ease, transform 220ms var(--ease);
}

.project-card:hover {
  box-shadow: 10px 10px 0 var(--gold);
  transform: translateY(-4px);
}

.project-card[hidden] {
  display: none;
}

.compare {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #c9c0b4;
  isolation: isolate;
}

.compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-after {
  filter: saturate(0.96) contrast(1.02);
}

.compare-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  filter: saturate(0.72) contrast(0.95);
}

.compare-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(13, 13, 13, 0.16);
  pointer-events: none;
  transform: translateX(-1px);
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13, 13, 13, 0.3);
  transform: translate(-50%, -50%);
}

.compare-divider span::before {
  content: "↔";
  font-size: 1.1rem;
  line-height: 1;
}

.compare-label {
  position: absolute;
  z-index: 5;
  bottom: 14px;
  padding: 5px 9px;
  background: rgba(13, 13, 13, 0.78);
  color: var(--white);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}

.compare-label-before {
  left: 14px;
}

.compare-label-after {
  right: 14px;
  background: var(--red);
}

.compare-range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.compare:focus-within {
  outline: 3px solid var(--gold);
  outline-offset: -4px;
}

.project-card-body {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
}

.project-type {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.image-button {
  flex: 0 0 auto;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.image-button span {
  display: inline-block;
  margin-left: 4px;
  color: var(--red);
  font-size: 0.95rem;
  transition: transform 180ms ease;
}

.image-button:hover span {
  transform: translate(3px, -3px);
}

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

.proof-section .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
}

.proof-copy h2 em {
  color: var(--ink);
}

.proof-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.stats-grid div {
  display: grid;
  min-height: 140px;
  align-content: center;
  gap: 8px;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 0.9;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-section {
  background: var(--paper-deep);
  color: var(--ink);
}

.process-section .section-heading > p {
  color: var(--muted-dark);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 290px;
  align-content: space-between;
  gap: 30px;
  padding: 25px;
  background: var(--paper);
}

.process-number {
  color: var(--red);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.process-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.process-list p {
  margin: 13px 0 0;
  color: var(--muted-dark);
  font-size: 0.73rem;
  line-height: 1.7;
}

.process-note {
  padding-top: 12px;
  border-top: 1px solid var(--line-dark);
  color: var(--red);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.zones-section {
  background: var(--ink-soft);
}

.zones-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.zones-copy h2 {
  max-width: 560px;
}

.zones-copy h2 em {
  color: var(--gold);
}

.zones-copy > p:not(.eyebrow) {
  margin-top: 26px;
}

.zones-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 34px 0 26px;
}

.zones-list span {
  padding: 10px 12px;
  border-left: 2px solid var(--red);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.65rem;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--red);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.zones-map {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #151515;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 45px 45px;
  transform: rotate(-11deg) scale(1.25);
}

.map-route {
  position: absolute;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  transform-origin: left;
}

.map-route-one {
  top: 57%;
  left: 18%;
  width: 65%;
  transform: rotate(-24deg);
}

.map-route-two {
  top: 57%;
  left: 31%;
  width: 48%;
  transform: rotate(30deg);
}

.map-pin {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(208, 2, 27, 0.15);
}

.map-pin-main {
  top: 55%;
  left: 44%;
  width: 17px;
  height: 17px;
  box-shadow: 0 0 0 10px rgba(208, 2, 27, 0.18), 0 0 22px rgba(208, 2, 27, 0.6);
}

.map-pin-two {
  top: 28%;
  left: 69%;
}

.map-pin-three {
  top: 73%;
  left: 25%;
}

.map-label {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: grid;
  gap: 5px;
  text-align: right;
}

.map-label strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 5.5rem;
  font-weight: 400;
  line-height: 0.8;
}

.map-label span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-section {
  background: var(--paper);
  color: var(--ink);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.quote-copy h2 em {
  color: var(--red);
}

.quote-copy > p:not(.eyebrow) {
  color: var(--muted-dark);
  margin-top: 28px;
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line-dark);
}

.contact-list > a,
.contact-list > span {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
}

.contact-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-list > a:hover strong {
  color: var(--red);
}

.contact-list > a > span:last-child,
.contact-list > span > span:last-child {
  display: grid;
  gap: 2px;
}

.contact-list small {
  color: var(--muted-dark);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--ink);
  font-size: 0.8rem;
  transition: color 180ms ease;
}

.quote-card {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--ink);
  background: var(--paper-deep);
  box-shadow: 12px 12px 0 var(--red);
}

.quote-card-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.quote-card-heading span {
  color: var(--red);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.quote-card-heading strong {
  font-family: var(--display);
  font-size: 2.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.demo-note,
.form-legal,
.form-status {
  color: var(--muted-dark);
  font-size: 0.62rem;
  line-height: 1.6;
}

.demo-note {
  margin: 0 0 23px;
  padding: 10px 12px;
  border-left: 2px solid var(--gold);
  background: rgba(201, 168, 76, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.field > span {
  color: var(--muted-dark);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field > span b {
  color: var(--red);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid rgba(13, 13, 13, 0.2);
  border-radius: 0;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 0.75rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--red) 50%), linear-gradient(135deg, var(--red) 50%, transparent 50%);
  background-position: calc(100% - 17px) 20px, calc(100% - 12px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a5a09a;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(208, 2, 27, 0.12);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(208, 2, 27, 0.12);
}

.field-error {
  min-height: 0;
  color: var(--red-dark);
  font-size: 0.61rem;
  font-weight: 700;
}

.form-submit {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
  padding: 0 17px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms var(--ease);
}

.form-submit span {
  font-size: 1.1rem;
}

.form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-legal {
  margin: 12px 0 0;
  text-align: center;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--red-dark);
  font-weight: 700;
  text-align: center;
}

.form-success {
  display: grid;
  justify-items: start;
  gap: 11px;
  padding: 12px 0 2px;
}

.form-success[hidden] {
  display: none;
}

.success-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.7rem;
}

.form-success .eyebrow {
  margin: 3px 0 0;
}

.form-success h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.form-success p:not(.eyebrow) {
  max-width: 460px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.76rem;
  line-height: 1.7;
}

.site-footer {
  padding: 58px 0 22px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.8fr;
  gap: 35px;
  padding-bottom: 50px;
}

.footer-brand > p {
  max-width: 250px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: 0.68rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #6f6c66;
  font-size: 0.6rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

.mobile-cta {
  display: none;
}

.lightbox {
  width: min(920px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.58);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.lightbox-inner {
  position: relative;
  padding: 26px;
}

.lightbox .eyebrow {
  margin-bottom: 15px;
}

.lightbox img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: #222;
}

.lightbox p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(13, 13, 13, 0.7);
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1;
}

.lightbox-close:hover {
  border-color: var(--red);
  background: var(--red);
}

.reveal {
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes paint-drop {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@media (max-width: 1050px) {
  .container {
    width: min(calc(100% - 56px), var(--container));
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.5vw, 6rem);
  }

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

  .service-card {
    min-height: 320px;
  }

  .proof-layout,
  .quote-layout {
    gap: 55px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid div:nth-child(2) {
    border-right: 0;
  }

  .stats-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  }
}

@media (max-width: 820px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding-inline: 28px;
    background: rgba(13, 13, 13, 0.98);
    transition: max-height 260ms var(--ease), padding-block 260ms var(--ease);
  }

  .mobile-nav.is-open {
    max-height: 440px;
    padding-block: 10px 25px;
    border-top: 1px solid var(--line);
  }

  .mobile-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-cta {
    margin-top: 14px;
    border: 0 !important;
    background: var(--red);
    color: var(--white) !important;
    text-align: center;
  }

  .hero-layout,
  .proof-layout,
  .zones-layout,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    padding-block: 88px 70px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    width: min(100%, 650px);
    min-height: 500px;
    margin-inline: auto;
  }

  .hero-visual img {
    min-height: 500px;
  }

  .hero-scroll {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 42px;
  }

  .projects-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 240px;
  }

  .zones-map {
    min-height: 390px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 62px;
  }

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

  .topbar-inner {
    min-height: 30px;
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 43px;
    height: 43px;
  }

  .brand-copy strong {
    font-size: 1.15rem;
  }

  .hero-layout {
    gap: 55px;
    padding-block: 70px 54px;
  }

  .hero h1,
  .section-heading h2,
  .proof-copy h2,
  .zones-copy h2,
  .quote-copy h2 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .hero-intro {
    font-size: 0.88rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 34px;
  }

  .hero-facts div {
    grid-template-columns: 80px 1fr;
    align-items: center;
  }

  .hero-visual {
    min-height: 420px;
    box-shadow: 8px 8px 0 var(--red);
  }

  .hero-visual img {
    min-height: 420px;
  }

  .hero-visual-caption {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .hero-visual-caption strong {
    font-size: 3.15rem;
  }

  .hero-visual-topline {
    right: 16px;
    left: 16px;
    font-size: 0.49rem;
  }

  .hero-stamp {
    top: 54px;
    left: 18px;
    width: 56px;
    height: 56px;
    font-size: 1rem;
  }

  .section {
    padding-block: 76px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 310px;
  }

  .project-filters {
    align-items: flex-start;
  }

  .filter-status {
    width: 100%;
    margin: 8px 0 0;
  }

  .project-card-body {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .image-button {
    text-align: left;
  }

  .stats-grid strong {
    font-size: 3rem;
  }

  .stats-grid span {
    font-size: 0.5rem;
  }

  .zones-list {
    grid-template-columns: 1fr;
  }

  .zones-map {
    min-height: 300px;
  }

  .map-label strong {
    font-size: 4.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-card {
    box-shadow: 8px 8px 0 var(--red);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 45;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
    background: var(--red);
    box-shadow: 0 10px 30px rgba(13, 13, 13, 0.35);
    color: var(--white);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-cta span {
    font-size: 1rem;
  }

  .lightbox-inner {
    padding: 19px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
