/* ── Tokens ── */
:root {
  --bg: #faf7f2;
  --bg-alt: #f2ede4;
  --nav-bg: #1a1f2e;
  --primary: #1a1f2e;
  --accent: #c8773a;
  --accent-light: #f0e0cc;
  --ink: #2c2826;
  --ink-muted: #7a7269;
  --surface: #ffffff;
  --border: #e2dbd0;
  --hero-bg: #1a1f2e;
  --hero-text: #faf7f2;
  --card-bg: #ffffff;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.15;
  font-weight: 400;
}

/* ── Navigation ── */
.nav {
  background: var(--nav-bg);
  color: var(--hero-text);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-tag {
  font-size: 0.75rem;
  font-family: 'Figtree', sans-serif;
  background: var(--accent);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  background: var(--hero-bg);
  color: var(--hero-text);
  padding: 80px 0 0;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
}

.hero-headline {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 24px;
  color: var(--hero-text);
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(250, 247, 242, 0.72);
  max-width: 440px;
}

/* ── Hero Card ── */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(12px);
}

.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,247,242,0.45);
  margin-bottom: 6px;
}

.card-address {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.card-tag {
  font-size: 0.78rem;
  color: #6fcf97;
  font-weight: 500;
}

.card-time {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.5);
}

.card-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(250,247,242,0.8);
}

.check-icon {
  color: #6fcf97;
  font-size: 0.85rem;
}

.card-status {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
}

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1100px;
  margin: 0 auto;
}

.stat {
  flex: 1;
  padding: 24px 32px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--hero-text);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(250,247,242,0.5);
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ── Manifesto ── */
.manifesto {
  background: var(--accent-light);
  padding: 80px 0;
}

.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.manifesto-text {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 0;
}

.manifesto-bold {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin-top: 20px;
  color: var(--primary);
}

/* ── Services ── */
.services {
  padding: 96px 0;
  background: var(--bg);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 56px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,31,46,0.08);
}

.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.service-name {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* ── Process ── */
.process {
  background: var(--bg-alt);
  padding: 96px 0;
}

.process-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  min-width: 40px;
  padding-top: 4px;
}

.step-content {
  padding-bottom: 40px;
  flex: 1;
  border-left: 1px solid var(--border);
  padding-left: 28px;
  margin-left: 4px;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.step-connector {
  display: none;
}

/* ── Pricing ── */
.pricing {
  padding: 96px 0;
  background: var(--bg);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.pricing-sub {
  text-align: center;
  font-size: 1rem;
  color: var(--ink-muted);
  margin-bottom: 48px;
  margin-top: -40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}

.pricing-card-featured {
  border: 2px solid var(--accent);
  position: relative;
}

.pricing-card-featured::before {
  content: 'Most popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
}

.pricing-tier {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.pricing-amount {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 28px;
}

.pricing-unit {
  font-size: 0.9rem;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  color: var(--ink-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.pricing-target {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 32px;
  line-height: 1.6;
}

/* ── Closing ── */
.closing {
  background: var(--primary);
  padding: 96px 0;
}

.closing-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.closing-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--hero-text);
  margin-bottom: 28px;
  line-height: 1.3;
}

.closing-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250,247,242,0.65);
}

/* ── Footer ── */
.footer {
  background: var(--bg-alt);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.footer-note {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
  }

  .hero-headline {
    font-size: 2.4rem;
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .stat:last-child {
    border-bottom: none;
  }

  .stat-divider { display: none; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    order: -1;
  }

  .step {
    gap: 16px;
  }

  .step-content {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 56px;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
  }

  .manifesto, .services, .process, .pricing, .closing {
    padding: 64px 0;
  }
}