:root {
  --bg: #0B0B0B;
  --bg-2: #111111;
  --fg: #F2EDE6;
  --fg-muted: #8A8580;
  --accent: #D4A843;
  --accent-dim: rgba(212, 168, 67, 0.12);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--accent);
  line-height: 1;
}
.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.nav-cta {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(212,168,67,0.4);
  padding: 8px 22px;
  transition: background 0.2s, border-color 0.2s;
}
.nav-cta:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(212,168,67,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 380px;
  font-weight: 300;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-shape {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-shape::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.12);
}
.shape-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scissor-icon {
  width: 80px;
  height: 80px;
}
.scissor-icon svg {
  width: 100%;
  height: 100%;
}
.barber-stripe {
  width: 120px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.6;
}
.barber-stripe-2 { width: 90px; opacity: 0.35; }
.barber-stripe-3 { width: 60px; opacity: 0.15; }

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 48px;
  background: var(--bg-2);
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 56px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step { padding: 0 32px; }
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.03em;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}
.step-divider {
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 60px;
}
.divider-line {
  width: 1px;
  height: 120px;
  background: rgba(242,237,230,0.08);
}

/* SERVICES */
.services {
  padding: 100px 48px;
}
.services-header {
  margin-bottom: 64px;
}
.services-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  color: var(--fg);
  margin-top: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(242,237,230,0.06);
}
.service-card {
  background: var(--bg);
  padding: 40px 36px;
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 36px;
  right: 36px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 100%;
  height: 100%;
}
.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* WHY / QUOTE */
.why {
  padding: 100px 48px;
  background: var(--bg-2);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-quote {
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 8px;
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.why-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}
.why-body p:last-child { margin-bottom: 0; }

/* CLOSING */
.closing {
  padding: 100px 48px 120px;
  text-align: center;
}
.closing-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 40px;
  opacity: 0.6;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.closing-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.12em;
  color: #0B0B0B;
  background: var(--accent);
  text-decoration: none;
  padding: 16px 52px;
  transition: opacity 0.2s;
}
.closing-btn:hover { opacity: 0.88; }

/* FOOTER */
.footer {
  border-top: 1px solid rgba(242,237,230,0.06);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--fg);
  letter-spacing: 0.05em;
}
.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    min-height: auto;
  }
  .hero-title { font-size: 64px; }
  .hero-visual { display: none; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .step-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .how-it-works, .services, .why, .closing { padding: 64px 24px; }
  .footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-meta { font-size: 11px; }
}