:root {
  --wine: #5c1f2e;
  --cream: #f7f0e7;
  --paper: #fffcf7;
  --ink: #24191c;
  --muted: #746965;
  --sage: #456b56;
  --brass: #b1843f;
  --clay: #c95f45;
  --line: #e5d7c7;
  --maxw: 960px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--wine); text-decoration: none; }
a:hover { text-decoration: underline; }

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: var(--wine);
  letter-spacing: 0.5px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 24px;
}
.site-header .wordmark { font-size: 30px; }
.site-nav a {
  margin-left: 22px;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}

/* Hero */
.hero {
  text-align: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px 40px;
}
.hero .wordmark {
  display: block;
  font-size: clamp(56px, 12vw, 104px);
  line-height: 1;
  margin-bottom: 18px;
}
.hero .tagline {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 800;
  margin: 0 0 14px;
}
.hero .subcopy {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  background: var(--wine);
  color: var(--cream);
  font-weight: 800;
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
}
.btn:hover { text-decoration: none; opacity: 0.94; }
.btn--ghost {
  background: transparent;
  color: var(--wine);
  border: 1.5px solid var(--line);
}
.badge-note { display: block; margin-top: 14px; color: var(--muted); font-size: 14px; }
.wordmark-link { text-decoration: none; }
.wordmark-link:hover { text-decoration: none; }

/* Store badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 11px 22px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}
.store-badge:hover { text-decoration: none; opacity: 0.92; }
.store-badge__glyph { width: 26px; height: 26px; flex: none; }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.12; text-align: left; }
.store-badge__text small { font-size: 11px; font-weight: 500; opacity: 0.85; }
.store-badge__text strong { font-size: 19px; font-weight: 700; letter-spacing: 0.2px; }
.store-badge--soon {
  background: transparent;
  color: var(--muted);
  border: 1.5px dashed var(--line);
  cursor: default;
}
.store-badge--soon:hover { opacity: 1; }

/* Sections */
.section { max-width: var(--maxw); margin: 0 auto; padding: 40px 24px; }
.section__kicker {
  font-family: Georgia, serif;
  font-size: clamp(24px, 4vw, 32px);
  color: var(--ink);
  text-align: center;
  margin: 0 0 28px;
}
.lead {
  font-size: 19px;
  color: var(--ink);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.band {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
}
.band > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--wine); color: var(--cream);
  font-weight: 800; font-size: 18px; margin-bottom: 12px;
}
.step h3 { margin: 0 0 6px; font-size: 20px; color: var(--wine); }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* Sous Chef panel */
.sous { max-width: none; padding: 24px; }
.sous__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--wine);
  color: var(--cream);
  border-radius: 22px;
  padding: 46px 32px;
  text-align: center;
}
.sous__kicker { color: var(--cream); }
.sous .lead { color: rgba(247, 240, 231, 0.92); }
.sous em { color: #fff; }
.sous strong { color: #fff; }

/* Why people love it */
.loves {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 640px;
  display: grid;
  gap: 12px;
}
.loves li {
  position: relative;
  padding: 14px 16px 14px 46px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 16px;
}
.loves li::before {
  content: "✓";
  position: absolute;
  left: 18px; top: 50%; transform: translateY(-50%);
  color: var(--sage);
  font-weight: 800;
}

/* Closing CTA */
.cta { text-align: center; padding-bottom: 56px; }
.cta__title {
  font-family: Georgia, serif;
  font-size: clamp(24px, 4vw, 32px);
  color: var(--wine);
  margin: 0 0 22px;
}

@media (max-width: 400px) {
  .store-badge { min-width: 0; width: 100%; justify-content: center; }
}

/* Legal pages */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 24px 64px;
}
.legal h1 { font-family: Georgia, serif; color: var(--wine); font-size: 34px; margin-bottom: 4px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.legal h2 { font-size: 21px; color: var(--ink); margin-top: 34px; }
.legal p, .legal li { color: var(--ink); font-size: 16px; }
.legal a { font-weight: 600; }
.callout {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--clay);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 18px 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.site-footer .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
}
.site-footer .wordmark { font-size: 22px; }
.site-footer nav a { margin-left: 18px; font-weight: 700; color: var(--ink); font-size: 14px; }
.site-footer .copy { color: var(--muted); font-size: 13px; width: 100%; }

@media (max-width: 540px) {
  .site-footer nav a { margin: 0 16px 0 0; }
}
