:root {
  --bg: #14100e;
  --bg-soft: #1d1815;
  --ink: #f5ece4;
  --ink-dim: #b8a99c;
  --line: #322a25;
  --cocoa: #4a2c18;
  --molten: #b4541f;
  --molten-hot: #e0762e;
  --cream: #f0d9b8;
}

* { box-sizing: border-box; }

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

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 .5rem; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
a { color: inherit; }

section { padding: 5rem 1.5rem; max-width: 1080px; margin: 0 auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* nav */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.1rem 1.5rem;
  max-width: 1080px; margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 700; font-size: 1.15rem; text-decoration: none;
  letter-spacing: -0.01em;
}
.nav nav { display: flex; gap: 1.4rem; font-size: .95rem; }
.nav nav a { color: var(--ink-dim); text-decoration: none; }
.nav nav a:hover { color: var(--ink); }

/* hero */
.hero {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 3rem; align-items: center; padding-top: 4rem;
}
.eyebrow {
  margin: 0 0 .8rem; text-transform: uppercase; letter-spacing: .18em;
  font-size: .75rem; color: var(--molten-hot); font-weight: 700;
}
.lede { font-size: 1.15rem; color: var(--ink-dim); max-width: 46ch; }
.cta-row { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.8rem 0 1rem; }

.btn {
  display: inline-block; padding: .8rem 1.5rem; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: .98rem;
  border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--molten); color: #fff; }
.btn-primary:hover { background: var(--molten-hot); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink-dim); }

.note { font-size: .85rem; color: var(--ink-dim); margin: 0; }

/* hero art */
.hero-art img {
  width: 100%; max-width: 360px; height: auto;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.5));
}

/* stat strip */
.strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; max-width: 1080px; margin: 0 auto;
  padding: 1.6rem 1.5rem; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); background: var(--bg-soft);
}
.strip div { display: flex; flex-direction: column; }
.strip strong { font-size: 1.5rem; }
.strip span { font-size: .85rem; color: var(--ink-dim); }

.section-lede { color: var(--ink-dim); margin: 0 0 2rem; }

/* flavour cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; }
.card {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 14px; padding: 1.3rem;
}
.card h3 { font-size: 1.15rem; text-align: center; }
.card p { color: var(--ink-dim); font-size: .95rem; margin: 0 0 1rem; text-align: center; }
.card img {
  display: block; width: 100%; max-width: 190px; height: auto;
  margin: 0 auto 1rem;
}
.price { font-weight: 700; color: var(--cream); display: block; text-align: center; }

/* steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.steps li { border-top: 2px solid var(--molten); padding-top: 1rem; }
.step-n { font-size: .8rem; letter-spacing: .15em; color: var(--molten-hot); font-weight: 700; }
.steps h3 { font-size: 1.05rem; margin-top: .4rem; }
.steps p { color: var(--ink-dim); font-size: .95rem; margin: 0; }

/* order */
.order { text-align: center; }
.order .section-lede { margin-inline: auto; }
.signup { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: .8rem; }
.signup input {
  padding: .8rem 1rem; border-radius: 10px; min-width: 260px;
  border: 1px solid var(--line); background: var(--bg-soft); color: var(--ink);
  font-size: 1rem;
}
.signup input:focus { outline: 2px solid var(--molten-hot); outline-offset: 1px; }
.formmsg { color: var(--molten-hot); font-weight: 600; }

footer {
  border-top: 1px solid var(--line); padding: 2rem 1.5rem;
  max-width: 1080px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .9rem;
}
.muted { color: var(--ink-dim); }
footer p { margin: 0; }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .nav nav { gap: 1rem; font-size: .88rem; }
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.formmsg-error { color: #e8896b; }
.signup button[disabled] { opacity: .6; cursor: default; }
