/* ───────────────────────────────────────────────────────────────────────
   SÈVE — landing
   v2: tighter editorial system, single typographic voice for display
   (Big Shoulders 700–900 uppercase, never italicised at headline scale).
   Brick orange is reserved for accent moments — kicker labels, section
   numbers, ONE highlighted word in the hero, dot indicators. Never a
   mid-sentence italic that fights the surrounding bold.
─────────────────────────────────────────────────────────────────────── */

:root {
  --cream: #f5f0e6;
  --cream-soft: #efe9dc;
  --sand: #e8dfce;
  --sand-deep: #d6c9af;
  --ink: #1a1815;
  --ink-soft: #3a352e;
  --ink-muted: #5b554c;
  --brick: #c8451e;
  --brick-soft: #e8723c;
  --moss: #3a4d2f;

  --f-display: "Big Shoulders Display", "Impact", sans-serif;
  --f-body: "Archivo", "Helvetica Neue", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", "SFMono-Regular", ui-monospace, monospace;

  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --rail: clamp(1.25rem, 5vw, 4.5rem);
  --section-y: clamp(4rem, 9vw, 8rem);

  --rule: 1px solid var(--ink);
  --rule-soft: 1px solid color-mix(in srgb, var(--ink) 22%, transparent);

  /* Tone-on-tone block highlight — used as the SINGLE in-hero accent. */
  --highlight: var(--brick);
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 8% 0%, rgba(200, 69, 30, 0.05), transparent 70%),
    radial-gradient(ellipse 50% 30% at 96% 18%, rgba(58, 77, 47, 0.035), transparent 70%),
    var(--cream);
  min-height: 100vh;
}

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

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

/* ─── Paper grain ────────────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.09 0 0 0 0 0.08 0 0 0 0.2 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ─── Top bar ────────────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gutter);
  padding: 0.9rem var(--rail);
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: var(--rule-soft);
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
}

.topbar__drop {
  width: 14px;
  height: 18px;
  color: var(--brick);
}

.topbar__word {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
}

.topbar__nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.topbar__nav a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 180ms ease;
}

.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--brick);
  transition: right 220ms ease;
}

.topbar__nav a:hover { color: var(--ink); }
.topbar__nav a:hover::after { right: 0; }

.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  transition: transform 200ms ease, background 200ms ease;
}

.topbar__cta:hover {
  transform: translateY(-1px);
  background: var(--brick);
  border-color: var(--brick);
}

@media (max-width: 720px) {
  .topbar__nav { display: none; }
}

/* ─── Folio strip ────────────────────────────────────────────────────── */
.folio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  padding: 0.75rem var(--rail);
  border-bottom: var(--rule);
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  position: relative;
  z-index: 2;
}

.folio__num {
  color: var(--brick);
  font-weight: 600;
}

.folio__sep { opacity: 0.4; }

/* ─── Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 2;
  padding-bottom: var(--section-y);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.5rem, 6vw, 5rem) var(--rail) 0;
  align-items: center;
}

.hero__copy {
  position: relative;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  opacity: 0;
  animation: rise 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 100ms forwards;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--brick);
  vertical-align: middle;
  margin-right: 0.75rem;
}

.hero h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.75rem, 6.4vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(0.35em);
  animation: rise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero h1 .line:nth-child(1) { animation-delay: 220ms; }
.hero h1 .line:nth-child(2) { animation-delay: 340ms; }

/* The ONE accent in the hero headline: a felt-pen highlighter strip
   running through the lower third of the word. Same display weight,
   same case — only a band of color, like marker on paper. Restrained
   but unmistakable. */
.hero h1 mark {
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 64%,
      rgba(200, 69, 30, 0.92) 64%,
      rgba(200, 69, 30, 0.92) 92%,
      transparent 92%
    );
  color: var(--ink);
  padding: 0 0.06em;
  /* Highlights wrap across line breaks cleanly */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__lede {
  max-width: 48ch;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
  color: var(--ink-soft);
  opacity: 0;
  animation: rise 800ms ease 480ms forwards;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.45rem;
  opacity: 0;
  animation: rise 800ms ease 560ms forwards;
}

.hero__bullets li {
  position: relative;
  padding-left: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 1.5px;
  background: var(--brick);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  opacity: 0;
  animation: rise 800ms ease 640ms forwards;
}

.hero__avail {
  margin-top: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0;
  animation: rise 800ms ease 720ms forwards;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero__avail .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brick);
  box-shadow: 0 0 0 0 rgba(200, 69, 30, 0.6);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 69, 30, 0.55); }
  50% { box-shadow: 0 0 0 8px rgba(200, 69, 30, 0); }
}

.hero__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  animation: rise 1000ms ease 520ms forwards;
}

.hero__phone-caption {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ─── Phone frame — reusable, wraps any inner img/svg ──────────────── */
.phone {
  --phone-w: clamp(240px, 28vw, 360px);
  position: relative;
  width: var(--phone-w);
  aspect-ratio: 390 / 844;
  background: #0a0908;
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.4) inset,
    0 24px 50px -16px rgba(26, 24, 21, 0.35),
    0 6px 16px -8px rgba(26, 24, 21, 0.25);
}

.phone::before {
  /* Notch */
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #0a0908;
  border-radius: 18px;
  z-index: 2;
}

.phone > img,
.phone > svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  background: var(--cream);
}

.phone--tilt {
  transform: rotate(2deg);
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.phone--tilt:hover {
  transform: rotate(0deg) translateY(-4px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.btn--primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--brick);
  border-color: var(--brick);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

/* Ticker */
.ticker {
  margin-top: clamp(3rem, 7vw, 6rem);
  padding: 1.25rem var(--rail);
  border-top: var(--rule);
  border-bottom: var(--rule);
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.ticker span:nth-child(4n) { color: var(--brick); }

@media (max-width: 880px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__phone {
    order: -1;
    margin-bottom: 1.5rem;
  }
}

/* ─── Section primitives ─────────────────────────────────────────────── */
.section__head {
  max-width: 56ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__head h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 0.85rem;
  color: var(--ink);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.kicker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0;
}

.kicker--light { color: color-mix(in srgb, var(--cream) 70%, transparent); }
.kicker--light span {
  border-color: var(--cream);
  color: var(--cream);
}

/* ─── Manifesto ──────────────────────────────────────────────────────── */
.manifesto {
  padding: var(--section-y) var(--rail);
  border-top: var(--rule);
  border-bottom: var(--rule);
  background: linear-gradient(180deg, transparent 0%, var(--cream-soft) 100%);
  position: relative;
  z-index: 2;
  text-align: center;
}

.manifesto .kicker {
  margin-bottom: 2rem;
}

.manifesto__quote {
  margin: 0 auto;
}

.manifesto__quote p {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.manifesto__quote p + p {
  margin-top: 0.1em;
  /* Second line gets the brick tint — a single hue shift, no font swap */
  color: var(--brick);
}

.manifesto__sig {
  margin-top: 2.25rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ─── Méthode (3 steps) ──────────────────────────────────────────────── */
.methode {
  padding: var(--section-y) var(--rail);
  position: relative;
  z-index: 2;
}

.steps {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1px;
  background: color-mix(in srgb, var(--ink) 15%, transparent);
  border-top: var(--rule);
  border-bottom: var(--rule);
  grid-template-columns: 1fr 1fr 1fr;
}

.steps > li {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--cream);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.85rem;
  transition: background 240ms ease;
}

.steps > li:hover { background: var(--cream-soft); }

.steps__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--brick);
  letter-spacing: -0.02em;
}

.steps h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 14ch;
}

.steps p:not(.steps__num):not(.steps__tag) {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.steps__tag {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 1rem;
  border-top: var(--rule-soft);
}

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

/* ─── Outils — alternating phone blocks ─────────────────────────────── */
.outils {
  padding: var(--section-y) var(--rail);
  background: var(--cream-soft);
  border-top: var(--rule);
  position: relative;
  z-index: 2;
}

.outil {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: var(--rule-soft);
}

.outil:last-of-type { border-bottom: none; }

.outil--reverse .outil__text { order: 2; }
.outil--reverse .outil__phone { order: 1; }

.outil__text {
  max-width: 44ch;
}

.outil__tag {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brick);
  font-weight: 600;
  margin-bottom: 1rem;
}

.outil h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--ink);
}

.outil__text p:not(.outil__tag) {
  margin-top: 1.25rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.outil__phone {
  display: flex;
  justify-content: center;
}

.outil__phone .phone {
  --phone-w: clamp(220px, 24vw, 320px);
}

@media (max-width: 820px) {
  .outil {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .outil--reverse .outil__text { order: 0; }
  .outil--reverse .outil__phone { order: 1; }
}

/* ─── Dark pull quote ────────────────────────────────────────────────── */
.pullquote {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(5rem, 12vw, 9rem) var(--rail);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.pullquote::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(200, 69, 30, 0.18), transparent 60%);
  pointer-events: none;
}

.pullquote__inner {
  position: relative;
  max-width: 80ch;
  margin: 0 auto;
  text-align: center;
}

.pullquote .kicker { margin-bottom: 2.5rem; }

.pullquote blockquote p {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
}

.pullquote blockquote footer {
  margin-top: 2.5rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 75%, transparent);
}

.pullquote__name { color: var(--brick-soft); font-weight: 600; }
.pullquote__sep { margin: 0 0.7rem; opacity: 0.5; }

/* ─── Download CTA ───────────────────────────────────────────────────── */
.download {
  padding: var(--section-y) var(--rail);
  position: relative;
  z-index: 2;
}

.download__card {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  background: var(--cream);
  border: var(--rule);
  position: relative;
  box-shadow: 14px 18px 0 -2px var(--sand-deep);
  text-align: center;
}

.download__card::before,
.download__card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--brick);
}
.download__card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.download__card::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.download .kicker {
  margin-bottom: 1.5rem;
  justify-content: center;
}

.download h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.download__lede {
  margin: 1.25rem auto 0;
  max-width: 48ch;
  color: var(--ink-soft);
  line-height: 1.55;
}

.download__actions {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Store badge — homemade, plays nicely with our type system instead of
   dropping in the official Apple SVG which would clash visually. */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  transition: transform 200ms ease, background 200ms ease;
}

.store-badge:hover {
  transform: translateY(-1px);
  background: var(--brick);
  border-color: var(--brick);
}

.store-badge--ghost {
  background: transparent;
  color: var(--ink);
}
.store-badge--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.store-badge svg { flex-shrink: 0; }

.store-badge__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-align: left;
}

.store-badge__small {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  opacity: 0.7;
}

.store-badge__big {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin-top: 2px;
}

/* ─── Footer ─────────────────────────────────────────────────────────── */
.footer {
  border-top: var(--rule);
  padding: clamp(3rem, 7vw, 5rem) var(--rail) 2rem;
  background: var(--cream);
  position: relative;
  z-index: 2;
}

.footer__top {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: end;
  gap: 0.6rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: var(--rule-soft);
}

.footer__drop {
  width: 18px;
  height: 24px;
  color: var(--brick);
  transform: translateY(-2px);
}

.footer__word {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.85;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.footer__tagline {
  justify-self: end;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 0.75rem;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.footer__h {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 1rem;
}

.footer__cols ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer__cols a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  position: relative;
  transition: color 200ms ease;
}

.footer__cols a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--brick);
  transition: right 220ms ease;
}

.footer__cols a:hover { color: var(--ink); }
.footer__cols a:hover::after { right: 0; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: var(--rule-soft);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .footer__top { grid-template-columns: auto 1fr; }
  .footer__tagline {
    grid-column: 1 / -1;
    justify-self: start;
    padding-bottom: 0;
    padding-top: 0.5rem;
  }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ─── Reveal-on-scroll ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
