:root {
  color-scheme: dark;
  --bg: #08090b;
  --panel: #111419;
  --panel-2: #191d22;
  --steel: #2d343c;
  --steel-light: #79828b;
  --text: #f4f5f5;
  --muted: #b6bdc5;
  --line: rgba(255, 255, 255, 0.12);
  --red: #e12c32;
  --red-dark: #9f161d;
  --white-soft: #eceff1;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(225, 44, 50, 0.12), transparent 360px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 72px),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 11, 0.72);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 152px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.32));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.92), rgba(8, 9, 11, 0.58) 42%, rgba(8, 9, 11, 0.28)),
    linear-gradient(0deg, rgba(8, 9, 11, 0.98), rgba(8, 9, 11, 0.08) 46%, rgba(8, 9, 11, 0.42));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-content {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 160px 0 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 14px;
  font-size: clamp(2.85rem, 8.6vw, 7.4rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.62);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.4vw, 4.25rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 590px;
  color: var(--white-soft);
  font-size: clamp(1.08rem, 2.2vw, 1.45rem);
  line-height: 1.45;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.btn.primary {
  border-color: rgba(225, 44, 50, 0.72);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn.full {
  width: 100%;
}

.hero-panel {
  position: absolute;
  right: max(16px, calc((100vw - var(--max)) / 2));
  bottom: 52px;
  width: min(360px, calc(100% - 32px));
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(17, 20, 25, 0.74);
  backdrop-filter: blur(14px);
}

.hero-panel span {
  display: block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.quick-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: -18px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(25, 29, 34, 0.96), rgba(12, 14, 18, 0.96));
}

.quick-strip div {
  min-height: 104px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong {
  display: block;
  color: var(--red);
  font-size: 0.8rem;
}

.quick-strip span {
  display: block;
  margin-top: 20px;
  color: var(--text);
  font-weight: 800;
}

.section,
.feature-band,
.contact,
.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
}

.intro-text,
.feature-copy p,
.contact-copy p,
.service-card p,
.process-card p,
.local-grid p,
.faq-item p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.local-seo {
  padding-top: 30px;
}

.local-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.keyword-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.keyword-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white-soft);
  font-weight: 800;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.service-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-card div {
  padding: 22px;
}

.service-card span,
.process-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 32px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-copy {
  align-self: center;
}

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

.process-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}

.process-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.process-card h3,
.process-card p,
.process-card span {
  margin-left: 18px;
  margin-right: 18px;
}

.process-card span {
  margin-top: 18px;
}

.process-card p {
  margin-bottom: 20px;
}

.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 72px 0 36px;
}

.metric {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.metric strong {
  display: block;
  color: var(--text);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.9;
}

.metric span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.gallery {
  padding-top: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.76));
}

.gallery-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  color: var(--white-soft);
  font-weight: 800;
  text-align: left;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.faq {
  padding-top: 48px;
}

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

.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.faq-item h3 {
  min-height: 48px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(225, 44, 50, 0.13), transparent 42%),
    var(--panel);
}

.contact-line {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line span {
  display: block;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-line strong {
  display: block;
  margin-top: 8px;
  line-height: 1.25;
}

.contact-card .btn {
  margin-top: 22px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
  text-align: right;
}

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

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

.lightbox img {
  width: min(1120px, 100%);
  max-height: 86svh;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #050506;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

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

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

@media (max-width: 980px) {
  .hero {
    min-height: 88svh;
  }

  .hero-content {
    padding-bottom: 180px;
  }

  .hero-panel {
    left: 16px;
    right: 16px;
    bottom: 34px;
    width: auto;
  }

  .quick-strip,
  .service-grid,
  .process-grid,
  .proof,
  .intro,
  .local-grid,
  .faq-grid,
  .feature-band,
  .contact {
    grid-template-columns: 1fr 1fr;
  }

  .feature-copy,
  .contact-copy {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(8, 9, 11, 0.96);
  }

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

  .nav-links a {
    padding: 14px;
  }

  .brand-logo {
    width: 112px;
  }

  .hero-content {
    padding: 126px 0 218px;
  }

  h1 {
    font-size: clamp(3.5rem, 20vw, 6.5rem);
  }

  .quick-strip,
  .service-grid,
  .process-grid,
  .proof,
  .intro,
  .local-grid,
  .keyword-list,
  .faq-grid,
  .feature-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .contact {
    padding: 72px 0;
  }

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

  .footer p {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .hero-actions,
  .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
