:root {
  --bg: #141414;
  --surface: #1e1e1e;
  --surface-2: #262626;
  --fg: #f0ede8;
  --fg-muted: #9a9590;
  --accent: #E8A838;
  --accent-dim: rgba(232, 168, 56, 0.15);
  --border: rgba(240, 237, 232, 0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TOPBAR ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 10;
}

.topbar-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.topbar-tag {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.topbar-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.topbar-phone:hover {
  opacity: 0.8;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.95;
  color: var(--fg);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Stats */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
}

.stat-card--accent {
  background: var(--accent-dim);
  border-color: rgba(232, 168, 56, 0.3);
  border-left-color: var(--accent);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── SECTION SHARED ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 48px;
}

/* ── SERVICES ── */
.services-section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.services-section .section-headline {
  max-width: 700px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg);
  padding: 32px 28px;
  transition: background 0.2s;
}

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

.service-icon {
  margin-bottom: 16px;
  opacity: 0.9;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── THE GAP ── */
.the-gap {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.gap-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.gap-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.gap-callout {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.gap-highlight {
  font-size: 17px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
}

.gap-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.gap-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
}

.gap-point-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── COVERAGE ── */
.coverage-section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.coverage-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.coverage-area {
  padding: 24px 20px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.coverage-city {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.coverage-sub {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.coverage-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--fg-muted);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

/* ── CLOSING ── */
.closing-section {
  padding: 100px 48px;
  background: var(--surface);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 40px;
}

.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 680px;
  line-height: 1.75;
}

.closing-rule {
  width: 80px;
  height: 2px;
  background: var(--accent);
  margin: 40px 0;
}

.closing-company {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── FOOTER ── */
.site-footer {
  padding: 24px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.footer-divider {
  color: var(--border);
}

.footer-tag {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}

.footer-contact {
  font-size: 12px;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

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

/* ── CONTACT ── */
.contact-section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}

.contact-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 14px 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s, background 0.2s;
}

.contact-method:hover {
  border-color: var(--accent);
  background: var(--surface-2);
}

.contact-method-icon {
  font-size: 20px;
}

.contact-method-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 2px;
}

.contact-method-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 36px 32px;
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 12px;
}

.cta-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #141414;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.cta-button:hover {
  opacity: 0.85;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .topbar { padding: 14px 24px; }
  .topbar-tag { display: none; }
  .hero { padding: 48px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { flex-direction: row; }
  .stat-card { flex: 1; }
  .services-section { padding: 56px 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .the-gap { padding: 56px 24px; }
  .gap-inner { grid-template-columns: 1fr; gap: 40px; }
  .coverage-section { padding: 56px 24px; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-section { padding: 56px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing-section { padding: 72px 24px; }
  .site-footer { padding: 20px 24px; }
  .footer-inner { gap: 10px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 52px; }
  .hero-right { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 44px; }
  .closing-headline { font-size: 56px; }
}