/* SOUS CHEF — restaurant quality, delivered differently.
   Static site. Headline: Sackers Gothic. Body: Cheltenham Condensed. */

@font-face {
  font-family: 'Sackers Gothic';
  src: url('/fonts/SackersGothicHeavy.woff2') format('woff2'),
       url('/fonts/SackersGothicHeavy.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cheltenham Condensed';
  src: url('/fonts/CheltenhamProCd.woff2') format('woff2'),
       url('/fonts/CheltenhamProCd.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #060606;
  --ink: #0d0d0c;
  --charcoal: #171716;
  --charcoal-2: #222220;
  --white: #f5f2ea;
  --paper: #ffffff;
  --kraft: #c29a6b;
  --stone: #a9a59b;
  --stone-dim: #8f8b82;
  --line: rgba(245, 242, 234, 0.16);
  --line-dark: rgba(6, 6, 6, 0.16);
  --gutter: clamp(20px, 5vw, 88px);
  --section: clamp(96px, 16vh, 200px);
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
  --display: 'Sackers Gothic', sans-serif;
  --text: 'Cheltenham Condensed', Georgia, serif;
}

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

html {
  background: var(--black);
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--text);
  font-weight: 500;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.42;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, .display {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.96;
}

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

.skip {
  text-transform: uppercase;
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--white);
  color: var(--black);
  padding: 14px 20px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.1em;
}
.skip:focus { top: 16px; }

.wrap {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--gutter);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(6, 6, 6, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.nav.scrolled::before { opacity: 1; }
.nav.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom-color: var(--line);
}
.nav-mark {
  text-transform: uppercase;
  font-family: var(--display);
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 34px);
}
.nav-links a {
  white-space: nowrap;
  text-transform: uppercase;
  font-family: var(--display);
  font-size: clamp(13px, 0.95vw, 15px);
  letter-spacing: 0.12em;
  color: var(--stone);
  padding: 8px 0;
  transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--white); }
.nav-links a.nav-cta {
  color: var(--white);
  border: 1px solid var(--white);
  padding: 12px 22px;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-links a.nav-cta:hover, .nav-links a.nav-cta:focus-visible { background: var(--white); color: var(--black); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--white);
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.12em;
  padding: 12px 18px;
  cursor: pointer;
}

/* ---------- BUTTONS ---------- */
.btn {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  font-family: var(--display);
  font-size: clamp(14px, 1.05vw, 17px);
  letter-spacing: 0.12em;
  padding: 20px 38px;
  border: 1px solid var(--white);
  color: var(--white);
  text-align: center;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.btn:hover, .btn:focus-visible { background: var(--white); color: var(--black); }
.btn.solid { background: var(--white); color: var(--black); }
.btn.solid:hover, .btn.solid:focus-visible { background: var(--kraft); border-color: var(--kraft); color: var(--black); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

.link-cta {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-size: clamp(14px, 1.05vw, 17px);
  letter-spacing: 0.12em;
  padding: 14px 0;
  border-bottom: 1px solid var(--white);
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.4s var(--ease);
}
.link-cta::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}
.link-cta:hover, .link-cta:focus-visible { color: var(--kraft); border-color: var(--kraft); }
.link-cta:hover::after, .link-cta:focus-visible::after { width: 48px; }

/* ---------- SHARED SECTION TYPE ---------- */
section { position: relative; }
.label {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--display);
  font-size: clamp(13px, 0.95vw, 15px);
  letter-spacing: 0.22em;
  color: var(--stone);
  margin-bottom: clamp(28px, 4vh, 48px);
}
.label::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--kraft);
}
.headline {
  font-size: clamp(30px, 6.3vw, 106px);
  letter-spacing: 0.015em;
}
.lede {
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 1.24;
  max-width: 26em;
  color: var(--white);
}
.body {
  max-width: 34em;
  color: #d9d5cb;
}

/* ---------- HERO ---------- */
.hero {
  padding-top: clamp(104px, 14vh, 160px);
  background: var(--black);
  overflow: hidden;
}
.hero-eyebrow {
  text-transform: uppercase;
  font-family: var(--display);
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.26em;
  color: var(--stone);
  margin-bottom: clamp(20px, 3vh, 36px);
}
.hero h1 {
  font-size: clamp(40px, 11.5vw, 195px);
  letter-spacing: 0.015em;
  line-height: 0.88;
  white-space: nowrap;
  margin-left: -0.03em;
}
.hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(28px, 5vw, 96px);
  margin-top: clamp(24px, 4vh, 44px);
}
.hero-statement {
  font-size: clamp(22px, 2.68vw, 45px);
  line-height: 1.1;
}
.hero-side p {
  font-size: clamp(22px, 1.9vw, 31px);
  line-height: 1.25;
  color: #d9d5cb;
  margin-bottom: clamp(24px, 3.5vh, 36px);
}
.hero > .wrap { position: relative; z-index: 2; }
.hero-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -8vw;
}
.hero-visual img { width: 100%; height: auto; }
.hero-visual::before, .hero-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-visual::before { top: 0; height: 12%; background: linear-gradient(180deg, var(--black), rgba(6, 6, 6, 0)); }
.hero-visual::after { bottom: 0; height: 14%; background: linear-gradient(0deg, var(--black), rgba(6, 6, 6, 0)); }
.hero-roster {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 28px;
  padding-top: clamp(8px, 2vh, 24px);
  padding-bottom: clamp(36px, 6vh, 64px);
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  font-family: var(--display);
  font-size: clamp(12px, 0.88vw, 14px);
  letter-spacing: 0.1em;
  color: var(--stone);
}

/* ---------- THE IDEA ---------- */
.idea { padding: var(--section) 0; }
.idea-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 120px);
  align-items: end;
  margin-top: clamp(40px, 7vh, 88px);
}
.idea-points {
  margin-top: clamp(32px, 5vh, 56px);
  border-top: 1px solid var(--line);
}
.idea-points li {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(21px, 1.7vw, 28px);
}
.idea-points span, .principles span, .food-list span {
  text-transform: uppercase;
}
.idea-points span {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--kraft);
  min-width: 2.4em;
}

/* ---------- MEDIA / REVEALS ---------- */
.media {
  position: relative;
  overflow: hidden;
  background: #000;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.media.r-16x9 { aspect-ratio: 16 / 9; }
.media.r-4x5 { aspect-ratio: 4 / 5; }
a.media:hover img, .brand:hover .brand-hero img, .pack-item:hover .media img { transform: scale(1.025); }

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js .reveal.in { opacity: 1; transform: none; }
.js .media.reveal { transform: none; clip-path: inset(0 0 14% 0); transition: opacity 1.4s var(--ease), clip-path 1.6s var(--ease); }
.js .media.reveal.in { clip-path: inset(0 0 0 0); }
.js .media.reveal img { transform: scale(1.06); }
.js .media.reveal.in img { transform: scale(1); }

/* ---------- BRANDS ---------- */
.brands { padding-top: var(--section); }
.brands-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 96px);
  align-items: end;
  padding-bottom: clamp(56px, 9vh, 112px);
}
.brand {
  border-top: 1px solid var(--line);
  padding: clamp(40px, 7vh, 88px) 0 clamp(64px, 11vh, 136px);
}
.brand-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: clamp(24px, 4vh, 44px);
  text-transform: uppercase;
  font-family: var(--display);
  font-size: clamp(13px, 0.95vw, 15px);
  letter-spacing: 0.2em;
  color: var(--stone);
}
.brand-top .brand-accent { color: var(--accent, var(--kraft)); }
.brand-name {
  font-size: clamp(30px, 5.9vw, 99px);
  margin-bottom: clamp(28px, 5vh, 56px);
}
.brand-hero { width: 100%; }
.brand-body {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 3fr);
  gap: clamp(28px, 4.5vw, 88px);
  margin-top: clamp(32px, 6vh, 72px);
  align-items: start;
}
.brand-position {
  font-size: clamp(28px, 2.9vw, 50px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.brand-intro .body { margin-bottom: clamp(24px, 4vh, 40px); }
.logo-plate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 340px);
  aspect-ratio: 3 / 2;
  padding: 14px;
  background: var(--plate, #ffffff);
  margin-bottom: clamp(24px, 4vh, 40px);
}
.logo-plate img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.spec h4 {
  font-size: clamp(13px, 0.95vw, 15px);
  letter-spacing: 0.2em;
  color: var(--stone);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.spec li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(20px, 1.5vw, 25px);
  line-height: 1.25;
}
.spec + .spec { margin-top: clamp(28px, 4vh, 44px); }
.brand-pack figcaption, .pack-item figcaption {
  text-transform: uppercase;
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(12px, 0.85vw, 14px);
  letter-spacing: 0.16em;
  color: var(--stone);
  line-height: 1.5;
}

.cafe-break {
  border-top: 1px solid var(--line);
  padding: clamp(56px, 10vh, 120px) 0 clamp(8px, 2vh, 24px);
}


.next-up {
  border-top: 1px solid var(--line);
  padding: clamp(36px, 6vh, 64px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.next-up p { font-size: clamp(22px, 1.9vw, 31px); max-width: 24em; }
.next-up .logo-plate { margin-bottom: 0; width: min(100%, 300px); aspect-ratio: 16 / 9; }

/* ---------- PACKAGING ---------- */
.packaging { padding: var(--section) 0; background: var(--ink); }
.pack-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 96px);
  align-items: end;
}
.pack-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 28px);
  margin-top: clamp(48px, 8vh, 104px);
}
.pack-item:nth-child(n+5) { grid-column: span 1; }
.pack-grid .pack-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 2vw, 36px);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.2;
}
.pack-item h3 {
  font-size: clamp(16px, 1.25vw, 21px);
  letter-spacing: 0.08em;
  margin-top: 18px;
}
.pack-item figcaption { margin-top: 8px; }
.principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 5vw, 96px);
  margin-top: clamp(56px, 9vh, 120px);
  border-top: 1px solid var(--line);
}
.principles li {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: clamp(22px, 3.4vh, 36px) 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.16;
}
.principles span {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--kraft);
  min-width: 2.4em;
}

/* ---------- FOOD ---------- */
.food { padding: var(--section) 0; }
.food-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 6vw, 120px);
  margin-top: clamp(40px, 7vh, 88px);
  align-items: start;
}
.food-list { border-top: 1px solid var(--line); margin-top: clamp(28px, 4vh, 44px); }
.food-list li {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.2;
}
.food-list span {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--kraft);
  min-width: 2.4em;
}

/* ---------- OPERATING SYSTEM ---------- */
.system {
  padding: var(--section) 0;
  background: var(--white);
  color: var(--black);
}
.system .label { color: #55524b; }
.system .label::before { background: #8a6a41; }
.system .body { color: #2b2a27; }
.system .lede { color: var(--black); }
.system-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 96px);
  align-items: end;
}
.system-visual { margin-top: clamp(40px, 7vh, 88px); }
.matrix {
  margin-top: clamp(40px, 7vh, 88px);
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.matrix caption {
  caption-side: bottom;
  text-align: left;
  padding-top: 20px;
  font-size: clamp(19px, 1.4vw, 22px);
  color: #55524b;
}
.matrix th, .matrix td {
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(12px, 2vh, 22px) 4px;
  text-align: center;
  vertical-align: middle;
}
.matrix thead th {
  text-transform: uppercase;
  font-family: var(--display);
  font-size: clamp(10px, 0.95vw, 15px);
  letter-spacing: 0.1em;
  color: #55524b;
  vertical-align: bottom;
  border-bottom: 1px solid var(--black);
}
.matrix thead th .full { display: block; }
.matrix thead th .abbr { display: none; }
.matrix tbody th {
  text-transform: uppercase;
  font-family: var(--display);
  font-size: clamp(15px, 2vw, 34px);
  letter-spacing: 0.03em;
  text-align: left;
  width: 30%;
  line-height: 1.05;
}
.matrix thead th:first-child { width: 30%; text-align: left; }
.dot {
  display: inline-block;
  width: clamp(10px, 1.1vw, 18px);
  height: clamp(10px, 1.1vw, 18px);
  border-radius: 50%;
  background: var(--black);
}
.dot.off { background: transparent; border: 1px solid rgba(6, 6, 6, 0.28); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- SUSTAINABILITY ---------- */
.sustain { padding: var(--section) 0; background: var(--charcoal); }
.sustain-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 120px);
  margin-top: clamp(40px, 7vh, 88px);
  align-items: start;
}
.materials { border-top: 1px solid var(--line); margin-top: clamp(28px, 4vh, 44px); }
.materials li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.materials strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(16px, 1.3vw, 22px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.materials em { font-style: normal; color: #cfcbc1; text-align: right; font-size: clamp(19px, 1.4vw, 23px); }
.commitments { margin-top: clamp(28px, 4vh, 44px); }
.commitments li {
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.16;
  padding: 10px 0;
}

/* ---------- CTA ---------- */
.cta {
  background: #000;
  padding: clamp(120px, 22vh, 260px) 0;
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta .cta-mark {
  text-transform: uppercase;
  font-family: var(--display);
  font-size: clamp(15px, 1.2vw, 20px);
  letter-spacing: 0.3em;
  color: var(--stone);
  margin-bottom: clamp(24px, 4vh, 44px);
}
.cta h2 { font-size: clamp(34px, 8vw, 138px); line-height: 0.96; }
.cta .btn-row { justify-content: center; margin-top: clamp(40px, 7vh, 80px); }

/* ---------- FOOTER ---------- */
footer {
  background: var(--white);
  color: var(--black);
  padding: clamp(40px, 7vh, 72px) 0;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-logo img { width: clamp(220px, 22vw, 340px); height: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.footer-links a {
  text-transform: uppercase;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.12em;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.footer-links a:hover, .footer-links a:focus-visible { border-bottom-color: var(--black); }
.fine { width: 100%; font-size: 19px; color: #3d3b36; padding-top: 24px; border-top: 1px solid var(--line-dark); }

.brands-head .lede, .pack-intro .lede, .system-head .lede { margin-left: 50%; max-width: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .brand-body { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .brand-pack { grid-column: 1 / -1; max-width: 520px; }
  .pack-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1360px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 96px var(--gutter) 40px;
    background: var(--black);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  }
  .nav-links.open { visibility: visible; opacity: 1; transition: opacity 0.4s ease; }
  .nav-links a { font-size: clamp(26px, 7.4vw, 40px); letter-spacing: 0.04em; color: var(--white); padding: 10px 0; }
  .nav-links a.nav-cta { margin-top: 20px; font-size: 16px; letter-spacing: 0.12em; padding: 18px 28px; }
}

@media (max-width: 900px) {
  .hero-row, .idea-grid, .brands-head, .pack-intro, .food-grid, .system-head, .sustain-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-visual { margin-top: -4vw; }
  .principles { grid-template-columns: minmax(0, 1fr); }
  .brands-head .lede, .pack-intro .lede, .system-head .lede { margin-left: 0; }
  .hero-roster { justify-content: flex-start; }
  .matrix thead th .full { display: none; }
  .matrix thead th .abbr { display: block; }
  .matrix tbody th, .matrix thead th:first-child { width: 38%; }
}

@media (max-width: 640px) {
  .headline { font-size: 8.2vw; }
  .headline br { display: none; }
  .hero-statement { font-size: 7.4vw; }
  .brand-name { font-size: 8.6vw; }
  .cta h2 { font-size: 9.4vw; }
  .cta h2 br { display: none; }
  .brand-body { grid-template-columns: minmax(0, 1fr); }
  .btn { width: 100%; }
  .btn-row { width: 100%; }
  .materials li { flex-direction: column; gap: 4px; }
  .materials em { text-align: left; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .js .reveal, .js .media.reveal { opacity: 1; transform: none; clip-path: none; }
  .js .media.reveal img, .media img { transform: none !important; }
  .hero-visual img { transform: none !important; }
}
