/* ═══════════════════════════════════════════════
   Pourledger Web — Design System
   ═══════════════════════════════════════════════ */

:root {
  --bg:          #1A1614;
  --surface:     #2B2420;
  --surface-el:  #342E29;
  --gold:        #B8924F;
  --gold-dim:    rgba(184, 146, 79, 0.5);
  --gold-glow:   rgba(184, 146, 79, 0.08);
  --oxblood:     #6B2727;
  --parchment:   #E8DCC4;
  --muted:       #8A7B6E;
  --divider:     rgba(184, 146, 79, 0.14);
  --border:      rgba(184, 146, 79, 0.22);
  --danger:      #8B3535;

  --serif:  Georgia, 'Times New Roman', serif;
  --sans:   -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
  --mono:   'SF Mono', Monaco, 'Cascadia Code', Consolas, monospace;

  --radius:    8px;
  --radius-sm: 4px;
  --max-w:     1080px;
  --t:         0.18s ease;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--parchment);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--parchment);
  line-height: 1.2;
  font-weight: bold;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { color: var(--muted); }
.lead { font-size: 1.1rem; color: var(--parchment); opacity: 0.82; line-height: 1.7; }
.gold { color: var(--gold); }
.mono { font-family: var(--mono); }

/* ── Layout ─────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--sm { padding: 48px 0; }

/* ── Ornamental divider ─────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-dim);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin: 4px 0;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--divider);
}

/* ── Nav ─────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(26, 22, 20, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--parchment);
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__logo em { color: var(--gold); font-style: normal; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  color: var(--muted);
  font-size: 0.875rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
}
.nav__links a:hover { color: var(--parchment); background: var(--gold-glow); text-decoration: none; }
.nav__links a.current { color: var(--gold); }
.nav__app {
  padding: 6px 14px;
  background: var(--gold);
  color: var(--bg) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: background var(--t);
}
.nav__app:hover { background: #c9a25e !important; text-decoration: none; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 0.925rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--sans);
}
.btn--gold  { background: var(--gold); color: var(--bg); }
.btn--gold:hover { background: #c9a25e; color: var(--bg); text-decoration: none; }
.btn--outline { background: transparent; color: var(--gold); border: 1px solid var(--border); }
.btn--outline:hover { border-color: var(--gold); background: var(--gold-glow); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--muted); }
.btn--ghost:hover { color: var(--parchment); background: rgba(232,220,196,0.05); text-decoration: none; }
.btn--sm  { padding: 7px 14px; font-size: 0.8rem; border-radius: var(--radius-sm); }
.btn--lg  { padding: 14px 32px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: default; }

/* ── Cards ──────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--t);
}
.card:hover { border-color: var(--gold-dim); }

/* ── Pills ──────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pill--stir   { background: rgba(90,110,180,0.13); color: #8899cc; border: 1px solid rgba(90,110,180,0.25); }
.pill--shake  { background: rgba(70,155,110,0.13); color: #66aa88; border: 1px solid rgba(70,155,110,0.25); }
.pill--build  { background: rgba(184,146,79,0.13); color: var(--gold); border: 1px solid var(--border); }
.pill--muddle { background: rgba(160,100,70,0.13); color: #cc8855; border: 1px solid rgba(160,100,70,0.25); }
.pill--throw  { background: rgba(130,80,160,0.13); color: #aa77cc; border: 1px solid rgba(130,80,160,0.25); }
.pill--blend  { background: rgba(60,140,180,0.13); color: #66aacc; border: 1px solid rgba(60,140,180,0.25); }

/* ── Form ───────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--surface-el);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--parchment);
  font-family: var(--sans);
  font-size: 0.925rem;
  padding: 9px 13px;
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,79,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted); opacity: 0.55; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A7B6E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
  cursor: pointer;
}
.form-select option { background: var(--surface); }
.form-textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
.form-hint { font-size: 0.78rem; color: var(--muted); opacity: 0.7; }

/* ── Section decorations ────────────────────── */
.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-body { color: var(--muted); line-height: 1.75; }

/* ── Footer ─────────────────────────────────── */
.footer {
  border-top: 1px solid var(--divider);
  padding: 36px 0;
  margin-top: 60px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__logo { font-family: var(--serif); font-size: 1rem; color: var(--muted); }
.footer__logo em { color: var(--gold-dim); font-style: normal; }
.footer__links { display: flex; gap: 20px; }
.footer__links a { color: var(--muted); font-size: 0.82rem; }
.footer__links a:hover { color: var(--parchment); text-decoration: none; }
.footer__copy { color: var(--muted); font-size: 0.78rem; }

/* ══════════════════════════════════════════════
   INDEX PAGE
   ══════════════════════════════════════════════ */

/* Hero */
.hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,146,79,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__title { margin-bottom: 22px; }
.hero__body {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__note {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.75;
}
.hero__note span { color: var(--gold-dim); margin: 0 6px; }

/* App card mockup */
.app-mockup {
  width: 280px;
  flex-shrink: 0;
}
.mockup-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(184,146,79,0.08);
}
.mockup-titlebar {
  background: var(--surface-el);
  padding: 10px 16px;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mockup-titlebar-text {
  font-family: var(--serif);
  font-size: 0.82rem;
  color: var(--parchment);
}
.mockup-titlebar-badge {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--gold);
}
.mockup-body { padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.mockup-entry {
  background: var(--surface-el);
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.mockup-entry-name {
  font-family: var(--serif);
  font-size: 0.88rem;
  color: var(--parchment);
  margin-bottom: 2px;
}
.mockup-entry-meta { font-size: 0.7rem; color: var(--muted); margin-bottom: 8px; }
.mockup-entry-notes { font-size: 0.72rem; color: var(--muted); line-height: 1.5; margin-bottom: 8px; }
.mockup-entry-rating {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--gold);
  text-align: right;
}
.mockup-divider { height: 1px; background: var(--divider); }

/* Features */
.features { padding: 0 0 80px; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.feature {
  background: var(--bg);
  padding: 28px;
  border-right: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  transition: background var(--t);
}
.feature:hover { background: rgba(43,36,32,0.6); }
.feature:nth-child(3n) { border-right: none; }
.feature:nth-last-child(-n+3) { border-bottom: none; }
.feature__icon { font-size: 1.4rem; margin-bottom: 14px; display: block; }
.feature__title { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 6px; }
.feature__body { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* Classics teaser */
.classics { padding: 80px 0; }
.classics__header { margin-bottom: 40px; }
.classics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.classics__cta { text-align: center; }

/* Creator teaser */
.creator-teaser {
  padding: 72px 0;
  border-top: 1px solid var(--divider);
}
.creator-teaser__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.creator-teaser__text h2 { margin-bottom: 12px; }
.creator-teaser__text p { max-width: 480px; }

/* Privacy band */
.privacy-band {
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 36px 0;
}
.privacy-band__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.privacy-stat { text-align: center; }
.privacy-stat__value {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.privacy-stat__label { font-size: 0.82rem; color: var(--muted); }

/* ══════════════════════════════════════════════
   RECIPES PAGE
   ══════════════════════════════════════════════ */

.recipes-hero { padding: 64px 0 40px; }
.recipes-hero h1 { margin-bottom: 16px; }
.recipes-hero__body { max-width: 600px; color: var(--muted); line-height: 1.75; }

.filters-bar {
  padding: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t);
}
.filter-btn:hover { color: var(--parchment); border-color: var(--gold-dim); }
.filter-btn.active {
  background: rgba(184,146,79,0.13);
  color: var(--gold);
  border-color: var(--gold);
}

.download-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.download-bar__text { font-size: 0.875rem; color: var(--muted); }
.download-bar__text strong { color: var(--parchment); }

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}

/* Recipe cards */
.recipe-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t);
  display: flex;
  flex-direction: column;
}
.recipe-card:hover { border-color: var(--gold-dim); }

.recipe-card__header {
  padding: 18px 18px 14px;
  cursor: pointer;
  user-select: none;
}
.recipe-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.recipe-card__name {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--parchment);
  line-height: 1.3;
  flex: 1;
}
.recipe-card__chevron {
  color: var(--muted);
  font-size: 0.7rem;
  transition: transform var(--t), color var(--t);
  margin-top: 4px;
  flex-shrink: 0;
}
.recipe-card.expanded .recipe-card__chevron {
  transform: rotate(180deg);
  color: var(--gold);
}
.recipe-card__pills { display: flex; gap: 6px; flex-wrap: wrap; }
.recipe-card__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.recipe-card__meta-item {
  font-size: 0.73rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.recipe-card__ingredients {
  padding: 0 18px 14px;
  border-top: 1px solid var(--divider);
  margin-top: 4px;
  padding-top: 12px;
}
.ing-list { display: flex; flex-direction: column; gap: 4px; }
.ing-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.84rem;
}
.ing-amount {
  font-family: var(--mono);
  color: var(--gold);
  font-size: 0.78rem;
  min-width: 52px;
  flex-shrink: 0;
}
.ing-unit {
  color: var(--muted);
  font-size: 0.78rem;
  min-width: 40px;
  flex-shrink: 0;
}
.ing-name { color: var(--parchment); line-height: 1.4; }

.recipe-card__expanded {
  display: none;
  border-top: 1px solid var(--divider);
  padding: 18px;
  flex-direction: column;
  gap: 16px;
}
.recipe-card.expanded .recipe-card__expanded { display: flex; }

.detail-section {}
.detail-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.detail-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  white-space: pre-line;
}
.detail-text.italic { font-style: italic; font-size: 0.83rem; opacity: 0.85; }
.detail-garnish { font-size: 0.83rem; color: var(--muted); font-style: italic; }

.recipe-card__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--divider);
}

/* ══════════════════════════════════════════════
   CREATOR PAGE
   ══════════════════════════════════════════════ */

.creator-hero { padding: 64px 0 40px; }
.creator-hero h1 { margin-bottom: 16px; }
.creator-hero__body { max-width: 560px; color: var(--muted); line-height: 1.75; }

.creator-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
  padding-bottom: 80px;
}

.creator-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-section-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--parchment);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 4px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

/* Ingredients */
.ingredient-rows { display: flex; flex-direction: column; gap: 8px; }
.ingredient-row {
  display: grid;
  grid-template-columns: 72px 90px 1fr 28px;
  gap: 8px;
  align-items: center;
}
.ingredient-row .form-input,
.ingredient-row .form-select { font-size: 0.875rem; }
.remove-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid rgba(107,39,39,0.35);
  color: #a05555;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t);
  flex-shrink: 0;
  line-height: 1;
}
.remove-btn:hover { background: rgba(107,39,39,0.15); border-color: var(--oxblood); color: #cc7777; }
.add-row-btn {
  align-self: flex-start;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 6px 0;
  transition: color var(--t);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.add-row-btn:hover { color: var(--gold); }

/* Preview panel */
.preview-panel {
  position: sticky;
  top: 76px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.preview-panel__header {
  background: var(--surface-el);
  padding: 12px 18px;
  border-bottom: 1px solid var(--divider);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.preview-panel__body { padding: 18px; }
.preview-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--parchment);
  margin-bottom: 6px;
  min-height: 1.44em;
  line-height: 1.3;
}
.preview-name.empty { color: var(--muted); font-style: italic; }
.preview-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.preview-ings { margin-bottom: 14px; }
.preview-section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.preview-ing-list { display: flex; flex-direction: column; gap: 3px; }
.preview-ing-row { display: flex; gap: 8px; font-size: 0.82rem; }
.preview-ing-amount { font-family: var(--mono); color: var(--gold); font-size: 0.76rem; min-width: 48px; }
.preview-ing-unit { color: var(--muted); min-width: 36px; font-size: 0.76rem; }
.preview-ing-name { color: var(--parchment); }
.preview-instructions { font-size: 0.85rem; color: var(--muted); line-height: 1.6; white-space: pre-line; }
.preview-garnish { font-size: 0.8rem; color: var(--muted); font-style: italic; margin-top: 10px; }
.preview-panel__actions {
  padding: 14px 18px;
  border-top: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Success flash */
.flash {
  font-size: 0.8rem;
  color: #66aa77;
  display: none;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.flash.visible { display: flex; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 960px) {
  .hero__layout { grid-template-columns: 1fr; }
  .app-mockup { display: none; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(3n) { border-right: 1px solid var(--divider); }
  .feature:nth-child(2n) { border-right: none; }
  .classics__grid { grid-template-columns: repeat(2, 1fr); }
  .creator-layout { grid-template-columns: 1fr; }
  .preview-panel { position: static; }
}
@media (max-width: 680px) {
  .nav__links { display: none; }
  .features__grid { grid-template-columns: 1fr; border: none; gap: 1px; }
  .feature { border-right: none !important; border-bottom: 1px solid var(--divider) !important; border: 1px solid var(--divider); border-radius: 0; }
  .classics__grid { grid-template-columns: 1fr; }
  .creator-teaser__inner { flex-direction: column; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .ingredient-row { grid-template-columns: 64px 80px 1fr 28px; }
  .hero { padding: 60px 0 48px; }
  h1 { font-size: 2.2rem; }
  .recipes-grid { grid-template-columns: 1fr; }
  .download-bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .privacy-band__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { flex-direction: column; }
  .footer__links { gap: 14px; flex-wrap: wrap; }
}
