* {
  box-sizing: border-box;
}

:root {
  --bg: #080808;
  --bg-soft: #111111;
  --panel: #171717;
  --panel-2: #1d1d1d;
  --text: #f3f3f3;
  --muted: #a8a8a8;
  --line: #343434;
  --silver: #c7c7c7;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  min-width: 165px;
}

.brand-main {
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: linear-gradient(180deg, #ffffff, #858585);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-sub {
  font-size: 10px;
  letter-spacing: 0.38em;
  margin-top: 7px;
  color: #d7d7d7;
}

.brand-sub small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.42em;
  margin-top: 6px;
  color: #a3a3a3;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: #c5c5c5;
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid #7c7c7c;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 85%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  top: 50%;
  right: -220px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(160,160,160,0.16), transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 90px 0 70px;
}

.eyebrow,
.section-heading span,
.quote-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: #9f9f9f;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero h1 span {
  color: #9f9f9f;
  font-weight: 500;
}

.hero p {
  max-width: 650px;
  color: #b7b7b7;
  font-size: 18px;
  margin: 30px 0 0;
}

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

.btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s ease;
}

.btn-primary {
  background: #eeeeee;
  color: #090909;
}

.btn-primary:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid #555;
  color: #eeeeee;
  background: rgba(255,255,255,0.025);
}

.btn-secondary:hover {
  border-color: #9b9b9b;
}

.car-line {
  width: min(860px, 95%);
  color: #8e8e8e;
  opacity: 0.7;
  margin-top: 48px;
}

.section {
  padding: 105px 0;
}

.section-dark {
  background: #0d0d0d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.left {
  text-align: left;
  margin-left: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.section-heading p {
  color: var(--muted);
  margin-top: 18px;
}

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

.service-card {
  background: linear-gradient(145deg, #171717, #111111);
  border: 1px solid #292929;
  border-radius: 12px;
  padding: 34px;
  min-height: 245px;
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid #555;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #bdbdbd;
  font-size: 12px;
  letter-spacing: .08em;
}

.service-card h3 {
  font-size: 24px;
  margin: 25px 0 10px;
}

.service-card p {
  margin: 0;
  color: #9e9e9e;
  max-width: 470px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit {
  padding: 34px 24px;
  border-right: 1px solid var(--line);
}

.benefit:last-child {
  border-right: 0;
}

.benefit strong {
  font-size: 17px;
}

.benefit p {
  color: #989898;
  margin: 8px 0 0;
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: start;
}

.contact-actions {
  border-top: 1px solid var(--line);
}

.contact-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
}

.contact-row span {
  color: #8f8f8f;
  font-size: 13px;
}

.contact-row strong {
  font-size: 16px;
  overflow-wrap: anywhere;
}

.contact-row:not(.no-link):hover strong {
  color: #c7c7c7;
}

.quote-card {
  background: linear-gradient(145deg, #1a1a1a, #111111);
  border: 1px solid #313131;
  border-radius: 14px;
  padding: 38px;
}

.quote-card h3 {
  font-size: 31px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.quote-card p:not(.quote-label) {
  color: #a2a2a2;
  margin-bottom: 28px;
}

.full {
  width: 100%;
  margin-top: 10px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 45px 0;
  background: #050505;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
}

footer p {
  color: #858585;
  font-size: 13px;
  margin: 0;
}

.copyright {
  text-align: right;
}

@media (max-width: 820px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding-top: 70px;
  }

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

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

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

  .benefit:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-grid {
    gap: 38px;
  }

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

  .copyright {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header .nav-cta {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 78px 0;
  }

  .service-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

  .benefit,
  .benefit:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .service-card {
    padding: 28px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .quote-card {
    padding: 28px;
  }
}


.work-section {
  background: #0a0a0a;
}

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

.video-card {
  background: linear-gradient(145deg, #171717, #101010);
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  overflow: hidden;
}

.work-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #050505;
  object-fit: cover;
}

.video-card h3 {
  margin: 0;
  padding: 20px 22px 22px;
  font-size: 18px;
}

@media (max-width: 820px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    min-height: 520px;
  }
}

@media (max-width: 520px) {
  .video-placeholder {
    min-height: 430px;
  }
}


.local-seo {
  background: #0b0b0b;
  border-bottom: 1px solid var(--line);
}

.local-seo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.local-copy {
  color: #a7a7a7;
  font-size: 16px;
}

.local-copy p {
  margin-top: 0;
  margin-bottom: 18px;
}

@media (max-width: 820px) {
  .local-seo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
