/* ---------- Tokens ---------- */
:root {
  --bg: #faf6ef;
  --bg-warm: #f3ead9;
  --kraft: #d4b896;
  --kraft-dark: #b39871;
  --ink: #1a1410;
  --ink-soft: #3d2f24;
  --muted: #6b5a4a;
  --line: #e3d5be;
  --red: #b1281f;
  --red-dark: #8a1c14;
  --red-deep: #5b150f;
  --gold: #c9a961;
  --cream: #fff8eb;

  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Anton", "Oswald", Impact, sans-serif;
  --display-cond: "Oswald", "Anton", Impact, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(26, 20, 16, 0.06);
  --shadow-md: 0 12px 32px rgba(26, 20, 16, 0.12);
  --shadow-lg: 0 28px 60px rgba(26, 20, 16, 0.22);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--display-cond); letter-spacing: -0.01em; line-height: 1.05; color: var(--ink); }
h2 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.4rem); font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; letter-spacing: 0.01em; }

.eyebrow {
  font-family: var(--display-cond);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--red);
}
.eyebrow.dark { color: var(--red-dark); }
.eyebrow.light { color: var(--gold); }
.eyebrow.centered { display: block; text-align: center; margin-bottom: 12px; }

.section-title { margin-bottom: 14px; }
.section-title.centered { text-align: center; }
.section-title.light { color: var(--cream); }
.section-lede {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-lede.centered { text-align: center; }
.lede {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.bullets {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
.bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 14px;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 35%, 80% 100%, 20% 100%, 0% 35%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--display-cond);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 6px 18px rgba(177, 40, 31, 0.35);
}
.btn-primary:hover { background: var(--red-dark); color: var(--cream); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(177, 40, 31, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 248, 235, 0.6);
}
.btn-ghost:hover { background: rgba(255, 248, 235, 0.1); color: var(--cream); border-color: var(--cream); }
.btn-small { padding: 10px 18px; font-size: 0.82rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
  padding: 18px 0;
}
.nav.is-scrolled { background: rgba(26, 20, 16, 0.92); box-shadow: 0 4px 16px rgba(0,0,0,0.25); padding: 12px 0; backdrop-filter: blur(8px); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--cream);
}
.brand-mark { font-family: var(--serif); font-style: italic; font-size: 1.45rem; font-weight: 600; letter-spacing: -0.01em; }
.brand-sub { font-family: var(--display-cond); letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.7rem; color: var(--gold); margin-top: 4px; }
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 30px;
}
.nav-links a {
  color: var(--cream);
  font-family: var(--display-cond);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 500;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { white-space: nowrap; }
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
}
.nav-toggle span { display: block; height: 2px; background: var(--cream); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 70% 30%, rgba(177, 40, 31, 0.35), transparent 70%),
    linear-gradient(180deg, #2a1a13 0%, #1a0e0a 70%, #0f0806 100%);
  z-index: -2;
}
.hero-img { position: absolute; inset: 0; z-index: -1; }
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
  opacity: 0.45;
  filter: contrast(1.05) saturate(1.05);
}
.hero-img::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 5, 3, 0.95) 0%, rgba(10, 5, 3, 0.78) 45%, rgba(10, 5, 3, 0.4) 80%, rgba(10, 5, 3, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 5, 3, 0.6) 0%, transparent 30%, rgba(10, 5, 3, 0.7) 100%);
}
.hero-content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 24px 120px;
  width: 100%;
}
.hero .eyebrow { color: var(--gold); margin-bottom: 18px; }
.hero-title {
  font-family: var(--display);
  font-size: clamp(3.2rem, 2rem + 7vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 26px;
  max-width: 12ch;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-title span { display: block; }
.hero-title-accent {
  color: var(--red);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.hero-lede {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.3rem);
  max-width: 540px;
  color: rgba(255, 248, 235, 0.85);
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

.heat-scale {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 248, 235, 0.18);
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
}
.heat-label {
  font-family: var(--display-cond);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
}
.heat-chillies { display: inline-flex; gap: 5px; }
.chilli {
  width: 16px; height: 20px;
  background: rgba(255, 248, 235, 0.18);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 18'><path d='M7 1.2 C 5.6 0.4 4.6 0 4 0.6 C 3.4 1.2 4.2 2 4.8 2.6 C 3 3.4 1 5.6 1 8.6 C 1 13 5 17.6 7.6 17.6 C 10 17.6 13 14.4 13 10.6 C 13 6.4 10 3.4 7.6 2.8 C 7.4 2 7.2 1.4 7 1.2 Z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 18'><path d='M7 1.2 C 5.6 0.4 4.6 0 4 0.6 C 3.4 1.2 4.2 2 4.8 2.6 C 3 3.4 1 5.6 1 8.6 C 1 13 5 17.6 7.6 17.6 C 10 17.6 13 14.4 13 10.6 C 13 6.4 10 3.4 7.6 2.8 C 7.4 2 7.2 1.4 7 1.2 Z' fill='black'/></svg>") center/contain no-repeat;
}
.chilli.on { background: linear-gradient(180deg, #e23a22, #8a1c14); }
.heat-num {
  font-family: var(--display-cond);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 2px solid rgba(255, 248, 235, 0.5);
  border-radius: 14px;
}
.hero-scroll span {
  display: block;
  width: 3px; height: 8px;
  background: var(--cream);
  border-radius: 2px;
  margin: 6px auto;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Story ---------- */
.story { padding: 110px 0; background: var(--bg); position: relative; }
.story::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.split.align-top { align-items: flex-start; }
.split-text h2 { margin: 12px 0 22px; }
.split-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--kraft);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Products ---------- */
.products { padding: 110px 0; background: var(--bg-warm); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.product-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}
.product {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product.featured {
  border: 2px solid var(--red);
  transform: translateY(-12px);
  box-shadow: var(--shadow-md);
}
.product.featured:hover { transform: translateY(-16px); box-shadow: var(--shadow-lg); }
.ribbon {
  position: absolute;
  top: 20px; right: -36px;
  background: var(--red);
  color: var(--cream);
  padding: 6px 40px;
  font-family: var(--display-cond);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  transform: rotate(35deg);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.product-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #2a1a13, #1a0e0a);
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body h3 { font-size: 1.8rem; }
.product-tag {
  font-family: var(--display-cond);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--red);
  margin: 4px 0 14px;
}
.product-body > p:nth-of-type(2) { color: var(--ink-soft); flex: 1; }
.price {
  margin: 18px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price .amount {
  font-family: var(--display);
  font-size: 2.1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.price .unit { color: var(--muted); font-size: 0.95rem; }
.price-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }
.price-sub strong { color: var(--ink); }
.product .btn { margin-top: auto; }

/* ---------- Ingredients ---------- */
.ingredients {
  position: relative;
  padding: 120px 0;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.ingredients-bg { position: absolute; inset: 0; z-index: -1; }
.ingredients-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.ingredients-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,10,7,0.92), rgba(20,10,7,0.85));
}
.ing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 50px 0 30px;
}
.ing-card {
  padding: 26px;
  background: rgba(255, 248, 235, 0.05);
  border: 1px solid rgba(255, 248, 235, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}
.ing-card:hover { background: rgba(255, 248, 235, 0.08); transform: translateY(-3px); }
.ing-card h3 { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.ing-card p { color: rgba(255,248,235,0.8); font-family: var(--serif); font-size: 1rem; }
.ingredients-note {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255,248,235,0.65);
  font-size: 0.95rem;
  margin-top: 10px;
}

/* ---------- Order ---------- */
.order { padding: 110px 0; background: var(--bg); }

.pricelist {
  margin: 28px 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row strong { display: block; font-family: var(--display-cond); font-size: 1.05rem; letter-spacing: 0.02em; }
.price-row span { display: block; color: var(--muted); font-size: 0.88rem; margin-top: 2px; }
.row-price {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--red);
  white-space: nowrap;
}
.row-price span {
  display: inline;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: 4px;
}

.muted { color: var(--muted); font-size: 0.92rem; }

.split-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.split-card h3 { font-size: 1.6rem; margin-bottom: 8px; }
.split-card > p { color: var(--ink-soft); margin-bottom: 22px; }

.order-form { display: grid; gap: 14px; }

/* Quantity selector */
.qty-set {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 16px 14px;
  background: var(--bg);
}
.qty-set legend {
  font-family: var(--display-cond);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 6px;
}
.qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.qty-row:last-child { border-bottom: 0; padding-bottom: 4px; }
.qty-info strong {
  display: block;
  font-family: var(--display-cond);
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.qty-info span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 2px;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.qty-btn {
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  color: var(--red);
  font-weight: 600;
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}
.qty-btn:hover { background: var(--red); color: var(--cream); }
.qty-input {
  width: 48px;
  height: 36px;
  text-align: center;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-family: var(--display-cond);
  font-size: 1.05rem;
  font-weight: 600;
  background: var(--cream);
  color: var(--ink);
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-input:focus { outline: 0; }

.qty-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 16px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  margin-top: 4px;
}
.qty-total span {
  font-family: var(--display-cond);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold);
}
.qty-total strong span {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-transform: none;
}
.qty-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin-top: -4px;
  margin-bottom: 4px;
}
.btn-primary:disabled {
  background: #c9b9a5;
  color: var(--cream);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.btn-primary:disabled:hover {
  background: #c9b9a5;
  transform: none;
  box-shadow: none;
}
.order-form label { display: grid; gap: 6px; }
.order-form span {
  font-family: var(--display-cond);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.order-form input,
.order-form textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.order-form input:focus,
.order-form textarea:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(177, 40, 31, 0.15);
}
.order-form textarea { resize: vertical; min-height: 96px; }
.form-or {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 6px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 248, 235, 0.75);
  padding: 60px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}
.footer .brand-mark { color: var(--cream); font-family: var(--serif); font-style: italic; font-size: 1.4rem; }
.footer .brand-sub { color: var(--gold); display: block; margin-top: 4px; font-family: var(--display-cond); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.72rem; }
.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 248, 235, 0.75);
  font-family: var(--display-cond);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 248, 235, 0.45);
  border-top: 1px solid rgba(255, 248, 235, 0.1);
  padding-top: 24px;
  margin-top: 12px;
}
.footer-aquasoft {
  color: rgba(255, 248, 235, 0.7);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 248, 235, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-aquasoft:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split-img { aspect-ratio: 4 / 3; }
  .product-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .product.featured { transform: none; }
  .product.featured:hover { transform: translateY(-4px); }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .split-card { position: static; }
}

@media (max-width: 720px) {
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: var(--ink);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links a { font-size: 1rem; }
  .nav.is-open .nav-links { transform: translateX(0); }
  .nav-toggle { display: flex; align-items: center; }
  .nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-content { padding: 120px 24px 100px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .heat-scale { width: 100%; justify-content: space-between; }

  .story, .products, .ingredients, .order { padding: 80px 0; }

  .price-row { flex-direction: column; align-items: flex-start; gap: 6px; }

  .ing-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
