:root {
  --bg: #FDF8F3;
  --bg-alt: #F5EDE4;
  --fg: #1A1A18;
  --fg-muted: #6B6560;
  --accent: #C4622D;
  --accent-light: #F0D4C4;
  --green: #2D4A3E;
  --green-light: #E4EDE9;
  --border: #E0D5C8;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(26, 26, 24, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(253, 248, 243, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}

/* Section base */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--fg);
  margin-bottom: 32px;
}
.section-headline em {
  font-style: italic;
  color: var(--accent);
}
.center { text-align: center; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  padding-top: 80px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}
.hero-content {
  max-width: 600px;
}
.hero-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(44px, 6vw, 80px);
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 20px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 480px;
}
.hero-visual {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.family-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  min-width: 200px;
}
.family-row {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
}
.person-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 4px;
}
.mama { background: var(--accent-light); }
.tata { background: #D4E8F0; }
.dziecko { background: #F0E8D4; }
.dziadek { background: var(--green-light); }
.person small {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
}
.plan-badge {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.plan-badge-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plan-badge-label {
  font-size: 11px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.plan-badge-count {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
}
.plan-badge-note {
  font-size: 13px;
  opacity: 0.8;
}

/* Jak to dziala */
.jaktodziala {
  background: var(--white);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 16px;
}
.step {
  padding: 32px 24px;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 16px;
  line-height: 1;
}
.step-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  height: 1px;
  background: var(--border);
  width: 40px;
  margin-top: 60px;
  flex-shrink: 0;
}

/* Dlaczego Stolowka */
.dlaczego {
  background: var(--bg);
}
.dlaczego-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dlaczego-body {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.dlaczego-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dlaczego-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}
.list-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.dlaczego-list strong {
  color: var(--fg);
}
.screen-mockup {
  background: var(--fg);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
  font-size: 13px;
  box-shadow: var(--shadow), 0 20px 60px rgba(26,26,24,0.15);
}
.mockup-header {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: 16px;
  opacity: 0.6;
}
.mockup-day {
  margin-bottom: 16px;
}
.day-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.day-meals {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.meal-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
}
.meal-row.zosia {
  background: rgba(196,98,45,0.15);
  border-left: 2px solid var(--accent);
}
.meal-who {
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
  width: 60px;
}
.meal-name {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
}
.mockup-grocery {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px;
}
.grocery-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
  display: block;
  margin-bottom: 8px;
}
.grocery-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.grocery-item {
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* Rodziny */
.rodziny {
  background: var(--bg-alt);
}
.rodziny-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.rodzina-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.rodzina-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.rodzina-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.rodzina-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.rodzina-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  background: var(--green);
  color: var(--white);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px;
}
.closing-headline {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 24px;
}
.closing-headline em {
  font-style: italic;
  color: var(--accent-light);
}
.closing-body {
  font-size: 20px;
  opacity: 0.85;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 48px;
}
.closing-stats {
  display: flex;
  gap: 48px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  opacity: 0.7;
}

/* Footer */
.footer {
  background: #111110;
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
}
.footer-brand {
  margin-bottom: 24px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline {
  font-size: 14px;
  margin-top: 8px;
}
.footer-bottom {
  font-size: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .hero-inner { padding: 60px 20px; }
  .section-inner { padding: 60px 20px; }
  .hero-visual { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step-connector { display: none; }
  .dlaczego-grid { grid-template-columns: 1fr; gap: 40px; }
  .dlaczego-visual { order: -1; }
  .rodziny-grid { grid-template-columns: 1fr; }
  .closing-stats { flex-direction: column; gap: 24px; }
  .closing-inner { padding: 60px 20px; }
}