:root {
  --limestone: #f1ece2;
  --ivory: #fbf8f1;
  --ink: #20221d;
  --olive: #344136;
  --olive-deep: #273129;
  --cobre: #7b4332;
  --terracotta: #a36349;
  --brass: #ac8e59;
  --brass-light: #b99c66;
  --brass-pale: #e1c996;
  --stone: #625f57;
  --line: rgba(32, 34, 29, 0.18);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(5rem, 10vw, 9rem);
  --max-width: 82rem;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  background: var(--limestone);
}

body {
  margin: 0;
  background: var(--limestone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-gated { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

::selection { color: var(--ivory); background: var(--cobre); }

.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;
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ivory);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

.section { padding: var(--section-space) var(--gutter); }

.section__inner {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span { color: var(--stone); }
.eyebrow--light { color: rgba(251, 248, 241, 0.72); }

h1, h2, h3, p, blockquote { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(4rem, 7.2vw, 7.4rem); line-height: 0.9; }
h2 { margin-bottom: 1.75rem; font-size: clamp(3rem, 5.1vw, 5.5rem); line-height: 0.96; }
h3 { margin-bottom: 1rem; font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1; }

p { margin-bottom: 1.25rem; }
.lead { font-size: clamp(1.18rem, 1.7vw, 1.52rem); line-height: 1.55; }

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.button:hover { background: var(--olive); transform: translateY(-2px); }
.button--light { border-color: var(--ivory); background: var(--ivory); color: var(--olive-deep); }
.button--light:hover { background: transparent; color: var(--ivory); }

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  background: var(--brass);
  content: "";
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}

.text-link:hover::after { transform: scaleX(1); }
.text-link--light { color: var(--ivory); }

/* Age acknowledgement */
.age-gate {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  overflow: hidden;
  place-items: center;
  padding: 2rem var(--gutter);
  background:
    radial-gradient(circle at 72% 15%, rgba(172, 142, 89, 0.2), transparent 31rem),
    linear-gradient(145deg, var(--olive-deep), #172019);
  color: var(--ivory);
}

.age-gate[hidden] { display: none; }

.age-gate__arch {
  position: absolute;
  top: 8%;
  right: -5%;
  width: min(48vw, 42rem);
  height: 86%;
  border: 1px solid rgba(251, 248, 241, 0.15);
  border-bottom: 0;
  border-radius: 24rem 24rem 0 0;
}

.age-gate__arch::after {
  position: absolute;
  inset: 2rem;
  border: 1px solid rgba(172, 142, 89, 0.18);
  border-bottom: 0;
  border-radius: inherit;
  content: "";
}

.age-gate__inner { position: relative; width: min(100%, 42rem); }
.gate-mark { width: 3.25rem; margin-bottom: 2.5rem; }
.gate-mark path { fill: none; stroke: var(--brass); stroke-width: 1.35; }
.age-gate h2 { max-width: 11ch; margin-bottom: 1.75rem; font-size: clamp(3.4rem, 8vw, 6.5rem); }
.age-gate p:not(.eyebrow) { max-width: 38rem; color: rgba(251, 248, 241, 0.75); font-size: 1.06rem; }
.age-gate small { display: block; margin-top: 2rem; color: rgba(251, 248, 241, 0.52); }
.age-gate__actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(32, 34, 29, 0.1);
  background: rgba(241, 236, 226, 0.93);
  box-shadow: 0 0.5rem 2.5rem rgba(32, 34, 29, 0.05);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand__mark { width: 2.25rem; height: auto; }
.brand__mark path { fill: none; stroke: currentColor; stroke-width: 1.35; }
.brand__type { display: grid; line-height: 1; text-transform: uppercase; }
.brand__type > span { font-family: var(--display); font-size: 1rem; letter-spacing: 0.12em; }
.brand__type small { margin-top: 0.4rem; font-size: 0.55rem; letter-spacing: 0.32em; }

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.25rem); }
.site-nav a {
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:not(.nav-cta) { position: relative; padding-block: 0.6rem; }
.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  background: var(--brass);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 0.7rem 1rem; border: 1px solid var(--ink); transition: background 200ms, color 200ms; }
.nav-cta:hover { background: var(--ink); color: var(--ivory); }
.menu-toggle { display: none; width: 3rem; height: 3rem; padding: 0.7rem; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 0.42rem 0; background: currentColor; transition: transform 220ms ease; }

/* Hero */
.hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  background: var(--limestone);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8.5rem clamp(2rem, 5vw, 6.5rem) 4rem var(--gutter);
}

.hero__content h1 { max-width: 8.7ch; margin-bottom: 2rem; }
.hero__lede { max-width: 39rem; color: var(--stone); font-size: clamp(1.08rem, 1.45vw, 1.3rem); }
.hero__actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 1rem; }
.status-line { display: flex; align-items: center; gap: 0.7rem; margin: 3rem 0 0; color: var(--stone); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; }
.status-line span { width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--terracotta); }

.hero__visual { position: relative; min-height: 42rem; margin: 1.1rem 1.1rem 1.1rem 0; overflow: hidden; border-radius: 30rem 30rem 0 0; }
.hero__visual picture, .hero__visual img { width: 100%; height: 100%; }
.hero__visual img { object-fit: cover; object-position: 60% center; }
.hero__visual::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(23, 32, 25, 0.18), transparent 42%); content: ""; pointer-events: none; }
.hero__visual figcaption, .vessel__visual figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.7rem;
  background: rgba(23, 32, 25, 0.7);
  color: rgba(251, 248, 241, 0.82);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

/* Manifesto */
.manifesto { position: relative; overflow: hidden; background: var(--ivory); }
.manifesto__watermark { position: absolute; right: -4rem; bottom: -8rem; width: min(36vw, 30rem); color: var(--brass); opacity: 0.12; }
.manifesto__watermark path { fill: none; stroke: currentColor; stroke-width: 1; }
.manifesto__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.75fr); gap: clamp(3rem, 9vw, 9rem); }
.manifesto h2 { max-width: 10ch; }
.manifesto__copy { padding-top: 4.6rem; }
.manifesto__copy > p { max-width: 38rem; color: var(--stone); }
.manifesto__copy blockquote { margin: 4rem 0 0; padding-left: 1.5rem; border-left: 1px solid var(--brass); font-family: var(--display); font-size: clamp(2.1rem, 3.2vw, 3.5rem); line-height: 1; }

/* Section heading */
.section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.65fr); gap: clamp(2rem, 8vw, 8rem); align-items: end; margin-bottom: clamp(3rem, 6vw, 6rem); }
.section-heading h2 { max-width: 10ch; margin-bottom: 0; }
.section-heading > p { max-width: 36rem; margin: 0 0 0.65rem; color: var(--stone); }
.section-heading--compact { margin-bottom: clamp(3rem, 5vw, 5rem); }

/* Collection */
.collection { background: #ddd6c9; }
.expressions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 3rem); }
.expression { position: relative; }
.expression__image { position: relative; aspect-ratio: 4 / 5; margin: 0; overflow: hidden; background: var(--ivory); }
.expression__image picture, .expression__image img { width: 100%; height: 100%; }
.expression__image img { object-fit: cover; transition: transform 900ms var(--ease); }
.expression:hover .expression__image img { transform: scale(1.025); }
.concept-label { position: absolute; top: 1rem; left: 1rem; padding: 0.55rem 0.7rem; background: rgba(251, 248, 241, 0.88); font-size: 0.58rem; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase; backdrop-filter: blur(8px); }
.expression__copy { position: relative; min-height: 25rem; padding: clamp(2rem, 4vw, 4rem); background: var(--ivory); }
.expression--cobre .expression__copy { background: var(--cobre); color: var(--ivory); }
.expression--cobre .expression__copy > p:not(.eyebrow) { color: rgba(251, 248, 241, 0.72); }
.expression--cobre .expression__number { color: var(--brass-pale); }
.expression__copy > p:not(.eyebrow) { max-width: 35rem; color: var(--stone); }
.expression__copy h3 { font-size: clamp(3.8rem, 6vw, 6.2rem); }
.expression__number { position: absolute; top: 2rem; right: 2rem; color: var(--brass); font-size: 0.68rem; letter-spacing: 0.16em; }
.profile { display: flex; flex-wrap: wrap; gap: 0; margin: 2.5rem 0 0; padding: 0; list-style: none; }
.profile li { font-size: 0.64rem; font-weight: 650; letter-spacing: 0.13em; text-transform: uppercase; }
.profile li + li::before { margin-inline: 0.65rem; color: var(--brass); content: "·"; }
.collection__note { max-width: 48rem; margin: 2rem 0 0 auto; color: var(--stone); font-size: 0.75rem; }

/* Standards */
.standards { background: var(--limestone); }
.principles { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.principles article { min-height: 19rem; padding: 1.5rem clamp(1.25rem, 2vw, 2.2rem) 2rem 0; border-right: 1px solid var(--line); }
.principles article + article { padding-left: clamp(1.25rem, 2vw, 2.2rem); }
.principles article:last-child { border-right: 0; }
.principles span { color: var(--brass); font-size: 0.67rem; letter-spacing: 0.15em; }
.principles h3 { margin-top: 4rem; font-size: clamp(1.75rem, 2.5vw, 2.5rem); }
.principles p { margin-bottom: 0; color: var(--stone); font-size: 0.94rem; }

/* Vessel */
.vessel { background: var(--ivory); }
.vessel__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.82fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.vessel__visual { position: relative; aspect-ratio: 4 / 5; margin: 0; overflow: hidden; border-radius: 22rem 22rem 0 0; }
.vessel__visual picture, .vessel__visual img { width: 100%; height: 100%; }
.vessel__visual img { object-fit: cover; object-position: 68% center; transform: scale(1.35); }
.vessel__copy h2 { max-width: 9ch; }
.vessel__copy > p { color: var(--stone); }
.material-notes { margin: 3rem 0; border-block: 1px solid var(--line); }
.material-notes div { display: grid; grid-template-columns: 5rem 1fr; gap: 1rem; padding: 1.2rem 0; }
.material-notes div + div { border-top: 1px solid var(--line); }
.material-notes dt { font-family: var(--display); font-size: 1.3rem; }
.material-notes dd { margin: 0; color: var(--stone); font-size: 0.82rem; letter-spacing: 0.04em; }

/* Founder */
.founder { background: var(--limestone); }
.founder__grid { display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(20rem, 1fr); gap: clamp(3rem, 10vw, 10rem); }
.founder h2 { max-width: 8ch; }
.founder blockquote { margin: 0; padding: 0 0 0 clamp(1.5rem, 3vw, 3rem); border-left: 1px solid var(--brass); }
.founder blockquote > p { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.25; }
.founder blockquote footer { display: grid; margin-top: 3rem; }
.signature { font-family: var(--display); font-size: 1.5rem; font-style: italic; }
.founder blockquote small { color: var(--stone); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* Partnerships */
.partnerships { position: relative; overflow: hidden; background: var(--olive-deep); color: var(--ivory); }
.partnerships__arch { position: absolute; top: -20%; right: -8%; width: min(48vw, 42rem); height: 120%; border: 1px solid rgba(172, 142, 89, 0.15); border-bottom: 0; border-radius: 30rem 30rem 0 0; }
.partnerships__inner { position: relative; }
.partnerships__intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.6fr); gap: 2rem 8rem; }
.partnerships__intro .eyebrow { grid-column: 1 / -1; }
.partnerships__intro h2 { max-width: 8ch; }
.partnerships__intro > p:last-child { max-width: 34rem; color: rgba(251, 248, 241, 0.7); font-size: 1.08rem; }
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 5rem; border-block: 1px solid rgba(251, 248, 241, 0.18); }
.partner-grid div { min-height: 11rem; padding: 1.5rem 1.5rem 1.5rem 0; border-right: 1px solid rgba(251, 248, 241, 0.18); }
.partner-grid div + div { padding-left: 1.5rem; }
.partner-grid div:last-child { border-right: 0; }
.partner-grid span { color: var(--brass-light); font-size: 0.65rem; letter-spacing: 0.15em; }
.partner-grid p { margin: 2.75rem 0 0; font-family: var(--display); font-size: 1.35rem; line-height: 1.25; }
.partnerships__cta { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-top: 5rem; }
.partnerships__cta .eyebrow { margin-bottom: 0.75rem; }
.email-link { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 3rem); text-decoration-color: rgba(172, 142, 89, 0.65); text-decoration-thickness: 1px; text-underline-offset: 0.25em; }

/* Footer */
.site-footer { padding: 4rem var(--gutter) 2rem; background: #171915; color: var(--ivory); }
.site-footer__top, .site-footer__bottom { width: min(100%, var(--max-width)); margin-inline: auto; }
.site-footer__top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-bottom: 3rem; }
.site-footer__top > p { max-width: 22rem; margin: 0; color: rgba(251, 248, 241, 0.62); text-align: right; }
.brand--footer .brand__mark path { stroke: var(--brass); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(251, 248, 241, 0.13); color: rgba(251, 248, 241, 0.5); font-size: 0.62rem; letter-spacing: 0.04em; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom p:last-child { max-width: 40rem; text-align: right; }

/* Progressive motion */
.js [data-reveal] { opacity: 0; transform: translateY(1rem); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 68rem) {
  .site-nav { gap: 1rem; }
  .site-nav a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 5.25rem; }
  .hero__content { padding-top: 5rem; padding-bottom: 4rem; }
  .hero__visual { min-height: 62vw; margin: 0 var(--gutter) var(--gutter); border-radius: 24rem 24rem 0 0; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .principles article:nth-child(2) { border-right: 0; }
  .principles article:nth-child(3), .principles article:nth-child(4) { border-top: 1px solid var(--line); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid div:nth-child(2) { border-right: 0; }
  .partner-grid div:nth-child(3), .partner-grid div:nth-child(4) { border-top: 1px solid rgba(251, 248, 241, 0.18); }
}

@media (max-width: 48rem) {
  :root { --section-space: 5rem; }
  h1 { font-size: clamp(3.6rem, 16vw, 5.6rem); }
  h2 { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .age-gate { align-items: end; padding-bottom: 3rem; }
  .age-gate__arch { top: 5%; right: -36%; width: 100%; height: 75%; }
  .age-gate__actions { align-items: stretch; flex-direction: column; gap: 0.65rem; }
  .age-gate .text-link { align-self: center; }
  .site-header { min-height: 4.75rem; }
  .brand__mark { width: 2rem; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 var(--gutter);
    overflow: hidden;
    background: var(--limestone);
    opacity: 0;
    visibility: hidden;
    transition: max-height 300ms ease, opacity 220ms ease, visibility 220ms ease, padding 300ms ease;
  }
  .site-nav.is-open { max-height: 30rem; padding-top: 1.25rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); opacity: 1; visibility: visible; }
  .site-nav a:not(.nav-cta) { display: block; padding: 0.7rem 0; }
  .nav-cta { margin-top: 0.5rem; text-align: center; }
  .hero { padding-top: 4.75rem; }
  .hero__content { padding: 4.5rem var(--gutter) 3.5rem; }
  .hero__content h1 { max-width: 9ch; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 0.75rem; }
  .hero__actions .text-link { align-self: flex-start; }
  .hero__visual { min-height: 118vw; margin: 0; border-radius: 15rem 15rem 0 0; }
  .hero__visual img { object-position: 61% center; }
  .hero__visual figcaption { max-width: calc(100% - 2rem); text-align: right; }
  .manifesto__grid, .section-heading, .vessel__grid, .founder__grid, .partnerships__intro { grid-template-columns: 1fr; gap: 2rem; }
  .manifesto__copy { padding-top: 0; }
  .manifesto__copy blockquote { margin-top: 3rem; }
  .section-heading { align-items: start; }
  .section-heading h2 { max-width: 11ch; }
  .expressions { grid-template-columns: 1fr; gap: 3rem; }
  .expression__copy { min-height: 0; padding: 2rem 1.5rem 2.5rem; }
  .expression__number { top: 1.5rem; right: 1.5rem; }
  .principles, .partner-grid { grid-template-columns: 1fr; }
  .principles article, .principles article + article, .partner-grid div, .partner-grid div + div { min-height: auto; padding: 1.5rem 0 2rem; border-right: 0; }
  .principles article + article { border-top: 1px solid var(--line); }
  .principles h3 { margin-top: 2rem; }
  .partner-grid div + div { border-top: 1px solid rgba(251, 248, 241, 0.18); }
  .partner-grid p { margin-top: 1.5rem; }
  .vessel__visual { order: 2; }
  .vessel__copy { order: 1; }
  .vessel__visual img { transform: scale(1.18); }
  .founder blockquote { padding-left: 1.25rem; }
  .partnerships__intro .eyebrow { grid-column: auto; }
  .partnerships__cta, .site-footer__top, .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .partnerships__cta { margin-top: 4rem; }
  .partnerships__cta .button { width: 100%; }
  .email-link { overflow-wrap: anywhere; }
  .site-footer__top > p, .site-footer__bottom p:last-child { text-align: left; }
}

@media (max-width: 30rem) {
  .button { width: 100%; }
  .status-line { align-items: flex-start; }
  .material-notes div { grid-template-columns: 1fr; gap: 0.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .expression:hover .expression__image img { transform: none; }
}
