:root {
  --carbon: #050607;
  --iron: #111315;
  --graphite: #23272a;
  --zinc: #d8dcdf;
  --steel: #9aa1a7;
  --white: #f7f8f8;
  --paper: #eef1f1;
  --rain: #d8dcdf;
  --amber: #9aa1a7;
  --ink: #171a1d;
  --muted: #6d7479;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(5, 6, 7, 0.15);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --drift-x: 0px;
  --drift-y: 0px;
  --scroll-shift: 0px;
  --scroll-soft-shift: 0px;
  --display: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
  --utility: Consolas, "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  overflow-x: hidden;
  background: var(--carbon);
  font-family: var(--body);
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

.atmosphere {
  position: fixed;
  inset: -12vh -10vw;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(216, 220, 223, 0.09) 0 12%, transparent 12% 45%, rgba(154, 161, 167, 0.08) 45% 46%, transparent 46%),
    linear-gradient(180deg, #030404, #08090a 42%, #050607 100%);
}

.atmosphere::before,
.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate3d(var(--drift-x), var(--drift-y), 0);
  transition: transform 180ms ease-out;
}

.atmosphere::before {
  background:
    repeating-linear-gradient(101deg, transparent 0 54px, rgba(255, 255, 255, 0.045) 55px, transparent 57px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 90px);
  opacity: 0.9;
}

.atmosphere::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  clip-path: polygon(55% 0, 62% 0, 41% 100%, 35% 100%);
  opacity: 0.6;
}

.rain-field,
.metal-spine,
.page-gutter {
  position: absolute;
  display: block;
}

.rain-field {
  inset: -20% 0;
  background: repeating-linear-gradient(107deg, transparent 0 34px, rgba(154, 161, 167, 0.2) 35px, transparent 38px);
  opacity: 0.18;
  animation: rainFall 9s linear infinite;
}

.rain-field-front {
  inset: -35% 0;
  background: repeating-linear-gradient(107deg, transparent 0 76px, rgba(247, 248, 248, 0.22) 77px, transparent 80px);
  opacity: 0.12;
  animation-duration: 5.6s;
}

.metal-spine {
  width: 28vw;
  min-width: 18rem;
  height: 120vh;
  top: -8vh;
  background: linear-gradient(130deg, rgba(247, 248, 248, 0.16), rgba(8, 10, 11, 0.14) 48%, rgba(247, 248, 248, 0.08));
  border-inline: 1px solid rgba(255, 255, 255, 0.08);
  transform: skewX(-18deg) translateY(var(--scroll-shift));
}

.metal-spine-a {
  left: -11vw;
  opacity: 0.42;
}

.metal-spine-b {
  right: 9vw;
  opacity: 0.24;
}

.page-gutter {
  left: 62vw;
  top: -12vh;
  width: 7px;
  height: 132vh;
  transform: skewX(-16deg) translateY(var(--scroll-soft-shift));
  background: linear-gradient(180deg, rgba(216, 220, 223, 0.88), rgba(77, 84, 89, 0.56) 38%, rgba(5, 6, 7, 0.22));
  box-shadow: 0 0 28px rgba(154, 161, 167, 0.18);
}

.page-gutter::after {
  content: "";
  position: absolute;
  inset: 0 -4px;
  background: linear-gradient(180deg, transparent 0 8%, rgba(154, 161, 167, 0.9) 20%, rgba(154, 161, 167, 0.25) 48%, transparent 80%);
  filter: blur(2px);
  animation: routeWater 4.8s ease-in-out infinite;
}

main,
.intro-band,
.site-footer {
  position: relative;
  z-index: 1;
}

img,
svg {
  display: block;
}

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--carbon);
  padding: 0.65rem 0.9rem;
  border-radius: 4px;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem max(1.2rem, calc((100% - 1180px) / 2));
  color: var(--white);
  background: rgba(5, 6, 7, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  grid-column: 1;
}

.brand,
.footer-brand {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
}

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

.site-nav {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(247, 248, 248, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border-radius: 4px;
}

.site-nav a small,
.nav-panel-head,
.nav-panel-actions,
.nav-backdrop {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header-call,
.button,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  border-radius: 4px;
  font-weight: 850;
}

.header-call {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  position: relative;
  z-index: 4;
  padding: 0.65rem 0.85rem;
  color: var(--zinc);
  background: linear-gradient(180deg, #2c3033, #151719);
  border: 1px solid rgba(216, 220, 223, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.24);
}

.header-call svg,
.button svg,
.nav-toggle svg,
.contact-details svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  grid-row: 1;
  position: relative;
  z-index: 4;
  justify-self: end;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(247, 248, 248, 0.09), rgba(247, 248, 248, 0.02)),
    rgba(5, 6, 7, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.55rem 0.75rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 32px rgba(0, 0, 0, 0.28);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-toggle:hover {
  border-color: rgba(247, 248, 248, 0.42);
  transform: translateY(-1px);
}

.nav-toggle-icon {
  position: relative;
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.nav-toggle-icon span {
  position: absolute;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 10px rgba(247, 248, 248, 0.24);
  transform: translateX(-50%);
  transition: top 180ms ease, width 180ms ease, height 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-icon span:nth-child(1) {
  top: 2px;
}

.nav-toggle-icon span:nth-child(2) {
  top: 7px;
}

.nav-toggle-icon span:nth-child(3) {
  top: 12px;
}

.nav-toggle[aria-expanded="true"] {
  background: linear-gradient(180deg, rgba(247, 248, 248, 0.16), rgba(247, 248, 248, 0.05));
  border-color: rgba(247, 248, 248, 0.48);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span {
  top: 8px;
  width: 18px;
  height: 2px;
  border-radius: 3px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94), rgba(5, 6, 7, 0.64) 52%, rgba(5, 6, 7, 0.2)),
    url("hero.png") center / cover no-repeat,
    var(--carbon);
  padding: 7rem max(1.2rem, calc((100% - 1180px) / 2)) 5rem;
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--zinc);
  font-family: var(--utility);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.98;
}

h1 {
  max-width: 9ch;
  margin-bottom: 1.15rem;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

h2 {
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 850;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.22rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 1.6rem;
  color: rgba(247, 248, 248, 0.78);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.button {
  border: 1px solid transparent;
  padding: 0.82rem 1rem;
}

.button-primary {
  color: var(--carbon);
  background: linear-gradient(180deg, var(--white), var(--zinc));
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.18), 0 14px 28px rgba(0, 0, 0, 0.24);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.button:hover,
.header-call:hover {
  transform: translateY(-1px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-facts div {
  padding: 1rem 1.1rem;
  border-right: 1px solid var(--line-dark);
}

.hero-facts div:first-child {
  padding-left: 0;
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  margin-bottom: 0.25rem;
  color: var(--steel);
  font-family: var(--utility);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-weight: 800;
}

.hero-scene {
  display: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scene-plane {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216, 220, 223, 0.24), rgba(216, 220, 223, 0.02) 46%, rgba(255, 255, 255, 0.22));
  opacity: 0.5;
}

.scene-plane-left {
  width: 34%;
  clip-path: polygon(0 0, 38% 0, 64% 49%, 33% 100%, 0 100%);
  transform: translateX(-18%);
}

.scene-plane-right {
  left: auto;
  right: 0;
  width: 62%;
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 10% 100%, 0 48%);
  opacity: 0.68;
}

.roof-assembly {
  position: absolute;
  right: -4rem;
  top: 15%;
  width: 58rem;
  height: 35rem;
  transform: rotate(-3deg);
}

.roof-sheet {
  position: absolute;
  inset: 0;
  clip-path: polygon(22% 0, 100% 0, 84% 38%, 4% 45%);
  background:
    repeating-linear-gradient(101deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 44px),
    linear-gradient(145deg, #2f3438, #0d0f11 60%, #050607);
  box-shadow: var(--shadow);
}

.fascia-board {
  position: absolute;
  right: 6%;
  top: 30%;
  width: 78%;
  height: 5.3rem;
  transform: skewX(-25deg);
  transform-origin: right center;
  background: linear-gradient(180deg, #24282c, #070809 65%, #1b1f22);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.46);
}

.gutter-channel {
  position: absolute;
  right: 4%;
  top: 36%;
  width: 78%;
  height: 2.2rem;
  transform: skewX(-25deg);
  transform-origin: right center;
  background: linear-gradient(180deg, #d5d8da, #767d83 45%, #1b1e21 48%, #050607 100%);
  border-bottom: 2px solid rgba(154, 161, 167, 0.5);
}

.downpipe {
  position: absolute;
  right: 18%;
  top: 39%;
  width: 3.6rem;
  height: 72%;
  transform: skewX(-16deg);
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 16px),
    linear-gradient(90deg, #111416, #3b4146 45%, #0b0d0e);
  box-shadow: 18px 18px 44px rgba(0, 0, 0, 0.48);
}

.water-line {
  position: absolute;
  height: 2px;
  background: var(--rain);
  box-shadow: 0 0 18px rgba(154, 161, 167, 0.85);
  opacity: 0.78;
}

.water-line-a {
  right: 14%;
  top: 41%;
  width: 22rem;
  transform: skewX(-25deg);
  animation: waterRun 4s ease-in-out infinite;
}

.water-line-b {
  right: 19.8%;
  top: 56%;
  width: 12rem;
  transform: rotate(90deg) skewX(-16deg);
  transform-origin: left center;
  animation: waterDrop 4s ease-in-out infinite;
}

.mesh-sample {
  position: absolute;
  right: 21%;
  bottom: 10%;
  width: 19rem;
  height: 7rem;
  transform: skewX(-18deg) rotate(-3deg);
  border: 1px solid rgba(216, 220, 223, 0.24);
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 14px),
    rgba(10, 12, 13, 0.72);
}

.mesh-sample span {
  position: absolute;
  width: 3.6rem;
  height: 1.1rem;
  background: #767b7f;
  clip-path: polygon(9% 0, 100% 28%, 84% 100%, 0 76%);
  opacity: 0.55;
}

.mesh-sample span:nth-child(1) {
  left: 2rem;
  top: 1rem;
}

.mesh-sample span:nth-child(2) {
  left: 7rem;
  top: 4.4rem;
  transform: rotate(18deg);
}

.mesh-sample span:nth-child(3) {
  left: 13rem;
  top: 2.8rem;
  transform: rotate(-16deg);
}

.mesh-sample span:nth-child(n + 4) {
  display: none;
}

.intro-band {
  position: relative;
  padding: 3.75rem 0;
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid rgba(5, 6, 7, 0.08);
  border-bottom: 1px solid rgba(5, 6, 7, 0.14);
}

.intro-band::before,
.intro-band::after {
  display: none;
}

.section-shell {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.intro-grid {
  display: block;
}

.intro-lede {
  display: grid;
  grid-template-columns: minmax(20rem, 0.48fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  max-width: 64rem;
  margin: 0;
}

.intro-lede h2 {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 0.98;
}

.intro-lede p {
  max-width: 37rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.5;
}

.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 6.5rem 0;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 32%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.section > .section-shell {
  position: relative;
  z-index: 1;
}

#services,
#jobs,
#protection,
#process,
#contact {
  scroll-margin-top: 92px;
}

.section-light {
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(216, 220, 223, 0.09) 0 18%, transparent 18% 68%, rgba(154, 161, 167, 0.08) 68% 69%, transparent 69%),
    rgba(7, 10, 11, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(2, 3, 4, 0.95) 0 54%, rgba(22, 24, 26, 0.84) 54%),
    rgba(5, 6, 7, 0.95);
}

.section-silver {
  background:
    linear-gradient(105deg, rgba(247, 248, 248, 0.09), transparent 34%, rgba(154, 161, 167, 0.08)),
    rgba(12, 13, 14, 0.92);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-light::before,
.section-silver::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(101deg, transparent 0 88px, rgba(255, 255, 255, 0.055) 89px, transparent 91px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  clip-path: polygon(68% 0, 100% 0, 82% 100%, 50% 100%);
  opacity: 0.65;
  pointer-events: none;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.8rem;
}

.section-heading p:last-child {
  max-width: 660px;
  color: rgba(247, 248, 248, 0.7);
  font-size: 1.05rem;
}

.services-stage {
  display: block;
  margin-bottom: 2.8rem;
}

.services-stage .section-heading {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-card {
  position: relative;
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(247, 248, 248, 0.12), rgba(5, 6, 7, 0.54));
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 58%, rgba(154, 161, 167, 0.14) 58% 59%, transparent 59%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  margin-bottom: 3.4rem;
  color: var(--zinc);
  border: 1px solid rgba(216, 220, 223, 0.28);
  border-radius: 50%;
  background: linear-gradient(180deg, #2c3033, #151719);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-icon svg {
  width: 2.15rem;
  height: 2.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-top: 0;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(247, 248, 248, 0.68);
}

.jobs-section {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.jobs-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.62fr) minmax(0, 1.38fr);
  gap: 3rem;
  align-items: center;
}

.jobs-copy {
  max-width: 440px;
}

.jobs-copy p:last-child {
  color: rgba(247, 248, 248, 0.7);
  font-size: 1.05rem;
}

.jobs-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(13rem, 0.75fr);
  gap: 0.9rem;
  align-items: stretch;
  min-width: 0;
}

.job-card {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 30rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #080a0b;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.job-card-wide {
  min-height: 26rem;
  aspect-ratio: 16 / 9;
}

.job-card-tall {
  min-height: 32rem;
}

.job-card-site {
  aspect-ratio: 4 / 3;
}

.job-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 420ms ease, filter 420ms ease;
}

.job-card:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.08);
}

.job-card-site img {
  object-position: center 42%;
}

.job-card::after {
  content: "";
  position: absolute;
  inset: 46% 0 0;
  background: linear-gradient(180deg, transparent, rgba(3, 4, 4, 0.88));
  pointer-events: none;
}

.job-card figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  color: var(--white);
}

.job-card figcaption span {
  font-family: var(--display);
  font-size: 1.14rem;
  font-weight: 850;
}

.job-card figcaption small {
  max-width: 28rem;
  color: rgba(247, 248, 248, 0.72);
  font-size: 0.84rem;
  font-weight: 650;
}

.protection-section {
  overflow: hidden;
}

.protection-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(113deg, transparent 0 52%, rgba(216, 220, 223, 0.08) 52% 54%, transparent 54%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 118px);
  pointer-events: none;
}

.protection-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.protection-copy {
  position: sticky;
  top: 8rem;
}

.protection-copy h2,
.contact-copy h2 {
  max-width: 560px;
}

.protection-copy p:last-child,
.contact-copy p {
  color: rgba(247, 248, 248, 0.72);
  font-size: 1.05rem;
}

.protection-list {
  border-top: 1px solid var(--line-dark);
}

.protection-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.3rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.protection-item > span,
.process-step > span {
  color: var(--rain);
  font-family: var(--utility);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.protection-item p {
  margin-bottom: 0;
  color: rgba(247, 248, 248, 0.7);
}

.process-section {
  overflow: hidden;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(5, 6, 7, 0.36);
  backdrop-filter: blur(10px);
}

.process-step {
  min-height: 15.5rem;
  padding: 1.25rem 1.25rem 1.7rem;
  border-right: 1px solid var(--line-dark);
}

.process-step:last-child {
  border-right: 0;
}

.process-step h3 {
  margin-top: 3.2rem;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(247, 248, 248, 0.68);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 4rem;
}

.faq-lede {
  max-width: 430px;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

details {
  border-bottom: 1px solid var(--line-dark);
}

summary {
  position: relative;
  min-height: 4.2rem;
  display: flex;
  align-items: center;
  padding: 1rem 3rem 1rem 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: var(--carbon);
  background: var(--white);
  border-radius: 50%;
  font-family: var(--utility);
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 720px;
  margin: -0.2rem 0 1.2rem;
  color: rgba(247, 248, 248, 0.68);
}

.contact-section {
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(3, 4, 4, 0.9) 0 30%, rgba(5, 6, 7, 0.64) 50%, rgba(5, 6, 7, 0.5) 62%, rgba(5, 6, 7, 0.8) 100%),
    url("WhatsApp Image 2026-07-02 at 14.46.25 (3).jpeg") center 44% / cover no-repeat,
    var(--carbon);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(116deg, transparent 0 48%, rgba(216, 220, 223, 0.2) 48% 49%, transparent 49%),
    linear-gradient(90deg, rgba(5, 6, 7, 0.34), rgba(154, 161, 167, 0.12), rgba(154, 161, 167, 0.12)),
    repeating-linear-gradient(101deg, transparent 0 76px, rgba(247, 248, 248, 0.055) 77px, transparent 79px);
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(21rem, 0.58fr);
  min-height: 38rem;
  gap: 3rem;
  align-items: center;
}

.contact-copy {
  max-width: 540px;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.58);
}

.contact-details {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
  font-style: normal;
}

.contact-details a,
.contact-details span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(247, 248, 248, 0.88);
}

.contact-details a:hover {
  color: var(--white);
}

.contact-details svg {
  width: 34px;
  height: 34px;
  padding: 0.42rem;
  color: var(--zinc);
  background: linear-gradient(180deg, #2c3033, #151719);
  border: 1px solid rgba(216, 220, 223, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.45rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--zinc);
  background: linear-gradient(180deg, #2c3033, #151719);
  border: 1px solid rgba(216, 220, 223, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.18), 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  color: var(--white);
  background: #080a0b;
  border-color: rgba(247, 248, 248, 0.4);
  transform: translateY(-1px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon svg path {
  fill: currentColor;
  stroke: none;
}

.quote-form {
  justify-self: end;
  width: min(100%, 29rem);
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(247, 248, 248, 0.1), rgba(247, 248, 248, 0.035)),
    rgba(5, 6, 7, 0.82);
  border: 1px solid rgba(247, 248, 248, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.15);
}

.field {
  display: grid;
  gap: 0.45rem;
}

.quote-form label {
  color: rgba(247, 248, 248, 0.84);
}

.quote-form select,
.quote-form textarea {
  background: rgba(247, 248, 248, 0.94);
  color: var(--ink);
}

label {
  color: var(--graphite);
  font-size: 0.86rem;
  font-weight: 850;
}

select,
textarea {
  width: 100%;
  border: 1px solid rgba(5, 6, 7, 0.18);
  border-radius: 4px;
  background: #f8fafa;
  color: var(--ink);
}

select {
  min-height: 48px;
  padding: 0 0.8rem;
}

textarea {
  min-height: 9rem;
  resize: vertical;
  padding: 0.8rem;
}

.quote-form .button {
  width: 100%;
  border: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(247, 248, 248, 0.7);
  background:
    linear-gradient(112deg, rgba(3, 4, 4, 0.99) 0 56%, rgba(19, 23, 25, 0.98) 56%),
    #030404;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(101deg, transparent 0 92px, rgba(255, 255, 255, 0.05) 93px, transparent 95px),
    linear-gradient(90deg, transparent, rgba(154, 161, 167, 0.11), transparent);
  clip-path: polygon(62% 0, 100% 0, 82% 100%, 48% 100%);
  opacity: 0.75;
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(15rem, 1.35fr) minmax(8rem, 0.65fr);
  gap: 2.4rem;
  padding: 4.5rem 0 3rem;
}

.footer-brand-block {
  max-width: 25rem;
}

.footer-brand-block p {
  max-width: 21rem;
  margin: 1rem 0 0;
  color: rgba(247, 248, 248, 0.68);
  font-size: 1rem;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 0.35rem;
  color: var(--zinc);
  font-family: var(--utility);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a,
.footer-contact span,
.footer-bottom a {
  color: rgba(247, 248, 248, 0.7);
  font-weight: 750;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-contact {
  font-style: normal;
}

.footer-quote {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.55rem;
  padding: 0.7rem 0.9rem;
  color: var(--carbon) !important;
  background: linear-gradient(180deg, var(--white), var(--zinc));
  border-radius: 4px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.16);
}

.footer-social {
  margin-top: 1.25rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(247, 248, 248, 0.56);
  font-family: var(--utility);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.hero-content.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) and (prefers-reduced-motion: no-preference) {
  .section.section-route-enter > .section-shell {
    animation: sectionSlideRight 620ms cubic-bezier(0.2, 0.76, 0.24, 1) both;
    will-change: transform, opacity;
  }
}

@keyframes sectionSlideRight {
  from {
    opacity: 0.2;
    transform: translateX(-42px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
  .hero,
  .contact-section {
    background-attachment: scroll, fixed, scroll;
  }
}

@keyframes waterRun {
  0%,
  35% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  55% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
}

@keyframes waterDrop {
  0%,
  50% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  70% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
}

@keyframes rainFall {
  0% {
    transform: translate3d(0, -8%, 0);
  }
  100% {
    transform: translate3d(-6%, 18%, 0);
  }
}

@keyframes routeWater {
  0%,
  24% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  46% {
    opacity: 0.95;
  }
  76% {
    opacity: 0.7;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .nav-toggle {
    grid-column: 4;
    display: inline-flex;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: block;
    visibility: hidden;
    opacity: 0;
    background:
      linear-gradient(180deg, rgba(5, 6, 7, 0.18), rgba(5, 6, 7, 0.62)),
      rgba(5, 6, 7, 0.28);
    backdrop-filter: blur(2px);
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  body.nav-open .nav-backdrop {
    visibility: visible;
    opacity: 1;
  }

  .site-nav {
    position: fixed;
    inset: 82px 1rem auto 1rem;
    z-index: 3;
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 0.45rem;
    max-height: calc(100svh - 98px);
    overflow: auto;
    overscroll-behavior: contain;
    padding: 0.85rem;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    color: var(--white);
    background:
      linear-gradient(135deg, rgba(247, 248, 248, 0.1), transparent 32%),
      linear-gradient(180deg, rgba(12, 15, 16, 0.98), rgba(4, 5, 6, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transform: translateX(-1.25rem) scale(0.985);
    transform-origin: top left;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
  }

  .site-nav a {
    display: grid;
    gap: 0.16rem;
    padding: 0.9rem 0.95rem;
    color: rgba(247, 248, 248, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
  }

  .site-nav a span {
    font-family: var(--display);
    font-size: 1.02rem;
    font-weight: 850;
  }

  .site-nav a small {
    display: block;
    color: rgba(216, 220, 223, 0.58);
    font-size: 0.79rem;
    font-weight: 600;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(247, 248, 248, 0.09);
    border-color: rgba(154, 161, 167, 0.36);
  }

  .nav-panel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.25rem 0.35rem 0.55rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-panel-head span {
    color: var(--steel);
    font-family: var(--utility);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-panel-head strong {
    color: rgba(247, 248, 248, 0.7);
    font-family: var(--display);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-panel-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    padding-top: 0.45rem;
  }

  .nav-panel-actions a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem;
    color: var(--carbon);
    background: linear-gradient(180deg, var(--white), var(--zinc));
    border-color: transparent;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.16);
    text-align: center;
  }

  .header-call {
    grid-column: 3;
    justify-self: end;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    max-width: 670px;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .roof-assembly {
    right: -17rem;
    width: 52rem;
    opacity: 0.68;
  }

  .intro-grid,
  .service-grid,
  .process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .service-card {
    min-height: 15rem;
  }

  .protection-layout,
  .jobs-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .contact-section {
    background:
      linear-gradient(180deg, rgba(3, 4, 4, 0.82), rgba(5, 6, 7, 0.62) 48%, rgba(5, 6, 7, 0.88)),
      url("WhatsApp Image 2026-07-02 at 14.46.25 (3).jpeg") 42% center / cover no-repeat,
      var(--carbon);
  }

  .contact-layout {
    min-height: auto;
  }

  .jobs-copy {
    max-width: 720px;
  }

  .protection-copy {
    position: static;
  }

  .quote-form {
    justify-self: start;
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 96px;
  }

  .site-header {
    inset: 0.75rem 0.75rem auto 0.75rem;
    grid-template-columns: 3.9rem 1fr 46px 46px;
    min-height: 72px;
    gap: 0.65rem;
    padding: 0.55rem 1rem;
    background: rgba(3, 4, 4, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
  }

  .brand img {
    width: 62px;
    height: 54px;
  }

  .header-call span,
  .nav-toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .header-call,
  .nav-toggle {
    width: 46px;
    padding: 0;
  }

  .site-nav {
    inset: 6.15rem 0.75rem auto 0.75rem;
    padding: 0.9rem;
    border-radius: 16px;
    background:
      linear-gradient(120deg, rgba(247, 248, 248, 0.08), transparent 42%),
      rgba(5, 6, 7, 0.98);
  }

  #services,
  #jobs,
  #protection,
  #process,
  #contact {
    scroll-margin-top: 96px;
  }

  .hero {
    min-height: 92svh;
    align-items: end;
    padding: 7.7rem 1rem 3.6rem;
    background:
      linear-gradient(180deg, rgba(5, 6, 7, 0.86), rgba(5, 6, 7, 0.95) 48%, rgba(5, 6, 7, 0.82)),
      url("hero.png") center / cover no-repeat,
      var(--carbon);
  }

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

  .eyebrow {
    font-size: 0.76rem;
  }

  h1 {
    max-width: 7.8ch;
    margin-bottom: 1rem;
    font-size: 3.15rem;
    letter-spacing: 0.06em;
  }

  h2 {
    font-size: 2.05rem;
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero-lede {
    max-width: 24rem;
    margin-bottom: 1.35rem;
    font-size: 1rem;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-actions {
    gap: 0.65rem;
    margin-bottom: 1.35rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div,
  .hero-facts div:first-child {
    padding: 0.72rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .roof-assembly {
    top: 22%;
    right: -28.5rem;
    opacity: 0.3;
  }

  .atmosphere {
    inset: -8vh -34vw;
  }

  .rain-field-front {
    display: none;
  }

  .rain-field-back {
    opacity: 0.1;
    animation-duration: 14s;
  }

  .metal-spine {
    min-width: 12rem;
  }

  .metal-spine-a {
    left: -24vw;
  }

  .metal-spine-b,
  .page-gutter {
    opacity: 0.26;
  }

  .services-stage {
    margin-bottom: 1.35rem;
  }

  .mesh-sample {
    display: none;
  }

  .section {
    padding: 4.35rem 0;
  }

  .section-shell {
    width: min(100% - 2rem, 1180px);
  }

  .intro-grid,
  .jobs-gallery,
  .service-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .job-card,
  .job-card-wide,
  .job-card-tall {
    min-height: 21rem;
  }

  .job-card-wide {
    aspect-ratio: 4 / 3;
  }

  .job-card-tall {
    aspect-ratio: 3 / 4;
  }

  .job-card figcaption {
    padding: 0.9rem;
  }

  .intro-lede {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .intro-lede p {
    font-size: 1.08rem;
  }

  .service-card {
    min-height: auto;
    padding: 1.2rem;
    border-radius: 6px;
  }

  .service-icon {
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1.45rem;
  }

  .service-card h3 {
    margin-top: 0;
  }

  .protection-item {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .process-step,
  .process-step:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step h3 {
    margin-top: 1.8rem;
  }

  summary {
    font-size: 1.08rem;
  }

  .quote-form {
    width: 100%;
    padding: 1rem;
    border-radius: 6px;
  }

  .contact-section {
    background:
      linear-gradient(180deg, rgba(3, 4, 4, 0.88) 0 24%, rgba(5, 6, 7, 0.74) 48%, rgba(5, 6, 7, 0.96) 100%),
      url("WhatsApp Image 2026-07-02 at 14.46.25 (3).jpeg") 39% top / cover no-repeat,
      var(--carbon);
  }

  .contact-layout {
    gap: 2rem;
  }

  textarea {
    min-height: 8.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3.2rem 0 2rem;
  }

  .footer-brand-block {
    grid-column: auto;
  }

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

  .footer-bottom p {
    line-height: 1.45;
  }
}

@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;
  }

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

  .atmosphere::before,
  .atmosphere::after {
    transition: none;
  }
}
