:root {
  --bg: #0a0d0e;
  --surface: #111516;
  --surface-2: #171c1e;
  --text: #f4f6f2;
  --muted: #9da5a3;
  --line: rgba(244, 246, 242, 0.14);
  --accent: #b8f34a;
  --accent-ink: #101508;
  --shell: min(1360px, calc(100% - 64px));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.shell,
.wrap {
  width: var(--shell);
  margin-inline: auto;
}

.section-space,
.section {
  padding-block: clamp(88px, 11vw, 176px);
}

.serif,
h1,
h2 {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.055em;
}

p {
  line-height: 1.65;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
}

.nav {
  position: relative;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand > span:last-child {
  display: grid;
  gap: 3px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.brand-mark {
  position: relative;
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
  background: var(--accent);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: var(--bg);
}

.star {
  color: var(--accent);
  font-size: 25px;
}

.links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 30px);
  margin-inline: auto;
}

.links a,
.nav-phone {
  position: relative;
  color: #d8dcda;
  font-size: 12px;
  font-weight: 600;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transition: right 0.3s var(--ease);
}

.links a:hover::after,
.links a[aria-current="page"]::after {
  right: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn-accent,
.btn.gold {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-ghost {
  background: rgba(10, 13, 14, 0.3);
  backdrop-filter: blur(10px);
}

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

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(10, 13, 14, 0.88);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

/* Home */
.cinematic-hero {
  position: relative;
  min-height: 100dvh;
  isolation: isolate;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  overflow: hidden;
  background: #111516;
}

.hero-media img {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-motion {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-motion.is-ready {
  opacity: 1;
}

.hero-scrim {
  z-index: -2;
  background: linear-gradient(90deg, rgba(7, 10, 11, 0.94) 0%, rgba(7, 10, 11, 0.68) 43%, rgba(7, 10, 11, 0.1) 78%), linear-gradient(0deg, rgba(7, 10, 11, 0.72), transparent 48%);
}

.hero-layout {
  padding-block: 130px clamp(62px, 8vw, 110px);
}

.hero-kicker,
.section-label,
.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-layout h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(68px, 8.2vw, 128px);
  line-height: 0.82;
}

.hero-layout h1 span {
  display: block;
}

.hero-layout h1 i {
  color: var(--accent);
  font-style: normal;
}

.hero-layout > p {
  max-width: 560px;
  margin: 34px 0 0;
  color: #d7dcda;
  font-size: 16px;
}

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

.proof-band {
  border-bottom: 1px solid var(--line);
}

.proof-row {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1fr 1.9fr;
}

.proof-row > * {
  min-height: 150px;
  margin: 0;
  padding: 32px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-row > *:last-child {
  border-right: 1px solid var(--line);
}

.proof-row strong {
  font-size: clamp(32px, 3vw, 48px);
  letter-spacing: -0.05em;
}

.proof-row span,
.proof-row p {
  color: var(--muted);
  font-size: 13px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.6fr 2.1fr 0.7fr;
  gap: 50px;
  align-items: start;
}

.manifesto-tag,
.manifesto-copy {
  color: var(--muted);
  font-size: 14px;
}

.manifesto-grid h2 {
  margin: 0;
  font-size: clamp(54px, 6.6vw, 104px);
  line-height: 0.92;
}

.manifesto-grid h2 em {
  color: var(--accent);
  font-style: normal;
}

.service-story {
  background: var(--surface);
}

.service-story-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(420px, 1.65fr) minmax(230px, 0.75fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: start;
}

.service-intro,
.service-notes {
  position: sticky;
  top: 105px;
}

.service-intro h2 {
  margin: 0;
  font-size: clamp(52px, 6vw, 94px);
  line-height: 0.84;
}

.service-intro h2 span {
  color: var(--accent);
}

.service-intro > p:not(.section-label) {
  max-width: 330px;
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  gap: 14px;
  margin-top: 25px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.service-media-track {
  display: grid;
  gap: 18px;
}

.service-panel {
  margin: 0;
}

.service-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-panel > div {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 20px;
  padding: 18px 0 42px;
}

.service-panel h3,
.service-panel p,
.service-notes h3,
.service-notes p {
  margin: 0;
}

.service-panel h3 {
  font-size: 30px;
  letter-spacing: -0.04em;
}

.service-panel p,
.service-notes p {
  color: var(--muted);
  font-size: 13px;
}

.service-notes {
  display: grid;
  gap: 44px;
  padding-top: 52px;
}

.service-notes article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-notes h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.storm-feature {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.storm-image-wrap {
  position: absolute;
  inset: 0;
}

.storm-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 11, 0.62);
}

.storm-image-wrap img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.storm-copy {
  position: relative;
  z-index: 1;
}

.storm-copy > p {
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.storm-copy h2 {
  max-width: 1120px;
  margin: 0 0 42px;
  font-size: clamp(58px, 7.6vw, 118px);
  line-height: 0.84;
}

.storm-copy h2 span {
  display: block;
}

.work-pan {
  overflow: hidden;
}

.pan-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 54px;
}

.pan-heading h2 {
  margin: 0;
  font-size: clamp(58px, 8vw, 120px);
  line-height: 0.85;
}

.pan-heading p {
  max-width: 430px;
  color: var(--muted);
  font-size: 14px;
}

.pan-viewport {
  overflow: hidden;
}

.pan-track {
  width: max-content;
  display: flex;
  gap: 18px;
  padding-inline: max(32px, calc((100vw - 1360px) / 2));
}

.pan-track figure {
  width: min(74vw, 980px);
  margin: 0;
}

.pan-track img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pan-track figcaption {
  padding-top: 13px;
  color: var(--muted);
  font-size: 12px;
}

.review-wall {
  background: var(--surface);
}

.review-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.1fr 1.1fr;
  gap: 0;
}

.review-layout > * {
  min-height: 360px;
  margin: 0;
  padding: 42px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-layout > *:last-child {
  border-right: 1px solid var(--line);
}

.review-score strong {
  font-size: clamp(72px, 8vw, 118px);
  letter-spacing: -0.08em;
}

.review-score span,
.review-layout cite {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.review-layout blockquote {
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.review-layout cite {
  margin-top: 32px;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 70px;
  align-items: end;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(64px, 9vw, 138px);
  line-height: 0.82;
}

.final-cta p {
  margin: 0 0 24px;
  color: var(--muted);
}

/* Existing interior pages */
.page-hero {
  position: relative;
  min-height: 72dvh;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 10, 11, 0.95), rgba(7, 10, 11, 0.34));
  z-index: 0;
}

.page-about .page-hero,
.page-reviews .page-hero {
  background-image: url("inspection.jpg");
}

.page-services .page-hero,
.page-projects .page-hero {
  background-image: url("installation.jpg");
}

.page-areas .page-hero {
  background-image: url("storm.jpg");
}

.page-contact .page-hero {
  background-image: url("gutters.jpg");
}

.page-hero .copy {
  position: relative;
  z-index: 1;
  min-height: calc(72dvh - 72px);
  padding-block: 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(62px, 7vw, 110px);
  line-height: 0.84;
}

.page-hero .copy > p {
  max-width: 580px;
  margin-top: 28px;
  color: #d1d6d4;
}

.paper {
  background: var(--surface);
}

.section h2 {
  margin: 0 0 32px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.88;
}

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

.feature {
  min-height: 260px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature:nth-child(2n) {
  border-right: 0;
}

.feature h3 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.feature p,
.muted,
.media-copy p {
  color: var(--muted);
}

.feature .btn {
  margin-top: 20px;
}

.media-split,
.review-story,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.media-split-reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.media-frame {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.detail-list {
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.detail-list > div {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list span,
.service-radius span {
  color: var(--muted);
  font-size: 13px;
}

.service-scenes,
.project-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  margin-top: 48px;
}

.scene,
.project-shot {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
}

.scene-large {
  grid-row: span 2;
  min-height: 698px;
}

.scene img,
.project-shot img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.scene > div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 68px 26px 24px;
  background: linear-gradient(transparent, rgba(7, 10, 11, 0.92));
}

.scene h3,
.scene p {
  margin: 0;
}

.scene p,
.demo-note {
  color: #c3c9c6;
  font-size: 13px;
}

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

.project-shot {
  min-height: 420px;
}

.project-shot-wide {
  grid-column: span 2;
  min-height: 620px;
}

.project-shot figcaption {
  position: absolute;
  inset: auto auto 18px 18px;
  z-index: 1;
  padding: 10px 12px;
  background: rgba(7, 10, 11, 0.88);
  font-size: 12px;
}

.review-grid,
.mention-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.review,
.mention-grid article,
.process-grid article {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review:last-child,
.process-grid article:last-child {
  border-right: 0;
}

.review p {
  font-size: 22px;
  line-height: 1.35;
}

.review small,
.goldtxt,
.process-grid span {
  color: var(--accent);
}

.mention-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0;
}

.mention-grid article:nth-child(2n) {
  border-right: 0;
}

.mention-grid p,
.process-grid p {
  color: var(--muted);
  font-size: 13px;
}

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

.area {
  min-height: 130px;
  padding: 22px;
  background: var(--bg);
  display: flex;
  align-items: flex-end;
  font-size: 22px;
  font-weight: 800;
  transition: color 0.25s ease, background 0.25s ease;
}

.area:hover {
  background: var(--accent);
  color: var(--accent-ink);
}

.service-radius,
.contactbox {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.service-radius {
  display: grid;
  gap: 8px;
  margin: 28px 0;
}

.contactbox a {
  display: block;
  margin: 18px 0;
  overflow-wrap: anywhere;
}

.footer {
  padding-block: 62px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr 1.4fr;
  gap: 36px;
}

.footer b {
  font-size: 11px;
  letter-spacing: 0.1em;
}

.footer p {
  color: var(--muted);
  font-size: 12px;
}

.demo-disclaimer {
  margin: 0;
}

.reveal,
[data-reveal-group] > *,
.service-panel,
.service-notes article {
  will-change: transform, opacity;
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 36px, 1360px);
  }

  .links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    padding: 14px;
    background: rgba(10, 13, 14, 0.98);
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }

  .links a {
    padding: 14px;
    font-size: 15px;
  }

  .links a::after {
    display: none;
  }

  .nav.menu-open .links {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .nav .actions .nav-phone {
    display: none;
  }

  .service-story-grid {
    grid-template-columns: 0.8fr 1.4fr;
  }

  .service-notes {
    position: static;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .manifesto-grid {
    grid-template-columns: 0.45fr 1.55fr;
  }

  .manifesto-copy {
    grid-column: 2;
  }

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

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .nav {
    height: 66px;
  }

  .brand small,
  .nav .actions {
    display: none;
  }

  .hero-layout {
    padding-block: 116px 54px;
  }

  .hero-layout h1 {
    font-size: clamp(48px, 13.5vw, 60px);
    line-height: 0.86;
  }

  .hero-layout > p {
    max-width: 36ch;
    font-size: 15px;
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(7, 10, 11, 0.9), rgba(7, 10, 11, 0.22)), linear-gradient(0deg, rgba(7, 10, 11, 0.76), transparent 58%);
  }

  .proof-row,
  .manifesto-grid,
  .service-story-grid,
  .pan-heading,
  .review-layout,
  .final-cta-inner,
  .content-grid,
  .media-split,
  .review-story,
  .contact,
  .review-grid,
  .mention-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-row > * {
    min-height: 108px;
    padding: 22px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .manifesto-tag,
  .manifesto-copy {
    max-width: 34ch;
  }

  .manifesto-grid h2 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .manifesto-copy {
    grid-column: auto;
  }

  .service-intro,
  .service-notes {
    position: static;
  }

  .service-intro h2 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .service-notes {
    grid-column: auto;
    grid-template-columns: 1fr;
    padding-top: 22px;
  }

  .service-panel img {
    aspect-ratio: 1 / 1;
  }

  .service-panel > div {
    grid-template-columns: 1fr;
  }

  .storm-feature {
    min-height: 82dvh;
  }

  .storm-copy h2 {
    font-size: clamp(50px, 14.5vw, 76px);
  }

  .pan-track {
    width: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-inline: 14px;
  }

  .pan-track figure {
    width: 86vw;
    flex: 0 0 86vw;
    scroll-snap-align: start;
  }

  .review-layout > * {
    min-height: 260px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .page-hero,
  .page-hero .copy {
    min-height: 78dvh;
  }

  .page-hero h1 {
    font-size: clamp(48px, 14vw, 72px);
    overflow-wrap: anywhere;
  }

  .feature,
  .feature:nth-child(2n),
  .review,
  .mention-grid article,
  .process-grid article {
    border-right: 0;
  }

  .service-scenes,
  .project-gallery,
  .areas {
    grid-template-columns: 1fr;
  }

  .scene-large,
  .project-shot-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .scene,
  .scene-large,
  .project-shot,
  .project-shot-wide {
    min-height: 340px;
  }

  .media-frame {
    min-height: 360px;
  }

  .detail-list > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section h2,
  .media-copy h2 {
    font-size: 46px;
    overflow-wrap: anywhere;
  }

  .footer-grid {
    gap: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-motion {
    display: none;
  }

  .reveal,
  [data-reveal-group] > *,
  .service-panel,
  .service-notes article {
    opacity: 1 !important;
    transform: none !important;
  }
}
