.masthead {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--masthead);
  background: rgba(244, 238, 226, .84);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule-soft);
  transition: background 300ms var(--ease), border-color 300ms var(--ease);
}

.masthead.is-stuck {
  background: rgba(244, 238, 226, .96);
  border-bottom-color: var(--rule);
}

.masthead__inner {
  height: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.crest {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex: none;
}

.crest img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.crest__type {
  display: block;
  line-height: 1.1;
}

.crest__type b {
  display: block;
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--ink);
  font-variation-settings: 'WONK' 1, 'opsz' 40;
  white-space: nowrap;
}

.crest__type span {
  display: block;
  margin-top: .1rem;
  font-family: var(--sans);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.navlinks {
  display: none;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
}

@media (min-width: 1000px) { .navlinks { display: flex; } }

.navlink {
  position: relative;
  font-family: var(--sans);
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--ink-2);
  padding: .45rem 0;
  transition: color 220ms var(--ease);
  display: inline-flex;
  align-items: baseline;
}

.navlink::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 380ms var(--ease-out);
}

.navlink:hover { color: var(--wine); }
.navlink:hover::after,
.navlink.is-here::after { transform: scaleX(1); transform-origin: left; }
.navlink.is-here { color: var(--wine); }

.masthead__end { display: flex; align-items: center; gap: .75rem; }
.masthead__end .key { display: none; }
@media (min-width: 680px) { .masthead__end .key { display: inline-flex; } }

.progress {
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--wine), var(--gold));
}

.burger {
  position: relative;
  z-index: 2;
  width: 42px; height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.6px solid var(--wine);
  border-radius: 4px;
  background: var(--paper-hi);
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,.6), 0 var(--key-depth-sm) 0 0 var(--wine);
  transition: background 200ms var(--ease), border-color 200ms var(--ease),
              box-shadow var(--key-press), transform var(--key-press);
}
.burger:active { transform: translateY(var(--key-depth-sm)); box-shadow: 0 0 0 0; }
@media (min-width: 1000px) { .burger { display: none; } }

.burger span {
  display: block;
  width: 19px; height: 2px;
  flex: none;
  border-radius: 1px;
  background: var(--wine);
  transition: transform 320ms var(--ease-out), opacity 160ms, background 200ms;
}
.burger span + span { margin-top: 4px; }

.burger.is-open {
  background: var(--gold);
  border-color: var(--gold-deep);
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,.4), 0 var(--key-depth-sm) 0 0 var(--gold-deep);
}
.burger.is-open span { background: var(--wine-press); }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--wine-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--masthead) + 2rem) var(--gutter) 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 340ms var(--ease), visibility 340ms;
}
.drawer.is-open { opacity: 1; visibility: visible; }

.drawer::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
  background-size: 46px 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%23EEDCB6' stroke-opacity='.09' stroke-width='1.1'%3E%3Cpath d='M36 4 52 20 36 36 20 20Z'/%3E%3Cpath d='M36 36 52 52 36 68 20 52Z'/%3E%3C/g%3E%3C/svg%3E");
}

.drawer a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(238, 220, 182, .16);
  font-family: var(--serif);
  font-size: clamp(2rem, 11vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
  color: var(--paper-hi);
  font-variation-settings: 'WONK' 1, 'opsz' 100;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 460ms var(--ease-out), transform 620ms var(--ease-out);
}

.drawer.is-open a { opacity: 1; transform: none; }
.drawer.is-open a:nth-child(1) { transition-delay: 100ms; }
.drawer.is-open a:nth-child(2) { transition-delay: 170ms; }
.drawer.is-open a:nth-child(3) { transition-delay: 240ms; }
.drawer.is-open a:nth-child(4) { transition-delay: 310ms; }

.drawer .key {
  margin-top: 2rem;
  border-bottom: 0;
  font-family: var(--mono);
  font-size: .8125rem;
  justify-content: center;
  --cap: var(--gold);
  --edge: var(--gold-deep);
  --ontop: #2A1B06;
  --lip: rgba(255,255,255,.38);
  color: #2A1B06;
}

.drawer__foot {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(238, 220, 182, .16);
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(238, 220, 182, .5);
  opacity: 0;
  transition: opacity 400ms var(--ease) 380ms;
}
.drawer.is-open .drawer__foot { opacity: 1; }

.hero {
  position: relative;
  padding-top: calc(var(--masthead) + clamp(1.25rem, 3vw, 2.25rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.duo {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 940px) {
  .duo { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
}

.hero__grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 940px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    column-gap: clamp(2.5rem, 5vw, 4rem);
    row-gap: 1.5rem;
  }
  .hero__title { grid-column: 1; grid-row: 1; }
  .hero__copy  { grid-column: 1; grid-row: 2; }
  .hero__grid .plate { grid-column: 2; grid-row: 1 / span 2; }
}

.hero__title .label { margin-bottom: 1.1rem; }
.hero h1 { margin-bottom: 0; }
.hero__copy { margin-top: .25rem; }

.hero h1 em {
  color: var(--wine);
  position: relative;
  display: inline-block;
}

.js .swash::after {
  content: '';
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: .01em;
  height: .16em;
  background: no-repeat center / 100% 100%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 16' preserveAspectRatio='none'%3E%3Cpath d='M3 11C56 3.5 116 2.5 166 7c34 3 78 8.5 131 2.5' fill='none' stroke='%23B4863A' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease-out) 520ms;
}
.split-line.is-in .swash::after,
.is-in .swash::after { transform: scaleX(1); }

.hero__lead { max-width: 46ch; margin-bottom: 2rem; }

.hero__keys { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.25rem; }

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.hero__fact {
  flex: 1 1 140px;
  padding: 1rem 1.25rem 0 0;
  border-right: 1px solid var(--rule-soft);
}
.hero__fact:last-child { border-right: 0; padding-right: 0; }
.hero__fact dt {
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: .35rem;
}
.hero__fact dd {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  font-variation-settings: 'WONK' 1, 'opsz' 60;
  line-height: 1.1;
}

.plate {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
}

.js .plate { opacity: 0; transform: scale(.94) translateY(20px); }
.js .plate__arch { clip-path: inset(0 0 100% 0); }
.js .seal { opacity: 0; transform: scale(.7) rotate(-18deg); }

html.ready .plate {
  opacity: 1;
  transform: none;
  transition: opacity 900ms var(--ease-out) 240ms, transform 1000ms var(--ease-out) 240ms;
}
html.ready .plate__arch {
  clip-path: inset(0 0 0 0);
  transition: clip-path 1100ms var(--ease-out) 320ms;
}
html.ready .seal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms var(--ease-out) 900ms, transform 800ms cubic-bezier(.2,1.5,.4,1) 900ms;
}

.plate__arch {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--paper-hi);
  border: 1.5px solid var(--wine);
  border-radius: 50% 50% 4px 4px / 34% 34% 4px 4px;
  overflow: hidden;
  box-shadow: 0 34px 64px -34px rgba(51, 10, 12, .42);
}

.plate__arch::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 46px 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none' stroke='%236E1A1C' stroke-opacity='.13' stroke-width='1.1'%3E%3Cpath d='M36 4 52 20 36 36 20 20Z'/%3E%3Cpath d='M36 36 52 52 36 68 20 52Z'/%3E%3Cpath d='M0 20 20 20 20 0M72 20 52 20 52 0M0 52 20 52 20 72M72 52 52 52 52 72'/%3E%3C/g%3E%3C/svg%3E");
}

.plate__arch img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
}

.plate__keyline {
  position: absolute;
  inset: 9px;
  border: 1px solid var(--rule-gold);
  border-radius: 50% 50% 3px 3px / 34% 34% 3px 3px;
  pointer-events: none;
  z-index: 3;
}

.plate__mark {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 14% 15% 19%;
}
.plate__mark img {
  position: static;
  width: 100%;
  height: auto;
}

.seal {
  position: absolute;
  right: -22px;
  bottom: 12%;
  z-index: 4;
  width: clamp(94px, 12vw, 128px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.seal__disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wine);
  border: 1.5px solid var(--gold);
  box-shadow: 0 14px 32px -12px rgba(51, 10, 12, .55);
}

.seal__spin { position: absolute; inset: 0; animation: spin 28s linear infinite; }
.seal__spin text {
  font-family: var(--mono);
  font-size: 7.2px;
  font-weight: 700;
  letter-spacing: .2em;
  fill: var(--gold-pale);
  text-transform: uppercase;
}

@keyframes spin { to { transform: rotate(360deg); } }

.seal__core {
  position: relative;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-lift);
  font-variation-settings: 'WONK' 1, 'opsz' 60;
  letter-spacing: -.02em;
}

.fixture {
  background: var(--wine-deep);
  color: var(--gold-pale);
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
}

.fixture__inner {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-block: clamp(2rem, 3.5vw, 2.75rem);
  align-items: center;
}

@media (min-width: 900px) {
  .fixture__inner { grid-template-columns: minmax(0, 1fr) auto; }
}

.fixture__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.6vw, 2.9rem);
  font-weight: 600;
  color: var(--paper-hi);
  line-height: 1.05;
  font-variation-settings: 'WONK' 1, 'opsz' 100;
  margin: .55rem 0 .5rem;
}

.fixture__meta {
  font-family: var(--mono);
  font-size: .71875rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(238, 220, 182, .62);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.1rem;
}
.fixture__meta span { display: inline-flex; align-items: center; gap: .55em; }
.fixture__meta span::before { content: ''; width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); }

.clock {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--rule-gold);
  border-radius: 4px;
  background: rgba(0, 0, 0, .18);
  overflow: hidden;
}

.clock__cell {
  flex: 1 1 0;
  min-width: 72px;
  padding: .95rem .5rem .75rem;
  text-align: center;
  border-right: 1px solid var(--rule-gold);
}
.clock__cell:last-child { border-right: 0; }

.clock__digits {
  display: flex;
  justify-content: center;
  font-family: var(--mono);
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--paper-hi);
  font-variant-numeric: tabular-nums;
}

.roll {
  display: block;
  height: 1em;
  overflow: hidden;
}
.roll__strip {
  display: block;
  transition: transform 620ms cubic-bezier(.5, 0, .12, 1);
}
.roll__strip span { display: block; height: 1em; }

.clock__unit {
  display: block;
  margin-top: .5rem;
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(238, 220, 182, .55);
}

.fixture__keys { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.4rem; }

.fixture--empty .clock { display: none; }

.ticker {
  background: var(--ink);
  border-block: 1px solid rgba(0,0,0,.4);
  overflow: hidden;
  padding-block: .85rem;
  --ticker-duration: 34s;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: slide var(--ticker-duration) linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__group { display: flex; flex: none; }

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding-inline: 1.5rem;
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-pale);
  white-space: nowrap;
}
.ticker__item::after {
  content: '';
  width: 9px; height: 9px;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

@keyframes slide { to { transform: translate3d(-50%, 0, 0); } }

.pillars {
  display: grid;
  gap: 0;
}

@media (min-width: 820px) { .pillars { grid-template-columns: repeat(3, 1fr); } }

.pillar {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--rule-soft);
}

@media (min-width: 820px) {
  .pillar { padding: clamp(2rem, 3vw, 2.75rem) clamp(1.5rem, 2.5vw, 2.25rem); border-bottom: 0; border-right: 1px solid var(--rule-soft); }
  .pillar:first-child { padding-left: 0; }
  .pillar:last-child { border-right: 0; padding-right: 0; }
}

.pillar__no {
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 1.1rem;
}

.pillar__glyph { display: block; width: 34px; height: 34px; margin-bottom: 1.1rem; color: var(--wine); }
.pillar__glyph svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; }

.pillar h3 { margin-bottom: .65rem; }
.pillar p { font-size: 1rem; color: var(--ink-3); }

.pillar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 46px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms var(--ease-out) var(--delay, 0ms);
}
.pillar.is-in::after { transform: scaleX(1); }
@media (min-width: 820px) { .pillar:first-child::after { left: 0; } }

.feature {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (min-width: 900px) { .feature { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); } }

.feature__poster {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-lo);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.feature__poster img { width: 100%; height: 100%; object-fit: cover; }

.feature__stamp {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  padding: .4rem .7rem;
  background: var(--wine);
  color: var(--gold-pale);
  font-family: var(--mono);
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 2px;
}
.feature__stamp--past { background: var(--ink-2); }

.feature h2 { margin: .6rem 0 .9rem; }

.facts { margin: 1.75rem 0; border-top: 1px solid var(--rule-hard); }
.facts tr { border-bottom: 1px solid var(--rule-soft); }
.facts th {
  width: 34%;
  text-align: left;
  padding: .85rem 1rem .85rem 0;
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-4);
  vertical-align: top;
}
.facts td {
  padding: .85rem 0;
  font-size: 1rem;
  overflow-wrap: break-word;
  color: var(--ink);
  font-weight: 500;
}

.cards {
  display: grid;
  gap: clamp(1.1rem, 2.4vw, 1.85rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--paper-hi);
  border: 1px solid var(--rule);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 0 0 rgba(34, 18, 16, .07);
  transition: transform 460ms var(--ease-out), box-shadow 460ms var(--ease-out),
              border-color 300ms var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--wine);
  box-shadow: 0 24px 42px -24px rgba(34, 18, 16, .42);
}

.card__img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-lo);
  overflow: hidden;
}
.card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.card:hover .card__img img { transform: scale(1.05); }

.card__blank {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.1;
  color: var(--gold-pale);
  background: linear-gradient(165deg, var(--wine) 0%, var(--wine-deep) 100%);
  font-variation-settings: 'WONK' 1, 'opsz' 60;
}

.card__tag {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  padding: .32rem .6rem;
  border-radius: 2px;
  background: var(--wine);
  color: var(--gold-pale);
  font-family: var(--mono);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.card__tag--past { background: rgba(34, 18, 16, .78); }

.card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1rem 1.1rem 1.2rem;
}

.card__date {
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.card__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  font-variation-settings: 'WONK' 1, 'opsz' 60;
}

.card__where {
  margin-top: auto;
  padding-top: .55rem;
  font-size: .875rem;
  color: var(--ink-3);
}

.reel {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}

.tape {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
}

.tape__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  overflow: hidden;
  background: var(--wine-deep);
  border: 1px solid var(--rule);
  transition: transform 520ms var(--ease-out), box-shadow 520ms var(--ease-out);
}

.tape:hover .tape__frame {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px -22px rgba(34, 18, 16, .5);
}

.tape__frame img,
.tape__frame video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out), opacity 400ms var(--ease);
}
.tape:hover .tape__frame img { transform: scale(1.05); }

.tape__frame video { position: absolute; inset: 0; opacity: 0; }
.tape.is-previewing .tape__frame video { opacity: 1; }

.tape__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: linear-gradient(to top, rgba(51,10,12,.72) 0%, rgba(51,10,12,.12) 55%, rgba(51,10,12,.28) 100%);
  transition: opacity 400ms var(--ease);
}

.tape__play span {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-pale);
  background: rgba(51, 10, 12, .4);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  transition: transform 420ms var(--ease-out), background 300ms;
}
.tape:hover .tape__play span { transform: scale(1.1); background: var(--gold); border-color: var(--gold); }
.tape__play svg { width: 15px; height: 15px; fill: var(--gold-pale); margin-left: 2px; transition: fill 300ms; }
.tape:hover .tape__play svg { fill: var(--wine-press); }

.tape__cap { padding-top: .85rem; }
.tape__cap h4 { color: var(--ink); margin-bottom: .25rem; font-family: var(--serif); font-variation-settings: 'WONK' 1, 'opsz' 40; }
.tape__cap p { font-family: var(--mono); font-size: .6875rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: .5rem .85rem;
  border: 1.4px solid rgba(34, 18, 16, .28);
  border-radius: 3px;
  background: var(--paper-hi);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,.6), 0 var(--key-depth-sm) 0 0 rgba(34,18,16,.24);
  transition: background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease),
              box-shadow var(--key-press), transform var(--key-press);
}
.chip i { font-style: normal; color: var(--gold-deep); font-size: .5625rem; }
.chip:hover { border-color: var(--wine); color: var(--wine); }
.chip:active { transform: translateY(var(--key-depth-sm)); box-shadow: inset 0 1px 0 0 rgba(255,255,255,.6), 0 0 0 0; }

.chip.is-on {
  background: var(--wine);
  border-color: var(--wine-deep);
  color: var(--gold-pale);
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,.2), 0 var(--key-depth-sm) 0 0 var(--wine-deep);
}
.chip.is-on i { color: var(--gold-lift); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(20, 8, 8, .93);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 340ms var(--ease), visibility 340ms;
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__stage {
  position: relative;
  max-width: min(100%, 520px);
  width: 100%;
  transform: scale(.94) translateY(14px);
  transition: transform 480ms var(--ease-out);
}
.lightbox.is-open .lightbox__stage { transform: none; }

.lightbox video {
  width: 100%;
  max-height: 78vh;
  border-radius: 4px;
  border: 1px solid var(--rule-gold);
  background: #000;
}

.lightbox__bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .9rem;
  margin-top: .9rem;
  border-top: 1px solid rgba(238,220,182,.22);
}
.lightbox__bar h4 { color: var(--paper-hi); font-family: var(--serif); }
.lightbox__bar p { font-family: var(--mono); font-size: .625rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(238,220,182,.55); }

.lightbox__close {
  position: absolute;
  top: -52px; right: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(238,220,182,.4);
  border-radius: 4px;
  color: var(--gold-pale);
  display: grid; place-items: center;
  transition: background 240ms, transform 240ms;
}
.lightbox__close:hover { background: rgba(238,220,182,.14); transform: rotate(90deg); }

.paths { display: grid; gap: 0; }
@media (min-width: 820px) { .paths { grid-template-columns: repeat(3, 1fr); } }

.path {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--rule-soft);
}
@media (min-width: 820px) {
  .path { padding: clamp(2rem, 3vw, 2.75rem) clamp(1.5rem, 2.5vw, 2.25rem); border-bottom: 0; border-right: 1px solid var(--rule-soft); }
  .path:first-child { padding-left: 0; }
  .path:last-child { border-right: 0; padding-right: 0; }
}
.path p { font-size: 1rem; color: var(--ink-3); flex: 1; }
.path .key { align-self: flex-start; margin-top: .5rem; }

.ways { border-top: 0; }

.way {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .75rem clamp(1.25rem, 4vw, 3rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: start;
}

@media (min-width: 900px) {
  .way { grid-template-columns: auto minmax(0, .85fr) minmax(0, 1.35fr); }
}

.way__body { grid-column: 2 / -1; }
@media (min-width: 900px) { .way__body { grid-column: auto; } }

.way__no {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  font-variation-settings: 'WONK' 1, 'opsz' 100;
  min-width: 2ch;
}

.way h3 { margin-bottom: .6rem; }
.way__body p { color: var(--ink-3); margin-bottom: 1.35rem; max-width: 56ch; font-size: 1.0625rem; }

.contact { border-top: 1px solid rgba(238, 220, 182, .25); }
.contact > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35rem 1.5rem;
  padding: .95rem 0;
  border-bottom: 1px solid rgba(238, 220, 182, .16);
}
.contact dt {
  flex: none;
  min-width: 8ch;
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(238, 220, 182, .5);
}
.contact dd { font-size: 1.0625rem; color: var(--paper-hi); font-weight: 500; min-width: 0; overflow-wrap: break-word; }
.contact dd a { border-bottom: 1px solid rgba(238, 220, 182, .35); padding-bottom: 2px; transition: border-color 220ms, color 220ms; }
.contact dd a:hover { color: var(--gold-lift); border-color: var(--gold-lift); }

.statement {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--paper-hi);
  font-variation-settings: 'WONK' 1, 'opsz' 144;
  max-width: 18ch;
}
.statement em { color: var(--gold-lift); }
.center .statement { max-width: 20ch; }

.attrib {
  max-width: none;
  margin-top: 1.75rem;
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(238, 220, 182, .55);
}

.foot {
  background: var(--wine-press);
  color: rgba(238, 220, 182, .7);
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
}

.foot .foot__word {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 10vw, 8.5rem);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238, 220, 182, .3);
  font-variation-settings: 'WONK' 1, 'opsz' 144;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(238, 220, 182, .18);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 100%;
  text-wrap: balance;
}

.foot__cols {
  display: grid;
  gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
@media (min-width: 760px) { .foot__cols { grid-template-columns: 1.4fr 1fr 1fr; } }

.foot h4 {
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.foot li + li { margin-top: .6rem; }
.foot a { font-size: 1rem; transition: color 220ms var(--ease); }
.foot a:hover { color: var(--gold-lift); }
.foot p { font-size: 1rem; }

.foot__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(238, 220, 182, .18);
  font-family: var(--mono);
  font-size: .5625rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(238, 220, 182, .45);
}

.foot__bar a { font-size: inherit; }
.foot__by { color: rgba(238, 220, 182, .38); }
.foot__by a {
  color: rgba(238, 220, 182, .62);
  border-bottom: 1px solid rgba(238, 220, 182, .25);
  padding-bottom: 1px;
  transition: color 220ms var(--ease), border-color 220ms var(--ease);
}
.foot__by a:hover { color: var(--gold-lift); border-color: var(--gold-lift); }
.foot__bar a:hover { color: var(--gold-lift); }

.socials { display: flex; gap: .5rem; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(238, 220, 182, .28);
  border-radius: 4px;
  color: var(--gold-pale);
  box-shadow: 0 var(--key-depth-sm) 0 0 rgba(238, 220, 182, .18);
  transition: background 220ms, transform var(--key-press), box-shadow var(--key-press);
}
.socials a:hover { background: rgba(238, 220, 182, .12); }
.socials a:active { transform: translateY(var(--key-depth-sm)); box-shadow: 0 0 0 0; }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

.pagehead {
  padding-top: calc(var(--masthead) + clamp(2rem, 4vw, 3.25rem));
  padding-bottom: clamp(1.75rem, 3vw, 2.75rem);
  border-bottom: 1px solid var(--rule);
}
.pagehead h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); margin: .7rem 0 1rem; }
.pagehead .lead { max-width: 52ch; }

.crumbs {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--mono);
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 1.25rem;
}
.crumbs a { color: var(--wine); }
.crumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }

.center { text-align: center; }
.center .crumbs,
.center .label,
.center .keys { justify-content: center; }
.center p,
.center .lead,
.center .statement { margin-inline: auto; }
.center .keys { display: flex; flex-wrap: wrap; gap: .75rem; }

.prose { max-width: 66ch; }
.prose p { font-size: 1.0625rem; line-height: 1.72; }
.prose h3 { margin: 2.25rem 0 .75rem; }
.prose ul { margin: 1rem 0; }
.prose li { position: relative; padding-left: 1.4rem; margin-bottom: .5rem; }
.prose li::before { content: ''; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

.empty {
  padding: clamp(2rem, 4vw, 3rem) 0;
  text-align: center;
}
.empty h3 { margin-bottom: .6rem; }
.empty p { margin-inline: auto; color: var(--ink-3); }

.skeleton {
  background: linear-gradient(90deg, var(--paper-lo) 25%, var(--paper-hi) 50%, var(--paper-lo) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: 3px;
}
@keyframes shimmer { to { background-position: -200% 0; } }

@keyframes riseIn {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to   { opacity: 1; transform: none; }
}

.js .cards > *,
.js .reel > * {
  opacity: 0;
  animation: riseIn 640ms var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 70ms);
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 780ms var(--ease-out) var(--delay, 0ms),
    transform 780ms var(--ease-out) var(--delay, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

.js [data-reveal='fade'] { transform: none; }
.js [data-reveal='left']  { transform: translate3d(-26px, 0, 0); }
.js [data-reveal='right'] { transform: translate3d(26px, 0, 0); }
.js [data-reveal='scale'] { transform: scale(.965); }

.split-line { display: block; overflow: hidden; }
.js .split-line > span {
  display: block;
  transform: translate3d(0, 105%, 0);
  transition: transform 980ms var(--ease-out) var(--delay, 0ms);
}
.is-in .split-line > span,
.split-line.is-in > span { transform: none; }

.js [data-wipe] {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1100ms var(--ease-out) var(--delay, 0ms);
}
[data-wipe].is-in { clip-path: inset(0 0 0 0); }

.js [data-draw] path {
  stroke-dasharray: var(--len, 400);
  stroke-dashoffset: var(--len, 400);
  transition: stroke-dashoffset 1400ms var(--ease-out) var(--delay, 0ms);
}
[data-draw].is-in path { stroke-dashoffset: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal], .split-line > span, [data-wipe] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  [data-draw] path { stroke-dashoffset: 0 !important; }
  .seal__spin { animation: none; }
}

@media (max-width: 720px) {
  .masthead,
  .masthead.is-stuck {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .masthead__inner { gap: .75rem; }
  .crest { gap: .55rem; }
  .crest img { width: 32px; height: 32px; }
  .crest__type b { font-size: .875rem; letter-spacing: -.02em; }
  .crest__type span { font-size: .5rem; letter-spacing: .16em; }

  h1 { font-size: clamp(2.1rem, 9vw, 2.75rem); }
  h2 { font-size: clamp(1.6rem, 6.5vw, 2.1rem); }
  h3 { font-size: 1.25rem; }
  .lead { font-size: 1.0625rem; }
  .hero__title .label { justify-content: center; margin-bottom: .9rem; }

  .hero { padding-top: calc(var(--masthead) + 1.5rem); padding-bottom: 2.25rem; }
  .hero__grid { display: flex; flex-direction: column; gap: 1.5rem; text-align: center; }
  .hero__title { order: 1; margin-bottom: 0; }
  .hero__copy  { order: 2; }
  .hero__grid .plate { order: 3; }
  .hero__lead { margin-inline: auto; margin-bottom: 1.5rem; }
  .hero__keys { gap: .6rem; margin-bottom: 1.5rem; }
  .hero__keys .key { flex: 1 1 100%; }
  .hero__facts { justify-content: center; }

  .plate { width: min(84%, 290px); }
  .seal { width: 76px; right: -6px; bottom: 8%; }
  .seal__core { font-size: 1.05rem; }
  .seal__spin text { font-size: 7.6px; }

  .hero__facts { gap: .5rem 1.5rem; padding-top: .9rem; }
  .hero__fact {
    flex: 0 1 auto;
    display: flex;
    align-items: baseline;
    gap: .5rem;
    padding: 0;
    border-right: 0;
  }
  .hero__fact dt { margin-bottom: 0; font-size: .5rem; letter-spacing: .16em; }
  .hero__fact dd { font-size: .9375rem; }

  .fixture__inner { gap: 1.25rem; }
  .fixture__title { font-size: clamp(1.5rem, 8vw, 2rem); }
  .clock { flex-wrap: wrap; }
  .clock__cell { flex: 1 0 calc(50% - 1px); min-width: 0; }
  .clock__cell:nth-child(2) { border-right: 0; }
  .clock__cell:nth-child(1), .clock__cell:nth-child(2) { border-bottom: 1px solid var(--rule-gold); }
  .clock__digits { font-size: 2.1rem; }
  .fixture__keys { gap: .6rem; }
  .fixture__keys .key { flex: 1 1 100%; }

  .ticker__item { font-size: .625rem; letter-spacing: .22em; padding-inline: 1rem; gap: 1rem; }

  .band { padding-block: 2.5rem; }
  .band--tight { padding-block: 2rem; }
  .sechead { gap: .75rem; }

  .duo { gap: 1.25rem; }

  .cards { grid-template-columns: 1fr 1fr; gap: .85rem; }
  .split__side { --rail-bleed: var(--gutter); }
  .card__body { padding: .8rem .85rem 1rem; gap: .25rem; }
  .card__title { font-size: 1.05rem; }
  .card__where { font-size: .75rem; padding-top: .4rem; }
  .card__date { font-size: .5625rem; letter-spacing: .12em; }

  .reel { grid-template-columns: 1fr 1fr; gap: .85rem; }
  .tape__cap h4 { font-size: 1rem; }

  .feature { gap: 1.5rem; }
  .facts th { width: 40%; font-size: .5625rem; padding-right: .75rem; }
  .facts td { font-size: .875rem; }

  .pillar { padding: 1.5rem 0; }
  .way { gap: .5rem 1rem; padding: 1.5rem 0; }
  .way__no { font-size: 1.75rem; }
  .way__body p { margin-bottom: 1rem; }
  .path { padding: 1.5rem 0; }

  .statement { font-size: clamp(1.6rem, 8.5vw, 2.4rem); max-width: none; }

  .foot { padding-top: 2.5rem; }
  .foot .foot__word { font-size: clamp(2rem, 13vw, 3rem); padding-bottom: 1.25rem; margin-bottom: 1.75rem; }
  .foot__cols { gap: 1.75rem; }
  .foot__bar { flex-direction: column; align-items: flex-start; gap: .5rem; }

  .pagehead { padding-top: calc(var(--masthead) + 1.5rem); padding-bottom: 1.5rem; }
  .keys .key { flex: 1 1 100%; }

  .lightbox__close { top: auto; bottom: -50px; right: 50%; transform: translateX(50%); }

  .chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .4rem; scrollbar-width: none; }
  .chips::-webkit-scrollbar { display: none; }
  .chip { flex: none; }

  .drawer { justify-content: flex-start; padding-top: calc(var(--masthead) + 1.5rem); }
  .drawer__foot { margin-top: 2.5rem; }
}

@media (max-width: 420px) {
  .cards, .reel { grid-template-columns: 1fr; }
  .hero__facts { grid-template-columns: 1fr; }
  .hero__fact { border-right: 0; }
}

.signin {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 2rem);
  background: rgba(34, 18, 16, .5);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms var(--ease), visibility 300ms;
}
.signin.is-open { opacity: 1; visibility: visible; }

.signin__card {
  position: relative;
  width: min(100%, 380px);
  background: var(--paper-hi);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: clamp(1.6rem, 5vw, 2.1rem);
  box-shadow: 0 40px 80px -40px rgba(34, 18, 16, .65);
  transform: translateY(16px) scale(.96);
  transition: transform 520ms var(--ease-out);
}
.signin.is-open .signin__card { transform: none; }

.signin__close {
  position: absolute;
  top: .75rem; right: .75rem;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: var(--ink-3);
  transition: background 200ms, color 200ms, transform 260ms var(--ease-out);
}
.signin__close:hover { background: var(--paper-lo); color: var(--wine); transform: rotate(90deg); }

.signin__card img { width: 48px; height: 48px; object-fit: contain; margin-bottom: 1rem; }
.signin__card h2 { font-size: 1.6rem; margin-bottom: .25rem; }
.signin__card > p { font-size: .9375rem; color: var(--ink-3); margin-bottom: 1.5rem; }

.signin__field { margin-bottom: .9rem; }
.signin__field label {
  display: block;
  margin-bottom: .4rem;
  font-family: var(--mono);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.signin__field input {
  width: 100%;
  padding: .7rem .85rem;
  background: #fff;
  border: 1.4px solid var(--rule-hard);
  border-radius: 3px;
  font-size: .9375rem;
  color: var(--ink);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.signin__field input:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(110, 26, 28, .12);
}

.signin__note {
  margin-top: 1rem;
  padding: .7rem .85rem;
  border-left: 3px solid var(--wine);
  background: var(--wine-wash);
  border-radius: 0 3px 3px 0;
  font-size: .875rem;
  color: var(--ink-2);
}

.split { display: grid; }

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
}

.split__side {
  display: flex;
  flex-direction: column;
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
  padding-inline: var(--gutter);
}

.split__side .empty { padding-block: clamp(2rem, 4vw, 3rem) 0; }

@media (min-width: 900px) {
  .split__side--a { padding-inline: clamp(1.5rem, 3.5vw, 3.25rem) clamp(1.25rem, 2vw, 1.75rem); }
  .split__side--b { padding-inline: clamp(1.25rem, 2vw, 1.75rem) clamp(1.5rem, 3.5vw, 3.25rem); }
}

.split__side--a,
.split__side--b {
  position: relative;
  isolation: isolate;
  background: var(--paper);
}

.split__side--a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-size: 46px 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%236E1A1C' stroke-opacity='.045' stroke-width='1'%3E%3Cpath d='M0 0 24 24M24 0 0 24'/%3E%3Cpath d='M12 7.5 16.5 12 12 16.5 7.5 12Z'/%3E%3C/g%3E%3C/svg%3E");
}

.split__side--b::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-size: 58px 58px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%236E1A1C' stroke-opacity='.045' stroke-width='1'%3E%3Ccircle cx='32' cy='32' r='22'/%3E%3Ccircle cx='0' cy='32' r='22'/%3E%3Ccircle cx='64' cy='32' r='22'/%3E%3Ccircle cx='32' cy='0' r='22'/%3E%3Ccircle cx='32' cy='64' r='22'/%3E%3Ccircle cx='0' cy='0' r='22'/%3E%3Ccircle cx='64' cy='0' r='22'/%3E%3Ccircle cx='0' cy='64' r='22'/%3E%3Ccircle cx='64' cy='64' r='22'/%3E%3C/g%3E%3C/svg%3E");
}

.split__side--b { border-top: 3px solid var(--wine); }

@media (min-width: 900px) {
  .split__side--b { border-top: 0; border-left: 3px solid var(--wine); }
}

.rail {
  display: flex;
  gap: clamp(.85rem, 1.4vw, 1.15rem);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: .3rem;
  margin-inline: calc(var(--rail-bleed, 0px) * -1);
  padding-inline: var(--rail-bleed, 0px);
}
.rail::-webkit-scrollbar { display: none; }

.rail > * {
  flex: 0 0 clamp(180px, 46%, 250px);
  scroll-snap-align: start;
}

.railwrap { position: relative; }

.railbtn {
  position: absolute;
  top: 38%;
  z-index: 3;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--wine);
  border-radius: 50%;
  background: var(--paper-hi);
  color: var(--wine);
  box-shadow: 0 6px 18px -6px rgba(34, 18, 16, .45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) scale(.8);
  transition: opacity 240ms var(--ease), visibility 240ms,
              transform 300ms var(--ease-out), background 200ms var(--ease);
}

.railbtn--prev { left: -6px; }
.railbtn--next { right: -6px; }

.railbtn.is-on {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}
.railbtn:hover { background: var(--wine); color: var(--gold-pale); }
.railbtn:active { transform: translateY(-50%) scale(.92); }
.railbtn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }

@media (max-width: 720px) {
  .railbtn { width: 36px; height: 36px; }
  .railbtn--prev { left: -2px; }
  .railbtn--next { right: -2px; }
}

.split__side .card__title { font-size: 1.15rem; }
.split__side .tape__cap h4 { font-size: 1.05rem; }

/* ── Hero refinements ───────────────────────────────────────────── */

.hero h1 { font-size: clamp(2.75rem, 6vw, 4.9rem); }
.label--hero { flex-wrap: nowrap; white-space: nowrap; }

/* ── Photos woven through the page ──────────────────────────────── */

.snap {
  position: relative;
  padding: 8px;
  background: var(--paper-hi);
  border: 1px solid var(--rule);
  border-radius: 5px;
  box-shadow: 0 24px 44px -30px rgba(34, 18, 16, .45);
}

.snap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  outline: 1px solid var(--rule-gold);
  outline-offset: -1px;
}

/* Three grid children, not two nested columns: the heading takes row 1 on its
   own so the copy starts on row 2, flush with the top of the photo. */
.about__grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
}
.about__grid > * { min-width: 0; }

@media (min-width: 940px) {
  .about__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    column-gap: clamp(2.5rem, 5vw, 4rem);
  }
  .about__head { grid-column: 1; grid-row: 1; }
  .about__grid .snap { grid-column: 1; grid-row: 2; }
  .about__copy { grid-column: 2; grid-row: 2; }
}

.about__copy p {
  font-size: clamp(1.0625rem, .55rem + .55vw, 1.1875rem);
  line-height: 1.72;
  max-width: 46ch;
}

.about__facts {
  margin-top: 1.9rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: .85rem;
}

.about__facts > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--rule-soft);
}
.about__facts > div:last-child { padding-bottom: 0; border-bottom: 0; }

.about__facts dt {
  flex: none;
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.about__facts dd {
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  font-variation-settings: 'WONK' 1, 'opsz' 60;
  text-align: right;
}

.about__keys { margin-top: 1.9rem; }

.snap figcaption {
  padding: .75rem .2rem .15rem;
  font-family: var(--mono);
  font-size: .625rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--wine-deep);
  border-block: 1px solid var(--rule-gold);
}
.strip::-webkit-scrollbar { display: none; }
.strip:focus-visible { outline: 2px solid var(--gold); outline-offset: -3px; }

.strip__shot {
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border-right: 1px solid rgba(238, 220, 182, .18);
}
.strip__shot:last-child { border-right: 0; }

.strip__shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.9);
  transition: transform 900ms var(--ease-out), filter 400ms var(--ease);
}
.strip__shot:hover img { transform: scale(1.05); filter: none; }

/* ── Media tiles: photos alongside video ────────────────────────── */

.tape--still .tape__frame { aspect-ratio: 4 / 5; }

.tape--still .tape__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(51, 10, 12, .4) 0%, rgba(51, 10, 12, 0) 42%);
}

.tape__badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  border: 1px solid rgba(238, 220, 182, .42);
  background: rgba(51, 10, 12, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 300ms var(--ease), border-color 300ms var(--ease);
}
.tape--still:hover .tape__badge { background: var(--gold); border-color: var(--gold); }

.tape__badge svg { width: 15px; height: 13px; fill: none; stroke: var(--gold-pale); stroke-width: 1.2; stroke-linejoin: round; }
.tape--still:hover .tape__badge svg { stroke: var(--wine-press); }

.chips--sub { margin-top: .6rem; }
.chips__none { color: var(--ink-3); font-style: italic; }

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--rule-gold);
  background: #000;
}
.lightbox--still .lightbox__stage { max-width: min(100%, 1040px); }

/* ── Our Team ───────────────────────────────────────────────────── */

.crew {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 1.75rem);
}

/* Cards keep the width they would have had in a three-up grid, so a short
   last row sits centred under the one above it instead of hugging the left. */
.crew > * { flex: 1 1 280px; min-width: 0; max-width: 380px; }

.js .crew > * {
  opacity: 0;
  animation: riseIn 640ms var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 70ms);
}

.mate {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
  background: var(--paper-hi);
  border: 1px solid var(--rule);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 0 0 rgba(34, 18, 16, .07);
  transition: transform 460ms var(--ease-out), box-shadow 460ms var(--ease-out),
              border-color 300ms var(--ease);
}
.mate:hover {
  transform: translateY(-5px);
  border-color: var(--wine);
  box-shadow: 0 24px 42px -24px rgba(34, 18, 16, .42);
}

.mate__frame {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--wine-deep);
}
.mate__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-out); }
.mate:hover .mate__frame img { transform: scale(1.04); }

.mate__cap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 1rem 1.1rem 1.15rem;
}

.mate__role {
  font-family: var(--mono);
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.mate__name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  font-variation-settings: 'WONK' 1, 'opsz' 60;
}

.mate__more {
  margin-top: auto;
  padding-top: .75rem;
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--mono);
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wine);
}
.mate__more .arrow { transition: transform 260ms var(--ease-out); }
.mate:hover .mate__more .arrow { transform: translateX(4px); }

.bio {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: grid;
  place-items: center;
  padding: clamp(.85rem, 4vw, 2.5rem);
  background: rgba(20, 8, 8, .74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms var(--ease), visibility 300ms;
}
.bio.is-open { opacity: 1; visibility: visible; }

.bio__card {
  position: relative;
  width: min(100%, 560px);
  max-height: min(88vh, 900px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(1.35rem, 4vw, 2.1rem);
  background: var(--paper-hi);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--wine);
  border-radius: 8px;
  box-shadow: 0 50px 90px -45px rgba(34, 18, 16, .7);
  transform: translateY(18px) scale(.96);
  transition: transform 520ms var(--ease-out);
}
.bio.is-open .bio__card { transform: none; }

.bio__close {
  position: absolute;
  top: .7rem; right: .7rem;
  z-index: 2;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: var(--ink-3);
  background: var(--paper-hi);
  transition: background 200ms, color 200ms, transform 260ms var(--ease-out);
}
.bio__close:hover { background: var(--paper-lo); color: var(--wine); transform: rotate(90deg); }

.bio__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2.6rem 1.1rem 0;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}

.bio__shot {
  width: 84px; height: 84px;
  flex: none;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid var(--rule-gold);
  background: var(--paper-lo);
}

.bio__role { color: var(--gold-deep); margin-bottom: .4rem; }
.bio__head h2 { font-size: clamp(1.45rem, 4.4vw, 2rem); }

.bio__sub {
  font-family: var(--mono);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 1rem;
}

.bio__list { display: grid; gap: 1rem; }
.bio__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .9rem;
  align-items: start;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-2);
}

.bio__glyph {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--rule-gold);
  background: var(--paper);
  color: var(--wine);
}
.bio__glyph svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }

.bio__quote {
  margin-top: 1.65rem;
  padding: 1.3rem 1.35rem;
  text-align: center;
  border-radius: 5px;
  border: 1px solid var(--gold-deep);
  background: linear-gradient(165deg, var(--wine) 0%, var(--wine-deep) 100%);
}

.bio__ar {
  max-width: none;
  margin: 0 auto .8rem;
  font-family: 'Scheherazade New', 'Amiri', 'Noto Naskh Arabic', 'Traditional Arabic', serif;
  font-size: clamp(1.3rem, 5vw, 1.75rem);
  line-height: 1.95;
  color: var(--gold-lift);
}

.bio__en {
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.45;
  color: var(--paper-hi);
  font-variation-settings: 'WONK' 1, 'opsz' 60;
}

.bio__ref {
  margin-top: .75rem;
  font-family: var(--mono);
  font-size: .5625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(238, 220, 182, .62);
}

/* ── Small screens ──────────────────────────────────────────────── */

.drawer { overflow-y: auto; }
.drawer.is-open a:nth-child(5) { transition-delay: 380ms; }

@media (max-width: 720px) {
  .hero h1 { font-size: clamp(2.5rem, 11.5vw, 3.5rem); }
  .label--hero .label__long { display: none; }
  .label--hero::before { display: none; }

  .strip { grid-auto-columns: minmax(150px, 1fr); }
  .snap figcaption { font-size: .5625rem; letter-spacing: .14em; }

  .about__facts { margin-top: 1.4rem; padding-top: 1.1rem; }
  .about__facts dt { font-size: .5625rem; letter-spacing: .16em; }
  .about__facts dd { font-size: 1rem; }
  .about__keys { margin-top: 1.4rem; }
  .about__keys .key { width: 100%; }

  .bio__head { gap: .8rem; }
  .bio__shot { width: 66px; height: 66px; }
  .bio__list li { gap: .7rem; font-size: .9375rem; }
  .bio__glyph { width: 30px; height: 30px; }
  .bio__glyph svg { width: 16px; height: 16px; }
  .mate__name { font-size: 1.15rem; }
}