:root {
  --black: #050505;
  --black-2: #0b0b0d;
  --black-3: #141417;
  --charcoal: #1b1b1f;
  --red: #f04432;
  --red-2: #c51616;
  --red-3: #8e0f0f;
  --cream: #f3ead1;
  --paper: #fbf7ec;
  --white: #ffffff;
  --muted: rgba(255,255,255,.68);
  --muted-dark: rgba(5,5,5,.65);
  --line: rgba(255,255,255,.12);
  --line-dark: rgba(5,5,5,.12);
  --shadow-red: 0 24px 80px rgba(240,68,50,.22);
  --shadow-dark: 0 26px 90px rgba(0,0,0,.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 999;
  background: var(--red);
  color: var(--white);
  padding: .75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus { left: 1rem; }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.section-pad { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }

.top-strip {
  background: linear-gradient(90deg, var(--red-3), var(--red), var(--red-2));
  color: var(--white);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.top-strip__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-strip a { text-decoration: none; white-space: nowrap; }
.top-strip a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,5,5,.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(5,5,5,.94);
  box-shadow: 0 16px 60px rgba(0,0,0,.38);
}

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.35rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 192px;
  height: auto;
  filter: drop-shadow(0 12px 26px rgba(240,68,50,.18));
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .42rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}

.main-nav a {
  padding: .7rem .95rem;
  color: rgba(255,255,255,.76);
  border-radius: 999px;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .075em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
  background: rgba(240,68,50,.22);
}

.header-phone {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .82rem 1rem;
  border: 1px solid rgba(240,68,50,.55);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 12px 34px rgba(240,68,50,.22);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .02em;
  white-space: nowrap;
}

.header-phone:hover { filter: brightness(1.08); }

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

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 122px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 16%, rgba(240,68,50,.32), transparent 28rem),
    radial-gradient(circle at 85% 20%, rgba(197,22,22,.18), transparent 30rem),
    linear-gradient(135deg, #050505 0%, #111116 46%, #050505 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 86%);
  pointer-events: none;
}

.hero::after {
  content: "ROOFING";
  position: absolute;
  right: -3vw;
  bottom: -4vw;
  color: rgba(255,255,255,.035);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 1000;
  letter-spacing: -.09em;
  line-height: .8;
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 1px, transparent 1px 7px);
  opacity: .4;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: #ff7669;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

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

h1, h2, h3 {
  color: inherit;
  line-height: .96;
  letter-spacing: -.06em;
}

h1 {
  max-width: 860px;
  margin-bottom: 1.3rem;
  font-size: clamp(3.4rem, 8.8vw, 7.7rem);
  font-weight: 1000;
  text-transform: uppercase;
}

.hero-text {
  max-width: 760px;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: .95rem 1.22rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  font-size: .86rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: var(--shadow-red);
}

.button-primary:hover { filter: brightness(1.08); }

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

.button-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.42);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 2.4rem;
}

.trust-row div {
  min-height: 104px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(14px);
}

.trust-row strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--white);
  font-size: 1.03rem;
  font-weight: 950;
}

.trust-row span {
  display: block;
  color: var(--muted);
  font-size: .87rem;
}

.hero-card {
  position: relative;
  padding: 1.35rem;
  border: 1px solid rgba(240,68,50,.5);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.035)),
    #0e0e11;
  box-shadow: var(--shadow-dark), 0 0 0 8px rgba(240,68,50,.04);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(240,68,50,.35), transparent 16rem),
    linear-gradient(135deg, transparent 0%, rgba(255,255,255,.06) 100%);
  pointer-events: none;
}

.hero-card > * { position: relative; z-index: 1; }

.hero-card__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  min-height: 70px;
  margin-bottom: 1.15rem;
  padding: .6rem .85rem;
  border-radius: 20px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: .65rem;
  padding: .38rem .65rem;
  border-radius: 999px;
  color: var(--white);
  background: rgba(240,68,50,.2);
  border: 1px solid rgba(240,68,50,.35);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: .8rem;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 1000;
  text-transform: uppercase;
}

.card-copy {
  color: rgba(255,255,255,.72);
  margin-bottom: 1.35rem;
}

.call-panel {
  display: grid;
  gap: .25rem;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: var(--shadow-red);
}

.call-panel span {
  color: rgba(255,255,255,.78);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.call-panel a {
  color: var(--white);
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -.05em;
  text-decoration: none;
}

.contact-points {
  display: grid;
  gap: .55rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}

.contact-points strong { color: var(--white); }
.contact-points a { color: var(--white); font-weight: 850; }

.quick-quote {
  position: relative;
  z-index: 2;
  margin-top: -2.2rem;
}

.quick-quote__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.quick-quote__grid > div {
  min-height: 158px;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #19191d, #0d0d10);
  box-shadow: var(--shadow-dark);
}

.quick-quote span {
  display: inline-flex;
  margin-bottom: .7rem;
  color: #ff7669;
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.quick-quote strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--white);
  font-size: 1.15rem;
  letter-spacing: -.03em;
}

.quick-quote p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 2.6rem;
}

.section-heading h2,
.legacy-copy h2,
.commercial-copy h2,
.process-copy h2,
.contact-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 5rem);
  font-weight: 1000;
  text-transform: uppercase;
}

.section-heading p,
.legacy-copy p,
.commercial-copy p,
.process-copy p,
.contact-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.services-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(240,68,50,.22), transparent 22rem),
    linear-gradient(180deg, #050505, #0e0e11 62%, #050505);
}

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

.service-card {
  position: relative;
  min-height: 286px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -64px;
  bottom: -64px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(240,68,50,.12);
  transition: transform .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,68,50,.45);
  background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
}

.service-card:hover::after { transform: scale(1.18); }

.service-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 14px 34px rgba(240,68,50,.2);
  font-weight: 1000;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: .7rem;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
}

.legacy-section {
  color: var(--black);
  background:
    radial-gradient(circle at 94% 10%, rgba(240,68,50,.14), transparent 22rem),
    var(--paper);
}

.legacy-grid,
.commercial-grid,
.process-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.legacy-image {
  position: relative;
  padding: .72rem;
  border: 1px solid rgba(5,5,5,.18);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 34px 90px rgba(5,5,5,.18);
}

.legacy-image::before {
  content: "";
  position: absolute;
  inset: -12px 20px auto 20px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-2), var(--red));
  opacity: .95;
  z-index: -1;
}

.legacy-image img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - .7rem);
}

.legacy-copy .eyebrow,
.commercial-copy .eyebrow,
.contact-copy .eyebrow { color: var(--red-2); }

.legacy-copy p,
.commercial-copy p,
.contact-copy p { color: var(--muted-dark); }

.feature-list {
  display: grid;
  gap: .75rem;
  margin-top: 1.7rem;
}

.feature-list div {
  display: grid;
  gap: .2rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.72);
}

.feature-list strong {
  color: var(--black);
  font-size: .96rem;
  font-weight: 950;
  letter-spacing: -.01em;
}

.feature-list span {
  color: var(--muted-dark);
  font-size: .95rem;
}

.commercial-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(240,68,50,.18), transparent 23rem),
    linear-gradient(135deg, #111115, #050505 76%);
}

.commercial-copy p,
.process-copy p { color: var(--muted); }
.commercial-copy .eyebrow,
.process-copy .eyebrow { color: #ff7669; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1rem;
  color: #ff7669;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform .2s ease;
}

.text-link:hover::after { transform: translateX(4px); }

.system-stack {
  display: grid;
  gap: .9rem;
}

.system-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.055);
  box-shadow: 0 16px 54px rgba(0,0,0,.18);
}

.system-card--primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  border-color: rgba(255,255,255,.18);
  box-shadow: var(--shadow-red);
}

.system-card span {
  display: inline-flex;
  margin-bottom: .55rem;
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.system-card h3 {
  margin-bottom: .45rem;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  text-transform: uppercase;
}

.system-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.72);
}

.proof-section {
  color: var(--black);
  background: var(--paper);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

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

.proof-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(5,5,5,.08);
}

.proof-card--dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--black-3), var(--black));
  border-color: rgba(240,68,50,.35);
}

.proof-card span {
  display: block;
  color: var(--red-2);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: .85;
  font-weight: 1000;
  letter-spacing: -.08em;
}

.proof-card--dark span { color: #ff7669; }

.proof-card p {
  margin: 1.2rem 0 0;
  color: var(--muted-dark);
  font-weight: 750;
}

.proof-card--dark p { color: var(--muted); }

.process-section {
  background:
    radial-gradient(circle at 92% 0%, rgba(240,68,50,.18), transparent 24rem),
    var(--black);
}

.process-grid { align-items: start; }

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .9rem;
}

.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.055);
}

.steps span {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  font-weight: 1000;
  font-size: 1.3rem;
}

.steps h3 {
  margin-bottom: .35rem;
  font-size: 1.25rem;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.steps p { margin-bottom: 0; color: var(--muted); }

.service-area {
  border-block: 1px solid rgba(240,68,50,.28);
  background: linear-gradient(90deg, var(--red-3), var(--red), var(--red-2));
  overflow: hidden;
}

.service-area__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.3rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.service-area span {
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 1000;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.contact-section {
  color: var(--black);
  background:
    radial-gradient(circle at 90% 8%, rgba(240,68,50,.16), transparent 25rem),
    var(--paper);
}

.contact-grid { align-items: start; }

.contact-list {
  display: grid;
  gap: .75rem;
  margin-top: 1.6rem;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: .2rem;
  padding: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(5,5,5,.06);
}

.contact-list span {
  color: var(--muted-dark);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 950;
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(5,5,5,.14);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 34px 100px rgba(5,5,5,.17);
}

.form-header {
  display: grid;
  gap: .25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-dark);
}

.form-header strong {
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 1000;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.form-header span {
  color: var(--muted-dark);
  font-size: .9rem;
}

.lead-form label {
  display: grid;
  gap: .45rem;
  color: var(--black);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(5,5,5,.16);
  border-radius: 16px;
  padding: .95rem 1rem;
  color: var(--black);
  background: #f5f2ec;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lead-form textarea { resize: vertical; }

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(240,68,50,.86);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(240,68,50,.16);
}

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

.form-note {
  min-height: 1.25rem;
  margin: 0;
  color: var(--red-2);
  font-weight: 850;
}

.site-footer {
  padding: 3.2rem 0 1.4rem;
  color: var(--white);
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr .8fr;
  gap: 2rem;
  align-items: start;
}

.site-footer img {
  width: 180px;
  margin-bottom: 1rem;
}

.site-footer h2 {
  margin-bottom: .5rem;
  color: var(--white);
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer p,
.footer-bottom small {
  margin: 0;
  color: var(--muted);
}

.site-footer a {
  color: var(--white);
  font-weight: 950;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.mobile-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr auto;
  gap: .6rem;
  padding: .55rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(5,5,5,.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-dark);
}

.mobile-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mobile-cta a:first-child { background: linear-gradient(135deg, var(--red), var(--red-2)); }
.mobile-cta a:last-child { background: rgba(255,255,255,.08); }

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .trust-row,
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .top-strip__inner { justify-content: center; text-align: center; }
  .top-strip__inner span { display: none; }

  .header-inner {
    min-height: 76px;
    grid-template-columns: auto auto 1fr;
  }

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

  .brand { order: 1; }
  .header-phone { order: 3; }

  .main-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 122px;
    z-index: 70;
    display: none;
    justify-self: auto;
    align-items: stretch;
    flex-direction: column;
    gap: .35rem;
    padding: .75rem;
    border-radius: 24px;
    background: rgba(10,10,12,.98);
    box-shadow: var(--shadow-dark);
  }

  body.nav-open .main-nav { display: flex; }

  .main-nav a {
    padding: 1rem;
    text-align: center;
  }

  .hero { min-height: auto; }

  .hero-grid,
  .legacy-grid,
  .commercial-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card { max-width: 540px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 1.2rem), var(--max)); }
  .section-pad { padding: 4rem 0; }

  .brand img { width: 152px; }
  .header-phone { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .nav-toggle { justify-self: end; }
  .main-nav { top: 114px; }

  h1 { font-size: clamp(3rem, 16vw, 5.2rem); }

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

  .trust-row,
  .quick-quote__grid,
  .service-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-quote { margin-top: 0; }
  .quick-quote__grid > div { min-height: auto; }
  .service-card { min-height: auto; }
  .steps li { grid-template-columns: 48px 1fr; }
  .steps span { width: 48px; height: 48px; }

  .mobile-cta { display: grid; }
  .site-footer { padding-bottom: 6.4rem; }
}
