:root {
  --red: #e10600;
  --red-dark: #980500;
  --black: #050505;
  --charcoal: #111111;
  --gray-900: #1c1c1c;
  --gray-700: #343434;
  --gray-100: #f4f4f4;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

img,
svg {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.site-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.46));
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 96px;
  height: 58px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

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

.nav-cta {
  padding: 12px 16px;
  color: var(--white);
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.18);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  min-height: 100svh;
  padding: 138px clamp(18px, 5vw, 72px) 82px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 26%, rgba(225, 6, 0, 0.42), transparent 30%),
    linear-gradient(115deg, rgba(5, 5, 5, 0.98), rgba(17, 17, 17, 0.94) 52%, rgba(5, 5, 5, 0.88)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 19px),
    var(--black);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(155deg, transparent 0 42%, rgba(225, 6, 0, 0.18) 42% 46%, transparent 46%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 8px, transparent 8px 18px);
  content: "";
  opacity: 0.92;
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -18px;
  z-index: 0;
  width: 76vw;
  height: 32vh;
  min-height: 210px;
  background:
    linear-gradient(135deg, transparent 0 28%, rgba(255, 255, 255, 0.08) 28% 30%, transparent 30%),
    linear-gradient(145deg, transparent 0 36%, rgba(0, 0, 0, 0.84) 36% 67%, transparent 67%),
    linear-gradient(35deg, transparent 0 41%, rgba(0, 0, 0, 0.94) 41% 71%, transparent 71%);
  clip-path: polygon(0 54%, 18% 25%, 34% 52%, 49% 28%, 66% 58%, 82% 32%, 100% 63%, 100% 100%, 0 100%);
  content: "";
}

.hero-content,
.champ-card {
  position: relative;
  z-index: 2;
}

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

.hero-kicker,
.section-eyebrow,
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker span {
  display: inline-block;
  width: 34px;
  height: 4px;
  background: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oswald", Arial, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin-top: 18px;
  font-size: clamp(2.75rem, 6.4vw, 5.9rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.hero p {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-actions,
.contact-form .full {
  grid-column: 1 / -1;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 16px 34px rgba(225, 6, 0, 0.34);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 44px rgba(225, 6, 0, 0.44);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
  color: var(--black);
}

.red-strike {
  position: absolute;
  z-index: 1;
  width: 34vw;
  height: 10px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.78;
  transform: rotate(-18deg);
  filter: drop-shadow(0 0 18px rgba(225, 6, 0, 0.58));
}

.strike-one {
  top: 24%;
  right: -5%;
}

.strike-two {
  bottom: 20%;
  left: 48%;
  width: 28vw;
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.025) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%);
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
  background-size: 16px 16px;
  mix-blend-mode: screen;
  opacity: 0.42;
}

.hero-roofline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.95));
  clip-path: polygon(0 72%, 10% 54%, 19% 71%, 30% 42%, 46% 72%, 57% 50%, 71% 74%, 83% 46%, 100% 76%, 100% 100%, 0 100%);
}

.champ-card {
  justify-self: center;
  display: grid;
  align-content: center;
  width: min(100%, 380px);
  min-height: 430px;
  padding: 34px 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, rgba(28, 28, 28, 0.96), rgba(5, 5, 5, 0.96));
  border: 2px solid rgba(255, 255, 255, 0.16);
  clip-path: polygon(13% 0, 87% 0, 100% 14%, 100% 86%, 87% 100%, 13% 100%, 0 86%, 0 14%);
  box-shadow: var(--shadow), inset 0 0 0 6px rgba(225, 6, 0, 0.12);
}

.champ-card::before,
.champ-card::after {
  display: block;
  height: 18px;
  margin: 0 auto;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent),
    var(--red);
  content: "";
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.champ-card::before {
  width: 76%;
  margin-bottom: 30px;
}

.champ-card::after {
  width: 58%;
  margin-top: 30px;
}

.logo-showcase {
  display: grid;
  place-items: center;
  width: min(100%, 320px);
  aspect-ratio: 1582 / 976;
  margin: 0 auto 26px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.champ-card p {
  margin: 0 auto 10px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  text-transform: uppercase;
}

.champ-card strong {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.trust-bar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 92px;
  padding: 18px 16px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.11), transparent 46%),
    var(--red);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  font-size: clamp(0.84rem, 1.4vw, 1rem);
  text-align: center;
  text-transform: uppercase;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.split-layout,
.section-heading,
.why-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.section-heading {
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 58px);
}

.section-heading p,
.why-content p,
.about-section p,
.contact-copy p {
  margin: 18px 0 0;
  color: #4a4a4a;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.section-heading.centered {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.about-section {
  background:
    linear-gradient(90deg, rgba(225, 6, 0, 0.08), transparent 34%),
    var(--white);
}

.about-section p {
  max-width: 760px;
}

.roof-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
  padding: 34px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.2), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 18px),
    linear-gradient(155deg, var(--gray-900), var(--black));
  border: 1px solid rgba(5, 5, 5, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.roof-panel::before {
  position: absolute;
  inset: auto -8% 0 -8%;
  height: 48%;
  background:
    linear-gradient(145deg, transparent 0 37%, rgba(255, 255, 255, 0.08) 37% 40%, transparent 40%),
    linear-gradient(35deg, transparent 0 38%, rgba(0, 0, 0, 0.92) 38% 70%, transparent 70%),
    linear-gradient(145deg, transparent 0 34%, rgba(0, 0, 0, 0.84) 34% 72%, transparent 72%);
  clip-path: polygon(0 62%, 18% 32%, 35% 62%, 50% 38%, 68% 66%, 84% 34%, 100% 65%, 100% 100%, 0 100%);
  content: "";
}

.belt-plate {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 470px);
  aspect-ratio: 1582 / 976;
  padding: 0;
  overflow: hidden;
  text-align: center;
  background: transparent;
  border: 0;
  outline: 0;
  border-radius: 0;
  box-shadow: none;
}

.services-section,
.process-section {
  background: var(--gray-100);
}

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

.service-card,
.process-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before,
.process-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, var(--red), var(--black));
  content: "";
}

.service-card::after {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  background: var(--black);
  content: "";
  opacity: 0.045;
  clip-path: polygon(50% 0, 60% 27%, 89% 11%, 73% 40%, 100% 50%, 73% 60%, 89% 89%, 60% 73%, 50% 100%, 40% 73%, 11% 89%, 27% 60%, 0 50%, 27% 40%, 11% 11%, 40% 27%);
}

.service-card:hover,
.service-card:focus-within,
.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 6, 0, 0.35);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14);
}

.service-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  background: var(--black);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 4px rgba(225, 6, 0, 0.24);
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.roof-icon::before {
  left: 10px;
  top: 22px;
  width: 38px;
  height: 22px;
  background: var(--white);
  clip-path: polygon(0 50%, 50% 0, 100% 50%, 88% 50%, 88% 100%, 12% 100%, 12% 50%);
}

.roof-icon::after {
  left: 14px;
  top: 36px;
  width: 30px;
  height: 4px;
  background: var(--red);
}

.repair-icon::before {
  left: 16px;
  top: 12px;
  width: 24px;
  height: 40px;
  background: var(--white);
  clip-path: polygon(30% 0, 70% 0, 70% 42%, 100% 42%, 50% 100%, 0 42%, 30% 42%);
  transform: rotate(38deg);
}

.repair-icon::after {
  left: 32px;
  top: 10px;
  width: 8px;
  height: 38px;
  background: var(--red);
  transform: rotate(38deg);
}

.storm-icon::before {
  left: 12px;
  top: 12px;
  width: 36px;
  height: 25px;
  background: var(--white);
  clip-path: polygon(25% 100%, 0 70%, 22% 38%, 44% 45%, 57% 12%, 86% 18%, 100% 52%, 82% 100%);
}

.storm-icon::after {
  left: 21px;
  top: 30px;
  width: 18px;
  height: 24px;
  background: var(--red);
  clip-path: polygon(48% 0, 100% 0, 64% 38%, 100% 38%, 30% 100%, 48% 54%, 0 54%);
}

.shingle-icon::before {
  left: 10px;
  top: 15px;
  width: 38px;
  height: 28px;
  background:
    linear-gradient(var(--red) 0 4px, transparent 4px 8px),
    repeating-linear-gradient(90deg, var(--white) 0 8px, rgba(255, 255, 255, 0.72) 8px 16px);
}

.shingle-icon::after {
  left: 10px;
  top: 43px;
  width: 38px;
  height: 5px;
  background: var(--white);
}

.inspect-icon::before {
  left: 13px;
  top: 12px;
  width: 24px;
  height: 24px;
  border: 6px solid var(--white);
  border-radius: 50%;
}

.inspect-icon::after {
  left: 36px;
  top: 36px;
  width: 17px;
  height: 7px;
  background: var(--red);
  transform: rotate(45deg);
}

.exterior-icon::before {
  left: 11px;
  top: 15px;
  width: 36px;
  height: 34px;
  background: var(--white);
  clip-path: polygon(0 42%, 50% 0, 100% 42%, 88% 42%, 88% 100%, 58% 100%, 58% 68%, 42% 68%, 42% 100%, 12% 100%, 12% 42%);
}

.exterior-icon::after {
  left: 18px;
  top: 34px;
  width: 22px;
  height: 4px;
  background: var(--red);
}

.service-card h3,
.process-card h3 {
  margin-bottom: 12px;
}

.service-card p,
.process-card p {
  margin: 0;
  color: #555555;
}

.why-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(225, 6, 0, 0.22), transparent 28%),
    linear-gradient(135deg, var(--black), var(--gray-900));
}

.why-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 40%, rgba(225, 6, 0, 0.18) 40% 43%, transparent 43%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 18px);
  content: "";
}

.why-content,
.why-list {
  position: relative;
  z-index: 1;
}

.why-content p {
  color: rgba(255, 255, 255, 0.72);
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-item {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  min-height: 84px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.why-item span {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--white);
  background: var(--red);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.why-item strong {
  padding: 18px 20px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-card {
  min-height: 250px;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 50px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--red);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.service-area {
  padding: clamp(54px, 7vw, 86px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.54)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 20px),
    var(--red);
}

.service-area h2 {
  max-width: 920px;
  margin-top: 14px;
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.area-badge {
  color: var(--white);
  padding: 6px 12px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(225, 6, 0, 0.24), transparent 26%),
    linear-gradient(135deg, var(--charcoal), var(--black));
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-logo {
  display: block;
  width: min(100%, 330px);
  aspect-ratio: 1582 / 976;
  margin-bottom: 28px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.48));
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-details a,
.contact-details p {
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  word-break: break-word;
}

.contact-details span {
  color: var(--red);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select option {
  color: var(--black);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(5, 5, 5, 0.8);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(225, 6, 0, 0.22);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--black);
  border-top: 4px solid var(--red);
}

.footer-brand {
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-brand img {
  width: 104px;
  height: 64px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.site-footer p {
  margin: 4px 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
}

.copyright {
  justify-self: end;
  text-align: right;
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .champ-card {
    justify-self: start;
    min-height: 320px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .copyright {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .split-layout,
  .section-heading,
  .why-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .roof-panel {
    min-height: 360px;
  }
}

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

  .site-header {
    padding-inline: 14px;
  }

  .brand-logo {
    width: 76px;
    height: 44px;
    padding: 0;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text small {
    font-size: 0.7rem;
  }

  .hero {
    padding: 112px 18px 58px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.1rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .champ-card {
    width: 100%;
    min-height: 290px;
    padding: 24px 18px;
  }

  .logo-showcase {
    width: min(100%, 280px);
    margin-bottom: 22px;
  }

  .trust-bar,
  .service-grid,
  .process-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: flex-start;
    min-height: 72px;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .service-card,
  .process-card {
    min-height: auto;
  }

  .why-item {
    grid-template-columns: 54px 1fr;
  }

  .why-item span {
    font-size: 1.35rem;
  }

  .why-item strong {
    padding: 16px;
    font-size: 1.36rem;
  }

  .contact-form .full {
    grid-column: auto;
  }
}
