:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --fg: #1c1917;
  --fg-muted: #78716c;
  --accent: #e07b39;
  --accent-dark: #c25b28;
  --green: #6a8f64;
  --purple: #7c5cbf;
  --border: #e8e0d5;
  --shadow: rgba(28, 25, 23, 0.08);
}

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

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

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

/* Nav */
.nav {
  padding: 20px 48px;
  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;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Hero */
.hero {
  padding: 80px 48px 96px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}

/* Phone mockup */
.phone-mockup {
  background: #1c1917;
  border-radius: 40px;
  padding: 12px;
  max-width: 280px;
  margin-left: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #1c1917;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
}
.post-card {
  padding: 16px;
}
.post-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.post-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
}
.post-meta { flex: 1; }
.post-name { font-weight: 500; font-size: 0.85rem; }
.post-time { font-size: 0.75rem; color: var(--fg-muted); }
.post-image {
  height: 160px;
  border-radius: 12px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14px;
  color: #fff;
}
.post-dish-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.post-dish-name {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
}
.post-likes {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.post-caption {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 6px;
}
.post-tags {
  font-size: 0.7rem;
  color: var(--accent);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* Section commons */
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--fg);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* Content Engine */
.content-engine {
  padding: 80px 48px;
  background: #1c1917;
  color: #faf7f2;
}
.content-engine-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ce-header { text-align: center; margin-bottom: 64px; }
.ce-header .section-headline, .ce-header .section-sub { color: #faf7f2; }
.ce-header .section-eyebrow { color: var(--accent); }

.ce-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ce-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  max-width: 240px;
  flex: 1;
}
.ce-step-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}
.ce-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: #faf7f2;
  margin-bottom: 8px;
}
.ce-step p { font-size: 0.88rem; color: #a8a29e; line-height: 1.6; }
.ce-arrow { color: var(--accent); flex-shrink: 0; }

/* How it Works */
.how-it-works { padding: 96px 48px; background: var(--surface); }
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.hiw-header { margin-bottom: 56px; }
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.hiw-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg);
  transition: box-shadow 0.2s;
}
.hiw-card:hover {
  box-shadow: 0 8px 32px var(--shadow);
}
.hiw-num {
  font-family: 'Fraunces', serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 12px;
}
.hiw-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.hiw-card p { font-size: 0.92rem; color: var(--fg-muted); line-height: 1.65; }

/* Testimonials */
.testimonials {
  padding: 96px 48px;
  background: var(--bg);
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.test-header { margin-bottom: 56px; }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.test-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.test-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 24px;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}
.test-name { font-weight: 500; font-size: 0.9rem; }
.test-role { font-size: 0.78rem; color: var(--fg-muted); }

/* Pricing */
.pricing { padding: 96px 48px; background: #1c1917; }
.pricing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.pricing .section-eyebrow { color: var(--accent); }
.pricing .section-headline, .pricing .section-sub { color: #faf7f2; }
.pricing .section-sub { margin: 0 auto 56px; }
.pricing-card {
  display: flex;
  justify-content: center;
}
.pricing-tier {
  background: var(--surface);
  border-radius: 28px;
  padding: 48px;
  max-width: 480px;
  width: 100%;
  text-align: left;
}
.pricing-name {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-period {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
}
.pricing-features li svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding: 16px;
  background: var(--bg);
  border-radius: 10px;
}

/* Closing */
.closing { padding: 96px 48px; background: var(--surface); }
.closing-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-left { order: 1; }
  .hero-right { order: 2; }
  .phone-mockup { margin: 0 auto; }
  .hiw-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .ce-flow { flex-direction: column; }
  .ce-arrow { transform: rotate(90deg); }
}
@media (max-width: 640px) {
  .hero, .content-engine, .how-it-works, .testimonials, .pricing, .closing { padding: 64px 24px; }
  .nav { padding: 16px 24px; }
  .pricing-tier { padding: 32px 24px; }
}