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

:root {
  --bg: #FBF8F3;
  --fg: #1A1A1A;
  --accent: #E8872A;
  --accent-dark: #C46A18;
  --accent-light: #FFF0DC;
  --muted: #7A7670;
  --surface: #FFFFFF;
  --border: #E8E4DC;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}

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

.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* === HERO === */
.hero {
  padding: 80px 40px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 40px;
}

.pricing-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
}

.pricing-period {
  font-size: 1rem;
  color: var(--muted);
}

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

.proof-item {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}

.proof-item:first-child { padding-left: 0; }

.proof-stat {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.proof-label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 4px;
  max-width: 100px;
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === PHONE MOCKUP === */
.phone-mockup {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.10), 0 8px 24px rgba(0,0,0,0.06);
}

.mockup-bar {
  display: flex;
  gap: 6px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.mockup-bar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.mockup-content {
  padding: 16px;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.mockup-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8872a 0%, #f0a050 100%);
  flex-shrink: 0;
}

.mockup-name-block { flex: 1; }

.mockup-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg);
}

.mockup-handle {
  font-size: 0.7rem;
  color: var(--muted);
}

.mockup-post { margin-bottom: 12px; }

.mockup-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  height: 180px;
}

.mi {
  background: linear-gradient(135deg, var(--accent-light) 0%, #fff 100%);
}

.mi-1 { background: linear-gradient(135deg, #e8872a22 0%, #f5c07a44 100%); }
.mi-2 { background: linear-gradient(135deg, #d4a57444 0%, #e8872a22 100%); }
.mi-3 { background: linear-gradient(135deg, #f5e6c8 0%, #d4a57433 100%); }

.mockup-caption p {
  font-size: 0.7rem;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 8px;
}

.mockup-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.62rem;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 8px;
  border-radius: 20px;
}

.mockup-comments {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mc-item {
  font-size: 0.68rem;
  color: var(--muted);
  padding: 6px 10px;
  background: var(--bg);
  border-radius: 8px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.badge {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #e8872a33;
}

/* === DELIVERY === */
.delivery {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}

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

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 40px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}

.delivery-card {
  background: var(--surface);
  padding: 36px 28px;
  transition: background 0.2s;
}

.delivery-card:hover { background: var(--accent-light); }

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

.dc-count {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}

.dc-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
}

.dc-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.delivery-note {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* === NICHES === */
.niches {
  padding: 100px 40px;
  background: var(--bg);
}

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

.niches-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.niches-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.15;
}

.niches-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.niche-card {
  background: var(--surface);
  padding: 36px 28px;
  transition: background 0.2s;
}

.niche-card:hover { background: var(--accent-light); }

.niche-icon { color: var(--accent); margin-bottom: 16px; }

.niche-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 10px;
}

.niche-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--fg);
  color: #fff;
  padding: 100px 40px;
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 48px;
  align-items: start;
}

.manifesto-deco {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.manifesto-accent {
  width: 3px;
  height: 120px;
  background: var(--accent);
  border-radius: 3px;
}

.manifesto .section-label { color: var(--accent); }

.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: #F5F0E8;
  margin: 20px 0 28px;
}

.manifesto-body {
  font-size: 0.95rem;
  color: #A8A49E;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* === CLOSING === */
.closing {
  background: var(--accent);
  padding: 100px 40px;
}

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

.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.closing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
}

.closing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.cp-amount {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
}

.cp-per {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
}

.cp-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

/* === FOOTER === */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}

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

.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-sep { color: var(--border); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-deco { display: none; }
  .navbar { padding: 0 20px; }
  .hero, .delivery, .niches, .manifesto, .closing, .footer { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 600px) {
  .delivery-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .proof-divider { display: none; }
  .proof-item { padding: 0; }
  .hero-headline { font-size: 2.2rem; }
}