:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --text: #f0ebe0;
  --text-muted: #8a8680;
  --accent: #c9a96e;
  --accent-dark: #8a6d3b;
  --border: #2a2a2a;
  --card: #141414;
  --card-border: #222222;
  --structured: #c9a96e;
  --refined: #a8c5b5;
  --natural: #b5a88a;
  --bold: #c97a6e;
}

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

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

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo-mark {
  font-size: 18px;
  color: var(--accent);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 140px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--accent-dark);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,169,110,0.06);
}

/* BLUEPRINT CARD */
.hero-visual { display: flex; flex-direction: column; gap: 20px; }
.blueprint-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.blueprint-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}
.blueprint-header { margin-bottom: 20px; }
.archetype-badge {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.archetype-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.blueprint-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.blueprint-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.bp-row { display: flex; justify-content: space-between; align-items: center; }
.bp-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 11px;
}
.bp-value { font-size: 14px; color: var(--text); }
.bp-value.highlight { color: var(--accent); font-weight: 600; }
.blueprint-footer {
  background: var(--bg-3);
  border-radius: 3px;
  padding: 16px;
}
.barber-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.barber-script {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stat { padding: 0 40px; }
.stat:first-child { padding-left: 0; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* FEATURES */
.features {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 32px;
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature-card {
  background: var(--bg-2);
  padding: 40px 36px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-3); }
.feature-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* OUTPUT SECTION */
.output-section {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.output-inner { }
.output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}
.output-col { display: flex; flex-direction: column; gap: 24px; }
.output-block {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 28px;
}
.output-block-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}
.output-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.output-block ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.output-block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-size: 11px;
}

/* ARCHETYPES */
.archetypes-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 32px;
}
.archetypes-inner { max-width: 1200px; margin: 0 auto; }
.archetypes-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 60px;
  line-height: 1.7;
}
.archetype-list { display: flex; flex-direction: column; gap: 0; }
.archetype-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.archetype-item:last-child { border-bottom: none; }
.archetype-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.archetype-dot.structured { background: var(--structured); }
.archetype-dot.refined { background: var(--refined); }
.archetype-dot.natural { background: var(--natural); }
.archetype-dot.bold { background: var(--bold); }
.archetype-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.archetype-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.archetype-note {
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  border-left: 2px solid var(--accent-dark);
  padding-left: 16px;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.manifesto-quote blockquote::before {
  content: '\201C';
  font-size: 80px;
  color: var(--accent);
  display: block;
  line-height: 0.8;
  margin-bottom: 24px;
}

/* CLOSING */
.closing {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 32px;
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.closing-tags span {
  padding: 8px 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 13px;
  color: var(--text-muted);
}

/* FOOTER */
.site-footer {
  padding: 60px 32px 80px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .logo-mark { font-size: 16px; color: var(--accent); }
.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer-note {
  font-size: 12px;
  color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 120px; }
  .feature-grid { grid-template-columns: 1fr; }
  .output-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { padding: 0; }
  .stat-sep { display: none; }
  .header-inner { padding: 14px 20px; }
  .nav-label { display: none; }
  .manifesto, .features, .output-section, .archetypes-section, .closing { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .blueprint-card { padding: 20px; }
}