/* === ONE DAY SILENCE === */
/* Modern, minimal, monochrome. Inter all the way. */

:root {
  color-scheme: dark;
  /* OKLCH foundation — perceptually consistent, deeper blacks on P3 displays */
  --bg:           oklch(0.12 0.005 60);
  --bg-2:         oklch(0.16 0.005 60);
  --bg-3:         oklch(0.22 0.005 60);
  --fg:           oklch(0.98 0.005 80);
  --fg-soft:      oklch(0.78 0.008 60);
  --fg-faint:     oklch(0.55 0.008 60);
  --rule:         color-mix(in oklch, var(--fg) 10%, transparent);
  --rule-strong:  color-mix(in oklch, var(--fg) 22%, transparent);
  --accent:       oklch(0.78 0.10 60);          /* warm whisper-gold */
  --accent-soft:  color-mix(in oklch, var(--accent) 70%, var(--bg));
  /* legacy aliases */
  --black:        var(--bg);
  --black-2:      var(--bg-2);
  --black-3:      var(--bg-3);
  --cream:        var(--fg);
  --gray:         var(--fg-soft);
  --gray-2:       var(--rule);
  --yellow:       var(--fg);
  --yellow-2:     var(--fg-soft);
  --error:        oklch(0.62 0.20 25);
  --success:      oklch(0.65 0.14 145);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--fg); color: var(--bg); }

html {
  background: var(--bg);
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
  min-height: 100vh;
}

/* — TYPE PRIMITIVES — */
.it {
  font-style: italic;
  font-weight: 300;
}
.mono {
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-soft);
}

/* — LINKS — */
a, .link {
  color: var(--fg);
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}
a:hover, .link:hover { opacity: 0.65; }

.body-text a {
  color: var(--fg);
  border-bottom: 1px solid var(--rule-strong);
  transition: border-color 0.2s, opacity 0.2s;
}
.body-text a:hover { border-color: var(--fg); opacity: 1; }

/* — HEADER — */
header.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  pointer-events: none;
}
header.site-header > * { pointer-events: auto; }

header.site-header .logo {
  display: block;
  border: none;
}
header.site-header .logo .logo-img {
  height: 26px;
  width: auto;
  display: block;
  filter: invert(1);
}

/* hide the legacy <nav> in the header (we use fullscreen menu) */
header.site-header nav { display: none; }

/* — MENU TOGGLE — */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.menu-toggle:hover {
  background: rgba(250, 250, 250, 0.06);
  border-color: var(--fg);
}
.menu-toggle .bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 16px;
}
.menu-toggle .bars span {
  height: 1px;
  background: var(--fg);
  width: 100%;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle .bars span:nth-child(2) { width: 12px; align-self: flex-end; }
.menu-toggle .toggle-label { letter-spacing: 0.06em; }

/* — FULLSCREEN MENU OVERLAY — */
.fs-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.fs-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.fs-menu .fs-menu-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.fs-menu .fs-menu-bg video,
.fs-menu .fs-menu-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: contrast(1.05) saturate(1.1);
  transform: scale(1.05);
}
.fs-menu .fs-menu-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 80%),
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.7) 100%);
  pointer-events: none;
}

.fs-menu-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}
.fs-menu-head .logo-img {
  height: 26px;
  width: auto;
  display: block;
  filter: invert(1);
}
.fs-menu-close {
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.fs-menu-close:hover {
  background: rgba(250, 250, 250, 0.06);
  border-color: var(--fg);
}

.fs-menu-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.fs-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 3rem;
}
.fs-menu nav .fs-nav-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: baseline;
  gap: 1.4rem;
  padding: 0.4rem 0;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s, opacity 0.5s;
  opacity: 0;
  transform: translateY(28px);
}
.fs-menu nav .fs-nav-link.active::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--fg);
  border-radius: 50%;
  align-self: center;
  margin-right: 0.4rem;
}
.fs-menu nav .fs-nav-link .num {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
  font-family: 'Inter', system-ui, sans-serif;
  align-self: flex-start;
  padding-top: 1.5rem;
}
.fs-menu nav a .it { color: var(--fg-soft); font-weight: 300; }
.fs-menu nav a:hover { transform: translateX(20px); }
.fs-menu nav a:hover .num { color: var(--fg); }

.fs-menu.open nav .fs-nav-link {
  opacity: 1;
  transform: none;
}
.fs-menu nav .fs-nav-link:hover { transform: translateX(20px); }
.fs-menu nav .fs-nav-link:hover .num { color: var(--fg); }
.fs-menu.open nav .fs-nav-link:nth-child(1) { transition-delay: 0.18s; }
.fs-menu.open nav .fs-nav-link:nth-child(2) { transition-delay: 0.24s; }
.fs-menu.open nav .fs-nav-link:nth-child(3) { transition-delay: 0.30s; }
.fs-menu.open nav .fs-nav-link:nth-child(4) { transition-delay: 0.36s; }
.fs-menu.open nav .fs-nav-link:nth-child(5) { transition-delay: 0.42s; }
.fs-menu.open nav .fs-nav-link:nth-child(6) { transition-delay: 0.48s; }

.fs-menu-meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
}
.fs-menu-meta-block .eyebrow {
  margin-bottom: 0.6rem;
  display: block;
}
.fs-menu-meta-block a,
.fs-menu-meta-block p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.5;
}
.fs-menu-meta-block a { border-bottom: 1px solid var(--rule-strong); }

.fs-menu-foot {
  position: relative;
  z-index: 2;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--fg-faint);
}

body.menu-open { overflow: hidden; }

/* — CONTAINER — */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container.narrow { max-width: 760px; }
.container.text   { max-width: 640px; }

section { padding: 10rem 2rem; }

/* — TYPE SCALE (Inter) — */
.display-xl, h1.display-xl,
.display-l, h1.display-l, h2.display-l,
.display-m, h2.display-m,
.display-s, h3.display-s {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: none;
  color: var(--fg);
}
.display-xl { font-size: clamp(3.2rem, 11vw, 9rem); line-height: 0.96; letter-spacing: -0.045em; }
.display-l  { font-size: clamp(2.6rem, 6.5vw, 5.5rem); letter-spacing: -0.04em; line-height: 1; }
.display-m  { font-size: clamp(2rem, 4.5vw, 3.6rem); letter-spacing: -0.03em; line-height: 1.05; }
.display-s  { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 400; letter-spacing: -0.015em; line-height: 1.2; }

.display-xl .it,
.display-l .it,
.display-m .it,
.display-s .it { font-style: italic; font-weight: 300; color: var(--fg-soft); }

/* — PAGE HEADER — */
.page-header {
  padding: 12rem 2rem 8rem;
  border-bottom: 1px solid var(--rule);
}
.page-header .container { max-width: 1280px; }
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 5rem;
  font-weight: 500;
}
.page-header .breadcrumb a { color: var(--fg-faint); border: none; }
.page-header .breadcrumb a:hover { color: var(--fg); opacity: 1; }
.page-header .breadcrumb .sep { color: var(--rule-strong); }
.page-header h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 200;
  font-size: clamp(2.8rem, 7vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 22ch;
  color: var(--fg);
}
.page-header h1 .it {
  font-family: 'Patua One', 'Inter', system-ui, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.page-header .lead {
  margin-top: 4rem;
  color: var(--fg-soft);
  font-size: 1.18rem;
  font-weight: 300;
  line-height: 1.55;
  max-width: 50ch;
  margin-left: auto;
}
.page-header .lead strong { color: var(--fg); font-weight: 500; }

/* — SECTION TAG — */
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 5rem;
  font-weight: 500;
  display: inline-block;
}
.section-tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--fg-faint);
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.8rem;
}

/* — BODY TEXT — */
.body-text {
  color: var(--fg-soft);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 400;
}
.body-text p + p { margin-top: 1.2rem; }
.body-text strong { color: var(--fg); font-weight: 500; }
.body-text .lead {
  color: var(--fg);
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}

/* — SPLIT (asymmetric editorial) — */
.split-2 {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 8rem;
  align-items: start;
}
.split-2.equal { grid-template-columns: 1fr 1fr; gap: 6rem; }
.split-2.flip  { grid-template-columns: 6fr 5fr; }
.split-2 > .body-text { max-width: 44ch; }

/* — DEEP BAND — */
.band-yellow {
  background: var(--bg-2);
  color: var(--fg);
  padding: 12rem 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* — INFO BLOCK — */
.info-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.info-block .label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
}
.info-block .value {
  color: var(--fg);
  font-size: 1.05rem;
  font-weight: 400;
}
.info-block .value a { color: var(--fg); }

/* — TIMELINE — */
.timeline {
  border-top: 1px solid var(--rule);
}
.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.timeline-item .time {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 500;
}
.timeline-item h4 {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.timeline-item p {
  color: var(--fg-soft);
  line-height: 1.6;
  max-width: 56ch;
}

/* — CARD GRID — editorial restraint, hairline borders only */
.cards-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: transparent;
  padding: 4rem 2rem 4rem 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.cards-grid.cols-3 > .card,
.cards-grid.cols-4 > .card {
  border-right: 1px solid var(--rule);
  padding: 4rem 2.5rem;
}
.cards-grid.cols-3 > .card:nth-child(3n),
.cards-grid.cols-4 > .card:nth-child(4n) { border-right: none; }
.cards-grid.cols-3 > .card:nth-last-child(-n+3),
.cards-grid.cols-4 > .card:nth-last-child(-n+4) { border-bottom: none; }
.card.hover-yellow { transition: opacity 0.3s; }
.card.hover-yellow:hover { opacity: 0.7; }
.card .num {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  display: block;
  margin-bottom: 3.5rem;
  font-weight: 500;
}
.card h3 {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: var(--fg);
}
.card p {
  color: var(--fg-soft);
  font-size: 0.96rem;
  line-height: 1.6;
  max-width: 30ch;
}

/* — FAQ — */
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.5rem 0;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  list-style: none;
  color: var(--fg);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--fg-soft);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s, color 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--fg); }
.faq-item summary:hover { opacity: 0.7; }
.faq-item .faq-body {
  padding: 0 0 1.8rem;
  color: var(--fg-soft);
  line-height: 1.65;
  max-width: 70ch;
}

/* — BUTTONS — */
.btn-yellow,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-yellow {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.btn-yellow:hover {
  background: transparent;
  color: var(--fg);
  opacity: 1;
}
.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--rule-strong);
}
.btn-outline:hover {
  border-color: var(--fg);
  background: rgba(250,250,250,0.04);
  opacity: 1;
}
.btn-yellow .arrow,
.btn-outline .arrow {
  display: inline-block;
  transition: transform 0.3s;
}
.btn-yellow:hover .arrow,
.btn-outline:hover .arrow { transform: translateX(4px); }

/* — FORM — */
form.std { display: grid; gap: 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.55rem; }
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.8rem 0;
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  outline: none;
  border-radius: 0;
  width: 100%;
  transition: border-color 0.3s;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--fg); }
.field input::placeholder,
.field textarea::placeholder { color: var(--fg-faint); }
.field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.field input::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
  cursor: pointer;
}
.form-note {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-top: 0.5rem;
  font-weight: 500;
}

button[type="submit"],
.btn-submit {
  margin-top: 1rem;
  background: var(--fg);
  color: var(--bg);
  border: 1px solid var(--fg);
  padding: 1.05rem 1.8rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  justify-self: start;
  transition: background 0.3s, color 0.3s;
}
button[type="submit"]:hover,
.btn-submit:hover {
  background: transparent;
  color: var(--fg);
}
button[type="submit"]:disabled,
.btn-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: transparent;
  border-color: var(--rule-strong);
  color: var(--fg-faint);
}

/* — FOOTER — */
footer.site-footer {
  border-top: 1px solid var(--rule);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.footer-grid > div { display: contents; }
.footer-grid h4 { display: none; }
.footer-grid a {
  color: var(--fg-soft);
  border: none;
  padding: 0.3rem 0.8rem;
}
.footer-grid a:hover { color: var(--fg); opacity: 1; }
.footer-grid .sep { color: var(--rule-strong); padding: 0 0.2rem; }
.footer-mark { display: none; }
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
  max-width: 1280px;
  margin: 0 auto;
}

/* — REVEAL — */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* — DUOTONE / IMG (no longer needed but preserved) — */
.duotone { filter: grayscale(0.2) contrast(1.05); }

/* === VIEW TRANSITIONS === */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.55s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
::view-transition-old(brand-mark),
::view-transition-new(brand-mark) {
  animation-duration: 0.7s;
}

/* === IDLE BREATH on key elements === */
@media (prefers-reduced-motion: no-preference) {
  .breath {
    animation: idleBreath 7s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    will-change: opacity, filter;
  }
  @keyframes idleBreath {
    0%, 100% { opacity: 1; filter: blur(0px); }
    50%      { opacity: 0.88; filter: blur(0.4px); }
  }
}

/* === KINETIC TYPE — split words enter from below === */
.split-words .word {
  display: inline-block;
  overflow: hidden;
}
.split-words .word > .inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.split-words.in .word > .inner {
  animation: wordRise 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes wordRise {
  to { transform: translateY(0); opacity: 1; }
}

/* === STICKY-STACK PASSAGES === */
.passages-stack {
  margin: 6rem auto 0;
  max-width: 1280px;
  padding: 0 2rem;
}
.passage {
  position: relative;
  min-height: 70vh;
  padding: 6rem 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}
.passage:last-child { border-bottom: 1px solid var(--rule); }
.passage .passage-num {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
  position: sticky;
  top: 30vh;
}
.passage h3 {
  font-family: 'Patua One', 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
  color: var(--fg);
}
.passage p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--fg-soft);
  font-weight: 300;
  max-width: 38ch;
}

/* scroll-driven reveal — fades in as section enters viewport, native CSS */
@supports (animation-timeline: view()) {
  .passage h3,
  .passage p,
  .passage .passage-num {
    animation: passageFade linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 50%;
  }
  @keyframes passageFade {
    0%   { opacity: 0; transform: translateY(40px); filter: blur(6px); }
    100% { opacity: 1; transform: none; filter: blur(0); }
  }
  .passage h3 { animation-delay: 0.05s; }
  .passage p  { animation-delay: 0.12s; }
}

/* fallback — IntersectionObserver-driven reveal (existing .reveal class works) */

/* === IMAGE-AS-TEXT-MASK === */
.text-mask-section {
  padding: 8rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.text-mask {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 26vw, 26rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 0;
  background-image: url('/assets/geert-jan.webp');
  background-size: cover;
  background-position: center 18%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: contrast(1.05) saturate(0.85);
}
.text-mask-meta {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin: 3rem auto 0;
  padding: 0 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
}
.text-mask-meta .line {
  flex: 1;
  height: 1px;
  background: var(--rule);
  margin: 0.5rem 1.5rem;
}

/* === CUSTOM CURSOR === */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fg);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 200;
  transition: width 0.3s cubic-bezier(0.22,1,0.36,1), height 0.3s cubic-bezier(0.22,1,0.36,1), background 0.3s;
  will-change: transform;
  opacity: 0;
}
.cursor.ready { opacity: 1; }
.cursor.large { width: 60px; height: 60px; mix-blend-mode: difference; }
.cursor.text  { width: 4px; height: 28px; border-radius: 0; }
@media (pointer: coarse) {
  .cursor { display: none !important; }
}

/* magnetic snap — JS sets these via inline styles, this just smooths recovery */
.btn-yellow.magnetic,
.btn-outline.magnetic {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s, color 0.3s, border-color 0.3s, opacity 0.3s;
}

/* WebGL noise canvas */
.noise-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: screen;
}

/* === HERO — EDITORIAL SPLIT LAYOUT === */
.hero-cinema {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding: 8rem 2rem 8rem;
  background: var(--bg);
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero-right {
  position: relative;
}

/* portrait frame — contained, never bleeds behind text */
.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-2);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  filter: contrast(1.04) saturate(0.94);
  animation: kenBurns 18s ease-in-out infinite alternate;
  transform-origin: center 25%;
  will-change: transform;
}
@keyframes kenBurns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.07) translate(-1.5%, -1%); }
}

.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, color-mix(in oklch, var(--bg) 65%, transparent) 100%);
  pointer-events: none;
}

.portrait-meta {
  display: flex;
  justify-content: space-between;
  margin: 1.4rem 0 0 auto;
  max-width: 460px;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
}
.portrait-meta::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--rule-strong);
  align-self: center;
  display: block;
  position: absolute;
  top: 1.5rem;
  left: 0;
}

/* warm aura inside portrait frame, breath cycle */
.hero-aura {
  position: absolute;
  top: 30%;
  right: 18%;
  z-index: 1;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, color-mix(in oklch, var(--accent) 28%, transparent) 0%, transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: auraBreathe 9s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  filter: blur(12px);
}
@keyframes auraBreathe {
  0%, 100% { opacity: 0.5; transform: scale(1.0); }
  50%      { opacity: 0.85; transform: scale(1.15); }
}

.hero-beam { display: none; }
.hero-portrait { display: none; }
.hero-overlay { display: none; }
.hero-particles { display: none; }

/* hero numbered marker (top-left) */
.hero-mark {
  position: absolute;
  top: 7rem;
  left: 2rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
}
.hero-mark .num {
  color: var(--fg);
  font-family: 'Patua One', serif;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1;
}

@media (max-width: 880px) {
  /* MOBILE: full-bleed portrait, text in bottom safe area, face stays high & uncovered */
  .hero-cinema {
    padding: 0;
    min-height: 100vh;
    min-height: 100svh;
    height: 100svh;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: block;
    height: 100%;
    max-width: none;
    margin: 0;
    gap: 0;
  }
  /* photo becomes full-bleed background */
  .hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
  }
  .portrait-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    margin: 0;
  }
  .portrait-frame img {
    object-position: center 14%;
    filter: contrast(1.05) saturate(0.92) brightness(0.92);
  }
  .portrait-frame::after {
    /* stronger gradient — keeps face untouched, gives text base */
    background: linear-gradient(180deg,
      color-mix(in oklch, var(--bg) 25%, transparent) 0%,
      transparent 18%,
      transparent 45%,
      color-mix(in oklch, var(--bg) 55%, transparent) 70%,
      color-mix(in oklch, var(--bg) 95%, transparent) 100%);
  }
  .portrait-meta { display: none; }
  .hero-aura {
    top: 18%;
    right: 35%;
    width: 60%;
    height: 40%;
    filter: blur(40px);
  }

  /* text content overlays the bottom safe zone */
  .hero-left {
    position: absolute;
    bottom: 5rem;
    bottom: max(5rem, calc(env(safe-area-inset-bottom, 0) + 5rem));
    left: 1.5rem;
    right: 1.5rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
  .hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    margin: 0;
  }
  .hero-eyebrow::before {
    width: 24px;
  }
  .hero-title-logo img {
    max-width: clamp(220px, 64vw, 300px);
    filter: drop-shadow(0 6px 24px rgba(0,0,0,0.6));
  }
  .hero-sub {
    font-size: 0.96rem;
    max-width: 32ch;
    line-height: 1.5;
  }
  .hero-cta {
    gap: 0.6rem;
  }
  .hero-cta .btn-yellow,
  .hero-cta .btn-outline {
    padding: 0.85rem 1.3rem;
    font-size: 0.78rem;
  }

  /* mark moves top-right (away from face) and shrinks */
  .hero-mark {
    top: 1.2rem;
    left: auto;
    right: 1.5rem;
    align-items: flex-end;
    text-align: right;
    font-size: 0.55rem;
    letter-spacing: 0.24em;
  }
  .hero-mark .num {
    font-size: 1.5rem;
  }

  /* HUD repositioned */
  .hero-hud {
    bottom: 1.2rem;
    left: 1.5rem;
    right: 1.5rem;
    font-size: 0.55rem;
    letter-spacing: 0.24em;
  }
  .hero-hud .scroll-cue { display: none; }
}

@media (max-width: 480px) {
  .hero-title-logo img { max-width: 240px; }
  .hero-left { bottom: 4rem; }
}

/* drifting particles — like dust in light */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  bottom: -12px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,250,240,0.7);
  box-shadow: 0 0 8px rgba(255,240,210,0.5);
  animation: particleFloat linear infinite;
}
.hero-particles span:nth-child(1)  { left:  8%; width: 2px; height: 2px; animation-duration: 22s; animation-delay: 0s; }
.hero-particles span:nth-child(2)  { left: 17%; width: 4px; height: 4px; animation-duration: 18s; animation-delay: 4s; }
.hero-particles span:nth-child(3)  { left: 28%; width: 2px; height: 2px; animation-duration: 24s; animation-delay: 1s; }
.hero-particles span:nth-child(4)  { left: 37%; width: 3px; height: 3px; animation-duration: 20s; animation-delay: 6s; }
.hero-particles span:nth-child(5)  { left: 49%; width: 2px; height: 2px; animation-duration: 26s; animation-delay: 2s; }
.hero-particles span:nth-child(6)  { left: 58%; width: 4px; height: 4px; animation-duration: 19s; animation-delay: 8s; }
.hero-particles span:nth-child(7)  { left: 68%; width: 2px; height: 2px; animation-duration: 23s; animation-delay: 3s; }
.hero-particles span:nth-child(8)  { left: 76%; width: 3px; height: 3px; animation-duration: 21s; animation-delay: 7s; }
.hero-particles span:nth-child(9)  { left: 85%; width: 2px; height: 2px; animation-duration: 25s; animation-delay: 5s; }
.hero-particles span:nth-child(10) { left: 93%; width: 3px; height: 3px; animation-duration: 17s; animation-delay: 9s; }

@keyframes particleFloat {
  0%   { transform: translate(0, 0); opacity: 0; }
  8%   { opacity: 0.85; }
  85%  { opacity: 0.6; }
  100% { transform: translate(28px, -110vh); opacity: 0; }
}

/* legacy class no-ops (kept for backwards compat) */
.hero-video,
.hero-cinema .photo-layer { display: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0) 25%, rgba(10,10,10,0) 55%, rgba(10,10,10,0.92) 100%),
    radial-gradient(ellipse at center, rgba(10,10,10,0.08) 30%, rgba(10,10,10,0.45) 100%);
  pointer-events: none;
}
.hero-content { display: contents; }
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--fg);
  display: inline-block;
}
.hero-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 200;
  font-size: clamp(3rem, 11vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--fg);
  max-width: 14ch;
}
.hero-title .it {
  font-family: 'Patua One', 'Inter', system-ui, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.hero-title-logo {
  margin: 0;
  padding: 0;
  line-height: 0;
  display: block;
  view-transition-name: brand-mark;
}
.hero-title-logo img {
  width: 100%;
  max-width: clamp(300px, 52vw, 640px);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 28px rgba(0,0,0,0.5));
}
@media (max-width: 720px) {
  .hero-title-logo img { max-width: clamp(240px, 80vw, 420px); }
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fg-soft);
  max-width: 38ch;
  line-height: 1.55;
  margin: 0;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
}

.hero-hud {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
  pointer-events: none;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-hud > * { padding: 0; }
.hero-hud .scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-hud .scroll-cue .arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, var(--fg-faint));
  display: inline-block;
  animation: scrollCue 2.4s ease-in-out infinite;
}
@keyframes scrollCue {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50%      { opacity: 1; transform: translateY(8px); }
}

/* legacy hero-cinema sublabels we no longer want */
.hero-cinema .display-top,
.hero-cinema .display-bot,
.hero-cinema .vertical-mantra,
.hero-cinema .geo-bg,
.hero-cinema .geo-bg-inner,
.hero-cinema .vignette,
.hero-cinema .grain,
.hero-cinema .pulse-rings { display: none; }

/* === BOOKING WIZARD (modern dark) === */
.wizard { max-width: 920px; margin: 0 auto; }
.wizard-progress {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--rule);
}
.wizard-step-pill {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border: none;
  background: transparent;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  position: relative;
}
.wizard-step-pill .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  font-size: 0.7rem;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0;
}
.wizard-step-pill.active { color: var(--fg); }
.wizard-step-pill.active .num { border-color: var(--fg); background: var(--fg); color: var(--bg); }
.wizard-step-pill.done { color: var(--fg-soft); }
.wizard-step-pill.done .num { border-color: var(--fg-soft); }

.wizard-step { display: none; }
.wizard-step.active { display: block; animation: stepIn 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.calendar {
  border: 1px solid var(--rule);
  padding: 1.5rem;
  background: var(--bg-2);
  border-radius: 4px;
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.cal-head h4 {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}
.cal-nav-btn {
  background: var(--bg-3);
  border: 1px solid var(--rule);
  color: var(--fg);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
}
.cal-nav-btn:hover { border-color: var(--fg); background: var(--bg-2); }
.cal-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: var(--fg-faint);
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 0;
  font-weight: 500;
}
.cal-day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: var(--bg-3);
  color: var(--fg-faint);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}
.cal-day:hover:not(:disabled):not(.empty) {
  border-color: var(--fg);
  color: var(--fg);
}
.cal-day.has-slots {
  color: var(--fg);
  background: var(--bg-2);
  position: relative;
}
.cal-day.has-slots::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--fg);
  border-radius: 50%;
}
.cal-day.selected {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.cal-day:disabled,
.cal-day.empty {
  opacity: 0.25;
  cursor: not-allowed;
  background: transparent;
  border-color: transparent;
}

.times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.time-slot {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  color: var(--fg);
  padding: 0.85rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.92rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}
.time-slot:hover { border-color: var(--fg); }
.time-slot.selected { background: var(--fg); border-color: var(--fg); color: var(--bg); }

.summary-box {
  border: 1px solid var(--rule);
  padding: 1.5rem;
  background: var(--bg-2);
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}
.summary-box .row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  font-size: 0.95rem;
}
.summary-box .row .label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--fg-faint);
  text-transform: uppercase;
  align-self: center;
  font-weight: 500;
}
.summary-box .row .value { color: var(--fg); font-weight: 400; }

.wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.confirm-card {
  border: 1px solid var(--rule);
  padding: 4rem 2rem;
  text-align: center;
  background: var(--bg-2);
  border-radius: 4px;
}
.confirm-card .check { font-size: 2.5rem; color: var(--fg); margin-bottom: 1.5rem; }
.confirm-card h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: -0.025em;
  text-transform: none;
  margin-bottom: 1rem;
}
.confirm-card p { color: var(--fg-soft); max-width: 50ch; margin: 0 auto 0.6rem; }
.confirm-card .ref {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--fg);
  margin-top: 1.5rem;
  display: inline-block;
  border: 1px solid var(--rule);
  padding: 0.6rem 1rem;
  border-radius: 999px;
}

.alert {
  padding: 0.9rem 1rem;
  border: 1px solid var(--error);
  background: rgba(229,72,77,0.08);
  color: var(--error);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

/* — RESPONSIVE — */
@media (max-width: 980px) {
  .split-2, .split-2.equal, .split-2.flip {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cards-grid.cols-3, .cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .timeline-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .info-block { grid-template-columns: 1fr; gap: 0.4rem; }
}
@media (max-width: 720px) {
  header.site-header { padding: 1rem 1.2rem; }
  .menu-toggle { padding: 0.55rem 0.9rem; font-size: 0.7rem; }
  .menu-toggle .toggle-label { display: none; }
  .fs-menu-head { padding: 1rem 1.2rem; }
  .fs-menu-foot { padding: 1rem 1.2rem; }
  .fs-menu nav a { gap: 1rem; }
  .fs-menu nav a .num { padding-top: 0.8rem; font-size: 0.7rem; }
  section { padding: 4.5rem 1.2rem; }
  .hero-content { padding: 0 1.2rem 5rem; }
  .hero-hud { left: 1.2rem; right: 1.2rem; bottom: 1.2rem; gap: 0.6rem; }
  .cards-grid.cols-2, .cards-grid.cols-3, .cards-grid.cols-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .summary-box .row { grid-template-columns: 1fr; gap: 0.2rem; }
  .wizard-actions { flex-direction: column-reverse; }
  .wizard-actions > * { width: 100%; justify-content: center; }
  .wizard-progress { flex-wrap: wrap; }
}

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