@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/cabinet-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/cabinet-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/cabinet-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/cabinet-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #edf1f6;
  --surface: #f7f9fc;
  --surface-2: #dfe5ee;
  --ink: #101827;
  --muted: #596579;
  --line: #c6ceda;
  --accent: #365adf;
  --accent-ink: #f4f7ff;
  --shadow: rgb(33 53 90 / 0.14);
  --font: "Cabinet Grotesk", "Arial Narrow", sans-serif;
  --page: min(92vw, 1440px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --control-radius: 12px;
}

html[data-theme="dark"] {
  --bg: #0d121b;
  --surface: #151c28;
  --surface-2: #202a3a;
  --ink: #edf2fa;
  --muted: #9aa6ba;
  --line: #2e394b;
  --accent: #8298ff;
  --accent-ink: #0d121b;
  --shadow: rgb(2 7 18 / 0.45);
}

@media (prefers-color-scheme: dark) {
  html[data-theme="auto"] {
    --bg: #0d121b;
    --surface: #151c28;
    --surface-2: #202a3a;
    --ink: #edf2fa;
    --muted: #9aa6ba;
    --line: #2e394b;
    --accent: #8298ff;
    --accent-ink: #0d121b;
    --shadow: rgb(2 7 18 / 0.45);
  }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  transition: color 240ms var(--ease), background-color 240ms var(--ease);
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: var(--accent-ink); background: var(--accent); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  color: var(--accent-ink);
  background: var(--accent);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  width: var(--page);
  height: 72px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: flex;
  align-items: center;
  min-width: 0;
}

.wordmark-type {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: .3em;
  padding-bottom: .32rem;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1;
}

.wordmark-type span:last-child { color: var(--muted); }

.wordmark-type::after {
  content: "";
  position: absolute;
  left: 3.25rem;
  bottom: 0;
  width: 1.6rem;
  height: .28rem;
  background: var(--accent);
  clip-path: polygon(0 42%, 28% 42%, 39% 0, 52% 100%, 64% 42%, 100% 42%, 100% 62%, 69% 62%, 52% 100%, 35% 62%, 0 62%);
}

.wordmark-compact { display: none; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.8rem);
  font-size: .72rem;
  font-weight: 700;
}

.site-nav a:not(.nav-contact) {
  transition: color 180ms var(--ease);
}

.site-nav a:not(.nav-contact):hover { color: var(--accent); }

.theme-toggle {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  font-weight: 700;
}

.nav-contact {
  padding: .72rem 1rem;
  border-radius: 10px;
  color: var(--accent-ink);
  background: var(--accent);
  white-space: nowrap;
  transition: transform 180ms var(--ease), filter 180ms var(--ease);
}

.nav-contact:hover { transform: translateY(-2px); filter: brightness(1.06); }
.nav-contact:active { transform: scale(.97); }
.menu-toggle { display: none; }

.hero {
  width: var(--page);
  min-height: 100dvh;
  margin: auto;
  padding: 6rem 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4% 0 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 46% 42% at 50% 42%, color-mix(in oklch, var(--accent) 17%, transparent) 0%, color-mix(in oklch, var(--accent) 7%, transparent) 42%, transparent 76%),
    radial-gradient(circle 22rem at 18% 28%, color-mix(in oklch, var(--accent) 6%, transparent), transparent 72%);
  filter: blur(20px);
  opacity: .92;
}

.hero-role,
.plain-label {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  width: min(94vw, 1400px);
  margin: 0;
  font-size: clamp(3rem, 7.5vw, 7.8rem);
  font-weight: 700;
  letter-spacing: -.07em;
  line-height: .88;
}

.no-break { white-space: nowrap; }

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-signal {
  width: min(680px, 68vw);
  margin-top: clamp(1.3rem, 2.5vw, 2rem);
  padding: .5rem 0;
  display: grid;
  grid-template-columns: auto minmax(12rem, 1fr) auto;
  align-items: center;
  gap: clamp(.8rem, 1.8vw, 1.4rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  transition: width 360ms var(--ease);
}

.signal-caption {
  display: flex;
  flex-direction: column;
  gap: .05rem;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .075em;
  line-height: 1.25;
  text-transform: uppercase;
}

.signal-caption span:last-child {
  font-weight: 500;
  letter-spacing: .025em;
  text-transform: none;
}

.signal-window {
  width: 100%;
  height: clamp(2.15rem, 3vw, 2.8rem);
  overflow: hidden;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 12px 36px -18px var(--shadow);
  -webkit-user-select: none;
  user-select: none;
}

.signal-window canvas {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-user-select: none;
  user-select: none;
}

.hero-intro {
  max-width: 540px;
  margin: 2rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
}

.button {
  min-width: 8.5rem;
  padding: .95rem 1.3rem;
  border: 1px solid var(--ink);
  border-radius: var(--control-radius);
  font-size: .76rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(.97); }
.button-primary {
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 30px -20px var(--accent);
}
.button-secondary { color: var(--ink); background: transparent; }
.button-secondary:hover { color: var(--bg); background: var(--ink); }

.signal-toggle {
  padding: .35rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-size: .68rem;
  cursor: pointer;
}

.manifesto,
.capabilities,
.work,
.principles {
  width: var(--page);
  margin: auto;
  padding: clamp(7rem, 12vw, 12rem) 0;
}

.manifesto h2 {
  max-width: 1240px;
  margin: 0;
  font-size: clamp(3rem, 7.7vw, 7.8rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .94;
}

.manifesto h2 .word {
  display: inline-block;
  opacity: .14;
  will-change: opacity, filter;
}

.manifesto-copy {
  max-width: 720px;
  margin: clamp(4rem, 9vw, 9rem) 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.manifesto-copy p { margin: 0; color: var(--muted); }
.manifesto-copy p:first-child { color: var(--ink); font-size: 1.25rem; font-weight: 500; }

.capabilities h2,
.work h2,
.practice h2,
.principles h2 {
  max-width: 820px;
  margin: 0 0 3rem;
  font-size: clamp(2.7rem, 5.5vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .98;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  grid-auto-flow: dense;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 24px 70px -45px var(--shadow);
}

.capability {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface);
}

.capability-voice {
  grid-column: span 2;
  grid-row: span 2;
  color: var(--accent-ink);
  background: var(--accent);
}

.capability-runtime { grid-column: span 2; background: var(--surface-2); }
.capability-scale { background: var(--ink); color: var(--bg); }
.capability-context { background: var(--surface); }

.capability h3 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.capability p { max-width: 34ch; margin: 1rem 0 0; color: currentColor; opacity: .72; }
.capability-metric { margin-top: 3rem; }
.capability-metric strong { display: block; font-size: clamp(2.4rem, 6vw, 6rem); line-height: .86; letter-spacing: -.07em; }
.capability-metric span { display: block; margin-top: .75rem; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

.stacked-heading { max-width: 900px; margin-bottom: 4rem; }
.stacked-heading h2 { margin-bottom: 1.5rem; }
.stacked-heading p { max-width: 56ch; margin: 0; color: var(--muted); font-size: 1.15rem; }

.project-accordion {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.project-tab {
  min-width: 0;
  padding: 2rem;
  border: 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms var(--ease), background-color 200ms var(--ease);
}

.project-tab:last-of-type { border-right: 0; }
.project-tab:hover { background: color-mix(in oklch, var(--accent) 8%, var(--surface)); }
.project-tab.is-active { color: var(--accent-ink); background: var(--accent); }
.project-tab:active { transform: scale(.99); }

.project-tab-type { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.project-tab-body { display: block; }
.project-tab-title {
  display: block;
  max-width: 11ch;
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.project-tab-description { display: none; }
.project-tab-metric strong { display: block; font-size: 2rem; letter-spacing: -.04em; }
.project-tab-metric span { font-size: .7rem; opacity: .72; }

.project-detail {
  position: absolute;
  z-index: 4;
  inset: 0;
  padding: clamp(2rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 3rem;
  color: var(--accent-ink);
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.project-detail.is-visible { transform: scaleX(1); opacity: 1; pointer-events: auto; }
.project-detail h3 { max-width: 11ch; margin: 0; font-size: clamp(3rem, 6vw, 7rem); line-height: .88; letter-spacing: -.065em; }
.project-detail-copy { max-width: 540px; justify-self: end; }
.project-detail-copy p { font-size: 1.15rem; }
.project-detail-copy ul { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; padding: 0; margin: 2rem 0 0; list-style: none; font-size: .75rem; font-weight: 700; }
.project-detail-close { position: absolute; right: 2rem; top: 2rem; border: 1px solid currentColor; padding: .7rem 1rem; background: transparent; cursor: pointer; }

.practice {
  width: 100%;
  padding: clamp(7rem, 12vw, 12rem) max(4vw, calc((100vw - 1440px) / 2));
}

.practice-heading { max-width: 840px; margin-bottom: 4rem; }
.practice-heading h2 { margin-bottom: 0; }

.rhythm-stack { position: relative; }

.rhythm-card {
  position: sticky;
  top: 96px;
  min-height: min(72dvh, 680px);
  margin-bottom: 10dvh;
  padding: clamp(2rem, 5vw, 5.5rem);
  display: grid;
  grid-template-columns: .42fr 1fr;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  gap: clamp(2rem, 4vw, 4rem);
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 26px 80px -46px var(--shadow);
  transform-origin: center top;
  will-change: transform, opacity, filter;
}

.rhythm-card:nth-child(2) { background: var(--surface-2); }
.rhythm-card:nth-child(3) { color: var(--accent-ink); background: var(--accent); }
.rhythm-card:nth-child(4) { color: var(--bg); background: var(--ink); margin-bottom: 0; }
.rhythm-card-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid color-mix(in oklch, currentColor 20%, transparent);
}
.rhythm-verb { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.rhythm-mode { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; opacity: .52; }
.rhythm-card h3 {
  grid-column: 2;
  align-self: center;
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: .9;
  letter-spacing: -.065em;
}
.rhythm-card-footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(2rem, 6vw, 7rem);
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in oklch, currentColor 20%, transparent);
}
.rhythm-description {
  max-width: 48ch;
  margin: 0;
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  opacity: .76;
}
.rhythm-notes {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.rhythm-notes > div { min-width: 0; }
.rhythm-note-label {
  display: block;
  margin-bottom: .8rem;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .5;
}
.rhythm-notes ul {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: .82rem;
  font-weight: 700;
}
.rhythm-notes li { position: relative; }
.rhythm-notes li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -.7rem;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: .4;
}
.rhythm-notes strong {
  display: block;
  max-width: 18ch;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.2;
}

.principles {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.principles-copy h2 { margin-bottom: 1.5rem; }
.principles-copy p { max-width: 42ch; color: var(--muted); }
.principle-carousel { min-width: 0; }

.principle-stage {
  min-height: 430px;
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface-2);
  box-shadow: 0 22px 60px -42px var(--shadow);
  overflow: hidden;
}

.principle-stage h3 { max-width: 11ch; margin: 0; font-size: clamp(2.6rem, 5vw, 5.5rem); line-height: .94; letter-spacing: -.06em; }
.principle-stage p { max-width: 46ch; margin: 3rem 0 0 auto; color: var(--muted); font-size: 1.1rem; }
.principle-slide { will-change: transform, opacity, filter; }

.carousel-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-controls button {
  padding: .75rem 1rem;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition: color 180ms var(--ease), background-color 180ms var(--ease), transform 180ms var(--ease);
}

.carousel-controls button:hover { color: var(--bg); background: var(--ink); }
.carousel-controls button:active { transform: scale(.97); }
.carousel-controls span { text-align: center; color: var(--muted); font-size: .75rem; }

.contact {
  min-height: 100dvh;
  padding: clamp(4rem, 8vw, 8rem) max(4vw, calc((100vw - 1440px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--accent-ink);
  background: var(--accent);
}

.contact > p { margin: 0; font-size: .8rem; font-weight: 700; }
.contact h2 { max-width: 1100px; margin: 10vh 0; font-size: clamp(3.5rem, 8.5vw, 9rem); font-weight: 500; line-height: .88; letter-spacing: -.07em; }

.contact-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 0 0 .4rem;
  border-bottom: 2px solid currentColor;
  font-size: clamp(1rem, 2.4vw, 2.4rem);
  overflow-wrap: anywhere;
  transition: opacity 180ms var(--ease);
}

.contact-link:hover { opacity: .66; }

.contact footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-top: 1.2rem;
  margin-top: 10vh;
  border-top: 1px solid color-mix(in oklch, currentColor 44%, transparent);
  font-size: .72rem;
  font-weight: 700;
}

.contact footer > a { justify-self: end; }
.social-links { display: flex; gap: 1.5rem; }

@media (max-width: 900px) {
  .site-header { height: 68px; }
  .wordmark-type { display: none; }
  .wordmark-compact {
    position: relative;
    display: block;
    padding-bottom: .25rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.08em;
    line-height: 1;
  }
  .wordmark-compact::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1rem;
    height: 2px;
    background: var(--accent);
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem .8rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg);
    font-size: .72rem;
    font-weight: 700;
    z-index: 4;
  }
  .menu-toggle i { width: 14px; height: 1px; background: currentColor; }
  .menu-toggle[aria-expanded="true"] { color: var(--ink); background: var(--surface); }
  .site-nav {
    position: fixed;
    z-index: 3;
    inset: 0;
    padding: 18vw 7vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--ink);
    background: var(--surface);
    font-size: clamp(1.8rem, 8vw, 3.8rem);
    transform: translateY(-101%);
    transition: transform 420ms var(--ease);
  }
  .site-nav.is-open { transform: none; }
  .nav-contact { font-size: 1rem; }
  .hero h1 { font-size: clamp(3.2rem, 11.5vw, 6.8rem); }
  .manifesto-copy { grid-template-columns: 1fr; margin-left: 20%; }
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, minmax(200px, auto)); }
  .capability-voice { grid-column: span 2; grid-row: span 2; }
  .capability-runtime { grid-column: span 2; }
  .project-accordion { min-height: auto; display: block; border: 0; background: transparent; }
  .project-tab { width: 100%; min-height: 320px; border: 1px solid var(--line); border-bottom: 0; }
  .project-tab:last-of-type { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .project-tab-body { margin: 3rem 0; }
  .project-tab-title { max-width: 16ch; font-size: clamp(2.2rem, 7vw, 4.4rem); }
  .project-tab-description {
    display: block;
    max-width: 52ch;
    margin-top: 1.5rem;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
  }
  .project-tab.is-active .project-tab-description { color: currentColor; opacity: .78; }
  .project-detail { display: none; }
  .principles { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --page: 90vw; }
  .hero { min-height: 780px; padding-top: 5rem; }
  .hero h1 { font-size: clamp(3.25rem, 15vw, 5.6rem); line-height: .92; }
  .hero-line { display: block; white-space: normal; }
  .hero-signal {
    width: min(86%, 20rem);
    margin-top: .75rem;
    grid-template-columns: 1fr auto;
  }
  .signal-caption { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }
  .signal-window { height: 2.15rem; }
  .hero-intro { max-width: 32ch; }
  .hero-actions { width: 100%; flex-direction: column; }
  .button { width: 100%; }
  .manifesto, .capabilities, .work, .principles { padding: 7rem 0; }
  .manifesto h2 { font-size: clamp(3rem, 14vw, 5.4rem); }
  .manifesto-copy { margin: 4rem 0 0; }
  .capabilities h2, .work h2, .practice h2, .principles h2 { font-size: clamp(2.8rem, 13vw, 4.7rem); }
  .bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .capability, .capability-voice, .capability-runtime { grid-column: auto; grid-row: auto; min-height: 300px; }
  .capability-voice { min-height: 440px; }
  .project-tab { min-height: 380px; }
  .practice { padding-left: 5vw; padding-right: 5vw; }
  .rhythm-card { top: 82px; min-height: 74dvh; grid-template-columns: 1fr; }
  .rhythm-card h3, .rhythm-card-footer { grid-column: 1; }
  .rhythm-card h3 { align-self: center; font-size: clamp(3.2rem, 14vw, 5.5rem); }
  .rhythm-card-footer { grid-template-columns: 1fr; gap: 1.8rem; }
  .rhythm-notes { grid-template-columns: 1.15fr .85fr; gap: 1rem; }
  .principle-stage { min-height: 460px; }
  .contact { padding-left: 5vw; padding-right: 5vw; }
  .contact h2 { font-size: clamp(3.4rem, 16vw, 5.8rem); }
  .contact footer { grid-template-columns: 1fr auto; align-items: start; }
  .social-links { grid-column: 1 / -1; grid-row: 2; }
  .contact footer > a { justify-self: end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .manifesto h2 .word { opacity: 1; filter: none; }
  .rhythm-card { transform: none !important; opacity: 1 !important; filter: none !important; }
}
