:root {
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --bg-card: #141414;
  --fg: #F0EBE1;
  --fg-muted: #7A756D;
  --accent: #FF8C00;
  --accent-dim: rgba(255, 140, 0, 0.12);
  --border: rgba(240, 235, 225, 0.08);
  --mono: 'DM Mono', monospace;
  --sans: 'DM Sans', sans-serif;
  --display: 'Bebas Neue', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.nav-tagline {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(100px, 12vh, 140px) clamp(24px, 5vw, 80px) 80px;
  position: relative;
}
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(72px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-headline .line { display: block; }
.hero-headline .accent { color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* Vinyl stack */
.hero-visual { display: flex; flex-direction: column; gap: 32px; }
.vinyl-stack {
  position: relative;
  width: 280px;
  height: 280px;
  align-self: flex-end;
}
.vinyl {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid var(--accent);
}
.vinyl::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid var(--fg-muted);
}
.vinyl::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
}
.vinyl-inner::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center, transparent 0, transparent 4px, rgba(255,140,0,0.08) 4px, rgba(255,140,0,0.08) 5px);
}
.vinyl-1 { top: 0; left: 60px; opacity: 0.4; }
.vinyl-2 { top: 20px; left: 40px; opacity: 0.6; }
.vinyl-3 { top: 40px; left: 20px; opacity: 1.0; }

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--display);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

/* ── SECTIONS ── */
section { padding: clamp(64px, 8vh, 100px) clamp(24px, 5vw, 80px); }
.section-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 24px;
}
.section-headline {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  color: var(--fg);
  margin-bottom: 56px;
}
.section-headline .accent { color: var(--accent); }

/* ── SERVICES ── */
.services { background: var(--bg-alt); }
.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg-alt);
  padding: 48px 40px;
  position: relative;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg-card); }
.service-card.featured { background: var(--bg-card); }
.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 2px;
}
.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── PROCESS ── */
.process { background: var(--bg); }
.process .section-headline { max-width: 1280px; margin-left: auto; margin-right: auto; }
.process-steps {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}
.step { padding: 0 16px; }
.step-num {
  font-family: var(--display);
  font-size: 64px;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
}
.step-body h4 {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 40px;
}
.step-connector::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  background: linear-gradient(to right, var(--accent), transparent);
}

/* ── PRICING ── */
.pricing { background: var(--bg-alt); }
.pricing-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
}
.price-card-mid {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card), rgba(255,140,0,0.04));
}
.price-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 14px;
  white-space: nowrap;
}
.price-tier {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.price-range {
  font-family: var(--display);
  font-size: 48px;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 28px;
}
.per-mo {
  font-size: 20px;
  color: var(--fg-muted);
}
.price-features {
  list-style: none;
  margin-bottom: 28px;
}
.price-features li {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.price-features li::before {
  content: '—';
  color: var(--accent);
  margin-right: 10px;
  font-family: var(--mono);
}
.price-delivery {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.pricing-note {
  max-width: 1280px;
  margin: 0 auto;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── STATEMENT ── */
.statement {
  background: var(--bg);
  text-align: center;
}
.statement-inner { max-width: 900px; margin: 0 auto; }
.statement-text {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 32px;
}
.statement-text strong { color: var(--accent); }
.statement-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px clamp(24px, 5vw, 80px) 40px;
  background: var(--bg);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--fg);
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col span:not(.footer-col-label) {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-col-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { align-self: auto; }
  .vinyl-stack { width: 180px; height: 180px; align-self: center; }
  .vinyl { width: 140px; height: 140px; }
  .vinyl-1 { left: 40px; }
  .vinyl-2 { left: 20px; }
  .vinyl-3 { left: 0; }
  .hero-stats { gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 64px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 28px; }
}