/* ============================================
   ContentDeck — Custom Stylesheet
   ============================================ */

:root {
  --bg: #faf7f2;
  --bg-alt: #f0ebe3;
  --fg: #1a1a18;
  --fg-muted: #6b6760;
  --accent: #c47b0a;
  --accent-dark: #9e5e06;
  --accent-bg: #fdf3e3;
  --green: #2a6644;
  --green-light: #e8f3ec;
  --card-bg: #ffffff;
  --border: #e0d9d0;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav__tag {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero__sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}
.hero__visual {
  position: relative;
}
.hero__card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.hero__card--main { }
.hero__card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero__card-items { display: flex; flex-direction: column; gap: 12px; }
.hero__card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}
.hero__card-icon {
  color: var(--accent);
  font-size: 12px;
}
.hero__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.hero__scroll-hint {
  max-width: 1140px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  letter-spacing: 0.03em;
}

/* Manifesto */
.manifesto {
  padding: 100px 40px;
  background: var(--fg);
  color: var(--bg);
}
.manifesto__inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 600;
}
.manifesto__content p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.55;
  font-weight: 300;
  color: #f5f0e8;
  margin-bottom: 28px;
}
.manifesto__content p:last-child { margin-bottom: 0; }

/* Services */
.services {
  padding: 100px 40px;
  background: var(--bg);
}
.services__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.services__header {
  margin-bottom: 64px;
  max-width: 560px;
}
.services__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}
.services__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--card-bg);
  padding: 36px 32px;
}
.service-card__icon {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 300;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 100px 40px;
  background: var(--bg-alt);
}
.pricing__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.pricing__header {
  text-align: center;
  margin-bottom: 64px;
}
.pricing__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}
.pricing__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.pricing__sub {
  font-size: 16px;
  color: var(--fg-muted);
}
.pricing__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.pricing-card--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px var(--accent-bg);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.pricing-card__price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
  font-family: var(--font-body);
}
.pricing-card__desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card__features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.pricing-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

/* Process */
.process {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.process__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.process__header {
  margin-bottom: 64px;
  max-width: 560px;
}
.process__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}
.process__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 4px;
}
.step__content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step__content p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 560px;
}

/* Closing */
.closing {
  padding: 100px 40px;
  background: var(--green);
  color: #fff;
}
.closing__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}
.closing__body {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

/* Footer */
.footer {
  padding: 40px;
  background: var(--fg);
  color: rgba(255,255,255,0.4);
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  display: block;
}
.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer__copy {
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 40px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .services { padding: 60px 24px; }
  .services__grid { grid-template-columns: 1fr; }
  .pricing { padding: 60px 24px; }
  .pricing__tiers { grid-template-columns: 1fr; }
  .process { padding: 60px 24px; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; }
  .manifesto { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .footer__inner { flex-direction: column; gap: 20px; text-align: center; }
}