:root {
  --coral: #de8d8b;
  --coral-deep: #bf6f73;
  --blush: #f2c6c0;
  --cream: #fffaf3;
  --cream-deep: #f6ecdf;
  --ink: #261f28;
  --ink-soft: #514650;
  --gold: #d6aa68;
  --gold-light: #f7d9a7;
  --lavender: #81749a;
  --white: #ffffff;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hand: "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
  --shadow: 0 24px 70px rgba(70, 42, 49, 0.16);
  --shell: min(1180px, calc(100vw - 48px));
  --section-space: clamp(5.5rem, 10vw, 9rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  content: "";
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.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: 12px;
  left: 12px;
  z-index: 10000;
  padding: 0.7rem 1rem;
  color: var(--cream);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--coral-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

h3 {
  line-height: 1.15;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.35rem max(24px, calc((100vw - 1180px) / 2));
  color: var(--ink);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 250, 243, 0.75);
  border: 1px solid rgba(38, 31, 40, 0.3);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  box-shadow: inset 0 0 0 4px rgba(222, 141, 139, 0.18);
}

.wordmark-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.wordmark-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.wordmark-copy small {
  margin-top: 0.24rem;
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  opacity: 0.65;
  text-transform: uppercase;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.site-navigation > a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-navigation > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-navigation > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  color: var(--cream);
  background: var(--ink);
  border-radius: 999px;
}

.nav-cta svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.menu-button {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  background: var(--cream);
  border: 1px solid rgba(38, 31, 40, 0.2);
  border-radius: 50%;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 0.27rem auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(860px, 100svh);
  overflow: hidden;
  color: var(--ink);
  background: var(--coral);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 243, 222, 0.42), transparent 25%),
    radial-gradient(circle at 8% 90%, rgba(247, 217, 167, 0.22), transparent 24%),
    linear-gradient(112deg, transparent 0 63%, rgba(255, 250, 243, 0.12) 63% 64%, transparent 64%);
}

.hero-pattern {
  position: absolute;
  inset: 13% -4% auto;
  z-index: -1;
  display: grid;
  gap: 0.35rem;
  overflow: hidden;
  color: rgba(255, 250, 243, 0.16);
  font-size: clamp(3.8rem, 7.7vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.74;
  white-space: nowrap;
  transform: rotate(-2.5deg);
  user-select: none;
}

.hero-pattern span:nth-child(even) {
  transform: translateX(-8%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 760px;
}

.hero-copy .eyebrow {
  color: var(--ink);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.8rem;
  font-size: clamp(4.2rem, 9vw, 8.4rem);
}

.hero h1 em {
  display: block;
  color: var(--cream);
  font-weight: 500;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 2.2rem;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.hero-intro strong {
  font-size: 0.94em;
  letter-spacing: 0.055em;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3.45rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.82rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button svg {
  width: 1rem;
  fill: currentColor;
}

.button-dark {
  color: var(--cream);
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(38, 31, 40, 0.18);
}

.button-dark:hover {
  box-shadow: 0 16px 36px rgba(38, 31, 40, 0.27);
}

.button-cream {
  color: var(--ink);
  background: var(--cream);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(38, 31, 40, 0.35);
  cursor: pointer;
}

.button-outline:hover {
  background: var(--white);
  border-color: var(--ink);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.28);
  border-color: rgba(38, 31, 40, 0.4);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, 2px);
}

.hero-portrait {
  position: relative;
  width: min(390px, 100%);
  justify-self: end;
  margin-right: 1rem;
}

.portrait-frame {
  position: relative;
  z-index: 1;
  padding: 0.75rem;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(38, 31, 40, 0.2);
  border-radius: 50% 50% 46% 46%;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}

.portrait-frame::after {
  position: absolute;
  inset: 0.75rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: inherit;
}

.portrait-orbit {
  position: absolute;
  inset: -2.2rem -2.5rem;
  border: 1px solid rgba(255, 250, 243, 0.55);
  border-radius: 50%;
  transform: rotate(-11deg);
}

.portrait-orbit::before,
.portrait-orbit::after {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  content: "";
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 0 0.35rem rgba(255, 250, 243, 0.12);
}

.portrait-orbit::before {
  top: 18%;
  right: -0.35rem;
}

.portrait-orbit::after {
  bottom: 12%;
  left: 1rem;
}

.portrait-note {
  position: absolute;
  z-index: 3;
  right: -2.2rem;
  bottom: 2rem;
  display: flex;
  max-width: 240px;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(38, 31, 40, 0.14);
  border-radius: 0.9rem;
  box-shadow: 0 15px 35px rgba(75, 41, 49, 0.16);
  backdrop-filter: blur(12px);
}

.portrait-note strong,
.portrait-note small {
  display: block;
}

.portrait-note strong {
  font-size: 0.8rem;
  line-height: 1.25;
}

.portrait-note small {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.67rem;
  line-height: 1.4;
}

.status-dot {
  flex: 0 0 auto;
  width: 0.64rem;
  height: 0.64rem;
  margin-top: 0.2rem;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0.24rem rgba(214, 170, 104, 0.16);
}

.status-dot.is-live {
  background: #df3d54;
  box-shadow: 0 0 0 0.24rem rgba(223, 61, 84, 0.18);
}

.portrait-caption {
  position: absolute;
  z-index: 4;
  top: -2.1rem;
  left: -2.2rem;
  color: var(--cream);
  font-family: var(--hand);
  font-size: 1.8rem;
  transform: rotate(-9deg);
}

.hero-spark {
  position: absolute;
  color: var(--gold-light);
  font-size: clamp(2rem, 4vw, 4rem);
  opacity: 0.9;
}

.hero-spark-one {
  top: 20%;
  left: 47%;
}

.hero-spark-two {
  right: 4%;
  bottom: 17%;
}

.scroll-cue {
  position: absolute;
  bottom: 1.65rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 1.8rem;
  overflow: hidden;
  background: rgba(38, 31, 40, 0.4);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 45%;
  content: "";
  background: var(--ink);
  animation: scroll-line 1.8s infinite ease-in-out;
}

@keyframes scroll-line {
  from { transform: translateY(-120%); }
  to { transform: translateY(240%); }
}

.watch-section {
  color: var(--cream);
  background: var(--ink);
}

.watch-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 15% 5%, rgba(222, 141, 139, 0.2), transparent 28%),
    radial-gradient(circle at 85% 95%, rgba(129, 116, 154, 0.16), transparent 30%);
}

.watch-section .eyebrow {
  color: var(--blush);
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: end;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 500px;
  margin: 0 0 0.5rem;
  color: inherit;
  font-size: 1rem;
  opacity: 0.75;
}

.player-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #0e0c0f;
  border: 1px solid rgba(255, 250, 243, 0.15);
  border-radius: 1.35rem;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.player-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.6rem;
  padding: 0.7rem 1.1rem;
  color: rgba(255, 250, 243, 0.78);
  background: #171318;
  border-bottom: 1px solid rgba(255, 250, 243, 0.1);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.player-topline a {
  text-decoration: none;
}

.player-status {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.player-status .status-dot {
  margin: 0;
}

.player-shell {
  position: relative;
  width: 100%;
  min-height: 300px;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(222, 141, 139, 0.12), transparent 45%),
    #0e0c0f;
}

#twitch-player,
#twitch-player iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 300px;
}

.player-mobile-fallback {
  display: none;
  min-height: 290px;
  padding: 3rem 1.5rem;
  place-items: center;
  align-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(222, 141, 139, 0.22), transparent 45%),
    #0e0c0f;
}

.player-mobile-fallback p {
  max-width: 280px;
  margin-bottom: 1.2rem;
  color: rgba(255, 250, 243, 0.7);
}

.about-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(38, 31, 40, 0.08) 50%, transparent 50.1%),
    var(--cream);
}

.about-section::before {
  position: absolute;
  top: 4rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  content: "";
  border: 1px solid rgba(214, 170, 104, 0.3);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2rem var(--cream), inset 0 0 0 2.1rem rgba(214, 170, 104, 0.2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.about-title h2 {
  max-width: 800px;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.about-copy {
  padding-top: 3.7rem;
  color: var(--ink-soft);
}

.about-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.35;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: clamp(4rem, 7vw, 6.5rem);
}

.value-card {
  position: relative;
  min-height: 320px;
  padding: 2rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(38, 31, 40, 0.12);
  border-radius: 1rem;
}

.value-card::after {
  position: absolute;
  right: -2.5rem;
  bottom: -3.5rem;
  width: 10rem;
  height: 10rem;
  content: "";
  border: 1px solid rgba(222, 141, 139, 0.35);
  border-radius: 50%;
}

.value-card-featured {
  color: var(--cream);
  background: var(--coral-deep);
  transform: translateY(1.6rem);
}

.value-number {
  color: var(--coral-deep);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.value-card-featured .value-number {
  color: var(--gold-light);
}

.value-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin: 3rem 0 1.5rem;
  place-items: center;
  color: var(--coral-deep);
  background: var(--cream-deep);
  border-radius: 50%;
  font-size: 1.6rem;
}

.value-card-featured .value-icon {
  color: var(--coral-deep);
  background: var(--gold-light);
}

.value-card h3 {
  margin-bottom: 0.8rem;
  font-family: var(--serif);
  font-size: 1.7rem;
}

.value-card p {
  max-width: 310px;
  margin-bottom: 0;
  color: inherit;
  opacity: 0.72;
}

.ritual-section {
  background: var(--cream-deep);
}

.ritual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.ritual-card {
  position: relative;
  min-height: 510px;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  border-radius: 1.2rem;
}

.schedule-card {
  color: var(--ink);
  background: var(--blush);
}

.schedule-card::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 20rem;
  height: 20rem;
  content: "";
  border: 1px solid rgba(38, 31, 40, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2.5rem var(--blush), inset 0 0 0 2.6rem rgba(38, 31, 40, 0.12);
}

.schedule-card .eyebrow {
  color: var(--ink-soft);
}

.schedule-card h2 {
  max-width: 600px;
  margin-top: 5rem;
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.schedule-card > p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 2rem;
}

.ornament {
  position: absolute;
  top: 2.3rem;
  right: 2.7rem;
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  place-items: center;
  border: 1px solid rgba(38, 31, 40, 0.34);
  border-radius: 50%;
}

.ornament::before,
.ornament::after {
  position: absolute;
  content: "";
  background: rgba(38, 31, 40, 0.25);
}

.ornament::before {
  width: 140%;
  height: 1px;
}

.ornament::after {
  width: 1px;
  height: 140%;
}

.ornament span {
  z-index: 1;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  background: var(--blush);
  border-radius: 50%;
}

.plan-card {
  color: var(--cream);
  background:
    linear-gradient(rgba(129, 116, 154, 0.08) 1px, transparent 1px),
    var(--ink);
  background-size: 100% 3.2rem;
}

.plan-card::before {
  position: absolute;
  inset: 1rem;
  content: "";
  border: 1px solid rgba(247, 217, 167, 0.25);
  border-radius: 0.75rem;
  pointer-events: none;
}

.handwritten {
  margin: 0 0 4rem;
  color: var(--gold-light);
  font-family: var(--hand);
  font-size: 2rem;
  transform: rotate(-4deg);
}

.plan-card h3 {
  max-width: 520px;
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.plan-card > p:not(.handwritten) {
  max-width: 480px;
  color: rgba(255, 250, 243, 0.7);
}

.plan-lines {
  display: grid;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.plan-lines span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 250, 243, 0.82);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-lines i {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(247, 217, 167, 0.6);
  border-radius: 50%;
  font-style: normal;
}

.log-section {
  overflow: hidden;
  background: var(--cream);
}

.log-section::before {
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: 28rem;
  height: 28rem;
  content: "";
  border: 1px solid rgba(214, 170, 104, 0.28);
  border-radius: 50%;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.game-card {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.7rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(38, 31, 40, 0.12);
  border-radius: 1rem;
  animation: card-in 450ms ease both;
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.game-card::after {
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 10rem;
  height: 10rem;
  content: "";
  background: rgba(222, 141, 139, 0.09);
  border-radius: 50%;
}

.game-card:nth-child(3n + 2)::after {
  background: rgba(129, 116, 154, 0.09);
}

.game-card:nth-child(3n)::after {
  background: rgba(214, 170, 104, 0.12);
}

.game-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--coral-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-card h3 {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin: 3rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.game-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.log-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  margin-top: 2rem;
}

.standards-section {
  color: var(--cream);
  background: var(--coral-deep);
}

.standards-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 15% 20%, rgba(247, 217, 167, 0.15), transparent 25%),
    repeating-linear-gradient(135deg, transparent 0 68px, rgba(255, 250, 243, 0.025) 68px 69px);
}

.standards-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(4rem, 10vw, 9rem);
  align-items: center;
}

.standards-intro .eyebrow {
  color: var(--gold-light);
}

.standards-intro h2 {
  max-width: 560px;
}

.standards-intro > p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 250, 243, 0.74);
}

.crown {
  margin-bottom: 2rem;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 3.5rem;
}

.standards-list {
  border-top: 1px solid rgba(255, 250, 243, 0.24);
}

.standards-list article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid rgba(255, 250, 243, 0.24);
}

.standards-list article > span {
  padding-top: 0.2rem;
  color: var(--gold-light);
  font-family: var(--serif);
  font-style: italic;
}

.standards-list h3 {
  margin-bottom: 0.3rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.standards-list p {
  margin-bottom: 0;
  color: rgba(255, 250, 243, 0.65);
  font-size: 0.9rem;
}

.final-cta {
  overflow: hidden;
  text-align: center;
  background: var(--coral);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 18rem;
  height: 18rem;
  content: "";
  border: 1px solid rgba(255, 250, 243, 0.35);
  border-radius: 50%;
}

.final-cta::before {
  top: -10rem;
  left: -6rem;
}

.final-cta::after {
  right: -8rem;
  bottom: -9rem;
}

.final-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 250, 243, 0.12);
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.final-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-content .eyebrow {
  color: var(--ink);
}

.final-content h2 {
  max-width: 920px;
  color: var(--cream);
  font-size: clamp(3.8rem, 8vw, 7.5rem);
}

.final-content > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.site-footer {
  padding-block: 2.2rem;
  color: var(--cream);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-wordmark .wordmark-mark {
  color: var(--cream);
  background: rgba(255, 250, 243, 0.08);
  border-color: rgba(255, 250, 243, 0.25);
  box-shadow: none;
}

.footer-links {
  display: flex;
  gap: 1.4rem;
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.copyright {
  margin: 0;
  color: rgba(255, 250, 243, 0.48);
  font-size: 0.73rem;
  text-align: right;
}

@media (max-width: 980px) {
  .site-navigation {
    gap: 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr 0.7fr;
    gap: 2.5rem;
    padding-top: 9rem;
    padding-bottom: 7rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 9vw, 6rem);
  }

  .portrait-note {
    right: -1rem;
    bottom: -1rem;
  }

  .about-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 720px;
    padding-top: 0;
  }

  .standards-intro {
    max-width: 700px;
  }

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

  .copyright {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .site-header {
    padding-inline: 16px;
  }

  .menu-button {
    z-index: 102;
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-2px) rotate(-45deg);
  }

  .site-navigation {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    display: flex;
    width: min(360px, 88vw);
    height: 100svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 6rem 2rem 2rem;
    color: var(--cream);
    background: var(--ink);
    box-shadow: -24px 0 70px rgba(38, 31, 40, 0.26);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .site-navigation.is-open {
    transform: translateX(0);
  }

  .site-navigation > a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 250, 243, 0.16);
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-navigation .nav-cta {
    justify-content: center;
    margin-top: 1.5rem;
    color: var(--ink);
    background: var(--coral);
    border: 0;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 9rem;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(4rem, 15vw, 6rem);
  }

  .hero-portrait {
    width: min(360px, 80vw);
    justify-self: center;
    margin-right: 0;
  }

  .hero-spark-one {
    top: 48%;
    left: 8%;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .split-heading > p {
    max-width: 650px;
  }

  .value-grid,
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card-featured {
    transform: none;
  }

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

  .ritual-card {
    min-height: 470px;
  }
}

@media (max-width: 520px) {
  h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .wordmark-copy small {
    display: none;
  }

  .hero-content {
    padding-top: 8rem;
    padding-bottom: 6.5rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14.5vw, 4rem);
    letter-spacing: -0.055em;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-portrait {
    width: min(300px, 78vw);
  }

  .portrait-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -0.8rem 0 0 1.2rem;
  }

  .portrait-caption {
    left: -1rem;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-block: 5rem;
  }

  .player-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .player-shell {
    display: none;
  }

  .player-mobile-fallback {
    display: grid;
  }

  .about-grid {
    gap: 1rem;
  }

  .about-title h2 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .value-grid,
  .game-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 280px;
  }

  .ritual-card {
    min-height: auto;
    padding: 2rem;
  }

  .schedule-card h2 {
    margin-top: 5.5rem;
  }

  .ornament {
    top: 2rem;
    right: 2rem;
  }

  .handwritten {
    margin-bottom: 3rem;
  }

  .log-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .log-actions .text-link {
    align-self: flex-start;
  }

  .standards-list article {
    gap: 0.8rem;
  }

  .final-content h2 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

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

  .footer-links {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 250, 243, 0.15);
  }
}

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

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