/* ============================================================
   Arbelet — one-page site
   Palette: cream + ink, with a deep night for the peak moment.
   Type: Bricolage Grotesque (display) + Geist (body)
   ============================================================ */

:root {
  --cream: #F2EDE3;
  --cream-2: #E8E2D3;
  --cream-3: #D9D1BD;
  --ink: #0E0D0B;
  --ink-2: #1F1D19;
  --ink-soft: #5A574F;
  --line: rgba(14, 13, 11, 0.12);
  --line-strong: rgba(14, 13, 11, 0.25);

  --night: #0B0B0A;
  --night-cream: #F2EDE3;

  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Geist", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --container: 1280px;
  --pad: clamp(20px, 4vw, 56px);

  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-out-strong: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--ink); color: var(--cream); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  transition: background-color .35s var(--ease-out), backdrop-filter .35s var(--ease-out), color .35s var(--ease-out), border-color .35s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(242, 237, 227, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav.is-dark {
  color: var(--cream);
  background: rgba(11, 11, 10, 0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: rgba(255,255,255,0.08);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}
.nav__logo {
  height: 26px;
  width: auto;
  color: currentColor;
}
.nav.is-dark .nav__logo { filter: invert(1); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 36px);
  font-size: 14.5px;
  font-weight: 450;
}
.nav__links a { opacity: .75; transition: opacity .25s; }
.nav__links a:hover { opacity: 1; }
.nav__cta {
  border: 1px solid currentColor;
  padding: 9px 16px;
  border-radius: 999px;
  opacity: 1 !important;
}
@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 140px var(--pad) 80px;
  display: flex;
  align-items: center;
  position: relative;
}
.hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 800px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
}

.hero__mark {
  width: 100%;
  max-width: clamp(140px, 18vw, 220px);
  height: auto;
  aspect-ratio: 100 / 110;
  color: var(--ink);
  transform-origin: center;
  overflow: visible;
}
.hero__ring {
  transform-origin: 50px 55px;
  animation: heroRingIn 1.4s var(--ease-out-strong) both;
}
.hero__disc {
  transform-origin: 50px 55px;
  animation: heroDiscIn 1.1s .25s var(--ease-out-strong) both;
}
.hero__peak {
  transform-origin: 58px 100px;
  animation: heroPeakUp 1.2s .5s var(--ease-out-strong) both;
}

@keyframes heroRingIn {
  from { transform: scale(.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes heroDiscIn {
  from { transform: scale(.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes heroPeakUp {
  from { transform: translateY(60%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: pretty;
  font-variation-settings: "opsz" 96;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1s var(--ease-out-strong) both;
}
.hero__title .line:nth-child(1) > span { animation-delay: .35s; }
.hero__title .line:nth-child(2) > span { animation-delay: .5s; }
.hero__title .line:nth-child(3) > span { animation-delay: .65s; color: var(--ink-soft); }

@keyframes lineUp {
  to { transform: translateY(0); }
}

.hero__sub {
  margin: 28px 0 0;
  max-width: 540px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp .7s .3s var(--ease-out) both;
}

.hero__meta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0;
  animation: fadeUp .7s .45s var(--ease-out) both;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink);
  animation: pulse 2.4s infinite var(--ease-out);
}
@keyframes pulse {
  0%, 100% { opacity: .35; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero__scrollhint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0;
  animation: fadeUp .9s 1.4s var(--ease-out) both;
}
.hero__scrollhint svg { animation: float 2s infinite ease-in-out; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ============ Shared ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: .5;
}
.eyebrow--light { color: rgba(242, 237, 227, 0.65); }

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 18px 0 0;
  text-wrap: balance;
}
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.1;
}

/* ============ MANIFESTO ============ */
.manifesto {
  position: relative;
  /* generous height so we have scroll travel to reveal words */
  height: 220vh;
  padding: 0 var(--pad);
}
.manifesto__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
}
.manifesto__eyebrow { margin-bottom: 36px; }
.rule { display: none; }

.manifesto__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 5.4vw, 78px);
  line-height: 1.12;
  letter-spacing: -0.028em;
  margin: 0;
  font-variation-settings: "opsz" 72;
}
.manifesto__text span {
  display: inline-block;
  color: var(--ink);
  opacity: 0.14;
  transition: opacity .15s linear;
  margin-right: 0.12em;
}
.manifesto__text span.is-on { opacity: 1; }

/* ============ DUO ============ */
.duo {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  max-width: var(--container);
  margin: 0 auto;
}
.duo__head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 84px); }

.duo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .duo__grid { grid-template-columns: 1fr; } }

.duo__card {
  background: var(--cream-2);
  border-radius: 28px;
  padding: clamp(28px, 3.2vw, 48px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  transition: transform .6s var(--ease-out), background-color .6s var(--ease-out);
}
.duo__card.is-in {
  transform: translateY(0);
}
.duo__card:not(.is-in) {
  transform: translateY(40px);
}
.duo__card--alt { background: var(--ink); color: var(--cream); }

.duo__num {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  opacity: .55;
}

.duo__body h3 {
  font-size: clamp(28px, 3.2vw, 44px);
  margin: 0 0 14px;
}
.duo__lead {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.45;
  max-width: 38ch;
  opacity: .85;
  margin: 0 0 22px;
}
.duo__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14.5px;
}
.duo__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 4px;
  opacity: .8;
}
.duo__list li span { opacity: .6; }

.duo__viz { min-height: 200px; position: relative; }

/* Products viz: stack of UI cards */
.viz-stack {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
}
.viz-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  position: absolute;
  box-shadow: 0 10px 30px rgba(14,13,11,0.08);
  transition: transform .8s var(--ease-out);
}
.viz-card--a { width: 62%; left: 0; bottom: 36px; }
.viz-card--b { width: 50%; right: 0; bottom: 0; }
.viz-card--c { width: 64px; height: 64px; right: 14%; top: 0; border-radius: 50%; padding: 0; display: grid; place-items: center; }
.viz-card__bar { height: 10px; width: 40%; background: var(--ink); border-radius: 4px; margin-bottom: 12px; }
.viz-card__row { height: 8px; background: var(--cream-3); border-radius: 4px; margin: 6px 0; }
.viz-card__chip {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  background: var(--ink);
  color: var(--cream);
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.viz-card__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--ink); }

.duo__card.is-in .viz-card--a { transform: translateY(-4px) rotate(-2deg); }
.duo__card.is-in .viz-card--b { transform: translateY(-2px) rotate(3deg); }
.duo__card.is-in .viz-card--c { transform: translateY(-6px); }

/* Advisory viz: chart */
.viz-chart { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 12px; }
.viz-chart svg { width: 100%; height: 80%; color: var(--cream); }
.viz-chart__labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: .55;
}

/* ============ PEAK ============ */
.peak {
  position: relative;
  height: 260vh;
  background: var(--night);
  color: var(--cream);
}
.peak__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vh, 56px);
  padding: 8vh var(--pad);
}

/* SCENE: the authentic Arbelet mark, animated in three parts */
.peak__scene {
  width: min(34vmin, 320px);
  aspect-ratio: 100 / 110;
  flex-shrink: 0;
  position: relative;
  pointer-events: none;
  transform: translateY(var(--scene-y, 0px));
  transition: transform .08s linear;
}
.peak__logo {
  width: 100%;
  height: 100%;
  color: var(--cream);
  overflow: visible;
}

.peak__logo-ring {
  transform-origin: 50px 55px;
  transform: scale(var(--ring-scale, 0.7));
  opacity: var(--ring-opacity, 0);
  transition: transform .12s linear, opacity .2s linear;
}
.peak__logo-disc {
  transform-origin: 58px 60px;
  transform: scale(var(--disc-scale, 0.3));
  opacity: var(--disc-opacity, 0);
  transition: transform .12s linear, opacity .2s linear;
}
/* The peak rises from below — clip so it's only visible inside the logo bounds */
.peak__logo-peak-wrap {
  transform: translateY(var(--peak-y, 40px));
  transition: transform .08s linear;
}
.peak__logo-peak {
  opacity: var(--peak-opacity, 0);
  transition: opacity .2s linear;
}

/* COPY: lives below the scene in the flex column. Never overlaps. */
.peak__copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  opacity: var(--copy-opacity, 0);
  transform: translateY(var(--copy-y, 16px));
  transition: opacity .15s linear, transform .15s linear;
}

.peak__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 18px;
  font-variation-settings: "opsz" 96;
}
.peak__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  opacity: .82;
}
.peak-line { display: block; }

.peak__sub {
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(242, 237, 227, 0.7);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============ WORK ============ */
.work {
  padding: clamp(80px, 12vw, 160px) var(--pad) 0;
  max-width: var(--container);
  margin: 0 auto;
}
.work__head { margin-bottom: clamp(48px, 6vw, 80px); }

.work__stack {
  position: relative;
}
.work__card {
  position: sticky;
  top: 90px;
  background: var(--cream-2);
  border-radius: 32px;
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: 24px;
  min-height: min(86vh, 680px);
  align-items: center;
  border: 1px solid var(--line);
  box-shadow: 0 -8px 40px rgba(14,13,11,0.04);
}
.work__card--2 { background: var(--ink); color: var(--cream); border-color: transparent; }
.work__card--3 { background: var(--cream); }
.work__card--1 { top: 110px; }
.work__card--2 { top: 130px; }
.work__card--3 { top: 150px; }

@media (max-width: 880px) {
  .work__card { grid-template-columns: 1fr; min-height: auto; }
}

.work__meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 8px;
}
.work__card h3 {
  font-size: clamp(28px, 3.4vw, 48px);
  margin: 0 0 18px;
  letter-spacing: -0.028em;
}
.work__card > div:nth-child(2) { /* text col */
  align-self: center;
}
.work__card > p {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
  opacity: .82;
  max-width: 38ch;
}

/* mock screens */
.work__visual { width: 100%; }
.screen {
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(14,13,11,0.15), 0 4px 14px rgba(14,13,11,0.06);
  transform: rotate(-1deg);
  transition: transform .6s var(--ease-out);
}
.work__card--2 .screen { transform: rotate(1deg); }
.work__card--3 .screen { transform: rotate(-1.5deg); }
.work__card:hover .screen { transform: rotate(0); }

.screen__top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
}
.screen__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cream-3); }
.screen__title {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: .6;
}
.screen__body { padding: 22px; }
.screen__row { display: flex; justify-content: space-between; align-items: baseline; }
.screen__row--big { font-family: var(--font-display); }
.screen__row--big span { font-size: 12px; opacity: .6; text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--font-mono); }
.screen__row--big strong { font-size: clamp(28px, 3vw, 42px); font-weight: 500; letter-spacing: -0.02em; }
.screen__chart { width: 100%; height: 80px; margin: 14px 0 18px; }
.screen__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.screen__grid > div { display: flex; justify-content: space-between; padding: 8px 10px; background: var(--cream-2); border-radius: 8px; }
.screen__grid span { opacity: .55; }

.health-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.health-cell {
  background: var(--cream-2);
  padding: 14px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.health-cell span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; opacity: .55; }
.health-cell strong { font-family: var(--font-display); font-size: 28px; font-weight: 500; }
.health-cell em { font-family: var(--font-mono); font-style: normal; font-size: 11px; opacity: .55; }
.health-cell--wide { grid-column: 1 / -1; }
.health-cell--wide p { margin: 4px 0 0; font-size: 13px; line-height: 1.4; }

.ops-grid { display: grid; gap: 6px; }
.ops-row {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--cream-2);
  border-radius: 8px;
  font-size: 13px;
}
.ops-row span { font-family: var(--font-mono); font-size: 11.5px; opacity: .6; }
.ops-row strong { font-weight: 500; }
.ops-row em { font-family: var(--font-mono); font-style: normal; font-size: 11px; opacity: .65; }
.ops-row--warn { background: #2d2922; color: var(--cream); }
.ops-row--warn span, .ops-row--warn em { opacity: .85; }

/* ============ PRINCIPLES ============ */
.principles {
  padding: clamp(120px, 16vw, 200px) var(--pad);
  max-width: var(--container);
  margin: 0 auto;
}
.principles__head { margin-bottom: clamp(48px, 6vw, 96px); }
.principles__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.principle {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: clamp(20px, 3vw, 56px);
  padding: clamp(36px, 5vw, 72px) 0;
  border-top: 1px solid var(--line);
  align-items: start;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.principle:last-child { border-bottom: 1px solid var(--line); }
.principle.is-in { opacity: 1; transform: translateY(0); }

.principle__num {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  opacity: .5;
  padding-top: 10px;
}
.principle h3 {
  font-size: clamp(26px, 3vw, 42px);
  margin: 0;
}
.principle p {
  font-size: clamp(15px, 1.3vw, 17.5px);
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
  max-width: 50ch;
}
@media (max-width: 800px) {
  .principle { grid-template-columns: 1fr; gap: 14px; }
  .principle__num { padding: 0; }
}

/* ============ CONTACT ============ */
.contact {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 12vw, 160px) var(--pad) 40px;
  position: relative;
}
.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.contact__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 28px 0 56px;
  font-variation-settings: "opsz" 96;
}
.contact__title span { display: block; }
.contact__title span:nth-child(2) { color: rgba(242, 237, 227, 0.4); }

.contact__mail {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.028em;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(242, 237, 227, 0.25);
  transition: gap .35s var(--ease-out), border-color .35s;
}
.contact__mail:hover { gap: 30px; border-bottom-color: var(--cream); }
.contact__mail svg { flex-shrink: 0; }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 48px);
  margin-top: clamp(60px, 8vw, 100px);
}
@media (max-width: 700px) { .contact__grid { grid-template-columns: 1fr 1fr; } }

.contact__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: .55;
  margin: 0 0 12px;
}
.contact__val {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  opacity: .88;
}
.contact__val a { border-bottom: 1px solid rgba(242,237,227,0.3); transition: border-color .25s; }
.contact__val a:hover { border-bottom-color: var(--cream); }

/* Footer */
.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: clamp(60px, 8vw, 110px);
  padding-top: 36px;
  border-top: 1px solid rgba(242, 237, 227, 0.15);
  color: rgba(242, 237, 227, 0.55);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__logo {
  height: 24px;
  width: auto;
  filter: invert(1);
}
.footer__legal { text-align: right; display: flex; flex-direction: column; gap: 4px; }
@media (max-width: 720px) {
  .footer { grid-template-columns: auto 1fr; }
  .footer__legal { grid-column: 1 / -1; text-align: left; }
}

/* ============ A11y / Motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .manifesto { height: auto; padding-top: 80px; padding-bottom: 80px; }
  .manifesto__sticky { position: static; height: auto; }
  .manifesto__text span { opacity: 1; }
  .peak { height: auto; }
  .peak__pin { position: static; height: auto; padding: 120px 0; }
  .work__card { position: relative; top: auto !important; }
}
