/* Fonts */
:root {
  --bg: #F7F4EE;
  --fg: #1A1714;
  --accent: #E8623A;
  --accent-dark: #C44E24;
  --muted: #7A756E;
  --surface: #FFFFFF;
  --border: #E0DBD4;
  --hero-shape-1: #E8623A22;
  --hero-shape-2: #E8A03A22;
  --hero-shape-3: #3A7AE822;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: 2rem;
}

.site-header nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.site-header nav a:hover { color: var(--fg); }

/* ─── CONTAINER ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--hero-shape-1) 0%, transparent 70%);
  top: -200px;
  right: -150px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--hero-shape-2) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--hero-shape-3) 0%, transparent 70%);
  top: 100px;
  left: 30%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

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

.hero-lede {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 2rem;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 140px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  padding: 6rem 0;
  background: var(--surface);
}

.how-it-works h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

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

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.35;
}

.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── SERVICES ─── */
.services {
  padding: 6rem 0;
  background: var(--bg);
}

.services h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  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 {
  width: 52px;
  height: 52px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.services-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--accent);
  border-radius: 12px;
  color: white;
  text-align: center;
}

.services-note p {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ─── MANIFESTO ─── */
.manifesto {
  padding: 6rem 0;
  background: var(--fg);
  color: var(--bg);
}

.manifesto-inner {
  max-width: 760px;
}

.manifesto-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.manifesto blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.manifesto blockquote p {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--bg);
}

.manifesto-body {
  font-size: 1rem;
  color: #B5AFA8;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.manifesto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.manifesto-tags span {
  background: rgba(255,255,255,0.08);
  color: var(--bg);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ─── PRICING ─── */
.pricing {
  padding: 6rem 0;
  background: var(--surface);
}

.pricing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.pricing-card {
  background: var(--bg);
  border: 2px solid var(--fg);
  border-radius: 20px;
  padding: 3rem;
  max-width: 560px;
}

.pricing-tier { }

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

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.price-period {
  font-size: 1.25rem;
  color: var(--muted);
}

.tier-tagline {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tier-features li {
  font-size: 0.95rem;
  color: var(--fg);
  padding-left: 1.5rem;
  position: relative;
}

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

.tier-note {
  font-size: 0.8rem;
  color: var(--muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.proof-row {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.proof-item strong {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg);
}

.proof-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ─── CLOSING ─── */
.closing {
  padding: 7rem 0;
  background: var(--accent);
}

.closing-inner {
  max-width: 720px;
}

.closing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.closing p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.closing-cta {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.closing-cta p {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}

/* ─── FOOTER ─── */
footer {
  background: var(--fg);
  padding: 3rem 0;
}

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

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(247, 244, 238, 0.45);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(247, 244, 238, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--bg); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(247, 244, 238, 0.3);
  margin-top: 0.5rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { padding: 4rem 0 5rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .proof-row { flex-direction: column; gap: 1.5rem; }
  .site-header nav { gap: 1.25rem; }
  .pricing-card { padding: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .footer-links { flex-direction: column; gap: 1rem; }
}