:root {
  color-scheme: light dark;
  --container: 1320px;
  --gutter: clamp(20px, 3.2vw, 52px);
  --paper: #f2f3ef;
  --paper-raised: #fafaf6;
  --ink: #13202a;
  --muted: #5c696f;
  --line: #c5cbc8;
  --navy: #152d49;
  --navy-deep: #0d2138;
  --red: #9b2936;
  --red-hover: #7d1f2a;
  --white: #f8f8f3;
  --radius: 4px;
  --header-height: 78px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-stretch: condensed;
  letter-spacing: -.035em;
  line-height: .98;
}

h1 {
  max-width: 720px;
  font-size: clamp(58px, 7.1vw, 112px);
  font-weight: 700;
}

h2 {
  max-width: 920px;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 700;
}

h3 {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 700;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  translate: 0 -160%;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy-deep);
  border: 2px solid var(--red);
  border-radius: var(--radius);
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--header-height);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  width: 112px;
  height: 72px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfdfb;
}

.brand img {
  width: 88px;
  height: 72px;
  object-fit: contain;
}

.desktop-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 42px);
  white-space: nowrap;
}

.desktop-nav a,
.footer-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after,
.footer-nav a::after {
  position: absolute;
  content: "";
  inset: auto 0 -7px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

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

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

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

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

.mobile-menu {
  display: none;
}

.hero {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  min-height: 84svh;
  margin: 0 auto;
  padding: 24px 0 0;
  display: grid;
  grid-template-rows: minmax(600px, 720px) auto;
}

.hero-stage {
  position: relative;
  min-height: 600px;
  height: min(720px, calc(84svh - 96px));
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius);
  background: var(--navy-deep);
}

.hero-backdrop,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-backdrop {
  z-index: -3;
  object-fit: cover;
  object-position: 52% center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 21, 36, .96) 0%, rgba(7, 21, 36, .87) 42%, rgba(7, 21, 36, .36) 74%, rgba(7, 21, 36, .18) 100%),
    linear-gradient(0deg, rgba(7, 21, 36, .28), transparent 50%);
}

.hero-copy {
  width: min(69%, 790px);
  padding: clamp(50px, 7vh, 76px) 0 48px clamp(34px, 5vw, 76px);
  color: var(--white);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3b3b9;
}

.hero-lede {
  max-width: 540px;
  margin-top: 28px;
  color: #eff2ed;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span,
.route a span,
.contact-line > span:last-child,
.map-action span {
  transition: transform .25s var(--ease);
}

.text-link:hover span,
.route a:hover span,
.contact-line:hover > span:last-child,
.map-card:hover .map-action span {
  transform: translate(3px, -2px);
}

.light-link {
  color: var(--white);
}

.hero-proof {
  position: absolute;
  right: clamp(24px, 4vw, 56px);
  bottom: clamp(24px, 4vw, 52px);
  width: min(29vw, 390px);
  background: var(--paper-raised);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(7, 21, 36, .32);
}

.hero-proof img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 42%;
}

.hero-proof figcaption {
  padding: 15px 18px 17px;
  font-size: 13px;
  font-weight: 700;
}

.hero-foot {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.hero-foot a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.section {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin: 0 auto;
  padding: clamp(110px, 13vw, 190px) 0;
}

.section-heading {
  max-width: 1000px;
}

.section-heading > p:last-child,
.archive-heading > p:last-child {
  max-width: 650px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 19px;
}

.service-routes {
  margin-top: 78px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 0 clamp(50px, 8vw, 132px);
}

.route {
  min-height: 285px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.route-wide {
  grid-row: span 2;
  min-height: 570px;
  padding-right: clamp(40px, 9vw, 140px);
  justify-content: space-between;
  border-top: 6px solid var(--navy);
}

.route-offset {
  margin-left: 82px;
}

.route-title {
  display: flex;
  align-items: flex-start;
}

.route p {
  max-width: 560px;
  margin: 26px 0;
  color: var(--muted);
}

.route a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.work-portrait {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(400px, 1.18fr) 190px;
  align-items: end;
  gap: clamp(26px, 4vw, 64px);
}

.portrait-copy {
  align-self: center;
  padding-bottom: 36px;
}

.portrait-copy p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
  font-size: 19px;
}

.portrait-image {
  max-width: 600px;
}

.portrait-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.portrait-note {
  padding: 24px 0 36px;
  border-top: 4px solid var(--red);
  color: var(--muted);
  font-size: 14px;
}

.portrait-note p + p {
  margin-top: 15px;
}

.service-archive {
  padding-top: 80px;
}

.archive-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.archive-grid {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.service-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-raised);
}

.service-panel h3 {
  font-size: clamp(30px, 3.4vw, 54px);
}

.service-panel p,
.service-panel li {
  color: var(--muted);
}

.service-panel p {
  margin-top: 22px;
}

.service-panel ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.service-panel li + li {
  margin-top: 8px;
}

.panel-copy {
  padding: clamp(28px, 4vw, 56px);
}

.panel-facade {
  grid-column: span 8;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
}

.panel-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-graffiti {
  grid-column: span 4;
  padding: clamp(34px, 4vw, 58px);
  background: var(--red);
  color: var(--white);
}

.panel-graffiti p {
  color: #fae9e8;
}

.panel-drain {
  grid-column: span 5;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: var(--navy-deep);
  color: var(--white);
}

.panel-drain::after {
  position: absolute;
  content: "";
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(4, 13, 23, .9), rgba(4, 13, 23, .02) 65%);
}

.panel-drain img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-drain p {
  color: #d6e1e7;
}

.panel-camera {
  grid-column: span 7;
  min-height: 520px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
}

.panel-camera img {
  width: 100%;
  padding: 20px;
}

.panel-car {
  grid-column: 3 / span 8;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.panel-car img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
}

.origin {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 76px clamp(40px, 9vw, 140px);
}

.origin-body {
  align-self: end;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 18px;
}

.origin-body p + p {
  margin-top: 22px;
}

.origin-image {
  grid-column: 1 / -1;
  height: min(420px, 32vw);
  overflow: hidden;
}

.origin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.contact {
  padding-bottom: clamp(120px, 14vw, 200px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px clamp(48px, 8vw, 120px);
}

.contact-lead p:last-child {
  max-width: 520px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 19px;
}

.contact-actions {
  border-top: 5px solid var(--navy);
}

.contact-line {
  min-height: 104px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-line > span:first-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-line strong {
  font-size: clamp(20px, 2.2vw, 30px);
}

.map-card {
  grid-column: 2;
  min-height: 210px;
  margin-top: -28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, transparent 48%, color-mix(in srgb, var(--navy) 10%, transparent) 48%),
    var(--paper-raised);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}

.map-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.map-address {
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.map-action {
  align-self: flex-end;
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-raised);
}

.footer-main,
.footer-meta {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin: 0 auto;
}

.footer-main {
  min-height: 245px;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: start;
  gap: 60px;
}

.footer-brand {
  width: 130px;
  padding: 8px;
  background: #fdfdfb;
}

.footer-brand img {
  width: 112px;
  height: auto;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.footer-contact a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-meta {
  min-height: 72px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 12px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #10161a;
    --paper-raised: #182127;
    --ink: #edf0eb;
    --muted: #b6c0c2;
    --line: #39474d;
    --navy: #8eabc6;
    --navy-deep: #091923;
    --red: #c85a66;
    --red-hover: #ad404d;
    --white: #f5f4ef;
  }

  .site-header {
    background: color-mix(in srgb, var(--paper) 93%, transparent);
  }

  .panel-graffiti {
    background: #872733;
  }
}

@media (max-width: 1024px) {
  :root {
    --gutter: 28px;
  }

  .hero-copy {
    width: 72%;
  }

  .hero-proof {
    width: 32vw;
  }

  .work-portrait {
    grid-template-columns: .82fr 1.18fr;
  }

  .portrait-note {
    grid-column: 1 / -1;
    display: flex;
    gap: 28px;
  }

  .panel-facade,
  .panel-camera {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 18px;
    --header-height: 76px;
  }

  html {
    scroll-padding-top: 92px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 68px);
  }

  h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .header-inner {
    grid-template-columns: 100px 1fr auto;
    gap: 16px;
  }

  .brand {
    width: 94px;
    height: 68px;
  }

  .brand img {
    width: 82px;
    height: 67px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
    grid-column: 3;
    justify-self: end;
    position: relative;
  }

  .mobile-menu summary {
    min-width: 72px;
    min-height: 44px;
    padding: 0 14px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu[open] summary {
    background: var(--red);
    color: var(--white);
  }

  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 56px;
    width: min(300px, calc(100vw - 36px));
    padding: 14px;
    display: grid;
    background: var(--paper-raised);
    border: 1px solid var(--line);
    box-shadow: 0 16px 45px rgba(5, 14, 20, .2);
  }

  .mobile-menu nav a {
    min-height: 48px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 0;
    padding-top: 14px;
    display: block;
  }

  .hero-stage {
    min-height: 690px;
    height: auto;
  }

  .hero-backdrop {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 21, 36, .94) 0%, rgba(7, 21, 36, .78) 56%, rgba(7, 21, 36, .36) 100%),
      linear-gradient(90deg, rgba(7, 21, 36, .4), transparent);
  }

  .hero-copy {
    width: 100%;
    padding: 42px 22px 0;
  }

  .hero-lede {
    max-width: 330px;
    margin-top: 22px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero-proof {
    right: 18px;
    bottom: 18px;
    width: min(68vw, 286px);
  }

  .hero-proof figcaption {
    padding: 11px 13px 13px;
    font-size: 12px;
  }

  .hero-foot {
    min-height: 74px;
  }

  .section {
    padding: 96px 0;
  }

  .section-heading > p:last-child,
  .archive-heading > p:last-child {
    margin-top: 24px;
    font-size: 17px;
  }

  .service-routes {
    margin-top: 54px;
    display: block;
  }

  .route,
  .route-wide {
    min-height: 0;
    padding: 30px 0 34px;
  }

  .route-wide {
    padding-right: 0;
  }

  .route-offset {
    margin-left: 0;
  }

  .route p {
    margin: 22px 0 30px;
  }

  .work-portrait {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 34px;
  }

  .portrait-copy {
    order: 1;
    padding-bottom: 0;
  }

  .portrait-image {
    order: 2;
  }

  .portrait-note {
    order: 3;
    display: grid;
    gap: 12px;
    padding: 22px 0;
  }

  .portrait-note p + p {
    margin-top: 0;
  }

  .archive-grid {
    margin-top: 54px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .panel-facade,
  .panel-camera,
  .panel-car {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .panel-facade img,
  .panel-car img {
    max-height: none;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .panel-graffiti {
    padding: 34px 28px 48px;
  }

  .panel-drain {
    min-height: 440px;
  }

  .panel-camera img {
    padding: 12px 28px 28px;
  }

  .origin {
    display: block;
  }

  .origin-body {
    margin-top: 34px;
  }

  .origin-image {
    height: 290px;
    margin-top: 44px;
  }

  .contact {
    display: block;
  }

  .contact-actions {
    margin-top: 54px;
  }

  .contact-line {
    min-height: 98px;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
  }

  .contact-line strong {
    font-size: 19px;
  }

  .map-card {
    min-height: 190px;
    margin-top: 36px;
    padding: 26px;
  }

  .footer-main {
    min-height: 0;
    padding: 44px 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .footer-meta {
    padding: 22px 0;
    display: grid;
    justify-content: stretch;
    gap: 12px;
  }
}

@media (max-width: 380px) {
  .hero-stage {
    min-height: 680px;
  }

  .hero-copy {
    padding-inline: 18px;
  }

  .hero-foot {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .contact-line {
    grid-template-columns: 1fr auto;
  }

  .contact-line > span:first-child {
    grid-column: 1 / -1;
    margin-bottom: -15px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    opacity: 0;
    transform: translateY(18px);
    animation: hero-in .72s var(--ease) forwards;
  }

  .hero-copy > :nth-child(2) {
    animation-delay: .08s;
  }

  .hero-copy > :nth-child(3) {
    animation-delay: .15s;
  }

  .hero-copy > :nth-child(4) {
    animation-delay: .22s;
  }

  .hero-proof {
    opacity: 0;
    transform: translateY(20px);
    animation: hero-in .8s .25s var(--ease) forwards;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
