/* ---- Tokens ---- */
:root {
  --bg: #FAF8F5;
  --surface: #FFFFFF;
  --surface-alt: #F2EFE9;
  --fg: #1A1714;
  --fg-muted: #6B6560;
  --accent: #2C4A3E;
  --accent-light: #3D6B59;
  --accent-amber: #C8913A;
  --border: #DDD9D3;
  --radius: 6px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }
em { font-style: italic; font-family: 'Fraunces', Georgia, serif; font-weight: 300; }
p { color: var(--fg-muted); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.wordmark-v { color: var(--accent); }
.wordmark-craft { color: var(--accent-amber); }
nav { display: flex; gap: 2rem; }
nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.45rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
}
.nav-cta:hover { background: var(--accent-light) !important; }

/* ---- Hero ---- */
.hero { padding: 6rem 1.5rem 5rem; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-amber);
  margin-bottom: 1rem;
}
.hero-headline {
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-lede {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border: 1.5px solid var(--accent);
  border-radius: 100px;
  color: var(--accent);
}

/* ---- Hero Visual ---- */
.hero-visual { display: flex; justify-content: center; }
.doc-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  max-width: 360px;
}
.doc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 4px 24px rgba(26,23,20,0.06);
}
.doc-resume { border-left: 4px solid var(--accent); }
.doc-linkedin { border-left: 4px solid var(--accent-amber); }
.doc-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.9rem;
}
.doc-line {
  height: 6px;
  background: var(--surface-alt);
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.doc-line.long { width: 100%; }
.doc-line.medium { width: 75%; }
.doc-line.short { width: 50%; }
.doc-bars { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.doc-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.bar-fill {
  height: 5px;
  background: var(--accent);
  border-radius: 3px;
  flex-shrink: 0;
}
.doc-checkmarks {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.check { color: var(--accent-amber); margin-right: 0.4rem; font-weight: bold; }

/* ---- Manifesto ---- */
.manifesto {
  background: var(--accent);
  padding: 4rem 1.5rem;
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: #F5F0E8;
  line-height: 1.5;
  text-align: center;
}
blockquote strong { color: var(--accent-amber); font-style: normal; }

/* ---- Sections ---- */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-amber);
  margin-bottom: 0.8rem;
}
.section-headline {
  margin-bottom: 3rem;
  max-width: 640px;
}

/* ---- Services ---- */
.services { padding: 6rem 1.5rem; max-width: 1100px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,23,20,0.08);
}
.service-icon { color: var(--accent); margin-bottom: 1.2rem; }
.service-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}
.service-card p { font-size: 0.9rem; margin-bottom: 1.5rem; }
.service-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
}

/* ---- How ---- */
.how {
  background: var(--surface-alt);
  padding: 6rem 1.5rem;
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  max-width: 900px;
}
.step {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}
.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.step-body h3 { margin-bottom: 0.5rem; }
.step-body p { font-size: 0.9rem; }

/* ---- Outcomes ---- */
.outcomes { padding: 6rem 1.5rem; background: var(--surface); }
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.outcomes-copy h2 {
  margin-bottom: 1rem;
}
.outcomes-list {
  list-style: none;
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.outcomes-list li {
  font-size: 0.95rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--accent-amber);
}
.outcomes-list strong { color: var(--fg); display: block; margin-bottom: 0.2rem; }
.outcomes-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.stat-block {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem 1.8rem;
}
.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ---- Closing ---- */
.closing {
  background: var(--fg);
  padding: 6rem 1.5rem;
}
.closing-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #FAF8F5;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.closing p {
  color: #A89F96;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.cta-note {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  color: #FAF8F5;
  padding: 1rem 2.5rem;
  border: 2px solid var(--accent-amber);
  display: inline-block;
  border-radius: 6px;
}
.cta-btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg) !important;
  background: var(--accent-amber);
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.cta-btn:hover {
  background: #b37d2d;
  transform: translateY(-1px);
}

/* ---- Footer ---- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); }
.footer-services {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-services a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-services a:hover { color: var(--fg); }
.footer-copy { font-size: 0.78rem; color: var(--fg-muted); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-inner,
  .outcomes-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-visual { display: none; }
  nav { display: none; }
}