/* ───── DESIGN TOKENS ───── */
:root {
  --black: #0a0a0a;
  --black-alt: #141414;
  --white: #fafafa;
  --muted: #8a8a8a;
  --dim: #4a4a4a;
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.18);
  --gold-line: rgba(201, 168, 76, 0.35);
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-soft: rgba(255, 255, 255, 0.05);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ───── NAV ───── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline-soft);
}

.nav-logo {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* ───── BUTTONS ───── */
.btn {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  font-weight: 400;
}
.btn-primary:hover { background: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  padding: 16px 4px;
  margin-left: 24px;
}
.btn-secondary:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ───── HERO ───── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 40px;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 19px;
  color: rgba(250, 250, 250, 0.75);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 48px;
}

.hero-ctas { display: flex; align-items: center; }

.hero-caption {
  position: absolute;
  bottom: 48px;
  right: 60px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ───── SECTION BASE ───── */
section.chapter {
  padding: 120px 60px;
  border-top: 1px solid var(--hairline);
  position: relative;
}

section.chapter.alt { background: var(--black-alt); }

.chapter-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 72px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.chapter-number {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  flex-shrink: 0;
}

.chapter h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.chapter h2 em { font-style: italic; color: var(--gold); }

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

/* ───── QUOTE BLOCK ───── */
.quote-block {
  border-left: 2px solid var(--gold);
  padding: 24px 0 24px 40px;
  max-width: 860px;
  margin: 0 auto;
}

.quote-block p {
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.55;
}

.quote-sub {
  max-width: 860px;
  margin: 32px auto 0;
  padding-left: 42px;
  font-size: 15px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ───── CARDS ───── */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.card {
  border: 1px solid var(--hairline);
  padding: 40px 36px;
  background: rgba(255,255,255,0.02);
  position: relative;
  transition: border-color 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover { border-color: var(--gold-line); }

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 48px;
  background: var(--gold);
}

.card-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.3;
  color: var(--white);
}

.card p {
  font-size: 16px;
  color: rgba(250, 250, 250, 0.7);
  line-height: 1.75;
}

.card .card-cta {
  display: inline-block;
  margin-top: 24px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 2px;
}
.card .card-cta:hover { border-bottom-color: var(--gold); }

.card .card-meta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ───── FIT LISTS ───── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.fit-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}

.fit-col ul { list-style: none; }

.fit-col li {
  padding: 14px 0;
  padding-left: 28px;
  position: relative;
  font-size: 17px;
  color: rgba(250, 250, 250, 0.85);
  line-height: 1.6;
  border-bottom: 1px solid var(--hairline-soft);
}

.fit-col li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: 'DM Mono', monospace;
}

.fit-col li:last-child { border-bottom: none; }

/* ───── MANIFESTO ───── */
.manifesto {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  padding-left: 40px;
  border-left: 2px solid var(--gold);
}

.manifesto p {
  font-size: clamp(24px, 3vw, 34px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
}

.manifesto-caption {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 40px;
  padding-left: 42px;
}

/* ───── BLOG ───── */
.blog-intro {
  max-width: 720px;
  margin: 0 auto 64px;
  font-size: 18px;
  color: rgba(250, 250, 250, 0.7);
  line-height: 1.7;
}

.blog-link {
  display: block;
  text-align: center;
  margin-top: 56px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}

/* ───── POST (single article page) ───── */
.post-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 160px 24px 120px;
}

.post-meta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.post-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  color: var(--white);
}

.post-title em { font-style: italic; color: var(--gold); }

.post-body {
  font-size: 19px;
  line-height: 1.85;
  color: rgba(250, 250, 250, 0.88);
}

.post-body p { margin-bottom: 28px; }

.post-body p:last-child { margin-bottom: 0; }

.post-body h2 {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 56px 0 24px;
  color: var(--white);
}

.post-body h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 40px 0 16px;
  color: var(--white);
}

.post-body em { font-style: italic; }
.post-body strong { font-weight: 600; color: var(--white); }

.post-body blockquote {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 32px;
  margin: 40px 0;
  font-style: italic;
  font-size: 22px;
  color: var(--white);
}

.post-body ul, .post-body ol {
  padding-left: 28px;
  margin-bottom: 28px;
}

.post-body li {
  margin-bottom: 12px;
  font-size: 18px;
}

.post-body a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-line);
}
.post-body a:hover { border-bottom-color: var(--gold); }

.post-footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--hairline);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}

.post-footer a {
  color: var(--gold);
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}

/* ───── FINAL CTA ───── */
.final-cta {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.final-cta h2 { margin-bottom: 24px; }

.final-cta .sub {
  font-size: 19px;
  color: rgba(250, 250, 250, 0.75);
  line-height: 1.7;
  margin-bottom: 48px;
}

.calendly-placeholder {
  border: 1px dashed var(--hairline);
  padding: 60px 40px;
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.final-caption {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--dim);
  text-transform: uppercase;
  margin-top: 32px;
  text-align: center;
}

/* ───── FOOTER ───── */
footer {
  background: var(--black-alt);
  padding: 80px 60px 60px;
  border-top: 1px solid var(--hairline);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h5 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col p, .footer-col a {
  font-size: 15px;
  color: rgba(250, 250, 250, 0.7);
  line-height: 1.8;
  text-decoration: none;
  display: block;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 64px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--dim);
  text-transform: uppercase;
  text-align: center;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }

  .hero { padding: 120px 24px 80px; }
  .hero h1 { font-size: 44px; }
  .hero-sub { font-size: 17px; }
  .hero-caption { position: static; margin-top: 48px; }
  .btn-secondary { margin-left: 12px; }

  section.chapter { padding: 80px 24px; }
  .chapter-header { flex-direction: column; gap: 8px; margin-bottom: 48px; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; gap: 24px; }

  .quote-block { padding-left: 24px; }
  .quote-block p { font-size: 19px; }
  .quote-sub { padding-left: 26px; }

  .manifesto { padding-left: 24px; }
  .manifesto p { font-size: 22px; }
  .manifesto-caption { padding-left: 26px; }

  .post-wrapper { padding: 120px 24px 80px; }
  .post-body { font-size: 17px; }

  footer { padding: 60px 24px 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
