/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf9f6;
  --bg-alt: #f0ede8;
  --ink: #0f0f0f;
  --ink-muted: #6b6560;
  --accent: #e8a83e;
  --accent-dark: #c4881e;
  --surface: #ffffff;
  --border: #e0dbd4;
}

html { scroll-behavior: smooth; }

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

::selection { background: var(--accent); color: var(--ink); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
}

/* === NAV === */
.nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

/* === HERO === */
.hero {
  padding: 6rem 3rem 5rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 38ch;
  font-weight: 300;
  line-height: 1.7;
}

/* Package Preview */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.package-preview {
  background: var(--ink);
  color: #faf9f6;
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 24px 48px rgba(15, 15, 15, 0.15);
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(250, 249, 246, 0.12);
}

.package-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.package-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--accent);
}

.package-price span {
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  opacity: 0.6;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(250, 249, 246, 0.12);
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.pf-count {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1;
  min-width: 2ch;
}

.pf-name {
  opacity: 0.8;
}

.package-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--border);
}

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

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.hiw-step {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid var(--border);
}

.hiw-step:last-child {
  border-right: none;
  padding-right: 0;
}

.hiw-step:not(:first-child) {
  padding-left: 2rem;
}

.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1;
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

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

/* === PACKAGES === */
.packages {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--border);
}

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

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

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

.pricing-card--featured {
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.pc-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.pricing-card--featured .pc-tier {
  color: var(--accent);
}

.pc-price {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.pc-price span {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--ink-muted);
}

.pc-desc {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pc-features li {
  font-size: 0.875rem;
  color: var(--ink);
  padding-left: 1.25rem;
  position: relative;
}

.pc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* === MANIFESTO === */
.manifesto {
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--ink);
  color: #faf9f6;
}

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

.manifesto-quote {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 249, 246, 0.12);
}

.manifesto-quote blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: #faf9f6;
  max-width: 18ch;
}

.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.manifesto-body p {
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.75;
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  padding: 6rem 3rem;
  background: var(--bg-alt);
}

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

.closing h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.closing p {
  font-size: 1rem;
  color: var(--ink-muted);
  font-weight: 300;
}

/* === FOOTER === */
.footer {
  padding: 2rem 3rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
}

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

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .package-preview {
    max-width: 100%;
  }

  .hiw-steps {
    grid-template-columns: 1fr;
  }

  .hiw-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
  }

  .hiw-step:last-child {
    border-bottom: none;
  }

  .hiw-step:not(:first-child) {
    padding-left: 0;
  }

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

  .pricing-card--featured {
    box-shadow: 4px 4px 0 var(--ink);
    transform: translate(-1px, -1px);
  }

  .manifesto-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .nav, .hero, .howitworks, .packages, .manifesto, .closing, .footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .manifesto { padding: 4rem 1.5rem; }
}