/* =========================================================================
   Pantry — pantry.cool
   "Warm recipe-card editorial." Cream paper, Fraunces display, stitched
   dashed-border motif lifted from the extension icon's book-spine binding.
   Tomato red (#fa3d3c) is the action color, straight from the product.
   ========================================================================= */

/* ----------------------------------------------------------------- Tokens */
:root {
  /* Palette — a pantry/food kitchen */
  --paper: #fbf3e6;        /* warm cream page */
  --paper-deep: #f3e6cf;   /* deeper cream for alternating bands */
  --card: #fffcf6;         /* warm white card surface */
  --ink: #2a1c14;          /* roasted brown-black text */
  --ink-soft: #75614c;     /* muted brown, secondary text */
  --line: #e6d5b8;         /* warm hairline */
  --line-ink: #c9b48f;     /* stronger dashed-stitch line */

  --tomato: #fa3d3c;       /* bright brand red — decorative accents/icons only */
  --tomato-deep: #cf1c03;  /* primary action: #fff text = 5.5:1 (AA) */
  --tomato-press: #a81701; /* action hover/active: #fff text = 7.5:1 */
  --terra: #db6a4b;        /* terracotta — large/decorative only */
  --terra-deep: #a8401f;   /* terracotta text — AA on both cream surfaces (5.0:1) */
  --mustard: #f0a92c;      /* turmeric / icon ribbon accent (on dark) */
  --herb: #5e7b4f;         /* sage / fresh-produce accent */
  --herb-deep: #445c37;
  --sky: #cfe9f2;          /* light book-page blue, soft accent */

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing scale (rem) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Radii — rounded & friendly */
  --r-sm: 8px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  /* Soft warm-tinted shadows (Lunch Money / Bannerbear soft, not hard offset) */
  --shadow-sm: 0 3px 10px -4px rgba(74, 44, 20, 0.18);
  --shadow-md: 0 14px 34px -16px rgba(74, 44, 20, 0.28);
  --shadow-lg: 0 34px 70px -28px rgba(74, 44, 20, 0.36);

  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------- Reset-ish */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

body {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Paper grain — pure CSS atmosphere, no asset */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

::selection { background: var(--mustard); color: var(--ink); }

a { color: var(--tomato-press); text-underline-offset: 3px; }

/* ------------------------------------------------------------ Typography */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;            /* semibold reads far cleaner than black */
  line-height: 1.1;
  letter-spacing: -0.005em;    /* relaxed tracking for legibility */
  margin: 0 0 var(--s-5);
  font-variation-settings: "opsz" 120;
}

/* Type scale on Tailwind rem steps, with a wide jump between levels:
   h1 ≈ 5xl→8xl (3→6rem) · h2 ≈ 3xl→6xl (1.875→3.75rem) · h3 ≈ xl→2xl */
h1 { font-size: clamp(2.75rem, 1rem + 7vw, 6rem); font-weight: 700; line-height: 1.04; }
h2 { font-size: clamp(1.875rem, 0.9rem + 3.6vw, 3.75rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + 0.7vw, 1.5rem); font-weight: 700; }

p { margin: 0 0 var(--s-4); }

.lead {
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  color: var(--ink-soft);
  line-height: 1.55;
}

.eyebrow {
  font-family: var(--body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-deep);
  margin: 0 0 var(--s-5);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.serif-ital { font-family: var(--display); font-style: italic; font-weight: 400; }

/* ------------------------------------------------------------ Layout bits */
.wrap { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }

section { position: relative; z-index: 1; padding-block: clamp(4.5rem, 8vw, 9.5rem); }

.band-cream { background: var(--paper-deep); }
.band-ink { background: var(--ink); color: var(--paper); }
.band-ink .eyebrow { color: var(--mustard); }
.band-ink h2 { color: var(--paper); }

/* Stitched recipe-card — the recurring motif (dashed binding from the icon) */
.stitched {
  background: var(--card);
  border: 1.5px dashed var(--line-ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

/* ---------------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--tomato-deep);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 0;
  border-radius: var(--r-pill);
  padding: 0.9em 1.7em;
  cursor: pointer;
  box-shadow: 0 12px 24px -10px color-mix(in srgb, var(--tomato-deep) 75%, #000);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              background-color 0.2s var(--ease);
}
.btn:hover {
  background: var(--tomato-press);
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -10px color-mix(in srgb, var(--tomato-press) 72%, #000);
}
.btn:active { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--mustard); outline-offset: 3px; }

.btn--ghost {
  --btn-bg: var(--card);
  --btn-fg: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn--lg { font-size: 1.05rem; padding: 1em 1.9em; }

.btn svg { width: 1.15em; height: 1.15em; }

/* Inline text link with arrow */
.link-arrow {
  font-weight: 700;
  color: var(--tomato-press);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.link-arrow:hover { text-decoration: underline; }
.link-arrow span { transition: transform 0.2s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }

/* ----------------------------------------------------------------- Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: var(--s-3);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand img { width: 34px; height: 34px; }
.nav { display: flex; align-items: center; gap: var(--s-5); }
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
}
.nav a:not(.btn):hover { color: var(--tomato-deep); }
.nav-links { display: flex; gap: var(--s-5); align-items: center; }

.nav-toggle { display: none; }

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1.5px solid var(--line);
    padding: var(--s-4) var(--s-5) var(--s-6);
    transform: translateY(-120%);
    transition: transform 0.3s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding-block: var(--s-3); border-bottom: 1px dashed var(--line); }
  .nav-links .btn { margin-top: var(--s-4); }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span {
    width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ------------------------------------------------------------------- Hero */
.hero { padding-top: clamp(var(--s-7), 5vw, var(--s-9)); overflow: visible; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(var(--s-6), 4vw, var(--s-9));
  align-items: center;
}
.hero h1 { margin-bottom: var(--s-5); }
.hero h1 .strike {
  position: relative;
  color: var(--ink-soft);
  white-space: nowrap;
}
.hero h1 .strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 52%;
  height: 0.09em;
  background: var(--tomato);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
  animation: strike 0.7s var(--ease) 0.9s forwards;
}
.hero h1 .pop { color: var(--tomato-deep); }
.hero .lead { max-width: 30ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-4); margin-top: var(--s-7); align-items: center; }
.hero-trust {
  margin-top: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-5);
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.4em; }
.hero-trust span::before { content: "✓"; color: var(--herb); font-weight: 900; }

/* Hero visual: a mini browser that "skips the story" to a recipe card */
.demo {
  position: relative;
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(1.2deg);
}
.demo-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  background: var(--paper-deep);
  border-bottom: 1.5px solid var(--line);
}
.demo-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-ink); }
.demo-bar i:nth-child(1) { background: var(--tomato); }
.demo-bar i:nth-child(2) { background: var(--mustard); }
.demo-bar i:nth-child(3) { background: var(--herb); }
.demo-bar .url {
  margin-left: 0.4rem;
  font-size: 0.72rem;
  color: var(--ink-soft);
  background: var(--card);
  border-radius: var(--r-pill);
  padding: 0.2rem 0.7rem;
  font-weight: 600;
}
.demo-body { position: relative; padding: var(--s-5); min-height: 340px; }

/* The "story" that gets skipped */
.story { transition: opacity 0.6s var(--ease); }
.story p {
  height: 0.75rem;
  background: var(--line);
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.story p:nth-child(1) { width: 90%; }
.story p:nth-child(2) { width: 96%; }
.story p:nth-child(3) { width: 78%; }
.story p:nth-child(4) { width: 88%; }
.story p:nth-child(5) { width: 60%; }
.story-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--line-ink);
  margin-bottom: var(--s-3);
}
.demo.skipped .story { opacity: 0.28; }

/* Skip pill that drops in */
.skip-pill {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.skip-pill::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--ink);
}
.demo.skipped .skip-pill { animation: pillIn 0.5s var(--ease) 1.1s forwards; }

/* The recipe card that rises into view */
.recipe-card {
  margin-top: var(--s-5);
  background: var(--paper);
  border: 1.5px dashed var(--line-ink);
  border-radius: var(--r-md);
  padding: var(--s-5);
  transform: translateY(24px);
  opacity: 0;
}
.demo.skipped .recipe-card { animation: cardUp 0.6s var(--ease) 1.3s forwards; }
.recipe-card h4 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 0 0 var(--s-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}
.recipe-card .heart {
  color: var(--tomato);
  background: color-mix(in srgb, var(--tomato) 14%, transparent);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}
.recipe-card .heart svg { width: 18px; height: 18px; }
.recipe-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.recipe-card li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.92rem; color: var(--ink-soft); font-weight: 600;
}
.recipe-card li::before {
  content: ""; width: 8px; height: 8px; border-radius: 2px;
  background: var(--herb); flex: none;
}
.recipe-card li .hint { color: var(--ink); border-bottom: 2px dotted var(--mustard); }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .demo { transform: rotate(0.8deg); max-width: 460px; margin-inline: auto; }
}

/* ------------------------------------------------------------- Pull quote */
.quote-wrap { max-width: 880px; margin-inline: auto; text-align: center; }
.bigquote {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.7rem, 1.1rem + 2.6vw, 3.25rem);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 var(--s-5);
  position: relative;
}
.bigquote::before {
  content: "“";
  display: block;
  font-size: 3em;
  line-height: 0.5;
  color: var(--terra);
  margin-bottom: 0.1em;
}
.quote-cite { font-weight: 700; color: var(--ink-soft); font-size: 0.95rem; }
.quote-note {
  margin-top: var(--s-6);
  max-width: 56ch;
  margin-inline: auto;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------- Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: var(--s-6);
  margin-top: var(--s-8);
}
.feature {
  padding: var(--s-7) var(--s-6);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.feature:nth-child(even) { transform: rotate(-0.5deg); }
.feature:nth-child(odd) { transform: rotate(0.5deg); }
.feature:hover { transform: translateY(-6px) rotate(0); box-shadow: var(--shadow-lg); }
.feature .ico {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: var(--s-4);
  border: 1.5px solid var(--ink);
}
.feature:nth-child(6n+1) .ico { background: color-mix(in srgb, var(--tomato) 18%, var(--card)); }
.feature:nth-child(6n+2) .ico { background: color-mix(in srgb, var(--mustard) 26%, var(--card)); }
.feature:nth-child(6n+3) .ico { background: color-mix(in srgb, var(--herb) 22%, var(--card)); }
.feature:nth-child(6n+4) .ico { background: color-mix(in srgb, var(--terra) 22%, var(--card)); }
.feature:nth-child(6n+5) .ico { background: var(--sky); }
.feature:nth-child(6n+6) .ico { background: color-mix(in srgb, var(--mustard) 26%, var(--card)); }
.feature h3 { margin-bottom: var(--s-2); }
.feature p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* ----------------------------------------------------- Fair to creators */
.creators .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(var(--s-6), 5vw, var(--s-9)); align-items: center; }
.creators .panel { padding: clamp(var(--s-6), 4vw, var(--s-8)); }
.creators ul { list-style: none; margin: var(--s-5) 0 0; padding: 0; display: grid; gap: var(--s-4); }
.creators li { display: flex; gap: var(--s-4); align-items: flex-start; }
.creators li .mark {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 900;
  background: var(--herb); color: #fff; margin-top: 2px;
}
.creators li.no .mark { background: var(--ink); }
.creators li b { color: var(--ink); }
.creators li span { color: var(--ink-soft); }
@media (max-width: 860px) { .creators .wrap { grid-template-columns: 1fr; } }

/* --------------------------------------------------------- How it works */
.steps { counter-reset: step; display: grid; gap: var(--s-6); margin-top: var(--s-8); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step { position: relative; padding: var(--s-6) var(--s-5) var(--s-5); }
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.5rem;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--tomato-deep);
  color: #fff;
  border: 3px solid var(--card);
  border-radius: 50%;
  position: absolute;
  top: -26px; left: var(--s-5);
  box-shadow: 0 8px 16px -6px color-mix(in srgb, var(--tomato-deep) 75%, #000);
}
.step h3 { font-size: 1.15rem; margin: var(--s-4) 0 var(--s-2); }
.step p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* ------------------------------------------------------------- Works on */
.works .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--s-6); margin-top: var(--s-8); }
.works .col h3 { font-size: 1.05rem; color: var(--mustard); margin-bottom: var(--s-3); }
.band-ink .works .col h3 { color: var(--mustard); }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: var(--r-pill);
  border: 1px solid color-mix(in srgb, var(--paper) 30%, transparent);
  background: color-mix(in srgb, var(--paper) 8%, transparent);
  color: var(--paper);
}
.works-foot { margin-top: var(--s-8); text-align: center; color: color-mix(in srgb, var(--paper) 88%, transparent); }
.works-foot a { color: var(--mustard); }

/* -------------------------------------------------------- Privacy strip */
.privacy-strip .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--s-6), 5vw, var(--s-8)); align-items: center; }
.privacy-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-4); }
.privacy-list li { display: flex; gap: var(--s-3); align-items: flex-start; font-weight: 600; }
.privacy-list li::before { content: "🔒"; flex: none; }
@media (max-width: 760px) { .privacy-strip .wrap { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- Final CTA */
.final { text-align: center; }
.final .panel { padding: clamp(var(--s-7), 6vw, var(--s-9)); max-width: 760px; margin-inline: auto; }
.final h2 { margin-bottom: var(--s-3); }
.final .lead { margin-inline: auto; max-width: 46ch; }
.final .hero-cta { justify-content: center; }

/* --------------------------------------------------------------- Footer */
.site-footer { background: var(--ink); color: color-mix(in srgb, var(--paper) 80%, transparent); padding-block: var(--s-8) var(--s-6); position: relative; z-index: 1; }
.site-footer .wrap { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--s-6); }
.site-footer .brand { color: var(--paper); margin-bottom: var(--s-3); }
.site-footer p { color: color-mix(in srgb, var(--paper) 80%, transparent); max-width: 36ch; }
.site-footer h4 { font-family: var(--body); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mustard); margin: 0 0 var(--s-4); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.site-footer a { color: color-mix(in srgb, var(--paper) 82%, transparent); text-decoration: none; }
.site-footer a:hover { color: var(--paper); text-decoration: underline; }
.footer-base {
  border-top: 1px solid color-mix(in srgb, var(--paper) 18%, transparent);
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5);
  justify-content: space-between;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--paper) 72%, transparent);
}
@media (max-width: 760px) { .site-footer .wrap { grid-template-columns: 1fr 1fr; } .site-footer .brand-col { grid-column: 1 / -1; } }

/* ------------------------------------------------------ Content pages */
.page-hero { padding-top: clamp(var(--s-7), 5vw, var(--s-9)); padding-bottom: var(--s-6); }
.page-hero .lead { max-width: 60ch; }
.page-hero .updated { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; margin-top: var(--s-3); }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); margin-top: var(--s-7); }
.prose h3 { margin-top: var(--s-6); }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: var(--s-2); }
.prose table { width: 100%; border-collapse: collapse; margin: var(--s-5) 0; font-size: 0.95rem; }
.prose th, .prose td { text-align: left; padding: 0.7rem 0.9rem; border-bottom: 1px dashed var(--line-ink); vertical-align: top; }
.prose th { font-family: var(--body); font-weight: 800; color: var(--ink); background: var(--paper-deep); }
.prose code { background: var(--paper-deep); padding: 0.1em 0.45em; border-radius: var(--r-sm); font-size: 0.9em; }
.callout { padding: var(--s-5); margin: var(--s-6) 0; border-left: 4px solid var(--herb); background: var(--card); border-radius: 0 var(--r-md) var(--r-md) 0; }
.callout p:last-child { margin-bottom: 0; }

/* Support cards */
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--s-5); margin-top: var(--s-6); }
.support-card { padding: var(--s-6) var(--s-5); display: flex; flex-direction: column; }
.support-card .ico { font-size: 1.8rem; margin-bottom: var(--s-3); }
.support-card h3 { margin-bottom: var(--s-2); }
.support-card p { color: var(--ink-soft); flex: 1; }
.support-card .btn { align-self: flex-start; margin-top: var(--s-4); }

/* --------------------------------------------------------- Load reveal */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.in { animation: reveal 0.7s var(--ease) forwards; }
.hero .reveal { animation-delay: 0.05s; }
.hero .reveal:nth-child(2) { animation-delay: 0.12s; }

@keyframes reveal { to { opacity: 1; transform: none; } }
@keyframes strike { to { transform: scaleX(1); } }
@keyframes pillIn { to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
@keyframes cardUp { to { opacity: 1; transform: none; } }

/* Visible by default if JS/animation disabled */
.no-js .reveal { opacity: 1; transform: none; }
.no-js .story { opacity: 0.28; }
.no-js .skip-pill { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.no-js .recipe-card { opacity: 1; transform: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper); padding: 0.8rem 1.2rem;
  border-radius: 0 0 var(--r-md) 0; font-weight: 700;
}
.skip-link:focus { left: 0; }
