:root {
  --ink: #0b0b0a;
  --charcoal: #090a09;
  --red: #e3165b;
  --red-dark: #a80f43;
  --lime: #a9dc1e;
  --lime-dark: #7aa510;
  --cream: #111311;
  --paper: #0d0f0d;
  --surface: #1a1d1a;
  --surface-strong: #232720;
  --muted: #c5c8bd;
  --line: rgba(169, 220, 30, 0.16);
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(9, 10, 9, 0.18);
  --radius: 6px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

.anchor-target {
  scroll-margin-top: 205px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 28px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  background: rgba(9, 10, 9, 0.94);
  border-bottom: 2px solid var(--red);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
}

.brand img {
  width: 130px;
  height: 130px;
  object-fit: cover;
}

.brand span {
  max-width: 175px;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  display: block;
  background: var(--lime);
}

.nav-scroll {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1002;
  width: min(82vw, 340px);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: #000000;
  border-right: 3px solid var(--red);
  box-shadow: 22px 0 46px rgba(0, 0, 0, 0.42);
  transform: translateX(-105%);
  transition: transform 240ms ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-scroll a {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(169, 220, 30, 0.15);
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  font-weight: 800;
}

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

.drawer-close {
  width: 100%;
  min-height: 44px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  z-index: 1000;
}

body.nav-open .nav-scroll {
  transform: translateX(0);
}

body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.header-call {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 12px;
  background: var(--red);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero {
  background: var(--charcoal);
}

.hero img {
  height: auto;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 21, 18, 0.2), rgba(23, 21, 18, 0.84));
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero {
  min-height: 0;
  display: block;
}

.contact-hero::after {
  background: linear-gradient(180deg, rgba(23, 21, 18, 0), rgba(23, 21, 18, 0.86));
}

.contact-hero img {
  position: relative;
  inset: auto;
  height: auto;
  object-fit: contain;
}

.contact-hero .page-hero-copy {
  position: relative;
  z-index: 2;
  margin-top: -110px;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
  padding: 0 0 34px;
  color: var(--white);
}

.section,
.section-dark,
.section-muted {
  padding: 58px 0;
}

.section-tight {
  padding: 22px 0 48px;
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-muted {
  background: var(--cream);
  color: var(--white);
}

.intro {
  padding: 34px 0;
}

.intro-grid,
.split,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.intro-actions,
.cta-row {
  display: grid;
  gap: 10px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.final-cta .eyebrow {
  color: var(--red);
}

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  max-width: 840px;
  font-size: 2.65rem;
}

h2 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: 2.1rem;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

p {
  color: var(--muted);
}

.section-dark p,
.section-muted .section-head p,
.page-hero p,
.final-cta p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-ghost {
  border-color: var(--lime);
  color: inherit;
}

.stat-row,
.service-grid,
.compare-grid,
.project-grid,
.process-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

.stat-card {
  padding: 22px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  color: var(--lime);
  font-size: 1.65rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.section-head {
  margin-bottom: 24px;
}

.split-cta {
  align-self: end;
}

.service-card,
.project-card,
.compare-card,
.process-grid article,
.faq-item,
.contact-panel,
.estimate-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  color: var(--white);
}

.service-card p,
.project-card p,
.compare-card p,
.faq-item p,
.contact-panel p,
.estimate-form p {
  color: var(--muted);
}

.service-card {
  min-height: 260px;
  padding: 24px;
  display: grid;
  align-content: start;
}

.service-card .label {
  width: max-content;
  margin-bottom: 38px;
  padding: 6px 9px;
  background: var(--surface-strong);
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card a {
  margin-top: 18px;
  color: var(--red);
  font-weight: 900;
}

.compare-card,
.project-card {
  overflow: hidden;
}

.compare-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.compare-media figure {
  position: relative;
  margin: 0;
  background: var(--surface-strong);
}

.image-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.image-open:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: -3px;
}

.image-open:hover img,
.image-open:focus-visible img {
  filter: brightness(1.08);
  transform: scale(1.02);
}

.compare-media img,
.project-card img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.compare-media figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.74rem;
  font-weight: 900;
}

.compare-copy,
.project-copy {
  padding: 18px;
}

.tag {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--lime-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.image-band {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.image-band > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 21, 18, 0.12), rgba(23, 21, 18, 0.88));
}

.band-copy {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 28px));
  margin-inline: auto;
  padding-bottom: 42px;
}

.process-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.process-grid strong {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--lime);
  font-size: 0.85rem;
}

.founder img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.owner-title {
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 24px;
  position: relative;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  background: var(--lime);
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
}

.final-cta {
  background: var(--charcoal);
  color: var(--white);
  text-align: left;
  border-top: 6px solid var(--red);
  border-bottom: 6px solid var(--lime);
}

.contact-panel,
.estimate-form {
  padding: 22px;
}

.contact-grid-single {
  max-width: 1000px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.contact-list strong,
label {
  color: var(--white);
  font-weight: 900;
}

form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--surface-strong);
  color: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  padding: 42px 0;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid h3 {
  color: var(--white);
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 8px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.is-open {
  display: flex;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-frame {
  width: min(100%, 1180px);
  max-height: 88dvh;
  margin: 0;
  display: grid;
  gap: 10px;
}

.lightbox-frame img {
  width: 100%;
  max-height: 82dvh;
  object-fit: contain;
  background: #000;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lightbox-frame figcaption {
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 2001;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (min-width: 640px) {
  .intro-actions,
  .cta-row {
    grid-template-columns: max-content max-content;
  }

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

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 860px) {
  html {
    scroll-padding-top: 165px;
  }

  .anchor-target {
    scroll-margin-top: 165px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 24px;
  }

  .menu-toggle,
  .drawer-close,
  .nav-backdrop {
    display: none;
  }

  .nav-scroll {
    position: static;
    z-index: auto;
    width: auto;
    min-height: 0;
    display: flex;
    flex-direction: row;
    gap: 4px;
    padding: 0;
    background: transparent;
    border-right: 0;
    box-shadow: none;
    transform: none;
    justify-content: center;
    overflow: visible;
    transition: none;
  }

  .nav-scroll a {
    padding: 8px 10px;
    border-bottom: 0;
    font-size: 0.88rem;
  }

  .header-call {
    grid-column: auto;
  }

  .brand span {
    max-width: none;
  }

  .hero img {
    height: min(78vh, 820px);
    min-height: 520px;
  }

  .contact-hero {
    min-height: 420px;
    display: grid;
  }

  .contact-hero img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
  }

  .contact-hero .page-hero-copy {
    margin-top: 0;
  }

  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .intro-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

  .contact-grid-single .contact-panel {
    padding: 44px;
  }

  .contact-grid-single .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
  }

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

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

@media (min-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
