:root {
  --ink: #0b0b09;
  --ink-soft: #24231f;
  --ivory: #f1eee6;
  --ivory-deep: #e7e1d4;
  --paper: #f8f5ee;
  --green: #17241f;
  --green-soft: #26382f;
  --champagne: #b79a6b;
  --champagne-light: #d9c49e;
  --wine: #4e2024;
  --white: #fffdf7;
  --line-dark: rgba(11, 11, 9, 0.2);
  --line-light: rgba(255, 253, 247, 0.24);
  --display: "Bodoni 72", Didot, "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: min(91vw, 1460px);
  --header-height: 5.5rem;
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.25em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  color: var(--white);
  background: var(--wine);
}

.site-intro {
  display: none;
}

.js .site-intro {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--green);
  pointer-events: auto;
  touch-action: none;
  clip-path: inset(0);
  will-change: clip-path;
  transition: clip-path 1120ms cubic-bezier(0.76, 0, 0.24, 1);
}

.js body.is-intro {
  overflow: hidden;
}

.site-intro-panel {
  display: none;
}

.site-intro-mark {
  position: relative;
  z-index: 1;
  width: min(44vw, 24rem);
  opacity: 0;
  clip-path: inset(0 50% 0 50%);
  transform: scale(0.985);
  animation: site-intro-mark-in 1180ms var(--ease-lux) 180ms forwards;
  transition: opacity 420ms ease, transform 720ms var(--ease-lux), clip-path 720ms var(--ease-lux);
}

.site-intro-mark img {
  width: 100%;
  height: auto;
}

.site-intro.is-exiting {
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}

.site-intro.is-exiting .site-intro-mark {
  opacity: 0;
  clip-path: inset(0);
  transform: translateY(-1.5rem) scale(1.025);
}

.js.intro-failsafe .site-intro {
  display: none;
}

.js body.is-intro .lux-header,
.js body.is-intro .hero-footer,
.js body.is-intro .hero-content > * {
  opacity: 0;
}

.js body.is-intro .hero-media {
  opacity: 0;
  clip-path: inset(0 0 0 22%);
}

.js body.is-intro .lux-header {
  transform: translateY(-1rem);
}

.js body.is-intro .hero-content > * {
  transform: translateY(2rem);
}

.js body.intro-done .lux-header {
  animation: intro-header-in 820ms var(--ease-lux) both;
}

.js body.intro-done .hero-content > * {
  animation: intro-hero-copy-in 900ms var(--ease-lux) both;
}

.js body.intro-done .hero-content > :nth-child(2) {
  animation-delay: 70ms;
}

.js body.intro-done .hero-content > :nth-child(3) {
  animation-delay: 150ms;
}

.js body.intro-done .hero-content > :nth-child(4) {
  animation-delay: 230ms;
}

.js body.intro-done .hero-footer {
  animation: intro-detail-in 760ms var(--ease-lux) 320ms both;
}

.js body.intro-done .hero-media {
  animation: intro-hero-aperture-in 1.35s var(--ease-lux) 80ms backwards;
}

.js body.intro-done .hero-media img {
  animation: intro-hero-image-settle 1.7s var(--ease-lux) 80ms backwards;
}

@keyframes site-intro-mark-in {
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: scale(1);
  }
}

@keyframes intro-header-in {
  from { opacity: 0; transform: translateY(-1rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes intro-hero-copy-in {
  from { opacity: 0; transform: translateY(2rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes intro-detail-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes intro-hero-aperture-in {
  from {
    opacity: 0;
    clip-path: inset(0 0 0 22%);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
  }
}

@keyframes intro-hero-image-settle {
  from { transform: scale(1.12) translate3d(1.2rem, 0, 0); }
}

.journal-route-curtain {
  --journal-route-paper: #f0ede5;
  position: fixed;
  z-index: 880;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
}

.journal-route-panel {
  grid-row: 1;
  background: var(--journal-route-paper);
  transform: translate3d(0, 102%, 0);
  transition: transform 680ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.journal-route-panel-start {
  grid-column: 1;
}

.journal-route-panel-end {
  grid-column: 2;
  border-left: 1px solid rgba(11, 11, 9, 0.14);
  transition-delay: 40ms;
}

.journal-route-mark {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  color: var(--ink);
  opacity: 0;
  transform: translate3d(-50%, calc(-50% + 1.15rem), 0);
  transition: opacity 340ms ease 270ms, transform 560ms var(--ease-lux) 230ms;
}

.journal-route-mark::before {
  content: "";
  width: clamp(3.5rem, 8vw, 7rem);
  height: 1px;
  margin-bottom: 0.55rem;
  background: rgba(11, 11, 9, 0.36);
  transform: scaleX(0);
  transition: transform 480ms var(--ease-lux) 360ms;
}

.journal-route-mark span:first-child {
  font-family: var(--display);
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  line-height: 0.82;
}

.journal-route-mark span:last-child {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

body.is-journal-leaving {
  overflow: hidden;
}

body.is-journal-leaving .journal-route-curtain {
  visibility: visible;
}

body.is-journal-leaving .journal-route-panel {
  transform: translate3d(0, 0, 0);
}

body.is-journal-leaving .journal-route-mark {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0);
}

body.is-journal-leaving .journal-route-mark::before {
  transform: scaleX(1);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: 0.75rem;
  inset-inline-start: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-progress {
  position: fixed;
  z-index: 300;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--champagne-light);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

[dir="rtl"] .page-progress span {
  transform-origin: right center;
}

.lux-header {
  position: fixed;
  z-index: 250;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: calc(var(--header-height) + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) max(2rem, 4.5vw) 0;
  color: var(--ink);
  transition: color 350ms ease, background-color 350ms ease, box-shadow 350ms ease;
}

.lux-header::after {
  content: "";
  position: absolute;
  inset: auto max(2rem, 4.5vw) 0;
  height: 1px;
  background: rgba(11, 11, 9, 0.16);
  transition: background-color 350ms ease, inset 350ms ease;
}

.lux-header.is-scrolled,
.lux-header.menu-open {
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 0.6rem 2.5rem rgba(11, 11, 9, 0.08);
}

.lux-header.is-hero-immersed:not(.menu-open) {
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.lux-header.is-hero-immersed:not(.menu-open)::after {
  inset-inline: max(2rem, 4.5vw);
  background: rgba(255, 253, 247, 0.32);
}

.lux-header.is-scrolled::after,
.lux-header.menu-open::after {
  inset-inline: 0;
  background: rgba(11, 11, 9, 0.1);
}

.brand {
  position: relative;
  z-index: 2;
  display: block;
  width: clamp(8.4rem, 12vw, 10.2rem);
  height: 2.15rem;
  justify-self: start;
}

.brand-logo {
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  transition: opacity 300ms ease;
}

.brand-logo-dark {
  opacity: 1;
}

.brand-logo-light {
  opacity: 0;
}

.lux-header.is-hero-immersed:not(.menu-open) .brand-logo-light {
  opacity: 1;
}

.lux-header.is-hero-immersed:not(.menu-open) .brand-logo-dark {
  opacity: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.6vw, 3rem);
  min-height: 3rem;
}

.desktop-nav a,
.lux-footer nav a {
  position: relative;
  padding-block: 0.75rem;
  font-size: 0.69rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after,
.lux-footer nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 350ms var(--ease-lux);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after,
.lux-footer nav a:hover::after,
.lux-footer nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  justify-self: end;
}

.language-picker {
  display: grid;
  place-items: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
}

.language-picker select {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0 1.25rem 0 0.35rem;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.language-picker option {
  color: var(--ink);
  background: var(--ivory);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding-inline: 1.15rem;
  border: 1px solid currentColor;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 250ms ease, background-color 250ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--ivory);
  background: var(--ink);
}

.lux-header.is-hero-immersed:not(.menu-open) .header-cta:hover,
.lux-header.is-hero-immersed:not(.menu-open) .header-cta:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.mobile-menu {
  display: none;
}

.section-shell {
  position: relative;
  width: 100%;
  padding: clamp(6rem, 11vw, 11rem) max(4.5vw, 1.25rem);
}

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

.display-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.3rem, 7.2vw, 7.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero-stage {
  position: relative;
  background: var(--ivory);
}

.js .hero-stage {
  height: 255svh;
  min-height: calc(48rem + 155svh);
}

.hero {
  --hero-media-top: max(6.5rem, 10vh);
  --hero-media-right: max(4rem, 5.8vw);
  --hero-media-bottom: max(3.75rem, 7.5vh);
  --hero-media-left: 46vw;
  --hero-round: 48%;
  --hero-left-round: 12%;
  --hero-left-round-y: 7%;
  --hero-frame-top: max(6.5rem, 10vh);
  --hero-frame-right: max(4rem, 5.8vw);
  --hero-frame-bottom: max(3.75rem, 7.5vh);
  --hero-frame-left: 46vw;
  --hero-frame-opacity: 0.52;
  --hero-copy-opacity: 1;
  --hero-copy-y: 0rem;
  --hero-detail-opacity: 1;
  --hero-fullbleed-opacity: 0;
  --hero-immersive-opacity: 0;
  --hero-immersive-y: 1.75rem;
  --hero-immersive-kicker-x: -1.25rem;
  --hero-immersive-line-x: 1.5rem;
  --hero-wash-opacity: 0;
  position: relative;
  min-height: max(48rem, 100svh);
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background: var(--ivory);
}

.js .hero-stage .hero {
  position: sticky;
  top: 0;
  height: 100svh;
}

.hero-media,
.hero-wash,
.hero-light-sweep {
  position: absolute;
  inset: var(--hero-media-top) var(--hero-media-right) var(--hero-media-bottom) var(--hero-media-left);
  margin: 0;
  border-radius: var(--hero-left-round) var(--hero-round) var(--hero-round) var(--hero-left-round) / var(--hero-left-round-y) 50% 50% var(--hero-left-round-y);
}

.hero-media {
  z-index: 1;
  overflow: hidden;
  background: var(--ivory-deep);
  transform: translateZ(0);
  will-change: inset, border-radius;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 50%;
  transform: scale(calc(1.055 - (var(--hero-progress, 0) * 0.045))) translate3d(var(--hero-x, 0rem), calc(var(--hero-y, 0rem) + var(--hero-scroll-y, 0rem)), 0);
  transition: transform 180ms ease-out;
  will-change: transform;
}

.hero-wash {
  z-index: 2;
  background: rgba(8, 9, 7, 0.42);
  opacity: var(--hero-wash-opacity);
  pointer-events: none;
  will-change: opacity, inset, border-radius;
}

.hero-light-sweep {
  display: none;
  z-index: 3;
  pointer-events: none;
}

.hero-cinematic-frame {
  position: absolute;
  z-index: 4;
  inset: var(--hero-frame-top) var(--hero-frame-right) var(--hero-frame-bottom) var(--hero-frame-left);
  border: 1px solid rgba(23, 36, 31, 0.34);
  border-radius: var(--hero-left-round) var(--hero-round) var(--hero-round) var(--hero-left-round) / var(--hero-left-round-y) 50% 50% var(--hero-left-round-y);
  opacity: var(--hero-frame-opacity);
  pointer-events: none;
  will-change: inset, opacity, border-radius;
}

.hero-frame-corner {
  display: none;
}

.hero-content {
  position: absolute;
  z-index: 5;
  inset: clamp(12rem, 23.5vh, 16.5rem) auto auto max(4.5vw, 1.25rem);
  width: min(38vw, 38.5rem);
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-y), 0);
  will-change: opacity, transform;
}

.hero-eyebrow {
  margin-block-end: clamp(1.1rem, 2.5vh, 1.9rem);
  color: var(--green-soft);
}

.hero h1 {
  max-width: 11.2ch;
  margin: 0;
  text-wrap: balance;
  font-family: var(--display);
  font-size: clamp(4rem, 6vw, 7.25rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 31rem;
  margin: clamp(1.25rem, 2.8vh, 2rem) 0 0;
  color: rgba(11, 11, 9, 0.72);
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  line-height: 1.52;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-block-start: clamp(1.8rem, 4vh, 3rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 280ms ease, background-color 280ms ease, border-color 280ms ease, transform 280ms var(--ease-lux);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.button-quiet {
  position: relative;
  color: var(--ink);
  border-color: transparent;
  background: transparent;
}

.button-quiet::after {
  content: "";
  position: absolute;
  inset: auto 1.35rem 0.68rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 300ms var(--ease-lux);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: transparent;
  background: transparent;
}

.button-quiet:hover::after,
.button-quiet:focus-visible::after {
  transform: scaleX(1);
}

.hero-fullbleed-mark {
  position: absolute;
  z-index: 5;
  inset: auto max(2rem, 4.5vw) max(1.8rem, env(safe-area-inset-bottom)) auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 253, 247, 0.82);
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: var(--hero-fullbleed-opacity);
  transform: translate3d(0, var(--hero-fullbleed-y, 0.75rem), 0);
  will-change: opacity, transform;
}

.hero-fullbleed-mark::before {
  content: "";
  width: clamp(2rem, 4vw, 4.5rem);
  height: 1px;
  background: currentColor;
}

.hero-fullbleed-mark span + span {
  color: rgba(255, 253, 247, 0.56);
}

.hero-immersive-copy {
  position: absolute;
  z-index: 5;
  inset: auto auto clamp(7.5rem, 15vh, 10.5rem) max(4.5vw, 1.25rem);
  width: min(44rem, 44vw);
  color: var(--white);
  opacity: var(--hero-immersive-opacity);
  transform: translate3d(0, var(--hero-immersive-y), 0);
  pointer-events: none;
  will-change: opacity, transform;
}

.hero-immersive-copy .eyebrow {
  margin-block-end: clamp(1rem, 2vh, 1.5rem);
  color: rgba(255, 253, 247, 0.72);
  transform: translate3d(var(--hero-immersive-kicker-x), 0, 0);
  will-change: transform;
}

.hero-immersive-copy h2 {
  max-width: 11.5ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.7vw, 6.6rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-immersive-line {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: clamp(1.25rem, 2.8vh, 2rem) 0 0;
  color: rgba(255, 253, 247, 0.8);
  font-size: clamp(0.7rem, 0.82vw, 0.8rem);
  font-weight: 620;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
  transform: translate3d(var(--hero-immersive-line-x), 0, 0);
  will-change: transform;
}

.hero-immersive-line::before {
  content: "";
  flex: 0 0 clamp(2rem, 4vw, 4.5rem);
  height: 1px;
  background: currentColor;
}

.hero-footer {
  position: absolute;
  z-index: 5;
  inset: auto auto max(1.5rem, env(safe-area-inset-bottom)) max(4.5vw, 1.25rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  width: min(38vw, 38.5rem);
  padding-block-start: 1rem;
  border-top: 1px solid rgba(11, 11, 9, 0.2);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  filter: opacity(var(--hero-detail-opacity));
}

.hero-footer p {
  margin: 0;
}

.hero-footer a {
  min-width: 3rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.hero-footer a::after {
  content: "";
  width: 1px;
  height: 2rem;
  background: currentColor;
  transform-origin: top;
  animation: hero-scroll-line 2.4s var(--ease-lux) infinite;
}

@keyframes hero-scroll-line {
  0% { opacity: 0; transform: scaleY(0); }
  35% { opacity: 1; transform: scaleY(1); }
  70% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

.manifest {
  overflow: hidden;
  color: var(--ink);
  background: var(--ivory);
}

.section-index {
  position: absolute;
  inset: clamp(1.5rem, 4vw, 4rem) max(4.5vw, 1.25rem) auto auto;
  color: rgba(11, 11, 9, 0.055);
  font-family: var(--display);
  font-size: clamp(8rem, 20vw, 20rem);
  line-height: 0.75;
  letter-spacing: -0.07em;
  pointer-events: none;
}

.manifest-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(1rem, 2vw, 2rem);
  width: var(--page);
  margin-inline: auto;
}

.manifest-grid > .eyebrow {
  grid-column: 1 / 4;
  align-self: start;
  padding-block-start: 0.8rem;
  color: var(--wine);
}

.manifest-grid > h2 {
  grid-column: 4 / 13;
  max-width: 10ch;
}

.manifest-copy {
  grid-column: 4 / 9;
  max-width: 35rem;
  margin: clamp(2.8rem, 6vw, 5.8rem) 0 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.manifest-note {
  grid-column: 10 / 13;
  align-self: end;
  margin-block-start: clamp(3rem, 7vw, 7rem);
  padding-block-start: 1.25rem;
  border-top: 1px solid var(--line-dark);
}

.manifest-note span {
  display: block;
  margin-block-end: 2.25rem;
  color: var(--wine);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.manifest-note p {
  margin: 0;
  max-width: 23rem;
  font-size: 0.88rem;
  line-height: 1.65;
}

.mandate {
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid rgba(11, 11, 9, 0.1);
}

.section-heading,
.management-heading,
.journal-heading,
.faq-heading {
  width: var(--page);
  margin-inline: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(9rem, 1fr) 3fr;
  gap: 2rem;
  align-items: start;
  margin-block-end: clamp(4rem, 8vw, 8rem);
}

.section-heading .eyebrow {
  padding-block-start: 0.9rem;
  color: var(--wine);
}

.section-heading h2,
.journal-heading h2,
.faq-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.mandate-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
  width: var(--page);
  margin-inline: auto;
}

.mandate-gallery {
  position: sticky;
  top: calc(var(--header-height) + 6vh);
  height: min(72vh, 48rem);
  min-height: 32rem;
  overflow: hidden;
  background: var(--ivory-deep);
}

.mandate-gallery::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.mandate-figure {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 0 100%);
  transform: scale(1.035);
  transition: opacity 520ms ease, visibility 920ms ease, clip-path 920ms var(--ease-lux), transform 1.15s var(--ease-lux);
}

.mandate-figure.is-active {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0);
  transform: scale(1);
}

.mandate-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mandate-figure:first-child img {
  object-position: center 42%;
}

.mandate-figure:nth-child(2) img {
  object-position: center 52%;
}

.mandate-figure:nth-child(3) img,
.mandate-figure:nth-child(4) img {
  object-position: center;
}

.mandate-figure figcaption {
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  color: var(--white);
  background: rgba(11, 11, 9, 0.72);
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mandate-steps {
  padding-block-end: 12vh;
}

.mandate-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  min-height: 42vh;
  padding: clamp(2rem, 4vw, 3.6rem) 0;
  border-top: 1px solid var(--line-dark);
  opacity: 0.4;
  transition: opacity 450ms ease;
}

.mandate-step:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.mandate-step.is-active {
  opacity: 1;
}

.mandate-number {
  padding-block-start: 0.65rem;
  color: var(--wine);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mandate-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.mandate-step p {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: rgba(11, 11, 9, 0.76);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.65;
}

.origin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(61rem, 100svh);
  color: var(--white);
  background: var(--green);
}

.origin-media {
  position: relative;
  min-height: 48rem;
  margin: 0;
  overflow: hidden;
}

.origin-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(11, 11, 9, 0.56));
  pointer-events: none;
}

.origin-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.075) translate3d(0, var(--origin-y, 0%), 0);
  transition: transform 1.2s var(--ease-lux);
}

.origin-media figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 2rem 1.8rem;
  padding-block-start: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.origin-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 9vw, 10rem) clamp(2rem, 8vw, 8rem);
}

.origin-copy .eyebrow {
  color: var(--champagne-light);
}

.origin-copy h2 {
  max-width: 8ch;
  margin-block-start: 2.2rem;
}

.origin-copy > p:not(.eyebrow, .origin-signature) {
  max-width: 34rem;
  margin: clamp(2rem, 5vw, 4.5rem) 0 0;
  color: rgba(255, 253, 247, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}

.origin-signature {
  margin: auto 0 0;
  padding-block-start: 4rem;
  color: var(--champagne-light);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-style: italic;
  line-height: 1.15;
}

.management {
  color: var(--white);
  background: var(--ink);
}

.management-heading {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) minmax(0, 3fr);
  gap: 2rem;
  margin-block-end: clamp(4.5rem, 9vw, 9rem);
}

.management-heading .eyebrow {
  padding-block-start: 0.7rem;
  color: var(--champagne-light);
}

.management-heading h2 {
  max-width: 15ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6.3vw, 6.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.management-intro {
  grid-column: 2;
  max-width: 46rem;
  margin: 0;
  color: rgba(255, 253, 247, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.management-deep-link {
  position: relative;
  grid-column: 2;
  justify-self: start;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--champagne-light);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.management-deep-link::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 380ms var(--ease-lux);
}

.management-deep-link:hover::after,
.management-deep-link:focus-visible::after {
  transform: scaleX(1);
}

.management-list {
  width: var(--page);
  margin-inline: auto;
  border-top: 1px solid var(--line-light);
}

.management-row {
  display: grid;
  grid-template-columns: 4rem minmax(12rem, 1.15fr) minmax(15rem, 1fr) minmax(6rem, 9rem);
  gap: 2rem;
  align-items: center;
  min-height: 8.5rem;
  padding: 2.15rem 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding-inline 420ms var(--ease-lux), color 300ms ease;
}

.management-row:hover {
  padding-inline: 1.15rem;
  color: var(--champagne-light);
}

.management-row > span {
  color: var(--champagne);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.management-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.management-row p {
  margin: 0;
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.management-row-media {
  width: 100%;
  height: 4.8rem;
  margin: 0;
  overflow: hidden;
  opacity: 0.46;
  clip-path: inset(0 76% 0 0);
  transform: translateX(0.5rem);
  transition: opacity 360ms ease, clip-path 620ms var(--ease-lux), transform 620ms var(--ease-lux);
}

.management-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 900ms var(--ease-lux);
}

@media (hover: hover) and (pointer: fine) {
  .management-row:hover .management-row-media {
    opacity: 1;
    clip-path: inset(0);
    transform: translateX(0);
  }

  .management-row:focus-within .management-row-media {
    opacity: 1;
    clip-path: inset(0);
    transform: translateX(0);
  }

  .management-row:hover .management-row-media img {
    transform: scale(1);
  }

  .management-row:focus-within .management-row-media img {
    transform: scale(1);
  }
}

.management-note {
  width: var(--page);
  margin: 2rem auto 0;
  color: rgba(255, 253, 247, 0.54);
  font-size: 0.72rem;
  line-height: 1.5;
}

.journal {
  color: var(--ink);
  background: var(--ivory);
}

.journal-heading {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) minmax(0, 3fr) auto;
  gap: 2rem;
  align-items: end;
  margin-block-end: clamp(4rem, 8vw, 7rem);
}

.journal-heading .eyebrow {
  align-self: start;
  padding-block-start: 0.9rem;
  color: var(--wine);
}

.journal-heading h2 {
  max-width: 10ch;
}

.journal-heading > a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-list {
  width: var(--page);
  margin-inline: auto;
  border-top: 1px solid var(--line-dark);
}

.journal-item {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  min-height: 10.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
  transition: color 300ms ease, padding-inline 420ms var(--ease-lux), background-color 300ms ease;
}

.journal-item:hover,
.journal-item:focus-visible {
  padding-inline: 1.15rem;
  color: var(--white);
  background: var(--wine);
}

.journal-item > span:first-child,
.journal-read,
.journal-item p {
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-item p {
  margin: 0 0 0.65rem;
  color: var(--wine);
}

.journal-item:hover p,
.journal-item:focus-visible p {
  color: var(--champagne-light);
}

.journal-item h3 {
  max-width: 29ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.15vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.journal-read {
  min-width: 3.5rem;
  text-align: end;
}

.faq {
  display: grid;
  grid-template-columns: minmax(15rem, 0.85fr) minmax(0, 1.6fr);
  gap: clamp(3rem, 9vw, 10rem);
  color: var(--ink);
  background: var(--paper);
  border-top: 1px solid rgba(11, 11, 9, 0.1);
}

.faq-heading,
.faq-list {
  width: 100%;
  margin: 0;
}

.faq-heading .eyebrow {
  margin-block-end: 2rem;
  color: var(--wine);
}

.faq-heading h2 {
  max-width: 8ch;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  min-height: 5.5rem;
  padding: 1.75rem 0.5rem 1.75rem 0;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.15vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--wine);
}

.faq-list details p {
  max-width: 52rem;
  margin: 0;
  padding: 0 2rem 2.25rem 1.25rem;
  color: rgba(11, 11, 9, 0.72);
  line-height: 1.7;
}

.faq-list details[open] p {
  animation: faq-answer-in 420ms var(--ease-lux) both;
}

@keyframes faq-answer-in {
  from { opacity: 0; transform: translateY(-0.45rem); }
  to { opacity: 1; transform: translateY(0); }
}

.contact {
  display: grid;
  grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(4rem, 11vw, 11rem);
  color: var(--white);
  background: var(--green);
}

.contact-intro .eyebrow {
  margin-block-end: 2rem;
  color: var(--champagne-light);
}

.contact-intro h2 {
  max-width: 7ch;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 31rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  color: rgba(255, 253, 247, 0.76);
  font-size: 1rem;
  line-height: 1.75;
}

.contact-email {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  margin-block-start: 2rem;
  color: var(--champagne-light);
  font-size: 0.75rem;
}

.contact-form {
  align-self: start;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form label {
  display: block;
  margin-block-end: 1.7rem;
}

.contact-form label > span {
  display: block;
  margin-block-end: 0.45rem;
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form small {
  color: rgba(255, 253, 247, 0.44);
  font-size: inherit;
  font-weight: inherit;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.38);
  border-radius: 0;
  outline: none;
  transition: border-color 220ms ease, background-color 220ms ease;
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 253, 247, 0.46);
  opacity: 1;
}

.contact-form select option {
  color: var(--ink);
  background: var(--ivory);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--champagne-light);
}

.contact-form [aria-invalid="true"] {
  border-color: #f3aba4;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-block-start: 1.4rem;
}

.form-footer p {
  max-width: 20rem;
  margin: 0;
  color: rgba(255, 253, 247, 0.52);
  font-size: 0.69rem;
  line-height: 1.5;
}

.button-dark {
  color: var(--ink);
  background: var(--champagne-light);
  border-color: var(--champagne-light);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--champagne-light);
  font-size: 0.76rem;
}

.lux-footer {
  padding: clamp(4rem, 8vw, 7rem) max(4.5vw, 1.25rem) max(2rem, env(safe-area-inset-bottom));
  color: var(--white);
  background: var(--ink);
}

.footer-top,
.footer-bottom {
  width: var(--page);
  margin-inline: auto;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-block-end: clamp(3rem, 7vw, 6rem);
}

.footer-top img {
  width: clamp(9rem, 16vw, 14rem);
}

.footer-top p {
  max-width: 28rem;
  margin: 0;
  color: var(--champagne-light);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.7vw, 2.6rem);
  line-height: 1.15;
  text-align: end;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding-block-start: 1.5rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 247, 0.58);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-bottom > a {
  justify-self: end;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(2rem);
  transition: opacity 760ms var(--ease-lux), filter 860ms var(--ease-lux), transform 980ms var(--ease-lux), clip-path 1.05s var(--ease-lux);
}

.js .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.js .manifest-grid > .eyebrow.reveal {
  transform: translateX(-1.5rem);
}

.js .manifest-grid > .eyebrow.reveal.is-visible,
.js .manifest-copy.reveal.is-visible,
.js .mandate-step.reveal.is-visible,
.js .management-row.reveal.is-visible {
  transform: translateX(0);
}

.js .manifest-grid > h2.reveal {
  clip-path: inset(0 0 100% 0);
  transform: translateY(0.65rem);
}

.js .manifest-grid > h2.reveal.is-visible {
  clip-path: inset(0);
  transform: translateY(0);
}

.js .manifest-copy.reveal {
  transform: translateX(2.25rem);
}

.js .manifest-note.reveal {
  clip-path: inset(100% 0 0 0);
  transform: none;
}

.js .manifest-note.reveal.is-visible {
  clip-path: inset(0);
}

.js .mandate-step.reveal,
.js .management-row.reveal {
  transform: translateX(-2.5rem);
}

.js .management-row:nth-child(even).reveal {
  transform: translateX(2.5rem);
}

.js .management-row:nth-child(even).reveal.is-visible {
  transform: translateX(0);
}

.js .journal-item.reveal {
  clip-path: inset(0 0 100% 0);
  transform: none;
}

.js .journal-item.reveal.is-visible {
  clip-path: inset(0);
}

.js .reveal-media {
  clip-path: inset(0 0 100% 0);
  filter: none;
  transform: none;
  transition: opacity 800ms var(--ease-lux), clip-path 1.1s var(--ease-lux);
}

.js .reveal-media.is-visible {
  clip-path: inset(0 0 0 0);
}

/* Keep the below-fold origin image eligible for native lazy loading. */
.js .origin-media.reveal-media {
  opacity: 1;
  clip-path: none;
  transform: none;
}

.js .origin-media.reveal-media img {
  transform: scale(1.095) translate3d(0, var(--origin-y, 0%), 0);
  transition: transform 1.2s var(--ease-lux);
}

.js .origin-media.reveal-media.is-visible img {
  transform: scale(1.075) translate3d(0, var(--origin-y, 0%), 0);
}

@media (max-width: 1120px) {
  .lux-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    gap: 1.25rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    --hero-media-left: 44vw;
    --hero-frame-left: 44vw;
  }

  .hero-content,
  .hero-footer {
    width: 37vw;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 5.8vw, 5.8rem);
  }

  .manifest-grid > h2 {
    grid-column-start: 3;
  }

  .manifest-grid > .eyebrow {
    grid-column-end: 3;
  }

  .manifest-copy {
    grid-column: 3 / 9;
  }

  .faq,
  .contact {
    gap: 5rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 4.75rem;
  }

  .lux-header {
    grid-template-columns: 1fr auto;
    min-height: calc(var(--header-height) + env(safe-area-inset-top));
    padding-inline: max(1.25rem, 4.5vw);
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 0.15rem;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 3.5rem;
    min-height: 2.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-menu summary::marker {
    color: var(--champagne);
  }

  .mobile-menu nav {
    position: fixed;
    z-index: -1;
    inset: calc(var(--header-height) + env(safe-area-inset-top)) 0 auto;
    display: grid;
    align-content: start;
    min-height: calc(100svh - var(--header-height) - env(safe-area-inset-top));
    padding: clamp(2rem, 8vh, 5rem) max(1.25rem, 5vw) max(2rem, env(safe-area-inset-bottom));
    color: var(--ink);
    background: var(--ivory);
    border-top: 1px solid rgba(11, 11, 9, 0.12);
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    min-height: clamp(4.5rem, 12vh, 7rem);
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--display);
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1;
    text-decoration: none;
  }

  .mobile-menu nav a.is-active {
    color: var(--wine);
  }

  .manifest-grid > .eyebrow {
    grid-column: 1 / 4;
  }

  .manifest-grid > h2 {
    grid-column: 1 / 12;
    margin-block-start: 2rem;
  }

  .manifest-copy {
    grid-column: 1 / 9;
  }

  .manifest-note {
    grid-column: 9 / 13;
  }

  .section-heading,
  .management-heading,
  .journal-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading .eyebrow,
  .management-heading .eyebrow,
  .journal-heading .eyebrow {
    padding: 0;
  }

  .management-intro {
    grid-column: 1;
    max-width: 40rem;
  }

  .management-deep-link {
    grid-column: 1;
  }

  .mandate-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mandate-gallery {
    position: relative;
    top: auto;
    height: min(72vh, 42rem);
    min-height: 28rem;
  }

  .mandate-steps {
    padding: 0;
  }

  .mandate-step {
    min-height: auto;
    opacity: 1;
  }

  .origin {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .origin-media {
    min-height: 78svh;
    max-height: 55rem;
  }

  .origin-copy {
    min-height: 38rem;
  }

  .management-row {
    grid-template-columns: 3rem minmax(10rem, 1fr) minmax(12rem, 0.8fr);
  }

  .management-row-media {
    display: none;
  }

  .journal-heading > a {
    justify-self: start;
  }

  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .faq-heading h2 {
    max-width: 11ch;
  }

  .contact-intro {
    max-width: 42rem;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100vw - 2.5rem);
  }

  .lux-header::after {
    inset-inline: 1.25rem;
  }

  .language-picker select {
    padding-inline-end: 0.8rem;
  }

  .js .hero-stage {
    height: 230svh;
    min-height: calc(44rem + 130svh);
  }

  .hero {
    --hero-media-top: calc(var(--header-height) + 1.05rem);
    --hero-media-right: 1.25rem;
    --hero-media-bottom: 57svh;
    --hero-media-left: 1.25rem;
    --hero-frame-top: calc(var(--header-height) + 1.05rem);
    --hero-frame-right: 1.25rem;
    --hero-frame-bottom: 57svh;
    --hero-frame-left: 1.25rem;
    --hero-round: 45%;
    --hero-left-round: 8%;
    --hero-left-round-y: 6%;
    min-height: max(44rem, 100svh);
  }

  .hero-media img {
    object-position: 59% 52%;
  }

  .hero-content {
    inset-block-start: 43.5svh;
    inset-inline-start: 1.25rem;
    width: calc(100% - 2.5rem);
  }

  .hero h1 {
    max-width: 10.4ch;
    font-size: clamp(2.85rem, 12.7vw, 3.7rem);
    line-height: 0.91;
  }

  .hero-lede {
    max-width: 31rem;
    margin-block-start: 0.9rem;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 0.35rem;
    margin-block-start: 1.15rem;
  }

  .button {
    min-height: 3rem;
    padding-inline: 1rem;
    font-size: 0.61rem;
  }

  .hero-footer {
    inset-inline: 1.25rem auto;
    width: 6rem;
    border-top-color: rgba(11, 11, 9, 0.22);
  }

  .hero-footer p {
    display: none;
  }

  .hero-footer a {
    width: 100%;
    justify-content: space-between;
  }

  .hero-fullbleed-mark {
    inset-inline: auto 1.25rem;
    max-width: calc(100% - 9rem);
    font-size: 0.5rem;
  }

  .hero-fullbleed-mark span + span {
    display: none;
  }

  .hero-immersive-copy {
    inset: auto 1.25rem max(7rem, 14svh);
    width: auto;
  }

  .hero-immersive-copy h2 {
    max-width: 10.5ch;
    font-size: clamp(2.8rem, 12vw, 4.35rem);
    line-height: 0.91;
  }

  .hero-immersive-line {
    max-width: 24rem;
    font-size: 0.58rem;
  }

  .section-shell {
    padding-inline: 1.25rem;
  }

  .section-index {
    inset-inline-end: 1rem;
  }

  .manifest-grid {
    display: block;
    width: 100%;
  }

  .manifest-grid > h2 {
    margin-block-start: 1.5rem;
  }

  .manifest-copy {
    margin-block-start: 2.5rem;
  }

  .manifest-note {
    max-width: 24rem;
    margin-block-start: 4rem;
  }

  .section-heading,
  .management-heading,
  .journal-heading,
  .faq-heading,
  .management-list,
  .management-note,
  .journal-list,
  .mandate-layout,
  .footer-top,
  .footer-bottom {
    width: 100%;
  }

  .mandate-gallery {
    height: 66svh;
    min-height: 26rem;
  }

  .mandate-step {
    grid-template-columns: 2.25rem 1fr;
  }

  .origin-media {
    min-height: 70svh;
  }

  .origin-copy {
    min-height: 34rem;
    padding: 5rem 1.25rem;
  }

  .management-row {
    grid-template-columns: 2.25rem 1fr;
    gap: 1rem;
    padding-block: 1.8rem;
  }

  .management-row p {
    grid-column: 2;
  }

  .journal-item {
    grid-template-columns: 2.25rem 1fr;
    gap: 1rem;
    min-height: 9.5rem;
  }

  .journal-read {
    display: none;
  }

  .faq {
    gap: 4rem;
  }

  .contact-intro h2 {
    max-width: 100%;
  }

  .faq-list details p {
    padding-inline: 1rem 0;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top p {
    max-width: 18rem;
    text-align: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom nav {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-content: space-between;
    gap: 1rem;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 7.7rem;
  }

  .language-picker {
    min-width: 2.5rem;
  }

  .mobile-menu summary {
    min-width: 3.2rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12.1vw, 3rem);
  }

  .hero-eyebrow {
    letter-spacing: 0.13em;
  }

  .hero-actions .button {
    min-height: 2.75rem;
    padding-inline: 0.85rem;
  }

  .hero-footer p {
    max-width: 13rem;
  }

  .display-title {
    font-size: clamp(3rem, 15.5vw, 4.3rem);
  }
}

@media (max-width: 390px) and (max-height: 740px) {
  .hero {
    --hero-media-bottom: 60svh;
    --hero-frame-bottom: 60svh;
  }

  .hero-content {
    inset-block-start: 39.5svh;
  }

  .hero-eyebrow {
    margin-block-end: 0.75rem;
    font-size: 0.56rem;
    letter-spacing: 0.075em;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11.5vw, 2.85rem);
  }

  .hero-lede {
    margin-block-start: 0.85rem;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .hero-actions {
    margin-block-start: 1rem;
  }

  .hero-actions .button {
    min-height: 2.8rem;
    padding-block: 0.65rem;
  }
}

@media (max-width: 640px) and (max-height: 740px) {
  .js .hero-stage {
    min-height: calc(42rem + 105svh);
  }

  .hero {
    min-height: 42rem;
  }

  .js .hero-stage .hero {
    min-height: 100svh;
  }
}

@media (max-height: 800px) and (min-width: 641px) {
  .hero-content {
    inset-block-start: 8.5rem;
  }

  .hero-eyebrow {
    margin-block-end: 1rem;
  }

  .hero h1 {
    max-width: 8.6ch;
    font-size: clamp(3.3rem, 5.55vw, 5.5rem);
  }

  .hero-lede {
    margin-block-start: 1rem;
  }

  .hero-actions {
    margin-block-start: 1rem;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .js .hero-stage {
    height: auto;
    min-height: 0;
  }

  .js .hero-stage .hero {
    position: relative;
    top: auto;
    height: auto;
  }

  .hero {
    min-height: 36rem;
  }

  .hero-content {
    inset-block-start: 7rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 5.2vw, 4.5rem);
  }

  .hero-lede {
    max-width: 43rem;
    margin-block-start: 1rem;
  }

  .hero-actions {
    margin-block-start: 1rem;
  }
}

[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.7;
}

[dir="rtl"] .display-title,
[dir="rtl"] .hero h1,
[dir="rtl"] .hero-immersive-copy h2,
[dir="rtl"] .section-heading h2,
[dir="rtl"] .management-heading h2,
[dir="rtl"] .journal-heading h2,
[dir="rtl"] .faq-heading h2,
[dir="rtl"] .mandate-step h3,
[dir="rtl"] .management-row h3,
[dir="rtl"] .journal-item h3,
[dir="rtl"] .faq-list summary,
[dir="rtl"] .footer-top p {
  font-family: Tahoma, Arial, sans-serif;
  letter-spacing: -0.025em;
}

[dir="rtl"] .brand-logo {
  inset-inline: 0 auto;
}

[dir="rtl"] .desktop-nav a::after,
[dir="rtl"] .lux-footer nav a::after {
  transform-origin: left center;
}

[dir="rtl"] .desktop-nav a:hover::after,
[dir="rtl"] .desktop-nav a:focus-visible::after,
[dir="rtl"] .lux-footer nav a:hover::after,
[dir="rtl"] .lux-footer nav a:focus-visible::after {
  transform-origin: right center;
}

[dir="rtl"] .management-deep-link::after {
  transform-origin: right;
}

[dir="rtl"] .hero-content {
  inset-inline: max(4.5vw, 1.25rem) auto;
}

[dir="rtl"] .hero {
  --hero-media-right: 46vw;
  --hero-media-left: max(4rem, 5.8vw);
  --hero-frame-right: 46vw;
  --hero-frame-left: max(4rem, 5.8vw);
}

[dir="rtl"] .hero-media,
[dir="rtl"] .hero-wash,
[dir="rtl"] .hero-cinematic-frame {
  border-radius: var(--hero-round) var(--hero-left-round) var(--hero-left-round) var(--hero-round) / 50% var(--hero-left-round-y) var(--hero-left-round-y) 50%;
}

[dir="rtl"] .hero-fullbleed-mark {
  inset-inline: max(2rem, 4.5vw) auto;
}

[dir="rtl"] .hero-immersive-copy {
  inset-inline: max(4.5vw, 1.25rem) auto;
}

@media (max-width: 640px) {
  [dir="rtl"] .hero {
    --hero-media-right: 1.25rem;
    --hero-media-left: 1.25rem;
    --hero-frame-right: 1.25rem;
    --hero-frame-left: 1.25rem;
  }
}

[dir="rtl"] .manifest-grid > h2,
[dir="rtl"] .hero h1 {
  line-height: 1.05;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .hero-stage {
    height: auto;
    min-height: 0;
  }

  .js .hero-stage .hero {
    position: relative;
    top: auto;
    height: auto;
  }

  .hero-media img {
    transform: scale(1.02) !important;
  }

  .hero-cinematic-frame,
  .hero-light-sweep {
    display: none;
  }

  .js .site-intro {
    display: none !important;
  }

  .js body.is-intro {
    overflow: auto;
  }

  .js .reveal,
  .js .reveal-media {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}

@media print {
  .lux-header,
  .page-progress,
  .site-intro,
  .hero-footer,
  .mobile-menu,
  .hero-actions {
    display: none !important;
  }

  body,
  .manifest,
  .mandate,
  .management,
  .journal,
  .faq,
  .contact,
  .lux-footer {
    color: #000 !important;
    background: #fff !important;
  }

  .hero {
    min-height: 40rem;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
