:root {
  --black: #080706;
  --obsidian: #100c0a;
  --char: #181310;
  --walnut: #2a1811;
  --leather: #351b10;
  --oxblood: #4a1712;
  --gold: #d6b25e;
  --gold-soft: #f2d58b;
  --old-gold: #a47723;
  --paper: #f3e7ca;
  --paper-deep: #d7bd86;
  --ink: #211712;
  --steel: #132c3f;
  --sage: #53664e;
  --cream: #fff7e8;
  --muted: #cbbd9d;
  --max: 1320px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --serif: "Bodoni 72", Didot, "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(19, 44, 63, .2), transparent 38%),
    linear-gradient(250deg, rgba(83, 102, 78, .11), transparent 44%),
    linear-gradient(180deg, var(--black), #0b0806 42%, #120b07);
  font-family: var(--sans);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open,
body.passport-open {
  overflow: hidden;
}

img,
canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

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

.texture-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .24;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 247, 232, .035) 0, rgba(255, 247, 232, .035) 1px, transparent 1px, transparent 5px),
    repeating-linear-gradient(90deg, rgba(214, 178, 94, .025) 0, rgba(214, 178, 94, .025) 1px, transparent 1px, transparent 9px);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 600;
  transform: translateY(-150%);
  padding: .7rem 1rem;
  border-radius: 3px;
  color: var(--ink);
  background: var(--paper);
  transition: transform .2s var(--ease);
}

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

.scroll-meter {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 520;
  height: 2px;
  background: rgba(255, 247, 232, .08);
}

.scroll-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-soft), var(--old-gold), var(--steel));
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 500;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .8rem 1.35rem;
  background: rgba(8, 7, 6, .62);
  border-bottom: 1px solid rgba(214, 178, 94, .18);
  backdrop-filter: blur(18px);
  transition: min-height .2s var(--ease), background .2s var(--ease);
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(8, 7, 6, .92);
}

.brand-mark {
  min-width: 170px;
  display: grid;
  gap: .05rem;
}

.brand-mark span,
.brand-mark small {
  display: block;
  font-family: var(--serif);
  line-height: 1;
}

.brand-mark span {
  color: var(--cream);
  font-size: 1.18rem;
  font-weight: 800;
}

.brand-mark small {
  color: var(--gold-soft);
  font-size: .76rem;
  font-weight: 800;
}

.site-nav,
.header-actions,
.portal-actions,
.region-tabs,
.season-tabs,
.app-tabs,
.feed-tabs,
.collection-tabs,
.event-tabs {
  display: flex;
  align-items: center;
}

.site-nav {
  justify-content: center;
  gap: .22rem;
}

.site-nav a,
.passport-trigger {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .62rem .82rem;
  border-radius: 3px;
  color: rgba(255, 247, 232, .76);
  font-size: .84rem;
  font-weight: 700;
  transition: color .2s var(--ease), background .2s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.passport-trigger:hover {
  color: var(--cream);
  background: rgba(214, 178, 94, .1);
}

.header-actions {
  justify-content: flex-end;
  gap: .55rem;
}

.passport-trigger,
.menu-toggle,
.drawer-close {
  border: 1px solid rgba(214, 178, 94, .28);
  background: rgba(255, 247, 232, .045);
  cursor: pointer;
}

.reserve-link,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .74rem 1rem;
  border-radius: 3px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.reserve-link,
.button-primary {
  color: #120a05;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 58%, var(--old-gold));
  border: 1px solid rgba(242, 213, 139, .66);
  box-shadow: 0 18px 48px rgba(164, 119, 35, .2);
}

.button-secondary {
  color: var(--cream);
  background: rgba(19, 44, 63, .58);
  border: 1px solid rgba(214, 178, 94, .32);
}

.button-ghost {
  color: rgba(255, 247, 232, .86);
  background: rgba(8, 7, 6, .34);
  border: 1px solid rgba(255, 247, 232, .18);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 3px;
  padding: 9px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--cream);
}

.mobile-nav {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  z-index: 490;
  display: grid;
  gap: .45rem;
  padding: 1rem;
  background: rgba(8, 7, 6, .97);
  border-bottom: 1px solid rgba(214, 178, 94, .2);
}

.mobile-nav a {
  padding: .9rem 1rem;
  border: 1px solid rgba(255, 247, 232, .12);
  border-radius: 3px;
  background: rgba(255, 247, 232, .045);
  font-weight: 800;
}

.portal-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(1rem, 4vw, 4.5rem);
  padding: 7.75rem 1.35rem 0;
  overflow: hidden;
  isolation: isolate;
}

.portal-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.portal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.05) brightness(.8);
}

.portal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, .92), rgba(8, 7, 6, .68) 34%, rgba(8, 7, 6, .18) 70%, rgba(8, 7, 6, .26)),
    linear-gradient(180deg, rgba(8, 7, 6, .2), rgba(8, 7, 6, .08) 42%, rgba(8, 7, 6, .72));
}

.portal-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 34%;
  background:
    linear-gradient(180deg, transparent, var(--black)),
    repeating-linear-gradient(90deg, rgba(242, 213, 139, .055) 0, rgba(242, 213, 139, .055) 1px, transparent 1px, transparent 24px);
}

.portal-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  justify-self: start;
  display: grid;
  gap: 1.1rem;
  padding-bottom: 8.5rem;
}

.kicker,
.folio {
  margin: 0;
  color: var(--gold-soft);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.folio {
  color: rgba(214, 178, 94, .72);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  color: var(--cream);
  font-size: clamp(4.4rem, 7vw, 7.15rem);
  line-height: .92;
}

h2 {
  color: var(--cream);
  font-size: 3.75rem;
  line-height: .96;
}

h3 {
  color: var(--cream);
  font-size: 2rem;
  line-height: 1.08;
}

.portal-copy p:not(.kicker),
.section-intro p:not(.kicker):not(.folio),
.region-panel p:not(.kicker):not(.folio),
.passport-positioning p:not(.kicker):not(.folio),
.living-book-copy p:not(.kicker):not(.folio),
.collection-copy p:not(.kicker):not(.folio),
.events-copy p:not(.kicker):not(.folio),
.house-copy p:not(.kicker):not(.folio),
.journey-display p,
.passport-view p {
  margin: 0;
  color: rgba(255, 247, 232, .78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.portal-copy p:not(.kicker) {
  max-width: 620px;
  color: rgba(255, 247, 232, .86);
  font-size: 1.08rem;
}

.portal-actions {
  flex-wrap: wrap;
  gap: .7rem;
}

.hero-ledger-rail {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  width: min(100%, 790px);
  display: grid;
  margin-bottom: 7.55rem;
  padding: .72rem .75rem .82rem;
  border-top: 1px solid rgba(242, 213, 139, .26);
  border-bottom: 1px solid rgba(242, 213, 139, .26);
  background:
    linear-gradient(90deg, rgba(10, 7, 5, .86), rgba(10, 7, 5, .56)),
    linear-gradient(180deg, rgba(242, 213, 139, .06), transparent 52%, rgba(19, 44, 63, .1));
  box-shadow: 0 18px 56px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
}

.hero-ledger-rail::before,
.hero-ledger-rail::after {
  position: absolute;
  z-index: 2;
  color: var(--gold-soft);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-ledger-rail::before {
  content: "This Week";
  top: .72rem;
  left: .95rem;
  padding-right: .7rem;
  background: rgba(8, 7, 6, .88);
  box-shadow: 18px 0 18px rgba(8, 7, 6, .72);
}

.hero-ledger-rail::after {
  content: "";
  top: .98rem;
  right: .85rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 18px rgba(242, 213, 139, .7);
}

.hero-ledger-rail h2 {
  font-size: 1.9rem;
  line-height: 1;
}

.hero-ledger-rail p:not(.folio) {
  margin: 0;
  color: rgba(255, 247, 232, .76);
  font-size: .94rem;
  line-height: 1.65;
}

.chapter-route {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(242, 213, 139, .24);
  background: rgba(19, 44, 63, .32);
}

.chapter-route span {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  font-size: .75rem;
  font-weight: 900;
  border-right: 1px solid rgba(242, 213, 139, .18);
}

.chapter-route span:last-child {
  border-right: 0;
}

.weekly-ticker {
  position: relative;
  overflow: hidden;
  padding-top: 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.weekly-ticker::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.weekly-ticker-track {
  width: 100%;
  display: flex;
  gap: .55rem;
  justify-content: space-between;
}

.weekly-ticker-item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 156px;
  display: grid;
  grid-template-rows: 82px auto auto auto;
  align-content: start;
  gap: .3rem;
  padding: .5rem;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(242, 213, 139, .2);
  background:
    linear-gradient(145deg, rgba(19, 44, 63, .5), rgba(8, 7, 6, .68)),
    rgba(8, 7, 6, .56);
}

.weekly-ticker-item img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  border: 1px solid rgba(242, 213, 139, .24);
  border-radius: 2px;
  filter: saturate(.9) contrast(1.06) brightness(.72);
}

.weekly-ticker-item span {
  color: var(--gold-soft);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.weekly-ticker-item strong {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.06;
  word-spacing: .08em;
}

.weekly-ticker-item em {
  align-self: start;
  color: rgba(255, 247, 232, .68);
  font-size: .68rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

.portal-stage {
  min-height: 700px;
  display: grid;
  place-items: center;
  perspective: 1900px;
}

.ledger-object {
  position: relative;
  width: min(100%, 860px);
  min-height: 650px;
  transform-style: preserve-3d;
  transform: rotateX(4deg) rotateY(-7deg);
  filter: drop-shadow(0 42px 82px rgba(0, 0, 0, .68));
}

.ledger-cover,
.ledger-page {
  position: absolute;
  top: 3%;
  bottom: 3%;
  overflow: hidden;
  border-radius: 7px;
}

.ledger-cover {
  left: 1%;
  z-index: 3;
  width: 30%;
  transform-origin: left center;
  transform: rotateY(-86deg);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .48), transparent 24%, rgba(255, 247, 232, .04) 54%, rgba(0, 0, 0, .55)),
    repeating-linear-gradient(90deg, rgba(255, 247, 232, .035) 0, rgba(255, 247, 232, .035) 1px, transparent 1px, transparent 15px),
    linear-gradient(145deg, #160704, var(--leather), #0e0503);
  border: 1px solid rgba(214, 178, 94, .38);
  box-shadow: inset -18px 0 26px rgba(0, 0, 0, .4);
}

.cover-foil {
  position: absolute;
  inset: 15% 10% auto;
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: .25rem;
  border: 1px solid rgba(242, 213, 139, .48);
  background:
    repeating-linear-gradient(0deg, rgba(242, 213, 139, .048) 0, rgba(242, 213, 139, .048) 1px, transparent 1px, transparent 12px),
    rgba(8, 7, 6, .2);
}

.cover-foil span,
.cover-foil small {
  color: var(--gold-soft);
  font-weight: 900;
}

.cover-foil strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.ledger-page {
  top: 6%;
  bottom: 6%;
  color: var(--ink);
  border: 1px solid rgba(80, 48, 20, .34);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .14), transparent 12%, transparent 90%, rgba(92, 55, 22, .14)),
    repeating-linear-gradient(0deg, rgba(33, 23, 18, .032) 0, rgba(33, 23, 18, .032) 1px, transparent 1px, transparent 12px),
    linear-gradient(145deg, #fff2d5, var(--paper) 62%, var(--paper-deep));
}

.ledger-page::before,
.passport-spread::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(80, 48, 20, .16);
  pointer-events: none;
}

.ledger-page-left {
  left: 5%;
  width: 45%;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2.5rem;
  border-radius: 7px 0 0 7px;
}

.ledger-page-right {
  right: 5%;
  width: 45%;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0 7px 7px 0;
}

.ledger-page h2,
.ledger-page h3 {
  color: var(--ink);
}

.ledger-page p:not(.folio),
.ledger-page dd {
  margin: 0;
  color: rgba(33, 23, 18, .72);
  line-height: 1.65;
}

.ledger-page dl {
  margin: .2rem 0 0;
  display: grid;
  gap: .65rem;
}

.ledger-page dl div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: .8rem;
  align-items: center;
  padding-top: .75rem;
  border-top: 1px solid rgba(33, 23, 18, .18);
}

.ledger-page dt {
  color: #8b5d1f;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 800;
}

.ledger-page dd {
  font-size: .9rem;
  font-weight: 900;
}

.ledger-page-right canvas {
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(33, 23, 18, .2);
  background:
    linear-gradient(145deg, rgba(8, 7, 6, .96), rgba(19, 44, 63, .86)),
    var(--steel);
}

.portal-caption {
  display: grid;
  gap: .2rem;
  padding: .85rem;
  border-left: 3px solid var(--old-gold);
  background: rgba(164, 119, 35, .1);
}

.portal-caption span {
  color: #7a4e18;
  font-size: .78rem;
  font-weight: 900;
}

.portal-caption strong {
  color: var(--ink);
}

.experience-proof {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 2;
  width: min(calc(100% - 2.7rem), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(214, 178, 94, .2);
  background: rgba(214, 178, 94, .12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34);
  backdrop-filter: blur(14px);
}

.experience-proof div {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: .35rem;
  padding: 1rem;
  background: rgba(8, 7, 6, .68);
}

.experience-proof span {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 800;
}

.experience-proof strong {
  color: rgba(255, 247, 232, .84);
  line-height: 1.35;
}

.journey-section,
.codex-section {
  padding: 3rem 1.35rem 1.5rem;
}

.section-intro {
  width: min(100%, var(--max));
  margin: 0 auto 1.4rem;
  display: grid;
  gap: .85rem;
}

.section-intro p:not(.kicker):not(.folio) {
  max-width: 760px;
}

.journey-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .52fr) minmax(360px, .72fr) minmax(320px, .56fr);
  gap: 1rem;
  align-items: stretch;
}

.journey-steps {
  display: grid;
  gap: .65rem;
}

.journey-step {
  min-height: 96px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: .65rem;
  padding: .85rem;
  border: 1px solid rgba(214, 178, 94, .18);
  border-radius: 4px;
  color: rgba(255, 247, 232, .8);
  background: rgba(255, 247, 232, .045);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.journey-step span {
  grid-row: span 2;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 800;
}

.journey-step strong,
.journey-step small {
  display: block;
}

.journey-step strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.journey-step small {
  color: rgba(255, 247, 232, .62);
  font-weight: 700;
}

.journey-step.is-active,
.journey-step:hover {
  border-color: rgba(242, 213, 139, .58);
  background: rgba(214, 178, 94, .11);
  transform: translateY(-2px);
}

.journey-display,
.app-orbit,
.world-panel,
.region-panel,
.passport-positioning,
.passport-product,
.collection-copy,
.collection-board,
.living-book-copy,
.live-ledger,
.tier-detail,
.membership-table,
.events-photo,
.events-copy,
.codex-grid,
.house-photo,
.house-copy {
  border: 1px solid rgba(214, 178, 94, .2);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}

.journey-display {
  min-height: 650px;
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  padding: 2rem;
  background:
    linear-gradient(145deg, rgba(42, 24, 17, .84), rgba(8, 7, 6, .94)),
    var(--obsidian);
}

.guest-signal {
  display: grid;
  gap: .35rem;
  padding: 1rem;
  border: 1px solid rgba(214, 178, 94, .18);
  background: rgba(255, 247, 232, .05);
}

.guest-signal span {
  color: var(--gold-soft);
  font-size: .82rem;
  font-weight: 900;
}

.guest-signal strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.app-orbit {
  min-height: 650px;
  display: grid;
  place-items: center;
  padding: 1.4rem;
  background:
    linear-gradient(145deg, rgba(19, 44, 63, .78), rgba(8, 7, 6, .92)),
    var(--steel);
}

.phone-shell {
  width: min(100%, 330px);
  min-height: 590px;
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(145deg, #050403, #1c1210);
  border: 1px solid rgba(214, 178, 94, .34);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .45);
}

.phone-bar {
  width: 86px;
  height: 6px;
  margin: 4px auto 12px;
  border-radius: 999px;
  background: rgba(255, 247, 232, .22);
}

.phone-screen {
  min-height: 520px;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 22px;
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, rgba(33, 23, 18, .032) 0, rgba(33, 23, 18, .032) 1px, transparent 1px, transparent 12px),
    linear-gradient(145deg, #fff2d5, var(--paper) 62%, var(--paper-deep));
}

.phone-screen p {
  margin: 0;
  color: #7a4e18;
  font-size: .82rem;
  font-weight: 900;
}

.phone-screen h3 {
  color: var(--ink);
}

.phone-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem;
}

.phone-stat-row span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: .45rem;
  text-align: center;
  border: 1px solid rgba(33, 23, 18, .14);
  background: rgba(255, 247, 232, .34);
  font-size: .76rem;
  font-weight: 900;
}

.passport-card {
  display: grid;
  gap: .35rem;
  padding: 1rem;
  color: var(--cream);
  background:
    linear-gradient(145deg, rgba(8, 7, 6, .9), rgba(19, 44, 63, .86)),
    var(--steel);
  border: 1px solid rgba(33, 23, 18, .2);
}

.passport-card span {
  color: var(--gold-soft);
  font-size: .78rem;
  font-weight: 900;
}

.passport-card small {
  color: rgba(255, 247, 232, .72);
  line-height: 1.45;
}

.ledger-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 4rem 1.35rem 2rem;
}

.atlas-opening,
.atlas-globe-shell,
.atlas-follow-up {
  border: 1px solid rgba(214, 178, 94, .2);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .3);
}

.atlas-opening {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(214, 178, 94, .15), transparent 30%),
    linear-gradient(135deg, rgba(42, 24, 17, .82), rgba(8, 7, 6, .94)),
    var(--obsidian);
}

.atlas-opening-copy {
  display: grid;
  align-content: center;
  gap: .9rem;
  min-height: 430px;
  padding: 2rem;
}

.atlas-opening-copy h2 {
  max-width: 860px;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: .9;
}

.atlas-opening-copy p:not(.kicker):not(.folio) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 247, 232, .78);
  font-size: 1.08rem;
  line-height: 1.65;
}

.passport-journey-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(242, 213, 139, .24);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(242, 213, 139, .16), transparent 1px) 50% 0 / 2px 100% no-repeat,
    rgba(242, 213, 139, .14);
}

.passport-journey-step {
  min-height: 198px;
  display: grid;
  align-content: center;
  gap: .5rem;
  padding: 1.25rem;
  background:
    linear-gradient(145deg, rgba(8, 7, 6, .78), rgba(19, 44, 63, .34)),
    repeating-linear-gradient(0deg, rgba(255, 247, 232, .03) 0, rgba(255, 247, 232, .03) 1px, transparent 1px, transparent 11px);
}

.passport-journey-step span,
.atlas-follow-up-card span {
  color: var(--gold-soft);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.passport-journey-step strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.passport-journey-step p {
  margin: 0;
  color: rgba(255, 247, 232, .72);
  line-height: 1.5;
}

.passport-journey-step small {
  color: rgba(242, 213, 139, .74);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.atlas-globe-shell {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 24%, rgba(19, 44, 63, .48), transparent 50%),
    linear-gradient(145deg, rgba(8, 7, 6, .92), rgba(10, 20, 25, .82)),
    var(--obsidian);
}

.atlas-globe-heading {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(420px, 1fr);
  gap: 1rem;
  align-items: end;
  padding: .4rem .2rem 0;
}

.atlas-globe-heading strong {
  display: block;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1;
}

.world-panel {
  position: relative;
  min-height: 760px;
  height: auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: stretch;
  gap: .8rem;
  padding: 1.05rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(8, 7, 6, .9), rgba(19, 44, 63, .7)),
    repeating-linear-gradient(90deg, rgba(214, 178, 94, .055) 0, rgba(214, 178, 94, .055) 1px, transparent 1px, transparent 70px),
    repeating-linear-gradient(0deg, rgba(255, 247, 232, .03) 0, rgba(255, 247, 232, .03) 1px, transparent 1px, transparent 70px);
}

.atlas-world-panel {
  position: relative;
  top: auto;
}

.atlas-canvas-stage {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(214, 178, 94, .18);
  background:
    radial-gradient(circle at 50% 44%, rgba(27, 68, 91, .28), transparent 58%),
    linear-gradient(145deg, rgba(8, 7, 6, .38), rgba(19, 44, 63, .2));
}

.atlas-canvas-stage.is-world-mode {
  cursor: grab;
  touch-action: none;
}

.atlas-canvas-stage.is-dragging {
  cursor: grabbing;
}

.world-panel canvas {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.atlas-canvas-stage.is-world-mode canvas {
  cursor: grab;
}

.atlas-canvas-stage.is-dragging canvas {
  cursor: grabbing;
}

.atlas-canvas-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(214, 178, 94, .18);
  pointer-events: none;
}

.atlas-hud {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  pointer-events: none;
}

.atlas-control {
  min-height: 34px;
  padding: .5rem .68rem;
  border: 1px solid rgba(214, 178, 94, .28);
  border-radius: 3px;
  color: rgba(255, 247, 232, .82);
  background: rgba(8, 7, 6, .66);
  font-size: .78rem;
  font-weight: 900;
  cursor: pointer;
  pointer-events: auto;
}

.atlas-control.is-active {
  color: #120a05;
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.atlas-hover-tag {
  position: absolute;
  z-index: 4;
  width: min(260px, calc(100% - 2rem));
  padding: .72rem .82rem;
  border: 1px solid rgba(242, 213, 139, .46);
  border-left: 3px solid rgba(242, 213, 139, .8);
  border-radius: 4px;
  color: rgba(255, 247, 232, .84);
  background:
    linear-gradient(135deg, rgba(8, 7, 6, .92), rgba(42, 24, 17, .84)),
    repeating-linear-gradient(0deg, rgba(255, 247, 232, .035) 0, rgba(255, 247, 232, .035) 1px, transparent 1px, transparent 9px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .4);
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 16px));
}

.atlas-hover-tag::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(242, 213, 139, .4);
  border-bottom: 1px solid rgba(242, 213, 139, .4);
  background: rgba(8, 7, 6, .9);
  transform: translateX(-50%) rotate(45deg);
}

.atlas-hover-tag.is-locked {
  pointer-events: auto;
}

.atlas-hover-tag span,
.atlas-distillery-status {
  display: block;
  color: var(--gold-soft);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.atlas-hover-tag strong {
  display: block;
  margin-top: .16rem;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.05;
}

.atlas-hover-tag p {
  margin: .3rem 0 0;
  color: rgba(255, 247, 232, .72);
  font-size: .78rem;
  line-height: 1.35;
}

.atlas-hover-tag a,
.distillery-card a,
.distillery-page-link {
  width: max-content;
  max-width: 100%;
  color: var(--gold-soft);
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 213, 139, .52);
}

.atlas-hover-tag a {
  display: inline-block;
  margin-top: .44rem;
}

.distillery-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: .35rem;
  min-height: 150px;
  max-height: 205px;
  overflow: auto;
  padding: 1rem;
  border-left: 3px solid rgba(242, 213, 139, .66);
  border-top: 1px solid rgba(214, 178, 94, .2);
  background:
    linear-gradient(90deg, rgba(8, 7, 6, .82), rgba(8, 7, 6, .5)),
    repeating-linear-gradient(0deg, rgba(255, 247, 232, .032) 0, rgba(255, 247, 232, .032) 1px, transparent 1px, transparent 9px);
  backdrop-filter: blur(14px);
}

.distillery-card span,
.atlas-stats span,
.atlas-region-map span,
.atlas-journey span,
.atlas-distillery-list span,
.pin-meta span {
  color: var(--gold-soft);
  font-size: .78rem;
  font-weight: 900;
}

.distillery-card strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.1;
}

.distillery-card p {
  margin: 0;
  color: rgba(255, 247, 232, .76);
  line-height: 1.52;
}

.distillery-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-top: .2rem;
}

.atlas-follow-up {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(420px, 1.05fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(42, 24, 17, .78), rgba(8, 7, 6, .92)),
    var(--obsidian);
}

.atlas-follow-up .region-ledger {
  align-content: center;
  padding: 1rem;
  border: 1px solid rgba(214, 178, 94, .16);
  border-radius: 6px;
  background: rgba(8, 7, 6, .42);
}

.atlas-follow-up-card {
  display: grid;
  align-content: center;
  gap: .75rem;
  min-height: 260px;
  padding: 1.35rem;
  border: 1px solid rgba(242, 213, 139, .24);
  border-radius: 6px;
  background:
    radial-gradient(circle at 85% 0%, rgba(214, 178, 94, .18), transparent 34%),
    linear-gradient(145deg, rgba(8, 7, 6, .68), rgba(19, 44, 63, .28));
}

.atlas-follow-up-card strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: .98;
}

.atlas-follow-up-card p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 247, 232, .74);
  line-height: 1.62;
}

.region-panel,
.passport-positioning,
.house-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2.2rem;
  background:
    linear-gradient(145deg, rgba(42, 24, 17, .84), rgba(8, 7, 6, .94)),
    var(--obsidian);
}

.atlas-region-panel {
  align-content: start;
  overflow: hidden;
}

.region-tabs,
.season-tabs,
.app-tabs,
.feed-tabs,
.collection-tabs,
.event-tabs {
  flex-wrap: wrap;
  gap: .5rem;
}

.region-tab,
.season-tab,
.app-tab,
.feed-tab,
.collection-tab,
.event-tab,
.stamp {
  min-height: 38px;
  padding: .58rem .74rem;
  border: 1px solid rgba(214, 178, 94, .24);
  border-radius: 3px;
  color: rgba(255, 247, 232, .82);
  background: rgba(255, 247, 232, .045);
  font-size: .84rem;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}

.region-tab.is-active,
.season-tab.is-active,
.app-tab.is-active,
.feed-tab.is-active,
.collection-tab.is-active,
.event-tab.is-active,
.stamp.is-earned,
.region-tab:hover,
.season-tab:hover,
.app-tab:hover,
.feed-tab:hover,
.collection-tab:hover,
.event-tab:hover,
.stamp:hover {
  color: #120a05;
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.region-ledger {
  display: grid;
  gap: .8rem;
}

.region-ledger div {
  display: grid;
  gap: .25rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(214, 178, 94, .18);
}

.region-ledger span {
  color: var(--gold-soft);
  font-size: .8rem;
  font-weight: 900;
}

.region-ledger strong {
  color: rgba(255, 247, 232, .86);
  line-height: 1.4;
}

.passport-experience-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(242, 213, 139, .26);
  border-radius: 6px;
  background:
    radial-gradient(circle at 80% 0%, rgba(214, 178, 94, .18), transparent 34%),
    linear-gradient(145deg, rgba(8, 7, 6, .72), rgba(19, 44, 63, .32)),
    rgba(255, 247, 232, .045);
  box-shadow: inset 0 0 0 1px rgba(255, 247, 232, .035);
}

.passport-mini-book {
  position: relative;
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: .7rem;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(242, 213, 139, .34);
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(242, 213, 139, .18), transparent 1px) 50% 0 / 2px 100% no-repeat,
    radial-gradient(circle at 78% 26%, rgba(242, 213, 139, .2), transparent 14%),
    repeating-linear-gradient(0deg, rgba(255, 247, 232, .035) 0, rgba(255, 247, 232, .035) 1px, transparent 1px, transparent 11px),
    linear-gradient(135deg, #1d0b07, #3a2117 48%, #080706);
}

.passport-mini-book::before {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 1.1rem;
  width: 96px;
  height: 96px;
  border: 3px double rgba(242, 213, 139, .48);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242, 213, 139, .2), transparent 62%),
    rgba(8, 7, 6, .36);
  transform: rotate(-12deg);
}

.passport-mini-book span,
.passport-action-grid span {
  color: var(--gold-soft);
  font-size: .78rem;
  font-weight: 900;
}

.passport-mini-book strong {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: .98;
}

.passport-mini-book p,
.passport-action-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 247, 232, .74);
  line-height: 1.55;
}

.passport-stamp-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(242, 213, 139, .26);
  background: rgba(242, 213, 139, .18);
}

.passport-stamp-strip span {
  min-height: 44px;
  display: grid;
  place-items: center;
  color: rgba(255, 247, 232, .9);
  background: rgba(8, 7, 6, .62);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.passport-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .72rem;
}

.passport-action-grid div {
  display: grid;
  gap: .38rem;
  min-height: 142px;
  align-content: start;
  padding: .95rem;
  border: 1px solid rgba(214, 178, 94, .16);
  border-radius: 5px;
  background: rgba(8, 7, 6, .38);
}

.passport-action-grid strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.12;
}

.passport-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.atlas-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(214, 178, 94, .18);
  background: rgba(214, 178, 94, .12);
}

.atlas-stats div {
  display: grid;
  gap: .25rem;
  min-height: 88px;
  align-content: center;
  padding: .82rem;
  background: rgba(8, 7, 6, .48);
}

.atlas-stats strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1;
}

.atlas-region-map {
  position: relative;
  display: grid;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, .2);
  background:
    linear-gradient(145deg, rgba(243, 231, 202, .08), rgba(19, 44, 63, .38)),
    rgba(8, 7, 6, .34);
}

.atlas-region-map canvas {
  width: 100%;
  height: 100%;
  min-height: 310px;
  display: block;
}

.atlas-region-map div {
  position: relative;
  display: grid;
  gap: .2rem;
  padding: .82rem;
  border: 0;
  border-top: 1px solid rgba(214, 178, 94, .18);
  background: rgba(8, 7, 6, .72);
  backdrop-filter: blur(10px);
}

.atlas-region-map strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.atlas-journeys {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
}

.atlas-journey {
  display: grid;
  align-content: start;
  gap: .38rem;
  min-height: 142px;
  padding: .85rem;
  border: 1px solid rgba(214, 178, 94, .18);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(8, 7, 6, .72), rgba(19, 44, 63, .35)),
    rgba(255, 247, 232, .045);
}

.atlas-journey strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.12;
}

.atlas-journey p {
  margin: 0;
  color: rgba(255, 247, 232, .68);
  font-size: .84rem;
  line-height: 1.45;
}

.atlas-distillery-list {
  display: grid;
  gap: .55rem;
  max-height: 330px;
  overflow: auto;
  padding-right: .2rem;
}

.atlas-pin-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .6rem;
  align-items: center;
  padding: .72rem .82rem;
  border: 1px solid rgba(214, 178, 94, .16);
  border-radius: 4px;
  color: rgba(255, 247, 232, .84);
  background: rgba(255, 247, 232, .045);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.atlas-pin-row:hover,
.atlas-pin-row.is-active {
  border-color: rgba(242, 213, 139, .52);
  background: rgba(214, 178, 94, .1);
  transform: translateY(-1px);
}

.distillery-page {
  display: grid;
  gap: 1.2rem;
}

.distillery-hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 1.2rem;
  align-items: stretch;
  padding: 7rem max(1rem, calc((100vw - var(--max)) / 2)) 2rem;
}

.distillery-hero-copy,
.distillery-source-panel,
.distillery-product-card,
.distillery-index-card {
  border: 1px solid rgba(214, 178, 94, .2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(42, 24, 17, .76), rgba(8, 7, 6, .92)),
    repeating-linear-gradient(0deg, rgba(255, 247, 232, .028) 0, rgba(255, 247, 232, .028) 1px, transparent 1px, transparent 9px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
}

.distillery-hero-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.distillery-hero-copy h1 {
  max-width: 11ch;
}

.distillery-hero-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 247, 232, .76);
  font-size: 1.08rem;
  line-height: 1.72;
}

.distillery-source-panel {
  display: grid;
  align-content: end;
  gap: 1rem;
  min-height: 520px;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(214, 178, 94, .16), transparent 46%),
    linear-gradient(145deg, rgba(19, 44, 63, .72), rgba(8, 7, 6, .94));
}

.distillery-map-orb {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(242, 213, 139, .2);
  background:
    radial-gradient(circle at 50% 50%, rgba(242, 213, 139, .18), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(19, 44, 63, .46), transparent 50%),
    repeating-linear-gradient(90deg, rgba(242, 213, 139, .09) 0, rgba(242, 213, 139, .09) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(0deg, rgba(255, 247, 232, .05) 0, rgba(255, 247, 232, .05) 1px, transparent 1px, transparent 48px);
}

.distillery-map-orb::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(242, 213, 139, .7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 14px rgba(242, 213, 139, .08), 0 0 34px rgba(242, 213, 139, .28);
}

.distillery-map-orb::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
  transform: translate(-50%, -50%);
}

.distillery-map-orb span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .45rem .55rem;
  color: rgba(255, 247, 232, .76);
  background: rgba(8, 7, 6, .62);
  border: 1px solid rgba(214, 178, 94, .2);
  font-size: .75rem;
  font-weight: 900;
}

.distillery-facts,
.distillery-research-grid,
.distillery-index-grid {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.distillery-facts div,
.distillery-research-grid div {
  padding: .9rem;
  border: 1px solid rgba(214, 178, 94, .16);
  background: rgba(255, 247, 232, .045);
}

.distillery-facts span,
.distillery-research-grid span,
.distillery-product-card span,
.distillery-index-card span {
  display: block;
  color: var(--gold-soft);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.distillery-facts strong,
.distillery-research-grid strong,
.distillery-product-card strong,
.distillery-index-card strong {
  display: block;
  margin-top: .22rem;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.14;
}

.distillery-section {
  display: grid;
  gap: 1rem;
  padding: 3rem max(1rem, calc((100vw - var(--max)) / 2));
}

.distillery-section-header {
  display: grid;
  gap: .55rem;
  max-width: 860px;
}

.distillery-section-header p {
  margin: 0;
  color: rgba(255, 247, 232, .72);
  line-height: 1.65;
}

.distillery-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.distillery-product-card,
.distillery-index-card {
  display: grid;
  gap: .62rem;
  padding: 1rem;
}

.distillery-product-card h3 {
  margin: 0;
  font-size: 1.32rem;
}

.distillery-product-card p,
.distillery-index-card p {
  margin: 0;
  color: rgba(255, 247, 232, .72);
  line-height: 1.5;
}

.tasting-matrix {
  display: grid;
  gap: .45rem;
  padding-top: .25rem;
}

.tasting-matrix div {
  padding: .55rem .6rem;
  border-left: 2px solid rgba(242, 213, 139, .42);
  background: rgba(255, 247, 232, .04);
}

.tasting-matrix em {
  display: block;
  color: rgba(255, 247, 232, .62);
  font-style: normal;
  font-size: .8rem;
  font-weight: 800;
}

.research-needed {
  border-left-color: rgba(164, 119, 35, .7);
}

.atlas-pin-row strong {
  display: block;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.12;
}

.pin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .25rem;
}

.atlas-pin-row em {
  color: rgba(255, 247, 232, .68);
  font-style: normal;
  font-weight: 800;
}

.passport-section {
  width: min(100%, var(--max));
  min-height: 850px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(380px, .82fr) minmax(560px, 1.18fr);
  gap: 1rem;
  align-items: stretch;
  padding: 6rem 1.35rem;
}

.passport-product {
  min-height: 720px;
  display: grid;
  grid-template-columns: .72fr 1fr;
  overflow: hidden;
  background: var(--obsidian);
}

.passport-cover {
  display: grid;
  align-content: center;
  gap: .35rem;
  padding: 2rem;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .48), transparent 42%, rgba(255, 247, 232, .04)),
    repeating-linear-gradient(90deg, rgba(255, 247, 232, .035) 0, rgba(255, 247, 232, .035) 1px, transparent 1px, transparent 15px),
    linear-gradient(145deg, #160704, var(--leather), #0e0503);
  border-right: 1px solid rgba(214, 178, 94, .24);
}

.passport-cover span,
.passport-cover small {
  color: var(--gold-soft);
  font-weight: 900;
}

.passport-cover strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 4.2rem;
  line-height: .88;
}

.passport-cover small {
  max-width: 240px;
  line-height: 1.45;
}

.passport-spread {
  position: relative;
  display: grid;
  align-content: center;
  gap: 1.1rem;
  padding: 2rem;
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, rgba(33, 23, 18, .032) 0, rgba(33, 23, 18, .032) 1px, transparent 1px, transparent 12px),
    linear-gradient(145deg, #fff2d5, var(--paper) 62%, var(--paper-deep));
}

.passport-view {
  display: grid;
  gap: .55rem;
}

.passport-view span {
  color: #7a4e18;
  font-size: .82rem;
  font-weight: 900;
}

.passport-view h3 {
  color: var(--ink);
}

.passport-view p {
  color: rgba(33, 23, 18, .72);
}

.stamp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}

.stamp-grid .stamp {
  min-height: 90px;
  color: rgba(74, 23, 18, .74);
  border: 2px solid rgba(74, 23, 18, .3);
  background: rgba(74, 23, 18, .04);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.stamp-grid .stamp.is-earned,
.stamp-grid .stamp:hover {
  color: rgba(74, 23, 18, .94);
  background: rgba(74, 23, 18, .08);
  border-color: rgba(74, 23, 18, .58);
  transform: rotate(-1.5deg);
}

.stamp-readout {
  min-height: 88px;
  margin: 0;
  padding: 1rem;
  color: rgba(33, 23, 18, .74);
  line-height: 1.6;
  border: 1px solid rgba(33, 23, 18, .16);
  background: rgba(255, 247, 232, .28);
}

.collection-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(380px, .76fr) minmax(560px, 1.24fr);
  gap: 1rem;
  align-items: stretch;
  padding: 6rem 1.35rem;
}

.collection-copy,
.events-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2.2rem;
  background:
    linear-gradient(145deg, rgba(42, 24, 17, .84), rgba(8, 7, 6, .94)),
    var(--obsidian);
}

.collection-board {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(280px, .62fr);
  overflow: hidden;
  background: var(--obsidian);
}

.collection-feature {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2.2rem;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 82%, rgba(0, 0, 0, .16)),
    repeating-linear-gradient(0deg, rgba(33, 23, 18, .032) 0, rgba(33, 23, 18, .032) 1px, transparent 1px, transparent 12px),
    linear-gradient(145deg, #fff2d5, var(--paper) 62%, var(--paper-deep));
}

.collection-feature h3 {
  color: var(--ink);
}

.collection-feature p:not(.folio) {
  margin: 0;
  color: rgba(33, 23, 18, .72);
  line-height: 1.75;
}

.bottle-specs {
  display: grid;
  gap: .8rem;
}

.bottle-specs div {
  display: grid;
  gap: .25rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(33, 23, 18, .16);
}

.bottle-specs span {
  color: #7a4e18;
  font-size: .8rem;
  font-weight: 900;
}

.bottle-specs strong {
  color: rgba(33, 23, 18, .86);
  line-height: 1.35;
}

.collection-photo {
  position: relative;
  min-height: 100%;
  display: grid;
  align-content: end;
  padding: 1rem;
  overflow: hidden;
}

.collection-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.08) brightness(.58);
}

.collection-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(8, 7, 6, .9));
}

.collection-photo div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .35rem;
  padding: 1rem;
  border: 1px solid rgba(214, 178, 94, .24);
  background: rgba(8, 7, 6, .72);
  backdrop-filter: blur(12px);
}

.collection-photo span,
.event-readout span {
  color: var(--gold-soft);
  font-size: .8rem;
  font-weight: 900;
}

.collection-photo strong,
.event-readout strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.15;
}

.living-book-section,
.membership-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 6rem 1.35rem;
}

.living-book-section {
  display: grid;
  grid-template-columns: minmax(380px, .78fr) minmax(560px, 1.22fr);
  gap: 1rem;
  align-items: stretch;
}

.living-book-copy,
.tier-detail {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2.2rem;
  background:
    linear-gradient(145deg, rgba(19, 44, 63, .62), rgba(8, 7, 6, .94)),
    var(--obsidian);
}

.feed-source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}

.feed-source-grid div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: .35rem;
  padding: .9rem;
  border: 1px solid rgba(214, 178, 94, .18);
  background: rgba(255, 247, 232, .05);
}

.feed-source-grid span,
.ledger-marginalia span,
.live-page-photo span,
.tier-price strong,
.membership-table span {
  color: var(--gold-soft);
  font-size: .8rem;
  font-weight: 900;
}

.feed-source-grid strong,
.ledger-marginalia strong,
.live-page-photo strong,
.tier-price span,
.membership-table strong {
  color: var(--cream);
  font-family: var(--serif);
  line-height: 1.2;
}

.live-ledger {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(320px, .96fr) minmax(260px, .74fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(214, 178, 94, .2);
}

.book-ribbon {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 2;
  width: 52px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  align-content: center;
  gap: .45rem;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .34), rgba(74, 23, 18, .82), rgba(0, 0, 0, .28));
  border-left: 1px solid rgba(242, 213, 139, .24);
  border-right: 1px solid rgba(242, 213, 139, .18);
}

.book-ribbon span {
  writing-mode: vertical-rl;
  color: rgba(255, 247, 232, .76);
  font-size: .72rem;
  font-weight: 900;
}

.live-page {
  position: relative;
  overflow: hidden;
}

.live-page-primary {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2.6rem 3.5rem 2.6rem 2.4rem;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 84%, rgba(0, 0, 0, .16)),
    repeating-linear-gradient(0deg, rgba(33, 23, 18, .032) 0, rgba(33, 23, 18, .032) 1px, transparent 1px, transparent 12px),
    linear-gradient(145deg, #fff2d5, var(--paper) 62%, var(--paper-deep));
}

.live-page-primary h3 {
  color: var(--ink);
}

.live-page-primary p:not(.folio) {
  margin: 0;
  color: rgba(33, 23, 18, .72);
  font-size: 1.08rem;
  line-height: 1.75;
}

.ledger-marginalia {
  display: grid;
  gap: .35rem;
  margin-top: .5rem;
  padding: 1rem;
  border: 1px solid rgba(33, 23, 18, .16);
  background: rgba(255, 247, 232, .28);
}

.ledger-marginalia span {
  color: #7a4e18;
}

.ledger-marginalia strong {
  color: rgba(33, 23, 18, .86);
}

.live-page-photo {
  min-height: 100%;
  display: grid;
  align-content: end;
  padding: 1.1rem 1.1rem 1.1rem 3.1rem;
  background: var(--obsidian);
}

.live-page-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.06) brightness(.62);
}

.live-page-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(8, 7, 6, .9));
}

.live-page-photo div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .35rem;
  padding: 1rem;
  border: 1px solid rgba(214, 178, 94, .24);
  background: rgba(8, 7, 6, .72);
  backdrop-filter: blur(12px);
}

.live-page-photo strong {
  font-size: 1.45rem;
}

.live-page-photo small {
  color: rgba(255, 247, 232, .72);
  line-height: 1.5;
}

.membership-section {
  display: grid;
  gap: 1rem;
}

.membership-ledger {
  display: grid;
  grid-template-columns: minmax(280px, .52fr) minmax(390px, .72fr) minmax(270px, .45fr);
  gap: 1rem;
  align-items: stretch;
}

.tier-list {
  display: grid;
  gap: .65rem;
}

.tier-tab {
  min-height: 124px;
  display: grid;
  align-content: center;
  gap: .35rem;
  padding: 1rem;
  text-align: left;
  border: 1px solid rgba(214, 178, 94, .2);
  border-radius: 4px;
  background: rgba(255, 247, 232, .045);
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.tier-tab span,
.tier-tab small {
  color: rgba(255, 247, 232, .66);
  font-weight: 900;
}

.tier-tab strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
}

.tier-tab.is-active,
.tier-tab:hover {
  border-color: rgba(242, 213, 139, .58);
  background: rgba(214, 178, 94, .11);
  transform: translateY(-2px);
}

.tier-detail {
  min-height: 575px;
}

.tier-detail p:not(.folio) {
  margin: 0;
  color: rgba(255, 247, 232, .78);
  line-height: 1.75;
}

.tier-price {
  display: grid;
  gap: .25rem;
  padding: 1rem;
  border: 1px solid rgba(214, 178, 94, .2);
  background: rgba(255, 247, 232, .055);
}

.tier-price span {
  color: var(--cream);
  font-size: 2rem;
}

.tier-benefits {
  margin: 0;
  padding: 0;
  display: grid;
  gap: .7rem;
  list-style: none;
}

.tier-benefits li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255, 247, 232, .8);
  line-height: 1.45;
}

.tier-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62rem;
  width: 6px;
  height: 6px;
  background: var(--gold-soft);
  transform: rotate(45deg);
}

.membership-table {
  display: grid;
  align-content: stretch;
  gap: 1px;
  overflow: hidden;
  background: rgba(214, 178, 94, .16);
}

.membership-table div {
  min-height: 136px;
  display: grid;
  align-content: center;
  gap: .25rem;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(8, 7, 6, .9), rgba(19, 44, 63, .62)),
    var(--obsidian);
}

.membership-table strong {
  font-size: 1.8rem;
}

.membership-table small {
  color: rgba(255, 247, 232, .68);
  line-height: 1.45;
}

.membership-note {
  margin: 0;
  padding: 1rem;
  color: rgba(255, 247, 232, .74);
  line-height: 1.65;
  border-left: 3px solid var(--gold);
  background: rgba(214, 178, 94, .07);
}

.events-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(380px, .86fr);
  gap: 1rem;
  padding: 6rem 1.35rem;
}

.events-photo {
  min-height: 680px;
  overflow: hidden;
  background: var(--obsidian);
}

.events-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04) brightness(.84);
}

.event-readout {
  display: grid;
  gap: .35rem;
  padding: 1rem;
  border: 1px solid rgba(214, 178, 94, .2);
  background: rgba(255, 247, 232, .055);
}

.event-readout p {
  margin: 0;
  color: rgba(255, 247, 232, .76);
  line-height: 1.6;
}

.codex-grid {
  width: min(100%, var(--max));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, .94fr) minmax(360px, .76fr);
  gap: 1.2rem;
  align-items: center;
  padding: 2rem;
  background:
    linear-gradient(145deg, rgba(8, 7, 6, .88), rgba(19, 44, 63, .72)),
    var(--steel);
}

.flavor-wheel {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(214, 178, 94, .28);
  border-radius: 50%;
  background:
    conic-gradient(from -30deg, rgba(214, 178, 94, .28), rgba(83, 102, 78, .23), rgba(19, 44, 63, .35), rgba(74, 23, 18, .27), rgba(214, 178, 94, .28)),
    repeating-linear-gradient(90deg, rgba(255, 247, 232, .035) 0, rgba(255, 247, 232, .035) 1px, transparent 1px, transparent 18px);
  box-shadow: inset 0 0 0 25px rgba(8, 7, 6, .58), inset 0 0 0 26px rgba(214, 178, 94, .15);
}

.flavor-wheel button {
  position: absolute;
  width: 88px;
  min-height: 38px;
  border: 1px solid rgba(214, 178, 94, .3);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(8, 7, 6, .76);
  font-size: .8rem;
  font-weight: 900;
  cursor: pointer;
}

.flavor-wheel button:nth-child(1) { left: 50%; top: 4%; transform: translateX(-50%); }
.flavor-wheel button:nth-child(2) { right: 4%; top: 27%; }
.flavor-wheel button:nth-child(3) { right: 10%; bottom: 18%; }
.flavor-wheel button:nth-child(4) { left: 10%; bottom: 18%; }
.flavor-wheel button:nth-child(5) { left: 4%; top: 27%; }
.flavor-wheel button:nth-child(6) { left: 50%; bottom: 4%; transform: translateX(-50%); }

.wheel-center {
  position: absolute;
  inset: 28%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: .45rem;
  padding: 1.1rem;
  text-align: center;
  border-radius: 50%;
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, rgba(33, 23, 18, .032) 0, rgba(33, 23, 18, .032) 1px, transparent 1px, transparent 10px),
    linear-gradient(145deg, #fff2d5, var(--paper));
}

.wheel-center span {
  color: #7a4e18;
  font-weight: 900;
}

.wheel-center strong {
  font-family: var(--serif);
  line-height: 1.2;
}

.taste-engine {
  display: grid;
  gap: 1rem;
}

.taste-engine label {
  display: grid;
  gap: .5rem;
  color: var(--cream);
  font-weight: 900;
}

.taste-engine input {
  width: 100%;
  accent-color: var(--gold-soft);
}

.taste-result,
.season-readout {
  display: grid;
  gap: .35rem;
  padding: 1rem;
  border: 1px solid rgba(214, 178, 94, .2);
  background: rgba(255, 247, 232, .055);
}

.taste-result span {
  color: var(--gold-soft);
  font-weight: 900;
}

.taste-result strong,
.season-readout strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.taste-result p,
.season-readout p {
  margin: 0;
  color: rgba(255, 247, 232, .76);
  line-height: 1.6;
}

.house-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(380px, .86fr);
  gap: 1rem;
  padding: 6rem 1.35rem 7rem;
}

.house-photo {
  min-height: 720px;
  overflow: hidden;
  background: var(--obsidian);
}

.house-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: 4rem 1.35rem 7rem;
}

.closing-section h2 {
  max-width: 980px;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.site-page {
  padding-top: 76px;
}

.page-hero {
  position: relative;
  width: min(100%, var(--max));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(540px, 1.18fr);
  gap: 1rem;
  align-items: center;
  padding: 5rem 1.35rem 4rem;
}

.page-hero-copy {
  display: grid;
  gap: 1rem;
}

.page-hero-copy p:not(.kicker):not(.folio),
.ledger-card p,
.chapter-card p,
.bottle-grid p,
.menu-ledger p,
.event-ledger p,
.resource-grid p,
.shop-grid p,
.experience-gallery p,
.timeline-list p {
  margin: 0;
  color: rgba(255, 247, 232, .78);
  line-height: 1.7;
}

.page-hero h1 {
  font-size: 5rem;
}

.page-hero-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 94, .24);
  border-radius: 8px;
  background: var(--obsidian);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  filter: saturate(.82) contrast(1.06) brightness(.66);
}

.page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, .38), transparent 46%),
    linear-gradient(180deg, transparent 42%, rgba(8, 7, 6, .92));
}

.page-hero-plaque {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: .25rem;
  padding: 1rem;
  border: 1px solid rgba(214, 178, 94, .24);
  background: rgba(8, 7, 6, .76);
  backdrop-filter: blur(12px);
}

.page-hero-plaque span,
.ledger-card .folio,
.chapter-card span,
.bottle-grid span,
.menu-ledger span,
.event-ledger span,
.resource-grid span,
.shop-grid span,
.experience-gallery span,
.timeline-list span,
.lux-form span {
  color: var(--gold-soft);
  font-size: .82rem;
  font-weight: 900;
}

.page-hero-plaque strong,
.chapter-card strong,
.bottle-grid strong,
.menu-ledger strong,
.event-ledger strong,
.resource-grid strong,
.shop-grid strong,
.experience-gallery strong,
.timeline-list strong {
  color: var(--cream);
  font-family: var(--serif);
  line-height: 1.18;
}

.page-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 5rem 1.35rem;
}

.home-resource-grid {
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.split-ledger {
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(520px, 1.22fr);
  gap: 1rem;
  align-items: stretch;
}

.ledger-card {
  display: grid;
  align-content: center;
  gap: 1rem;
  min-height: 460px;
  padding: 2.2rem;
  border: 1px solid rgba(214, 178, 94, .2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(42, 24, 17, .84), rgba(8, 7, 6, .94)),
    var(--obsidian);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}

.filter-rail,
.bottle-grid,
.chapter-grid,
.menu-ledger,
.event-ledger,
.resource-grid,
.shop-grid,
.experience-gallery,
.timeline-list {
  display: grid;
  gap: 1rem;
}

.filter-rail {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.filter-rail button {
  min-height: 44px;
  padding: .7rem .85rem;
  border: 1px solid rgba(214, 178, 94, .24);
  border-radius: 3px;
  color: rgba(255, 247, 232, .82);
  background: rgba(255, 247, 232, .045);
  font-weight: 900;
}

.bottle-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bottle-grid article,
.chapter-card,
.menu-ledger article,
.event-ledger article,
.resource-grid article,
.shop-grid article,
.experience-gallery article,
.timeline-list div,
.lux-form {
  display: grid;
  align-content: start;
  gap: .6rem;
  min-height: 220px;
  padding: 1.25rem;
  border: 1px solid rgba(214, 178, 94, .2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 7, 6, .9), rgba(19, 44, 63, .58)),
    var(--obsidian);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .26);
}

.bottle-grid strong,
.chapter-card strong,
.menu-ledger strong,
.event-ledger strong,
.resource-grid strong,
.shop-grid strong,
.experience-gallery strong,
.timeline-list strong {
  font-size: 1.45rem;
}

.chapter-grid,
.menu-ledger,
.event-ledger,
.resource-grid,
.shop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chapter-grid .section-intro,
.menu-ledger .section-intro,
.event-ledger .section-intro,
.resource-grid .section-intro,
.shop-grid .section-intro,
.experience-gallery .section-intro {
  grid-column: 1 / -1;
  margin-bottom: .2rem;
}

.menu-ledger {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.event-ledger article a,
.resource-grid article a,
.shop-grid article a {
  align-self: end;
  color: var(--gold-soft);
  font-weight: 900;
}

.resource-grid,
.shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.relaunch-page {
  --relaunch-line: rgba(214, 178, 94, .22);
  --relaunch-panel: rgba(8, 7, 6, .74);
  --relaunch-blue: rgba(19, 44, 63, .62);
  --relaunch-green: rgba(83, 102, 78, .62);
}

.relaunch-hero {
  width: min(100%, var(--max));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(520px, 1.1fr);
  gap: 1rem;
  align-items: center;
  padding: 5rem 1.35rem 4rem;
}

.relaunch-hero-copy {
  display: grid;
  gap: 1rem;
}

.relaunch-hero-copy h1 {
  max-width: 980px;
  font-size: 5rem;
}

.relaunch-hero-copy p:not(.kicker):not(.folio),
.relaunch-snapshot p,
.relaunch-context p,
.relaunch-timeline p,
.budget-section p,
.menu-ops-section p,
.launch-copy-section p,
.andrew-approval p {
  margin: 0;
  color: rgba(255, 247, 232, .78);
  line-height: 1.68;
}

.relaunch-command-panel {
  position: relative;
  min-height: 680px;
  display: grid;
  align-content: end;
  gap: .85rem;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--relaunch-line);
  border-radius: 8px;
  background: var(--obsidian);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}

.relaunch-command-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.08) brightness(.58);
}

.relaunch-command-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, .04), rgba(8, 7, 6, .88) 58%),
    linear-gradient(120deg, rgba(19, 44, 63, .28), transparent 42%);
}

.command-panel-card,
.command-panel-grid {
  position: relative;
  z-index: 1;
}

.command-panel-card {
  display: grid;
  gap: .35rem;
  padding: 1.15rem;
  border: 1px solid rgba(242, 213, 139, .34);
  border-radius: 8px;
  background: rgba(8, 7, 6, .78);
  backdrop-filter: blur(12px);
}

.command-panel-card span,
.command-panel-grid span,
.relaunch-snapshot span,
.context-list span,
.timeline-board span,
.budget-card span,
.assumption-notes span,
.ops-grid span,
.copy-grid span,
.approval-board span,
.source-grid span {
  color: var(--gold-soft);
  font-size: .8rem;
  font-weight: 900;
}

.command-panel-card strong,
.relaunch-snapshot strong,
.context-list strong,
.timeline-board strong,
.budget-card strong,
.assumption-notes strong,
.ops-grid strong,
.copy-grid strong,
.approval-board strong,
.source-grid strong {
  color: var(--cream);
  font-family: var(--serif);
  line-height: 1.18;
}

.command-panel-card strong {
  font-size: 1.75rem;
}

.command-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}

.command-panel-grid div {
  display: grid;
  gap: .25rem;
  min-height: 134px;
  padding: .95rem;
  border: 1px solid rgba(214, 178, 94, .22);
  border-radius: 8px;
  background: rgba(8, 7, 6, .72);
  backdrop-filter: blur(12px);
}

.command-panel-grid strong {
  font-size: 1.7rem;
}

.command-panel-grid small {
  color: rgba(255, 247, 232, .68);
  line-height: 1.42;
}

.relaunch-snapshot,
.context-list,
.timeline-board,
.budget-grid,
.assumption-notes,
.ops-grid,
.copy-grid,
.approval-board,
.source-grid {
  display: grid;
  gap: 1rem;
}

.relaunch-snapshot {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.relaunch-snapshot .section-intro,
.relaunch-context .section-intro,
.relaunch-timeline .section-intro,
.budget-section .section-intro,
.menu-ops-section .section-intro,
.launch-copy-section .section-intro,
.andrew-approval .section-intro,
.source-links .section-intro {
  grid-column: 1 / -1;
  margin-bottom: .2rem;
}

.relaunch-snapshot article,
.context-list article,
.timeline-board article,
.budget-card,
.assumption-notes article,
.ops-grid article,
.copy-grid article,
.approval-board article,
.source-grid a {
  display: grid;
  align-content: start;
  gap: .65rem;
  min-height: 220px;
  padding: 1.25rem;
  border: 1px solid var(--relaunch-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(8, 7, 6, .9), var(--relaunch-blue)),
    var(--obsidian);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .24);
}

.relaunch-snapshot strong,
.context-list strong,
.timeline-board strong,
.budget-card strong,
.assumption-notes strong,
.ops-grid strong,
.copy-grid strong,
.approval-board strong,
.source-grid strong {
  font-size: 1.45rem;
}

.context-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.context-list a,
.copy-grid a {
  align-self: end;
  color: var(--gold-soft);
  font-weight: 900;
}

.timeline-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-board article {
  min-height: 260px;
}

.timeline-board time {
  color: var(--gold-soft);
  font-size: .82rem;
  font-weight: 900;
}

.timeline-board span {
  align-self: end;
  display: block;
  padding-top: .7rem;
  border-top: 1px solid rgba(214, 178, 94, .16);
  line-height: 1.35;
}

.budget-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.budget-card {
  min-height: 245px;
}

.budget-card strong {
  font-size: 3.4rem;
}

.budget-card-recommended {
  background:
    linear-gradient(145deg, rgba(42, 24, 17, .92), rgba(83, 102, 78, .5)),
    var(--obsidian);
}

.budget-table-wrap {
  width: 100%;
  margin-top: 1rem;
  overflow-x: auto;
  border: 1px solid var(--relaunch-line);
  border-radius: 8px;
  background: rgba(8, 7, 6, .56);
}

.budget-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.budget-table th,
.budget-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(214, 178, 94, .16);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.budget-table th {
  color: var(--cream);
  font-weight: 900;
}

.budget-table thead th {
  color: var(--gold-soft);
  background: rgba(19, 44, 63, .48);
}

.budget-table td {
  color: rgba(255, 247, 232, .78);
}

.budget-table tr:last-child th,
.budget-table tr:last-child td {
  border-bottom: 0;
}

.assumption-notes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.assumption-notes article {
  min-height: 190px;
  background:
    linear-gradient(145deg, rgba(8, 7, 6, .9), var(--relaunch-green)),
    var(--obsidian);
}

.ops-grid,
.copy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.copy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.copy-grid article {
  min-height: 290px;
}

.approval-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.approval-board article {
  min-height: 250px;
  background:
    linear-gradient(145deg, rgba(8, 7, 6, .92), rgba(74, 23, 18, .54)),
    var(--obsidian);
}

.approval-board span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 213, 139, .28);
  border-radius: 50%;
  background: rgba(255, 247, 232, .06);
}

.source-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.source-grid a {
  min-height: 160px;
}

.experience-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-gallery article {
  overflow: hidden;
  padding: 0;
}

.experience-gallery article img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(.86) contrast(1.04) brightness(.74);
}

.experience-gallery article span,
.experience-gallery article strong,
.experience-gallery article p {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.experience-gallery article p {
  margin-bottom: 1.25rem;
}

.timeline-list {
  align-content: stretch;
}

.timeline-list div {
  min-height: 0;
}

.lux-form {
  min-height: 460px;
  align-content: center;
}

.lux-form label {
  display: grid;
  gap: .4rem;
}

.lux-form input {
  width: 100%;
  min-height: 48px;
  padding: .8rem;
  border: 1px solid rgba(214, 178, 94, .24);
  border-radius: 3px;
  color: var(--cream);
  background: rgba(255, 247, 232, .06);
}

.passport-page-hero {
  grid-template-columns: minmax(360px, .72fr) minmax(560px, 1.28fr);
}

.page-phone-stage {
  min-height: 680px;
}

.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1.2fr;
  gap: 1rem;
  padding: 2rem 1.35rem 3rem;
  border-top: 1px solid rgba(214, 178, 94, .2);
}

.site-footer div {
  display: grid;
  gap: .25rem;
}

.site-footer span {
  color: var(--gold-soft);
  font-weight: 900;
}

.site-footer strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .45rem;
}

.site-footer a {
  padding: .5rem .65rem;
  color: rgba(255, 247, 232, .72);
  font-size: .84rem;
  font-weight: 900;
}

.passport-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 560;
  width: min(440px, 100%);
  transform: translateX(100%);
  transition: transform .42s var(--ease);
  border-left: 1px solid rgba(214, 178, 94, .28);
  background: rgba(8, 7, 6, .96);
  box-shadow: -28px 0 70px rgba(0, 0, 0, .48);
}

body.passport-open .passport-drawer {
  transform: translateX(0);
}

.drawer-panel {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 5.8rem 1.35rem 1.35rem;
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 232, .035) 0, rgba(255, 247, 232, .035) 1px, transparent 1px, transparent 15px),
    linear-gradient(145deg, #140604, var(--leather), #0b0503);
}

.drawer-panel h2 {
  font-size: 2.6rem;
}

.drawer-close {
  justify-self: end;
  min-height: 38px;
  padding: .55rem .75rem;
  border-radius: 3px;
}

.qr-lockup {
  width: 176px;
  height: 176px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid rgba(214, 178, 94, .28);
}

.qr-lockup span {
  background: var(--ink);
}

.qr-lockup span:nth-child(2),
.qr-lockup span:nth-child(7),
.qr-lockup span:nth-child(9),
.qr-lockup span:nth-child(12),
.qr-lockup span:nth-child(15) {
  background: rgba(33, 23, 18, .18);
}

.drawer-data {
  display: grid;
  gap: .8rem;
}

.drawer-data div {
  display: grid;
  gap: .25rem;
  padding: .9rem 0;
  border-top: 1px solid rgba(214, 178, 94, .2);
}

.drawer-data span {
  color: var(--gold-soft);
  font-size: .82rem;
  font-weight: 900;
}

.drawer-data strong {
  color: rgba(255, 247, 232, .86);
  line-height: 1.35;
}

.stamp-burst {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 580;
  width: 176px;
  height: 176px;
  display: grid;
  place-items: center;
  color: rgba(74, 23, 18, .9);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 900;
  border: 5px double rgba(74, 23, 18, .88);
  border-radius: 50%;
  background: rgba(243, 231, 202, .92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.8) rotate(-14deg);
  pointer-events: none;
}

.stamp-burst.is-active {
  animation: stamp .62s var(--ease);
}

@keyframes stamp {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(2.3) rotate(-14deg); }
  46% { opacity: 1; transform: translate(-50%, -50%) scale(.92) rotate(-14deg); }
  64% { opacity: 1; transform: translate(-50%, -50%) scale(1.04) rotate(-14deg); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1) rotate(-14deg); }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3rem;
  }

  .site-nav,
  .passport-trigger {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .portal-section,
  .page-hero,
  .relaunch-hero,
  .journey-grid,
  .ledger-section,
  .atlas-opening,
  .atlas-globe-heading,
  .atlas-follow-up,
  .collection-section,
  .collection-board,
  .passport-section,
  .living-book-section,
  .membership-ledger,
  .events-section,
  .split-ledger,
  .passport-page-hero,
  .codex-grid,
  .site-footer,
  .house-section {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 4.2rem;
  }

  .chapter-grid,
  .menu-ledger,
  .event-ledger,
  .resource-grid,
  .shop-grid,
  .relaunch-snapshot,
  .context-list,
  .timeline-board,
  .budget-grid,
  .assumption-notes,
  .ops-grid,
  .copy-grid,
  .approval-board,
  .source-grid,
  .experience-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .relaunch-hero-copy h1 {
    font-size: 4.2rem;
  }

  .relaunch-command-panel {
    min-height: 540px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .portal-copy {
    justify-self: start;
    padding-bottom: 1rem;
  }

  .hero-ledger-rail {
    justify-self: start;
    width: min(100%, 770px);
    margin-bottom: 10.85rem;
  }

  .portal-stage,
  .world-panel,
  .journey-display,
  .app-orbit,
  .collection-board,
  .passport-product,
  .live-ledger,
  .events-photo,
  .codex-grid,
  .house-photo {
    min-height: 620px;
  }

  .distillery-hero {
    grid-template-columns: 1fr;
  }

  .distillery-products,
  .distillery-facts,
  .distillery-research-grid,
  .distillery-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atlas-world-panel {
    position: relative;
    top: auto;
    height: auto;
    min-height: 680px;
  }

  .atlas-canvas-stage {
    min-height: 500px;
  }

  .atlas-opening-copy {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    grid-template-columns: auto auto;
    padding: .72rem .95rem;
  }

  .brand-mark {
    min-width: 142px;
  }

  .brand-mark span {
    font-size: 1rem;
  }

  .reserve-link {
    display: none;
  }

  .portal-section,
  .page-hero,
  .relaunch-hero,
  .page-section,
  .journey-section,
  .ledger-section,
  .collection-section,
  .passport-section,
  .living-book-section,
  .membership-section,
  .events-section,
  .codex-section,
  .house-section,
  .closing-section {
    padding-left: .85rem;
    padding-right: .85rem;
  }

  .portal-section {
    padding-top: 5.3rem;
    padding-bottom: .85rem;
    gap: 1.1rem;
    min-height: auto;
  }

  .portal-photo img {
    object-position: 62% center;
    filter: saturate(1.02) contrast(1.04) brightness(.72);
  }

  .portal-section::before {
    background:
      linear-gradient(90deg, rgba(8, 7, 6, .9), rgba(8, 7, 6, .58)),
      linear-gradient(180deg, rgba(8, 7, 6, .14), rgba(8, 7, 6, .78));
  }

  .portal-copy {
    padding-bottom: 0;
  }

  .hero-ledger-rail {
    display: grid;
    justify-self: stretch;
    width: 100%;
    margin-bottom: 0;
    padding: .48rem 0;
  }

  .hero-ledger-rail::before {
    left: .72rem;
    font-size: .6rem;
  }

  .weekly-ticker {
    overflow-x: auto;
    padding-bottom: .25rem;
  }

  .weekly-ticker-track {
    min-width: max-content;
    justify-content: flex-start;
    gap: .6rem;
  }

  .weekly-ticker-item {
    flex: 0 0 154px;
    min-height: 150px;
    grid-template-rows: 68px auto auto auto;
    gap: .25rem;
    padding: .5rem;
  }

  .weekly-ticker-item img {
    height: 68px;
  }

  .weekly-ticker-item em {
    font-size: .64rem;
  }

  h1 {
    font-size: 3.05rem;
    line-height: .94;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .relaunch-hero h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.55rem;
  }

  .portal-actions {
    display: grid;
  }

  .portal-stage {
    min-height: 760px;
    place-items: start;
  }

  .ledger-object {
    min-height: 740px;
    transform: none;
    display: grid;
    gap: .9rem;
  }

  .ledger-cover {
    display: none;
  }

  .ledger-page {
    position: relative;
    inset: auto;
    width: 100%;
    border-radius: 7px;
  }

  .ledger-page-left,
  .ledger-page-right {
    left: auto;
    right: auto;
    padding: 1.25rem;
  }

  .ledger-page-left {
    min-height: 390px;
  }

  .ledger-page-right {
    margin-top: .9rem;
    order: -1;
  }

  .ledger-page-right canvas {
    min-height: 300px;
  }

  .experience-proof {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: 1fr;
    margin: .5rem 0 0;
  }

  .journey-section,
  .page-section,
  .ledger-section,
  .collection-section,
  .passport-section,
  .living-book-section,
  .membership-section,
  .events-section,
  .codex-section,
  .house-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .atlas-opening,
  .atlas-globe-shell,
  .atlas-follow-up {
    padding: .75rem;
  }

  .atlas-opening-copy {
    padding: 1rem;
  }

  .passport-journey-card {
    grid-template-columns: 1fr;
  }

  .passport-journey-step {
    min-height: 142px;
  }

  .journey-display,
  .app-orbit,
  .page-hero-visual,
  .world-panel,
  .collection-board,
  .passport-product,
  .live-ledger,
  .events-photo,
  .codex-grid,
  .house-photo {
    min-height: 0;
  }

  .page-hero {
    padding-top: 4rem;
    padding-bottom: 3rem;
    min-height: 0;
  }

  .relaunch-hero {
    padding-top: 4rem;
    padding-bottom: 3rem;
    min-height: 0;
  }

  .distillery-hero {
    padding-top: 5.5rem;
    grid-template-columns: 1fr;
  }

  .distillery-hero-copy h1 {
    max-width: 100%;
  }

  .distillery-products,
  .distillery-facts,
  .distillery-research-grid,
  .distillery-index-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-visual,
  .page-hero-visual img {
    min-height: 420px;
  }

  .relaunch-command-panel {
    min-height: 460px;
  }

  .command-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-display,
  .region-panel,
  .ledger-card,
  .collection-copy,
  .events-copy,
  .passport-positioning,
  .living-book-copy,
  .tier-detail,
  .house-copy,
  .codex-grid {
    padding: 1.25rem;
  }

  .world-panel {
    min-height: 0;
  }

  .atlas-world-panel {
    height: auto;
    min-height: 0;
    padding: .75rem;
  }

  .atlas-canvas-stage {
    min-height: 430px;
  }

  .atlas-hud {
    top: .75rem;
    left: .75rem;
    right: .75rem;
  }

  .distillery-card {
    max-height: 260px;
  }

  .atlas-stats,
  .atlas-journeys,
  .passport-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .passport-mini-book {
    min-height: 230px;
    padding: 1rem;
  }

  .atlas-region-map,
  .atlas-region-map canvas {
    min-height: 260px;
  }

  .passport-product,
  .live-ledger,
  .collection-board,
  .codex-grid {
    grid-template-columns: 1fr;
  }

  .collection-feature {
    padding: 1.25rem;
  }

  .collection-photo {
    min-height: 360px;
  }

  .bottle-grid,
  .chapter-grid,
  .menu-ledger,
  .event-ledger,
  .resource-grid,
  .shop-grid,
  .relaunch-snapshot,
  .context-list,
  .timeline-board,
  .budget-grid,
  .assumption-notes,
  .ops-grid,
  .copy-grid,
  .approval-board,
  .source-grid,
  .experience-gallery,
  .filter-rail {
    grid-template-columns: 1fr;
  }

  .bottle-grid article,
  .chapter-card,
  .menu-ledger article,
  .event-ledger article,
  .resource-grid article,
  .shop-grid article,
  .relaunch-snapshot article,
  .context-list article,
  .timeline-board article,
  .budget-card,
  .assumption-notes article,
  .ops-grid article,
  .copy-grid article,
  .approval-board article,
  .source-grid a,
  .experience-gallery article,
  .timeline-list div,
  .lux-form {
    min-height: 0;
  }

  .budget-card strong {
    font-size: 2.7rem;
  }

  .budget-table th,
  .budget-table td {
    padding: .85rem;
  }

  .experience-gallery article img {
    height: 220px;
  }

  .book-ribbon {
    display: none;
  }

  .live-page-primary,
  .live-page-photo {
    padding: 1.25rem;
  }

  .live-page-photo {
    min-height: 360px;
  }

  .feed-source-grid {
    grid-template-columns: 1fr;
  }

  .tier-tab {
    min-height: 108px;
  }

  .tier-detail {
    min-height: 0;
  }

  .passport-cover strong {
    font-size: 3rem;
  }

  .stamp-grid {
    grid-template-columns: 1fr;
  }

  .flavor-wheel {
    width: min(100%, 340px);
  }

  .flavor-wheel button {
    width: 76px;
    font-size: .74rem;
  }

  .house-photo {
    min-height: 420px;
  }

  .closing-actions {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-left: .85rem;
    padding-right: .85rem;
  }

  .site-footer nav {
    display: grid;
    justify-content: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
}

@media print {
  body {
    color: #211712;
    background: #fff7e8;
  }

  .site-header,
  .mobile-nav,
  .scroll-meter,
  .texture-layer,
  .passport-drawer,
  .site-footer,
  .portal-actions {
    display: none !important;
  }

  .site-page,
  .relaunch-hero,
  .page-section {
    padding: 0;
  }

  .relaunch-hero,
  .relaunch-snapshot,
  .context-list,
  .timeline-board,
  .budget-grid,
  .assumption-notes,
  .ops-grid,
  .copy-grid,
  .approval-board,
  .source-grid {
    display: block;
  }

  .relaunch-command-panel img,
  .relaunch-command-panel::after {
    display: none;
  }

  .relaunch-command-panel,
  .command-panel-card,
  .command-panel-grid div,
  .relaunch-snapshot article,
  .context-list article,
  .timeline-board article,
  .budget-card,
  .assumption-notes article,
  .ops-grid article,
  .copy-grid article,
  .approval-board article,
  .source-grid a,
  .budget-table-wrap {
    min-height: 0;
    margin: .45rem 0;
    break-inside: avoid;
    color: #211712;
    background: #fff7e8;
    border-color: #a47723;
    box-shadow: none;
  }

  .relaunch-hero h1,
  .section-intro h2,
  .command-panel-card strong,
  .command-panel-grid strong,
  .relaunch-snapshot strong,
  .context-list strong,
  .timeline-board strong,
  .budget-card strong,
  .assumption-notes strong,
  .ops-grid strong,
  .copy-grid strong,
  .approval-board strong,
  .source-grid strong {
    color: #211712;
  }

  .relaunch-hero-copy p:not(.kicker):not(.folio),
  .relaunch-snapshot p,
  .relaunch-context p,
  .relaunch-timeline p,
  .budget-section p,
  .menu-ops-section p,
  .launch-copy-section p,
  .andrew-approval p,
  .budget-table td {
    color: #211712;
  }

  .budget-table {
    min-width: 0;
  }
}
