:root {
  --bg: #0d0d0d;
  --bg-elevated: #161616;
  --bg-card: #1a1a1a;
  --ink: #f2f2f2;
  --muted: #9a9a9a;
  --accent: #e8e8e8;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

button {
  font: inherit;
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(13, 13, 13, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: invert(1);
}

.brand-text {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

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

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

.header-phone {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--bg-elevated);
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  padding: 96px clamp(20px, 5vw, 72px) 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.03), transparent 35%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 48px,
      rgba(255, 255, 255, 0.015) 48px,
      rgba(255, 255, 255, 0.015) 49px
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.place {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 20px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 52ch;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button.primary {
  background: var(--ink);
  color: var(--bg);
}

.button.primary:hover {
  background: var(--accent);
}

.button.secondary {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--ink);
}

.hero-hours {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  color: var(--muted);
}

.hero-hours strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.hero-logo-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.hero-logo-wrap img {
  width: min(100%, 260px);
  height: auto;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.92;
}

.section-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brands-strip {
  padding: 40px clamp(20px, 5vw, 72px) 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-elevated);
}

.brands-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 16px auto 0;
}

.brand-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-card);
}

.brand-card.featured {
  border-color: var(--line-strong);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 60%), var(--bg-card);
}

.brand-name {
  display: block;
  margin-bottom: 10px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
}

.brand-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.services-section,
.intro,
.contact {
  padding: 52px clamp(20px, 5vw, 72px);
  max-width: 1100px;
  margin: 0 auto;
}

.section-heading h2,
.intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.service-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.service-number {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.intro p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px clamp(16px, 3vw, 32px);
  background: var(--bg-elevated);
  text-align: center;
}

.proof-item strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.proof-item span {
  color: var(--muted);
  font-size: 14px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--bg-card);
}

.contact-panel a,
.contact-hours {
  font-size: 16px;
  font-weight: 600;
}

.contact-panel a:hover {
  color: var(--accent);
}

.contact-hours {
  color: var(--muted);
  font-weight: 500;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  padding: 28px clamp(20px, 5vw, 72px) 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer img {
  filter: invert(1);
  opacity: 0.7;
}

@media (max-width: 960px) {
  .hero-grid,
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-logo-wrap {
    order: -1;
    padding-top: 0;
  }

  .hero-logo-wrap img {
    width: min(180px, 55vw);
  }

  .hero-meta {
    flex-direction: column;
  }

  .brands-row,
  .services-grid,
  .proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 69px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    padding: 24px;
    background: rgba(13, 13, 13, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .menu-button {
    display: block;
  }

  .header-phone {
    display: none;
  }

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

  body.nav-open .menu-button span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .menu-button span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }
}
