/* ==========================================================================
   Spicy Situation® — global styles
   Governed by /design.md. Both themes ship; dark loads first paint.
   ========================================================================== */

/* --- 1. Tokens -------------------------------------------------------- */

:root {
  color-scheme: dark light;

  /* Type */
  --font-display: 'Playfair Display', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --font-sans:    'Karla', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --fs-display: clamp(2.75rem, 6vw, 5.5rem);
  --fs-h1:      clamp(2.25rem, 4.5vw, 3.75rem);
  --fs-h2:      clamp(1.75rem, 3.5vw, 2.5rem);
  --fs-h3:      clamp(1.25rem, 2.2vw, 1.5rem);
  --fs-lead:    clamp(1.125rem, 1.5vw, 1.375rem);
  --fs-body:    1.0625rem;
  --fs-small:   0.9375rem;
  --fs-micro:   0.75rem;

  --lh-display: 1.02;
  --lh-heading: 1.12;
  --lh-body:    1.65;

  /* Space */
  --s-0:   0;
  --s-1:   8px;
  --s-2:   16px;
  --s-3:   24px;
  --s-4:   32px;
  --s-5:   48px;
  --s-6:   64px;
  --s-7:   96px;
  --s-8:   128px;
  --s-9:   192px;
  --section-y: clamp(64px, 10vw, 128px);
  --gutter:    clamp(20px, 4vw, 40px);
  --container: 1200px;
  --measure:   62ch;

  /* Radii */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-full: 9999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- 2. Theme palettes ------------------------------------------------ */

:root[data-theme="dark"] {
  --bg:         #0A0A0A;
  --surface:    #171717;
  --surface-2:  #1F1F1F;
  --border:     #262626;
  --fg:         #F5F5F0;
  --fg-muted:   #A3A3A3;
  --fg-subtle:  #737373;
  --brand:      #F5F5F0;
  --accent:     #2ECC71;
  --accent-fg:  #0A0A0A;
  --heat:       #E85A2C;
  --focus:      #2ECC71;
  --overlay:    rgba(10, 10, 10, 0.75);
  --shadow-lg:  0 12px 40px rgba(0, 0, 0, 0.55);
}

:root[data-theme="light"] {
  --bg:         #F5F5F0;
  --surface:    #FFFFFF;
  --surface-2:  #EBEBE4;
  --border:     #D4D4D4;
  --fg:         #0A0A0A;
  --fg-muted:   #525252;
  --fg-subtle:  #737373;
  --brand:      #0A0A0A;
  --accent:     #1F9D55;
  --accent-fg:  #FFFFFF;
  --heat:       #C4471B;
  --focus:      #1F9D55;
  --overlay:    rgba(245, 245, 240, 0.85);
  --shadow-lg:  0 8px 32px rgba(0, 0, 0, 0.10);
}

/* Respect prefers-color-scheme when data-theme is not explicitly set */
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --bg: #F5F5F0; --surface: #FFFFFF; --surface-2: #EBEBE4; --border: #D4D4D4;
    --fg: #0A0A0A; --fg-muted: #525252; --fg-subtle: #737373; --brand: #0A0A0A;
    --accent: #1F9D55; --accent-fg: #FFFFFF; --heat: #C4471B; --focus: #1F9D55;
    --overlay: rgba(245, 245, 240, 0.85); --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
  }
}

/* Default (no data-theme, no OS light preference) = dark, per default first paint */
:root:not([data-theme]) {
  --bg: #0A0A0A; --surface: #171717; --surface-2: #1F1F1F; --border: #262626;
  --fg: #F5F5F0; --fg-muted: #A3A3A3; --fg-subtle: #737373; --brand: #F5F5F0;
  --accent: #2ECC71; --accent-fg: #0A0A0A; --heat: #E85A2C; --focus: #2ECC71;
  --overlay: rgba(10, 10, 10, 0.75); --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.55);
}

/* --- 3. Reset --------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}
body {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; list-style-position: inside; }

::selection { background: var(--accent); color: var(--accent-fg); }

:where(:focus-visible) {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* --- 4. Typography ---------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
}
h1 { font-size: var(--fs-h1); line-height: 1.06; }
h2 { font-size: var(--fs-h2); line-height: var(--lh-heading); }
h3 { font-size: var(--fs-h3); line-height: 1.25; }

.display {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: -0.025em;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 60ch;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.small  { font-size: var(--fs-small); }
.micro  { font-size: var(--fs-micro); letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-subtle); }
.muted  { color: var(--fg-muted); }
.subtle { color: var(--fg-subtle); }

.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose blockquote {
  border-left: 2px solid var(--accent);
  padding: var(--s-2) var(--s-3);
  font-family: var(--font-display);
  font-size: var(--fs-lead);
  font-style: italic;
  color: var(--fg);
}
.prose a { border-bottom: 1px solid var(--accent); }
.prose a:hover { color: var(--accent); }

.founder-question {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--fg-muted);
  font-size: var(--fs-lead);
  letter-spacing: -0.005em;
}
.founder-question sup { font-size: 0.6em; margin-left: 0.15em; vertical-align: super; color: var(--fg-subtle); }

/* --- 5. Layout helpers ------------------------------------------------ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section {
  padding-block: var(--section-y);
}
.section-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

.grid { display: grid; gap: var(--s-4); }
.two-up { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.three-up { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.stack-4 { display: flex; flex-direction: column; gap: var(--s-4); }
.stack-3 { display: flex; flex-direction: column; gap: var(--s-3); }
.stack-2 { display: flex; flex-direction: column; gap: var(--s-2); }
.row-3 { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }
.center { text-align: center; }

/* --- 6. Buttons ------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-1);
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
  cursor: pointer;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: var(--accent-fg);
  border-color: var(--accent);
}
.btn--secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn--ghost {
  background: transparent;
  color: var(--fg-muted);
  border-color: var(--border);
}

@media (hover: hover) {
  .btn--primary:hover  { background: color-mix(in oklab, var(--accent) 88%, black); border-color: color-mix(in oklab, var(--accent) 88%, black); }
  .btn--secondary:hover { background: var(--fg); color: var(--bg); }
  .btn--ghost:hover    { border-color: var(--fg); color: var(--fg); }
}

.btn-arrow { display: inline-block; transition: transform 220ms var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* --- 7. Chips / tags -------------------------------------------------- */

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: 6px 12px;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}
.chip--accent {
  color: var(--accent);
  border-color: var(--accent);
}
.chip--heat {
  color: var(--heat);
  border-color: var(--heat);
}

/* --- 8. Card grammar -------------------------------------------------- */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--s-4);
}
.card--flush { padding: 0; overflow: hidden; }
.card__body { padding: var(--s-4); }
.card__title { font-size: var(--fs-h3); margin-bottom: var(--s-2); }
.card__meta { font-size: var(--fs-micro); text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-subtle); }

/* --- 9. MBC pip meter (brand signature) ------------------------------- */

.mbc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.mbc__pips { display: inline-flex; gap: 3px; }
.mbc__pip {
  width: 14px;
  height: 6px;
  background: var(--border);
  border-radius: 1px;
}
.mbc__pip--filled { background: var(--accent); }
.mbc--hot .mbc__pip--filled { background: var(--heat); }
.mbc__label { font-weight: 700; color: var(--fg); }

/* --- 10. Site nav ----------------------------------------------------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top, 0);
}
.site-nav__row {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  min-height: 64px;
}
.site-nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-right: auto;
}
.site-nav__brand sup {
  font-family: var(--font-sans);
  font-size: 0.55em;
  font-weight: 700;
  color: var(--fg-subtle);
  vertical-align: super;
}
.site-nav__brand-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 4px;
  transform: translateY(-1px);
}
.site-nav__links {
  display: none;
  gap: var(--s-4);
  align-items: center;
  list-style: none;
}
.site-nav__links a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--fg-muted);
  padding: 8px 0;
  position: relative;
}
@media (hover: hover) {
  .site-nav__links a:hover { color: var(--fg); }
}
.site-nav__links a[aria-current="page"] { color: var(--fg); }
.site-nav__links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--accent);
}
.site-nav__actions {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  margin-left: auto;
}
.site-nav__cta {
  display: none;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--fg-muted);
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
  touch-action: manipulation;
}
@media (hover: hover) {
  .theme-toggle:hover { color: var(--fg); border-color: var(--fg-muted); }
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }
:root[data-theme="dark"] .theme-toggle .sun { display: block; }
:root[data-theme="dark"] .theme-toggle .moon { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--fg);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (min-width: 860px) {
  .site-nav__links { display: inline-flex; }
  .site-nav__cta   { display: inline-flex; }
  .nav-toggle      { display: none; }
}

/* Mobile drawer (progressive: <details> element, no JS required) */
.nav-drawer {
  display: block;
  border-top: 1px solid var(--border);
  padding: var(--s-3) 0 var(--s-4);
}
.nav-drawer[hidden] { display: none; }
.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.nav-drawer a {
  display: block;
  padding: 10px 0;
  font-size: var(--fs-lead);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
}
.nav-drawer a[aria-current="page"] { color: var(--accent); }
.nav-drawer .btn { margin-top: var(--s-3); align-self: flex-start; }
@media (min-width: 860px) { .nav-drawer { display: none !important; } }

/* --- 11. Footer ------------------------------------------------------- */

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: var(--s-6) var(--s-4);
  padding-bottom: calc(env(safe-area-inset-bottom, 0) + var(--s-4));
  margin-top: var(--s-7);
}
.site-footer__grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.3fr; }
}
.site-footer h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-subtle);
  margin-bottom: var(--s-2);
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.site-footer li a { color: var(--fg-muted); font-size: var(--fs-small); }
@media (hover: hover) { .site-footer li a:hover { color: var(--fg); } }
.site-footer__bottom {
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
  justify-content: space-between;
  color: var(--fg-subtle);
  font-size: var(--fs-micro);
}
.site-footer__bottom .founder-question {
  font-size: var(--fs-small);
}

/* Inline email form (footer + intercept CTAs) */
.subscribe {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.subscribe input[type="email"] {
  flex: 1 1 220px;
  min-height: 48px;
  padding: 0 14px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: max(var(--fs-body), 16px);
  touch-action: manipulation;
}

/* Form controls — mobile polish */
input, textarea, select {
  touch-action: manipulation;
}
input[type="email"],
input[type="text"],
input[type="tel"],
input[type="number"],
textarea,
select {
  font-size: max(1rem, 16px); /* prevent iOS zoom-on-focus */
}
.subscribe input[type="email"]::placeholder { color: var(--fg-subtle); }
.subscribe .btn { min-height: 48px; }
.subscribe__hint { font-size: var(--fs-micro); color: var(--fg-subtle); margin-top: 6px; }

/* --- 12. Hero patterns ------------------------------------------------ */

.hero {
  position: relative;
  padding-block: clamp(80px, 12vw, 160px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  gap: var(--s-5);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: var(--s-6); }
}
.hero__eyebrow { margin-bottom: var(--s-2); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }
.hero__proof {
  margin-top: var(--s-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  color: var(--fg-muted);
  font-size: var(--fs-small);
}
.hero__proof strong { color: var(--fg); font-weight: 700; }

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__caption {
  position: absolute;
  left: var(--s-2);
  bottom: var(--s-2);
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 12px;
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

/* --- 13. Editorial rhythms ------------------------------------------- */

.headline-block {
  max-width: 780px;
}
.headline-block .eyebrow { margin-bottom: var(--s-2); }
.headline-block h2 { margin-bottom: var(--s-3); }

.two-col {
  display: grid;
  gap: var(--s-5);
  align-items: start;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .two-col--wide-first { grid-template-columns: 1.3fr 0.7fr; }
  .two-col--wide-last  { grid-template-columns: 0.7fr 1.3fr; }
}

.pull {
  border-left: 2px solid var(--accent);
  padding: var(--s-3) var(--s-3);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-h3);
  line-height: 1.35;
  color: var(--fg);
  max-width: 60ch;
}

.figure { display: flex; flex-direction: column; gap: 8px; }
.figure img { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.figcaption { font-size: var(--fs-micro); color: var(--fg-subtle); text-transform: uppercase; letter-spacing: 0.1em; }

/* Label vs. label */
.labels-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 720px) { .labels-pair { grid-template-columns: 1fr 1fr; gap: var(--s-4); } }
.labels-pair .figure { text-align: center; }
.labels-pair .figcaption strong { color: var(--fg); }

/* Ingredient comparison table */
.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: var(--fs-small);
}
.compare th, .compare td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}
.compare thead th {
  background: var(--surface-2);
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.compare tr:last-child td { border-bottom: 0; }
.compare .ours { background: color-mix(in oklab, var(--accent) 8%, var(--surface)); }
.compare .ours td:first-child { border-left: 3px solid var(--accent); }

/* FAQ (details/summary) */
.faq details {
  border-top: 1px solid var(--border);
  padding: var(--s-3) 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  gap: var(--s-3);
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.3;
  color: var(--fg);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--fg-subtle);
  transition: transform 200ms var(--ease);
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq details > *:not(summary) {
  margin-top: var(--s-3);
  color: var(--fg-muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  max-width: var(--measure);
}

/* Pricing block */
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  height: 100%;
}
.pricing-card--featured {
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 8%, var(--surface));
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
}
.pricing-card__price small {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0;
}
.pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-card li { position: relative; padding-left: 22px; color: var(--fg-muted); font-size: var(--fs-small); line-height: 1.5; }
.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

/* Callout box */
.callout {
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  background: var(--surface);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius-sm);
}
.callout--heat { border-left-color: var(--heat); }
.callout__label {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 6px;
}

/* --- 14. Utility ------------------------------------------------------ */

.hide-mobile { display: none; }
@media (min-width: 720px) { .hide-mobile { display: initial; } .hide-desktop { display: none; } }

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

/* Reveal on scroll — additive; respects prefers-reduced-motion */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity 400ms var(--ease), transform 400ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
