/*
 * Himmelheim Studio — style.css
 * ─────────────────────────────────────────────────────────────────────────────
 * Token-first. Mobile-first. No framework. No inline styles.
 * All hex values defined as tokens in :root — never use raw hex elsewhere.
 *
 * FONT NOTE (Phase 2 Step 6):
 * Google Fonts @import below is a development placeholder.
 * Replace with self-hosted @font-face blocks referencing assets/fonts/
 * before production deployment. See assets/fonts/.gitkeep for instructions.
 * ─────────────────────────────────────────────────────────────────────────────
 */

/*
 * Fonts are loaded via <link> tags in index.html (Google Fonts CDN).
 * This is the correct approach for a public marketing site — no personal
 * data is involved and it avoids the manual download/convert step.
 *
 * OPTIONAL UPGRADE: self-host for ~30% smaller files + zero third-party requests.
 * If you ever want to do this:
 *   1. Download variable WOFF2 from fonts.google.com (use woff2_compress if you
 *      only get TTF: sudo apt install woff2 && woff2_compress font.ttf)
 *   2. Place in assets/fonts/ and replace the <link> tags in index.html with:
 *
 * @font-face {
 *   font-family: 'Fraunces';
 *   src: url('assets/fonts/fraunces-variable.woff2') format('woff2-variations');
 *   font-weight: 300 900;
 *   font-style: normal italic;
 *   font-display: swap;
 * }
 * @font-face {
 *   font-family: 'Inter';
 *   src: url('assets/fonts/inter-400.woff2') format('woff2');
 *   font-weight: 400; font-style: normal; font-display: swap;
 * }
 * @font-face {
 *   font-family: 'Inter';
 *   src: url('assets/fonts/inter-500.woff2') format('woff2');
 *   font-weight: 500; font-style: normal; font-display: swap;
 * }
 */

/* ─────────────────────────────────────────────────────────────────────────────
 * DESIGN TOKENS
 * ─────────────────────────────────────────────────────────────────────────────
 * Parent brand palette. Product accent colours appear in card components only.
 */
:root {
  /* Colour — parent brand */
  --color-ink: #0d1829; /* Darkened French Navy — deep structural anchor */
  --color-ground: #f8f6f1; /* Birch-paper near-white — warm, Nordic, not clinical */
  --color-ground-alt: #f0ede6; /* Slightly deeper birch — alternate section background */
  --color-spruce: #9e8870; /* Manor Oak — warm mid-taupe, primary accent */
  --color-spruce-light: #e8ddd4; /* Manor Oak tint — dividers, hover states, subtle backgrounds */
  --color-white: #ffffff;

  /* Colour — product accents (cards only, never in parent brand shell) */
  --color-sf-terra: #c25736; /* StoryFort — card top-border accent (terracotta) */
  --color-sf-brass: #d4af37; /* StoryFort — secondary card accent */
  --color-pa-orange: #f97316; /* Paper Airplane — card top-border accent */

  /* Colour — Laminex palette (2026-02-22 exploration) */
  --color-euralypt: #7a9485; /* Euralypt Laminex — dusty eucalyptus sage */
  --color-portsea: #6a9aaa; /* Portsea Laminex — coastal blue-teal */

  /* Typography — typefaces */
  --font-display: "Fraunces", Georgia, serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Typography — scale (fluid where appropriate) */
  --type-hero: clamp(2.75rem, 6vw, 5.5rem);
  --type-tagline: clamp(1.125rem, 2.5vw, 1.75rem);
  --type-coda: clamp(0.8125rem, 1.5vw, 1rem);
  --type-section-head: clamp(1.75rem, 3.5vw, 2.75rem);
  --type-pillar-head: clamp(1.125rem, 2vw, 1.375rem);
  --type-body: clamp(0.9375rem, 1.5vw, 1.0625rem);
  --type-small: 0.8125rem;
  --type-nav: 0.875rem;
  --type-micro: 0.75rem;

  /* Typography — weights */
  --weight-display: 300;
  --weight-display-med: 500;
  --weight-body: 400;
  --weight-body-med: 500;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Layout */
  --content-max: 72rem;
  --content-narrow: 48rem;
  --content-reading: 38rem;

  /* Border radius */
  --radius-pill: 100vmax;
  --radius-card: 0.5rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;

  /* Nav */
  --nav-height: 3rem;
  --nav-bg: rgba(248, 246, 241, 0.88);
  --nav-bg-scrolled: rgba(13, 24, 41, 0.92);
  --micro-bar-height: 2rem;

  /* Depth & bridge tokens (consultant additions, 2026-02-22)
   * These extend the existing palette without replacing any value.
   * --color-ink-deep  : deeper navy for gradients, pressed states, dark section backgrounds
   * --color-ground-cool: cool-tinted near-white; use to alternate section rhythm against warm --color-ground
   * --color-lichen    : midpoint between navy and spruce; useful for subtle dividers, secondary text on dark
   */
  --color-ink-deep: #0f1a24;
  --color-ground-cool: #f1f3f5;
  --color-lichen: #607d72;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * BASE RESET
 * ─────────────────────────────────────────────────────────────────────────────
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  /* Scroll snap container for full-viewport slides */
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--color-euralypt);
}

body {
  height: 100%;
  max-width: 80rem; /* 1280px — green gutters appear beyond this on wide screens */
  margin-inline: auto;
  background-color: var(--color-ground);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: var(--weight-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * FLOATING PILL NAV
 * ─────────────────────────────────────────────────────────────────────────────
 * Fixed, centered at top. Collapses to ink/white when hero is out of view
 * (class .pill-nav--scrolled added via IntersectionObserver in index.html).
 */
.pill-nav {
  position: fixed;
  top: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;

  display: flex;
  align-items: center;
  gap: var(--space-md);

  padding: 0.625rem var(--space-md);
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-spruce-light);
  border-radius: var(--radius-pill);

  transition:
    background var(--duration-normal) var(--ease-out),
    border-color var(--duration-normal) var(--ease-out),
    padding var(--duration-normal) var(--ease-out);
}

.pill-nav--scrolled {
  background: var(--nav-bg-scrolled);
  border-color: transparent;
}

.pill-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--type-nav);
  font-weight: var(--weight-display-med);
  letter-spacing: 0.02em;
  color: var(--color-ink);
  white-space: nowrap;
  transition: color var(--duration-fast);
}

.pill-nav__logo-mark {
  width: auto;
  height: 1.5rem; /* taller viewBox from serifs — increased to maintain visual width */
  flex-shrink: 0;
}

.pill-nav__logo-name {
  /* hide wordmark on very narrow screens where only the mark is needed */
}

@media (max-width: 360px) {
  .pill-nav__logo-name {
    display: none;
  }
}

.pill-nav--scrolled .pill-nav__logo {
  color: var(--color-ground);
}

.pill-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.pill-nav__links a {
  font-size: var(--type-nav);
  font-weight: var(--weight-body-med);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink);
  opacity: 0.65;
  transition:
    opacity var(--duration-fast),
    color var(--duration-fast);
}

.pill-nav__links a:hover,
.pill-nav__links a:focus-visible {
  opacity: 1;
  outline: none;
}

.pill-nav--scrolled .pill-nav__links a {
  color: var(--color-ground);
}

/* Hide link labels on very small screens — logo only */
@media (max-width: 480px) {
  .pill-nav__links {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * SLIDE LAYOUT — SNAP SCROLL CONTAINER
 * ─────────────────────────────────────────────────────────────────────────────
 */
.slide {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;

  display: grid;
  place-items: center;

  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md)
    calc(var(--micro-bar-height) + var(--space-lg));
  position: relative;
  overflow: hidden;
}

.slide__inner {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * SLIDE 1 — HERO
 * ─────────────────────────────────────────────────────────────────────────────
 */
.slide--hero {
  background-color: var(--color-ground);
  text-align: center;
}

.slide--hero .slide__inner {
  max-width: var(--content-narrow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.hero__title-block {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-sm);
}

.hero__logomark {
  width: 80%;
  height: auto;
  display: block;
  margin-inline: auto;
}

.hero__name {
  font-family: var(--font-display);
  font-size: var(--type-hero);
  font-weight: var(--weight-display);
  font-optical-sizing: auto;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-spruce);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: var(--type-tagline);
  font-weight: var(--weight-display);
  font-style: italic;
  line-height: 1.35;
  color: var(--color-ink);
  opacity: 0.8;
  max-width: 34ch;
}

.hero__coda {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;

  font-size: var(--type-coda);
  font-weight: var(--weight-body-med);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-euralypt);
}

.hero__coda-sep {
  opacity: 0.35;
  flex-shrink: 0;
}

/* Decorative hairline under hero name */
.hero__name::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--color-spruce);
  margin: var(--space-sm) auto 0;
  opacity: 0.5;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * SLIDE 2 — VALUES (STUDIO PILLARS)
 * ─────────────────────────────────────────────────────────────────────────────
 */
.slide--values {
  background-color: var(--color-ink);
  color: var(--color-ground);
}

.slide--values .slide__inner {
  display: grid;
  gap: var(--space-xl);
}

.values__heading {
  font-family: var(--font-display);
  font-size: var(--type-coda);
  font-weight: var(--weight-body-med);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-spruce-light);
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .values__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(212, 224, 219, 0.2); /* spruce-light at low opacity */
}

.pillar__icon {
  display: block;
  color: var(--color-spruce);
  opacity: 0.7;
  margin-bottom: calc(var(--space-sm) * -0.25);
}

.pillar__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.pillar__title {
  font-family: var(--font-display);
  font-size: var(--type-pillar-head);
  font-weight: var(--weight-display-med);
  line-height: 1.2;
  color: var(--color-ground);
}

.pillar__body {
  font-size: var(--type-body);
  line-height: 1.65;
  color: var(--color-ground);
  opacity: 0.75;
}

.pillar__quote {
  margin-top: auto;
  padding-top: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--type-small);
  font-style: italic;
  color: var(--color-spruce-light);
  opacity: 0.9;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * SLIDE 3 — PRIDE (PORTFOLIO)
 * ─────────────────────────────────────────────────────────────────────────────
 */
.slide--pride {
  background-color: var(--color-ground-alt);
}

.slide--pride .slide__inner {
  display: grid;
  gap: var(--space-xl);
}

.pride__heading {
  font-family: var(--font-display);
  font-size: var(--type-coda);
  font-weight: var(--weight-body-med);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-spruce);
}

.pride__dilemma {
  font-family: var(--font-display);
  font-size: var(--type-tagline);
  font-weight: var(--weight-display);
  font-style: italic;
  line-height: 1.35;
  color: var(--color-ink);
  max-width: 44ch;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--color-ground);
  border-radius: var(--radius-card);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  border-top: 3px solid transparent;
  position: relative;
  transition: transform var(--duration-normal) var(--ease-out);
}

.card:hover {
  transform: translateY(-2px);
}

.card--storyfort {
  border-top-color: var(--color-sf-terra);
}

.card--paperairplane {
  border-top-color: var(--color-pa-orange);
}

.card__product {
  font-size: var(--type-small);
  font-weight: var(--weight-body-med);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-spruce);
}

.card__story {
  font-family: var(--font-display);
  font-size: var(--type-pillar-head);
  font-weight: var(--weight-display);
  line-height: 1.45;
  color: var(--color-ink);
}

.card__link {
  margin-top: auto;
  padding-top: var(--space-sm);
  font-size: var(--type-small);
  font-weight: var(--weight-body-med);
  letter-spacing: 0.04em;
  color: var(--color-spruce);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.card__link::after {
  content: "→";
}

.card--placeholder {
  opacity: 0.5;
  pointer-events: none;
}

.card--placeholder .card__story {
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * SLIDE 4 — PEOPLE (FOUNDER)
 * ─────────────────────────────────────────────────────────────────────────────
 */
.slide--people {
  background-color: var(--color-ground);
}

.slide--people .slide__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .slide--people .slide__inner {
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
  }
}

.people__heading {
  font-family: var(--font-display);
  font-size: var(--type-coda);
  font-weight: var(--weight-body-med);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-spruce);
  grid-column: 1 / -1;
}

.founder__photo-wrap {
  aspect-ratio: 1;
  max-width: 18rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-spruce-light);

  /* Placeholder styling until photo is supplied */
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder__photo-placeholder {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: var(--weight-display);
  color: var(--color-spruce);
  opacity: 0.4;
  user-select: none;
  /* Replace with <img> in Phase 2 Step 6 when photo is supplied */
}

.founder__photo-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.founder__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.founder__name {
  font-family: var(--font-display);
  font-size: var(--type-section-head);
  font-weight: var(--weight-display);
  line-height: 1.1;
  color: var(--color-ink);
}

.founder__bio {
  font-size: var(--type-body);
  line-height: 1.7;
  color: var(--color-ink);
  opacity: 0.75;
  max-width: var(--content-reading);
}

.founder__credential {
  font-size: var(--type-small);
  font-weight: var(--weight-body-med);
  letter-spacing: 0.04em;
  color: var(--color-spruce);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-spruce-light);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * SLIDE 5 — CONNECT (CONTACT)
 * ─────────────────────────────────────────────────────────────────────────────
 */
.slide--connect {
  background-color: var(--color-ink);
  color: var(--color-ground);
}

.slide--connect .slide__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: var(--content-narrow);
}

@media (min-width: 768px) {
  .slide--connect .slide__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    max-width: var(--content-max);
  }
}

.connect__heading {
  font-family: var(--font-display);
  font-size: var(--type-coda);
  font-weight: var(--weight-body-med);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-spruce-light);
  grid-column: 1 / -1;
}

.connect__intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.connect__title {
  font-family: var(--font-display);
  font-size: var(--type-section-head);
  font-weight: var(--weight-display);
  line-height: 1.15;
  color: var(--color-ground);
}

.connect__body {
  font-size: var(--type-body);
  line-height: 1.65;
  color: var(--color-ground);
  opacity: 0.7;
}

/* Contact form */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form__label {
  font-size: var(--type-small);
  font-weight: var(--weight-body-med);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ground);
  opacity: 0.6;
}

.form__input,
.form__textarea {
  background: rgba(248, 246, 241, 0.08);
  border: 1px solid rgba(248, 246, 241, 0.2);
  border-radius: 0.25rem;
  padding: 0.75rem var(--space-sm);
  color: var(--color-ground);
  font-size: var(--type-body);
  transition:
    border-color var(--duration-fast),
    background var(--duration-fast);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-spruce-light);
  background: rgba(248, 246, 241, 0.12);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(248, 246, 241, 0.3);
}

.form__textarea {
  resize: vertical;
  min-height: 8rem;
}

/* Honeypot — hidden from real users, catches bots */
.form__honey {
  display: none;
}

.form__submit {
  align-self: flex-start;
  background: var(--color-spruce);
  color: var(--color-ground);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.75rem var(--space-lg);
  font-size: var(--type-small);
  font-weight: var(--weight-body-med);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background var(--duration-fast),
    transform var(--duration-fast);
}

.form__submit:hover {
  background: #4a6f62;
  transform: translateY(-1px);
}

.form__submit:active {
  transform: translateY(0);
}

.form__submit:focus-visible {
  outline: 2px solid var(--color-spruce-light);
  outline-offset: 3px;
}

.form__notice {
  font-size: var(--type-small);
  color: var(--color-ground);
  opacity: 0.4;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * MICRO-UTILITY BAR
 * ─────────────────────────────────────────────────────────────────────────────
 * Fixed at bottom of viewport. Single line. Always visible.
 * Human-translated labels: Values · Pride · People · Connect · Trust · Ambitions
 */
.micro-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(
    100%,
    80rem
  ); /* matches body max-width — stays within ground column */
  z-index: 100;
  height: var(--micro-bar-height);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);

  padding-inline: var(--space-md);
  background: rgba(13, 24, 41, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(248, 246, 241, 0.08);
}

.micro-bar__copyright {
  font-size: var(--type-micro);
  color: var(--color-ground);
  opacity: 0.4;
  white-space: nowrap;
  flex-shrink: 0;
}

.micro-bar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.micro-bar__nav a {
  font-size: var(--type-micro);
  font-weight: var(--weight-body-med);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ground);
  opacity: 0.45;
  transition: opacity var(--duration-fast);
  white-space: nowrap;
}

.micro-bar__nav a:hover,
.micro-bar__nav a:focus-visible {
  opacity: 0.9;
  outline: none;
}

.micro-bar__sep {
  font-size: var(--type-micro);
  color: var(--color-ground);
  opacity: 0.2;
  user-select: none;
}

.micro-bar__community {
  font-size: var(--type-micro);
  font-weight: var(--weight-body-med);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ground);
  opacity: 0.45;
  white-space: nowrap;
}

.micro-bar__icon {
  display: flex;
  align-items: center;
  opacity: 0.45;
  transition: opacity var(--duration-fast);
  color: var(--color-ground);
}

.micro-bar__icon:hover {
  opacity: 0.9;
}

.micro-bar__icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Hide some links on narrow screens to prevent overflow */
@media (max-width: 640px) {
  .micro-bar__nav .micro-bar__hide-sm {
    display: none;
  }
}

@media (max-width: 400px) {
  .micro-bar__copyright {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * FOCUS STYLES — ACCESSIBILITY
 * ─────────────────────────────────────────────────────────────────────────────
 */
:focus-visible {
  outline: 2px solid var(--color-spruce);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip to main content link (hidden until focused by keyboard user) */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 999;
  background: var(--color-spruce);
  color: var(--color-ground);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-card);
  font-size: var(--type-small);
  font-weight: var(--weight-body-med);
  transition: top var(--duration-fast);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * REDUCED MOTION
 * ─────────────────────────────────────────────────────────────────────────────
 */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
