:root {
  --black: #090909;
  --black-soft: #101010;
  --paper: #f2efe9;
  --white: #fbfaf7;
  --gray: #9b9994;
  --gray-dark: #5f5e5a;
  --red: #5f3dc4;
  --red-bright: #8b6ff2;
  --accent-rgb: 95, 61, 196;
  --accent-bright-rgb: 139, 111, 242;
  --line-dark: rgba(255, 255, 255, .16);
  --line-light: rgba(9, 9, 9, .18);
  --serif: "Italiana", "Times New Roman", serif;
  --sans: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
em { color: var(--red-bright); font-style: italic; }
::selection { color: white; background: var(--red); }
.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;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 9px 15px;
  color: var(--black);
  background: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 14px clamp(24px, 5vw, 80px);
  border-bottom: 1px solid transparent;
  transition: min-height .3s, background .3s, border-color .3s;
}
.site-header.scrolled {
  min-height: 70px;
  background: rgba(9, 9, 9, .92);
  border-color: var(--line-dark);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-self: start;
  font: 400 17px var(--serif);
  letter-spacing: .025em;
}
.brand img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}
.site-nav { display: flex; align-items: center; gap: 38px; }
.site-nav a,
.header-link {
  color: #c6c3bd;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .2s;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.header-link:hover,
.header-link:focus-visible { color: white; }
.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}
.header-link { white-space: nowrap; }
.header-link span { margin-left: 7px; color: var(--red-bright); }
.version-switch {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(var(--accent-bright-rgb), .5);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(var(--accent-bright-rgb), .13);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: border-color .2s, background .2s, transform .2s;
}
.version-switch:hover,
.version-switch:focus-visible {
  border-color: var(--red-bright);
  background: var(--red);
  transform: translateY(-1px);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 40px clamp(60px, 10vw, 155px);
  width: min(100%, 1600px);
  min-height: min(860px, 100svh);
  margin: 0 auto;
  padding: 110px clamp(24px, 6vw, 92px) 30px;
  background:
    radial-gradient(circle at 75% 38%, rgba(255,255,255,.035), transparent 31%),
    var(--black);
  isolation: isolate;
}
.hero-rule {
  position: absolute;
  inset: 13% auto 10% 54%;
  width: 1px;
  pointer-events: none;
  background: linear-gradient(transparent, var(--line-dark) 20%, var(--line-dark) 80%, transparent);
}
.hero::before {
  display: none;
}
.hero::after {
  content: "M";
  position: absolute;
  top: 48%;
  left: -1vw;
  z-index: -1;
  color: rgba(255,255,255,.018);
  font: 400 min(38vw, 600px)/.7 var(--serif);
  transform: translateY(-50%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.eyebrow {
  margin: 0 0 30px;
  color: var(--gray);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 13px 3px 0;
  background: var(--red);
}
.hero h1,
.statement h2,
.gathering h2,
.principles h2,
.etiquette h2,
.support h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}
.hero h1 {
  font-size: clamp(68px, 7.5vw, 118px);
  line-height: .82;
}
.hero h1 em { margin-left: clamp(25px, 3.5vw, 55px); }
.hero-intro {
  max-width: 550px;
  margin: 36px 0 30px;
  color: #aaa7a1;
  font-size: clamp(16px, 1.25vw, 19px);
}
.hero-actions { display: flex; align-items: center; gap: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 53px;
  padding: 0 25px;
  border: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .25s, background .25s, border-color .25s, transform .25s;
}
.button:hover { transform: translateY(-2px); }
.button-red { color: white; background: var(--red); }
.button-red:hover { background: var(--red-bright); }
.quiet-link {
  padding-bottom: 5px;
  border-bottom: 1px solid #494846;
  color: #aaa7a1;
  font-size: 11px;
}
.quiet-link span { margin-left: 8px; color: var(--red-bright); }
.hero-portrait {
  position: relative;
  justify-self: end;
  display: grid;
  place-items: center;
  width: min(100%, 430px);
  min-height: 430px;
}
.portrait-panel {
  position: relative;
  display: grid;
  place-items: center;
  width: min(78%, 330px);
  aspect-ratio: 1;
}
.portrait-panel::before,
.portrait-panel::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  pointer-events: none;
}
.portrait-panel::before {
  background: radial-gradient(circle, rgba(var(--accent-bright-rgb), .38), rgba(var(--accent-bright-rgb), .13) 42%, transparent 72%);
  filter: blur(26px);
  transform: scale(1.2);
}
.portrait-panel::after {
  border: 1px solid rgba(var(--accent-bright-rgb), .28);
  box-shadow:
    0 0 42px rgba(var(--accent-bright-rgb), .28),
    inset 0 0 38px rgba(var(--accent-bright-rgb), .13);
  opacity: .75;
}
.portrait-panel img {
  position: relative;
  z-index: 1;
  width: 82%;
  opacity: .78;
  filter:
    drop-shadow(0 0 10px rgba(255,251,244,.18))
    drop-shadow(0 0 30px rgba(var(--accent-bright-rgb), .62))
    drop-shadow(0 0 75px rgba(var(--accent-bright-rgb), .34));
}
.hero-footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  color: #625f5a;
  font-size: 8px;
  letter-spacing: .15em;
  line-height: 1.7;
  text-transform: uppercase;
}
.hero-footer p { margin: 0; }
.hero-footer .vertical-rule { height: 1px; background: #292827; }

.section-number {
  margin: 0;
  color: var(--red);
  font: italic 25px var(--serif);
}
.statement {
  display: grid;
  grid-template-columns: minmax(55px, .14fr) 1fr;
  gap: 28px;
  padding: clamp(65px, 6vw, 92px) clamp(24px, 10vw, 165px);
  color: var(--black);
  background: var(--paper);
}
.statement > div { max-width: 1080px; }
.statement h2,
.principles h2,
.etiquette h2 {
  font-size: clamp(54px, 7.2vw, 105px);
  line-height: .9;
}
.statement h2 {
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: .94;
}
.statement .eyebrow { color: var(--gray-dark); }
.statement-copy {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(38px, 7vw, 95px);
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}
.statement-copy p { margin: 0 0 24px; }
.statement-copy .lead {
  font: 400 clamp(22px, 1.8vw, 29px)/1.35 var(--serif);
}
.statement-copy > div { color: #686661; font-size: 14px; }

.gathering {
  display: grid;
  grid-template-columns: clamp(250px, 22vw, 380px) 1fr;
  min-height: 690px;
  background: #0d0d0d;
}
.gathering-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.7)),
    radial-gradient(circle at 50% 42%, rgba(var(--accent-rgb), .48), transparent 39%),
    #181414;
}
.gathering-aside::before {
  content: "";
  position: absolute;
  width: 145%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}
.gathering-aside span {
  position: relative;
  color: #d5d1cb;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.gathering-aside strong {
  position: relative;
  margin: 16px 0;
  color: var(--white);
  font: 400 clamp(72px, 7vw, 108px)/1 var(--serif);
  letter-spacing: -.06em;
}
.gathering-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(65px, 6vw, 92px);
  background: #0a0a0a;
}
.gathering-main .eyebrow { color: #bbb7b0; }
.gathering h2 { font-size: clamp(58px, 6.5vw, 100px); line-height: .86; }
.gathering h2 em { color: var(--red-bright); }
.gathering-lede {
  max-width: 700px;
  margin: 35px 0 42px;
  color: #cbc7c0;
  font-size: 16px;
  line-height: 1.75;
}
.event-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--black);
  background: var(--paper);
  border: 1px solid var(--paper);
}
.event-details > div {
  min-height: 142px;
  padding: 27px 30px;
  border-right: 1px solid rgba(9,9,9,.18);
}
.event-details > div:last-child { border-right: 0; }
.event-details p {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.event-details strong {
  display: block;
  margin-bottom: 5px;
  color: var(--black);
  font: 500 clamp(18px, 1.35vw, 22px)/1.3 var(--sans);
  letter-spacing: -.02em;
}
.event-details span { color: #5e5b56; font-size: 12px; }
.event-actions { display: flex; align-items: center; gap: 28px; margin-top: 40px; }
.button-outline {
  border: 1px solid #77736d;
  background: rgba(255,255,255,.025);
}
.button-outline:hover {
  border-color: var(--red-bright);
  background: var(--red);
}
.event-actions p { margin: 0; color: #aaa69f; font-size: 11px; }

.principles {
  padding: clamp(58px, 6vw, 86px) clamp(24px, 8vw, 130px);
  color: var(--black);
  background: var(--white);
}
.principles-heading {
  display: grid;
  grid-template-columns: minmax(55px, .12fr) 1fr;
  gap: 28px;
  margin-bottom: 38px;
}
.principles .eyebrow { color: var(--gray-dark); }
.principle-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
}
.principle-list article {
  min-height: 165px;
  padding: 22px 26px 26px;
  border-right: 1px solid var(--line-light);
}
.principle-list article:first-child { padding-left: 0; }
.principle-list article:last-child { border-right: 0; }
.principle-list span {
  color: var(--red);
  font-size: 8px;
  letter-spacing: .15em;
}
.principle-list h3 {
  margin: 32px 0 12px;
  font: 400 clamp(27px, 2.3vw, 38px) var(--serif);
}
.principle-list p { margin: 0; color: #696762; font-size: 12.5px; line-height: 1.55; }

.etiquette {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: clamp(60px, 11vw, 170px);
  padding: clamp(85px, 9vw, 130px) clamp(24px, 8vw, 130px);
  background: #0c0c0c;
}
.etiquette-intro { position: sticky; top: 120px; align-self: start; }
.etiquette-intro > p:not(.eyebrow) { max-width: 480px; margin: 35px 0; color: #888580; }
.etiquette-list { border-top: 1px solid var(--line-dark); }
.etiquette-list details { border-bottom: 1px solid var(--line-dark); }
.etiquette-list summary {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  min-height: 85px;
  cursor: pointer;
  list-style: none;
  font: 400 clamp(20px, 2vw, 27px) var(--serif);
}
.etiquette-list summary::-webkit-details-marker { display: none; }
.etiquette-list summary span { color: #5e5b56; font: 400 8px var(--sans); }
.etiquette-list summary b { color: var(--red-bright); font: 300 22px var(--sans); transition: transform .25s; }
.etiquette-list details[open] summary b { transform: rotate(45deg); }
.etiquette-list details p { margin: 0; padding: 0 48px 30px 45px; color: #8d8a84; font-size: 13px; }

.support {
  position: relative;
  overflow: hidden;
  padding: clamp(95px, 10vw, 145px) 24px;
  color: var(--paper);
  background: var(--red);
  text-align: center;
}
.support::before,
.support::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0,0,0,.2);
}
.support::before { left: 17%; }
.support::after { right: 17%; }
.support > *:not(.support-mark) { position: relative; z-index: 1; }
.support-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(0,0,0,.06);
  font: 400 min(55vw, 700px)/1 var(--serif);
  transform: translate(-50%, -50%);
}
.support .eyebrow { color: rgba(255,251,244,.78); }
.support .eyebrow::before { background: var(--paper); }
.support h2 { font-size: clamp(60px, 7.5vw, 110px); line-height: .84; }
.support h2 em { color: #130923; text-shadow: 0 1px 0 rgba(255,255,255,.12); }
.support > p:not(.eyebrow) {
  max-width: 660px;
  margin: 45px auto;
  color: rgba(255,251,244,.86);
  font-size: 15px;
}
.button-light { color: var(--black); background: var(--paper); }
.button-light:hover { background: white; }

footer { padding: 58px clamp(24px, 7vw, 115px) 26px; background: #060606; }
.footer-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  padding-bottom: 42px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font: 400 17px/1.1 var(--serif);
}
.footer-brand img { width: 49px; height: 49px; object-fit: contain; }
.footer-head > p { margin: 0; font: 400 clamp(30px, 3.4vw, 50px)/1.05 var(--serif); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 30px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.footer-links a {
  color: #96938d;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .2s;
}
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--red-bright); }
.footer-legal {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 35px;
  padding-top: 26px;
  color: #5e5b57;
  font-size: 8px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.footer-legal p { margin: 0; }
.footer-legal a { color: #8a8781; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 90px 35px;
    background: rgba(9,9,9,.985);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
  }
  .site-nav.open { opacity: 1; visibility: visible; }
  .site-nav a { font: 400 40px var(--serif); letter-spacing: 0; text-transform: none; }
  .header-actions {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-self: end;
  }
  .header-link { display: none; }
  .version-switch {
    min-height: 31px;
    padding: 0 11px;
    font-size: 8px;
    letter-spacing: .12em;
  }
  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    position: relative;
    z-index: 2;
    display: grid;
    gap: 7px;
    width: 40px;
    height: 40px;
    padding: 11px 7px;
    border: 0;
    background: transparent;
  }
  .menu-toggle i { display: block; height: 1px; background: white; transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-4px) rotate(-45deg); }
  .hero { gap: 50px; }
  .hero h1 { font-size: clamp(68px, 10vw, 110px); }
  .gathering-main { padding: 90px 60px; }
  .event-details { grid-template-columns: 1fr; }
  .event-details > div,
  .event-details > div:not(:first-child) {
    min-height: 0;
    padding: 24px 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(9,9,9,.18);
  }
  .event-details > div:last-child { border-bottom: 0; }
  .principle-list { grid-template-columns: 1fr 1fr; }
  .principle-list article {
    min-height: 145px;
    border-bottom: 1px solid var(--line-light);
  }
  .principle-list article:nth-child(2) { border-right: 0; }
  .principle-list article:nth-child(3) { padding-left: 0; }
}

@media (max-width: 760px) {
  .site-header { min-height: 70px; padding: 12px 20px; }
  .brand img { width: 35px; height: 35px; }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    padding: 130px 22px 40px;
  }
  .hero::before { display: none; }
  .hero h1 { font-size: clamp(66px, 20vw, 92px); }
  .hero h1 em { margin-left: 20px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-portrait {
    width: min(70%, 280px);
    min-height: 260px;
    margin: 6px auto 18px;
    justify-self: center;
  }
  .portrait-panel { width: min(82%, 230px); }
  .hero-footer { display: none; }
  .statement,
  .principles-heading { grid-template-columns: 1fr; }
  .statement { padding-left: 22px; padding-right: 22px; }
  .statement-copy { grid-template-columns: 1fr; margin-top: 36px; }
  .gathering { grid-template-columns: 1fr; }
  .gathering-aside { min-height: 250px; }
  .gathering-aside strong { writing-mode: initial; transform: none; margin: 8px 0; }
  .gathering-main { padding: 80px 22px; }
  .gathering h2,
  .statement h2,
  .principles h2,
  .etiquette h2 { font-size: clamp(52px, 16vw, 78px); }
  .statement h2 { font-size: clamp(42px, 13vw, 62px); }
  .event-actions { align-items: flex-start; flex-direction: column; }
  .principles { padding-left: 22px; padding-right: 22px; }
  .principles-heading { margin-bottom: 32px; }
  .principle-list { grid-template-columns: 1fr; }
  .principle-list article,
  .principle-list article:first-child,
  .principle-list article:nth-child(3) {
    min-height: 0;
    padding: 20px 0 22px;
    border-right: 0;
  }
  .principle-list h3 { margin-top: 22px; }
  .etiquette { grid-template-columns: 1fr; padding-left: 22px; padding-right: 22px; }
  .etiquette-intro { position: static; }
  .etiquette-list details p { padding-left: 0; padding-right: 0; }
  .support { padding-left: 22px; padding-right: 22px; }
  .footer-head { grid-template-columns: 1fr; gap: 42px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-template-columns: 1fr; gap: 8px; }
}
