/* ==========================================================================
   Braisery — Artisan Hearth tokens (mirrors BraiseryUI/Tokens)
   ========================================================================== */

:root {
  --braisery-primary:        #8A9A5B;
  --braisery-secondary:      #747A5E;
  --braisery-accent:         #B384B1;
  --braisery-background:     #FDFCF8;
  --braisery-surface:        #FFFFFF;
  --braisery-destructive:    #C44242;
  --braisery-success:        #5A8A4B;
  --braisery-text-primary:   #2B2824;
  --braisery-text-secondary: #6B6454;
  --braisery-text-muted:     #8A826E;
  --braisery-border:         rgba(138, 130, 110, 0.25);
  /* Cook-mode dark pill fill — matches BraiseryUI Color.braiseryDarkPillFill */
  --braisery-dark-pill:      #2A2925;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 72px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 2px rgba(43, 40, 36, 0.06), 0 1px 3px rgba(43, 40, 36, 0.08);
  --shadow-md: 0 4px 8px rgba(43, 40, 36, 0.08), 0 2px 4px rgba(43, 40, 36, 0.06);
  --shadow-lg: 0 10px 24px rgba(43, 40, 36, 0.12), 0 4px 8px rgba(43, 40, 36, 0.06);

  --font-serif: "Noto Serif", Georgia, "Times New Roman", serif;
  --font-sans:  "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --braisery-primary:        #A8B779;
    --braisery-secondary:      #9CA286;
    --braisery-accent:         #C9A0C7;
    --braisery-background:     #1A1815;
    --braisery-surface:        #252320;
    --braisery-destructive:    #D86B6B;
    --braisery-success:        #7DAB6F;
    --braisery-text-primary:   #F0EDE8;
    --braisery-text-secondary: #A09989;
    --braisery-text-muted:     #7A7466;
    --braisery-border:         rgba(160, 153, 137, 0.22);
    --braisery-dark-pill:      #15140F;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.55);
  }
}

/* ==========================================================================
   Reset / base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--braisery-background);
  color: var(--braisery-text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--braisery-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--braisery-text-primary);
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-md);
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 4.5vw + 1rem, 3.4rem); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 2.2vw + 1rem, 2.2rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 var(--space-md); color: var(--braisery-text-secondary); }

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

.section-title { text-align: center; margin-bottom: var(--space-2xl); }
.section-title.left { text-align: left; margin-bottom: var(--space-md); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--braisery-primary);
  color: #FDFCF8;
  border-color: var(--braisery-primary);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  filter: brightness(1.04);
}

.btn-outlined {
  background: transparent;
  color: var(--braisery-primary);
  border-color: var(--braisery-primary);
}
.btn-outlined:hover {
  text-decoration: none;
  background: color-mix(in srgb, var(--braisery-primary) 10%, transparent);
}

/* ==========================================================================
   Eyebrow
   ========================================================================== */

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--braisery-primary);
  background: color-mix(in srgb, var(--braisery-primary) 12%, transparent);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
}
.eyebrow--center { display: block; width: max-content; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Nav
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--braisery-background) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--braisery-border);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--braisery-text-primary);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
}
.brand:hover { text-decoration: none; }
.brand-icon { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }

.nav-links { display: flex; gap: var(--space-lg); }
.nav-links a {
  color: var(--braisery-text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--braisery-primary); text-decoration: none; }

@media (max-width: 600px) { .nav-links { display: none; } }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, color-mix(in srgb, var(--braisery-accent) 22%, transparent), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, color-mix(in srgb, var(--braisery-primary) 22%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.lede {
  font-size: 1.15rem;
  color: var(--braisery-text-secondary);
  max-width: 56ch;
  margin-bottom: var(--space-xl);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Hero mockup card: matches IntroMockup choreography */
.hero-mock {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mock-card {
  background: var(--braisery-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  box-shadow: var(--shadow-lg);
  width: min(360px, 92%);
  transform: rotate(-2deg);
  transition: transform 400ms ease;
}
.mock-card:hover { transform: rotate(0); }

.mock-card--intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.hero-whisk {
  color: var(--braisery-primary);
  width: 64px;
  height: 110px;
  transform: scale(0.8);
  opacity: 0;
  animation: whiskPop 700ms cubic-bezier(0.34, 1.4, 0.64, 1) 200ms forwards;
}

.hero-mock-wordmark {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--braisery-text-primary);
  opacity: 0;
  animation: fadeIn 400ms ease 600ms forwards;
}

@keyframes whiskPop { to { transform: scale(1); opacity: 1; } }
@keyframes fadeIn   { to { opacity: 1; } }

/* ==========================================================================
   Showcase rows
   ========================================================================== */

.showcase {
  padding: var(--space-3xl) 0;
  background: color-mix(in srgb, var(--braisery-primary) 5%, var(--braisery-background));
}

.show-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl) 0;
}
.show-row + .show-row { border-top: 1px solid var(--braisery-border); }

.show-row--reverse .show-art { order: -1; }

@media (max-width: 860px) {
  .show-row { grid-template-columns: 1fr; gap: var(--space-xl); }
  .show-row--reverse .show-art { order: 0; }
}

.show-copy h3 {
  margin-top: 0;
  margin-bottom: var(--space-md);
  font-size: clamp(1.4rem, 1.5vw + 0.9rem, 1.9rem);
}

.show-copy p {
  font-size: 1.05rem;
  max-width: 50ch;
}

.show-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================
   Mockup wrapper — each showcase card stands on its own
   ========================================================================== */

.show-mock {
  width: min(360px, 100%);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* ==========================================================================
   1. Save mockup
   ========================================================================== */

.save-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
  background: var(--braisery-surface);
  border: 1px solid var(--braisery-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.save-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--braisery-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
}

.save-row--new {
  background: color-mix(in srgb, var(--braisery-primary) 8%, var(--braisery-surface));
  border: 1.5px dashed color-mix(in srgb, var(--braisery-primary) 50%, transparent);
  transform: translateY(16px);
}

.show-row.is-active[data-mock="save"] .save-row[data-row="0"] {
  opacity: 1; transform: translateY(0); transition-delay: 0ms;
}
.show-row.is-active[data-mock="save"] .save-row[data-row="1"] {
  opacity: 1; transform: translateY(0); transition-delay: 150ms;
}
.show-row.is-active[data-mock="save"] .save-row[data-row="2"] {
  opacity: 1; transform: translateY(0); transition-delay: 500ms;
}

.save-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--braisery-primary) 14%, transparent);
  color: var(--braisery-primary);
  flex: 0 0 auto;
}
.save-icon svg { width: 18px; height: 18px; }
.save-row--new .save-icon { background: color-mix(in srgb, var(--braisery-primary) 22%, transparent); }

.save-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}
.save-text strong {
  font-size: 0.95rem;
  color: var(--braisery-text-primary);
  font-weight: 600;
}
.save-text span {
  font-size: 0.82rem;
  color: var(--braisery-text-secondary);
}

.save-heart, .save-check {
  width: 22px; height: 22px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.save-heart { color: var(--braisery-accent); transform: scale(1); }
.save-heart svg { width: 18px; height: 18px; }
.save-check { color: var(--braisery-success); transform: scale(0); opacity: 0; }
.save-check svg { width: 22px; height: 22px; }

.show-row.is-active[data-mock="save"] .save-check {
  animation: popIn 400ms cubic-bezier(0.34, 1.56, 0.64, 1) 900ms forwards;
}
.show-row.is-active[data-mock="save"] .save-row[data-row="0"] .save-heart,
.show-row.is-active[data-mock="save"] .save-row[data-row="1"] .save-heart {
  animation: heartPulse 500ms ease 1100ms;
}

@keyframes popIn { to { transform: scale(1); opacity: 1; } }
@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.3); }
}

/* ==========================================================================
   2. Cook mockup
   ========================================================================== */

.cook-card {
  width: 100%;
  background: var(--braisery-dark-pill);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  opacity: 0;
  transition: opacity 300ms ease;
  box-shadow: var(--shadow-lg);
}
.show-row.is-active[data-mock="cook"] .cook-card { opacity: 1; }

.cook-step-label {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 400ms ease 200ms;
}
.cook-step-text {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.45;
  opacity: 0;
  transition: opacity 400ms ease 300ms;
}
.show-row.is-active[data-mock="cook"] .cook-step-label,
.show-row.is-active[data-mock="cook"] .cook-step-text { opacity: 1; }

.cook-timer-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.cook-timer-pulse {
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--braisery-primary);
  opacity: 0;
}
.show-row.is-active[data-mock="cook"] .cook-timer-pulse {
  animation: timerPulse 1.6s ease-in-out 1.1s infinite;
}

.cook-timer {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: var(--braisery-primary);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1) 600ms,
              opacity 500ms ease 600ms;
}
.show-row.is-active[data-mock="cook"] .cook-timer {
  transform: scale(1);
  opacity: 1;
}

.cook-timer-icon { width: 18px; height: 18px; }
.cook-timer-time {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  min-width: 3ch;
}
.cook-timer-status {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-left: 4px;
}

@keyframes timerPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.18); }
}

/* ==========================================================================
   3. Scale mockup
   ========================================================================== */

.scale-card {
  width: 100%;
  background: var(--braisery-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  opacity: 0;
  transition: opacity 300ms ease;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--braisery-border);
}
.show-row.is-active[data-mock="scale"] .scale-card { opacity: 1; }

.scale-pills {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
}

.scale-pill {
  font-size: 0.78rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding: 6px 14px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--braisery-text-muted) 12%, transparent);
  color: var(--braisery-text-secondary);
  transition: background 250ms ease, color 250ms ease;
}
.scale-pill.is-active {
  background: var(--braisery-primary);
  color: #fff;
}

.scale-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.scale-rows li {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  font-size: 1rem;
}
.scale-qty {
  color: var(--braisery-primary);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-width: 3.5em;
  display: inline-block;
  transform-origin: left center;
  transition: transform 180ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.scale-qty.is-pulsing { transform: scale(1.12); }
.scale-item { color: var(--braisery-text-primary); }

/* ==========================================================================
   4. Inline ingredients mockup
   ========================================================================== */

.inline-card {
  width: 100%;
  background: var(--braisery-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  opacity: 0;
  transition: opacity 300ms ease;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--braisery-border);
}
.show-row.is-active[data-mock="inline"] .inline-card { opacity: 1; }

.inline-toggle {
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--braisery-surface);
  color: var(--braisery-text-secondary);
  border: 1px solid color-mix(in srgb, var(--braisery-text-muted) 35%, transparent);
  transition: background 250ms ease, color 250ms ease, border-color 250ms ease;
  opacity: 0;
}
.show-row.is-active[data-mock="inline"] .inline-toggle {
  animation: fadeIn 300ms ease 200ms forwards;
}
.inline-toggle.is-on {
  background: var(--braisery-primary);
  color: #fff;
  border-color: var(--braisery-primary);
}

.inline-step-label {
  margin: 0;
  color: var(--braisery-text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.inline-step-text {
  margin: 0;
  color: var(--braisery-text-primary);
  font-size: 1rem;
  line-height: 1.6;
}

.inline-pill {
  display: inline-block;
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--braisery-primary) 12%, transparent);
  color: var(--braisery-primary);
  font-weight: 600;
  font-size: 0.92rem;
  transform: scale(0.5);
  opacity: 0;
  transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 200ms ease;
}
.inline-pill.is-on { transform: scale(1); opacity: 1; }

/* ==========================================================================
   5. Import mockup
   ========================================================================== */

.import-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: stretch;
  background: color-mix(in srgb, var(--braisery-text-muted) 6%, var(--braisery-surface));
  border: 1px solid var(--braisery-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.import-input {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--braisery-surface);
  border: 1px solid color-mix(in srgb, var(--braisery-text-muted) 30%, transparent);
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-family: var(--font-sans);
  color: var(--braisery-text-primary);
  opacity: 0;
  transition: opacity 300ms ease;
  overflow: hidden;
  min-width: 0;
}
.show-row.is-active[data-mock="import"] .import-input { opacity: 1; }

.import-link {
  width: 16px; height: 16px;
  color: var(--braisery-text-muted);
  flex: 0 0 auto;
}
.import-typed {
  color: var(--braisery-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
  min-width: 0;
  font-variant-numeric: tabular-nums;
}
.import-typed:empty::before {
  content: "Paste recipe URL...";
  color: var(--braisery-text-muted);
}
.import-cursor {
  color: var(--braisery-primary);
  margin-left: 1px;
  animation: blink 1.06s steps(1, end) infinite;
}
.import-cursor.is-hidden { animation: none; opacity: 0; }

@keyframes blink {
  0%, 50%      { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

.import-arrow {
  width: 24px; height: 24px;
  color: var(--braisery-primary);
  align-self: center;
  opacity: 0;
  transition: opacity 300ms ease;
}
.import-arrow.is-visible {
  opacity: 1;
  animation: arrowBounce 1s ease-in-out 600ms infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

.import-card {
  display: flex;
  background: var(--braisery-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
}
.import-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.import-card-photo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  background: color-mix(in srgb, var(--braisery-text-muted) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--braisery-text-muted);
}
.import-card-photo svg { width: 28px; height: 28px; }

.import-card-text {
  flex: 1 1 auto;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.import-card-text strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--braisery-text-primary);
}
.import-card-meta, .import-card-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
}
.import-card-meta { color: var(--braisery-text-muted); }
.import-card-meta svg { width: 12px; height: 12px; }
.import-card-status { color: var(--braisery-success); font-weight: 500; }
.import-card-status svg { width: 12px; height: 12px; }

/* ==========================================================================
   "And the rest" small feature strip
   ========================================================================== */

.more { padding: var(--space-3xl) 0; }

.more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.more-card {
  background: var(--braisery-surface);
  border: 1px solid var(--braisery-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.more-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.more-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--braisery-primary) 14%, transparent);
  color: var(--braisery-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.more-icon svg { width: 22px; height: 22px; }

.more-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}
.more-card p { margin: 0; font-size: 0.95rem; }

/* ==========================================================================
   Privacy
   ========================================================================== */

.privacy {
  padding: var(--space-3xl) 0;
  background: color-mix(in srgb, var(--braisery-accent) 6%, var(--braisery-background));
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}
@media (max-width: 800px) { .privacy-grid { grid-template-columns: 1fr; } }

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-md);
}
.privacy-list li {
  background: var(--braisery-surface);
  border: 1px solid var(--braisery-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  color: var(--braisery-text-secondary);
}
.privacy-list strong { color: var(--braisery-text-primary); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { padding: var(--space-3xl) 0; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-md);
}

.faq-list details {
  background: var(--braisery-surface);
  border: 1px solid var(--braisery-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.faq-list summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--braisery-text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--braisery-primary);
  margin-left: var(--space-md);
  transition: transform 160ms ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }

.faq-list details p {
  margin: var(--space-sm) 0 0;
  color: var(--braisery-text-secondary);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--braisery-border);
  background: var(--braisery-surface);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--braisery-text-primary);
}
.footer-brand img { border-radius: var(--radius-sm); }

.footer-meta {
  margin: 0;
  color: var(--braisery-text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  html { scroll-behavior: auto; }

  .save-row { opacity: 1 !important; transform: none !important; }
  .save-check { transform: scale(1); opacity: 1; }
  .cook-card, .scale-card, .inline-card, .import-input { opacity: 1; }
  .cook-step-label, .cook-step-text { opacity: 1; }
  .cook-timer { transform: scale(1); opacity: 1; }
  .scale-pill[data-mult="1"] { background: var(--braisery-primary); color: #fff; }
  .inline-toggle { opacity: 1; background: var(--braisery-primary); color: #fff; border-color: var(--braisery-primary); }
  .inline-pill { transform: scale(1); opacity: 1; }
  .import-arrow, .import-card { opacity: 1; transform: none; }
  .import-cursor { display: none; }
  .hero-whisk { transform: scale(1); opacity: 1; }
  .hero-mock-wordmark { opacity: 1; }
}
