

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
                 U+FFFD;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                 U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
                 U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
                 U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {

  --navy-950: #08080a;
  --navy-900: #121215;
  --navy-800: #1a1a1f;
  --navy-700: #24242b;
  --navy-600: #2f2f38;

  --ink-100: #ffffff;
  --ink-body: #ffffff;
  --ink-45:  rgba(255, 255, 255, 0.60);
  --ink-28:  rgba(255, 255, 255, 0.50);

  --rule:       rgba(255, 255, 255, 0.14);
  --rule-soft:  rgba(255, 255, 255, 0.08);
  --bar:        rgba(255, 255, 255, 0.09);

  --accent:      #dfb553;
  --accent-dim:  #c79a3f;
  --accent-ink:  #08080a;

  --accent-rgb:  223, 181, 83;

  --metal: linear-gradient(
    to bottom,
    #fff4cc 4%,
    #f0cf80 22%,
    #c69640 46%,
    #a87f37 56%,
    #dcae5a 68%,
    #fbe4a4 80%
  );

  --r: 2px;

  --font: system-ui, "Segoe UI Variable Display", "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  --font-display: "Plus Jakarta Sans", var(--font);

  --fs-hero:    clamp(2.5rem, 12.3vw, 7rem);
  --fs-display: clamp(2rem, 4.4vw, 3.25rem);
  --fs-h2:      clamp(1.6rem, 3.2vw, 2.5rem);
  --fs-h3:      clamp(1.125rem, 1.8vw, 1.375rem);
  --fs-body:    1rem;
  --fs-small:   0.875rem;
  --fs-label:   0.6875rem;

  --gutter: clamp(1.25rem, 5vw, 4rem);

  --edge: clamp(1.25rem, 3vw, 2.75rem);

  --masthead-h: 122px;

  --fs-wordmark: clamp(1.25rem, 1.9vw, 1.6875rem);
  --section-y: clamp(4.5rem, 10vw, 8.5rem);
  --shell: 1320px;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  color-scheme: dark;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-body);
  background-color: var(--navy-950);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--accent);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

p { margin: 0; }

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

a { color: inherit; }

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  border-radius: var(--r);
}

.skip-link:focus {
  left: var(--gutter);
  top: 0.75rem;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("../img/page-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(8, 8, 10, 0.86) 0%,
      rgba(8, 8, 10, 0.74) 40%,
      rgba(8, 8, 10, 0.78) 72%,
      rgba(8, 8, 10, 0.90) 100%
    );
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  transition: background-color 220ms var(--ease-out),
              border-color 220ms var(--ease-out),
              backdrop-filter 220ms var(--ease-out);
  border-bottom: 1px solid transparent;
}

.masthead[data-stuck="true"] {
  background-color: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--rule);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--masthead-h);
  max-width: none;
  padding-inline: var(--edge);
}

.nav-panel .shell {
  max-width: none;
  padding-inline: var(--edge);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.wordmark__logo {
  height: clamp(5.25rem, 6.4vw, 5.625rem);
  max-height: 5.75rem;
  width: auto;
  display: block;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .hero__title {
    background-image: var(--metal);

    background-size: 100% 1em;
    background-repeat: repeat-y;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.wordmark__full {
  display: none;

  font-size: var(--fs-wordmark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .wordmark__full { display: block; }
}

.nav {
  display: none;
  align-items: center;
  gap: clamp(1.25rem, 2.4vw, 2.25rem);
}

@media (min-width: 900px) {
  .nav { display: flex; }
}

.nav__link {
  position: relative;
  font-size: var(--fs-small);
  text-decoration: none;
  color: var(--ink-body);
  white-space: nowrap;
  padding-block: 0.35rem;
  transition: color 160ms var(--ease-out);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .nav__link:hover { color: var(--ink-100); }
  .nav__link:hover::after { transform: scaleX(1); }
}

.nav__link[aria-current="page"] {
  color: var(--ink-100);
}

.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  color: var(--ink-100);
  font: inherit;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  transition: transform 160ms var(--ease-out),
              border-color 160ms var(--ease-out);
}

.nav-toggle:active { transform: scale(0.97); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

.nav-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  background-color: rgba(8, 8, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 0 solid transparent;
  transition: grid-template-rows 260ms var(--ease-out),
              border-color 260ms var(--ease-out),
              border-width 260ms var(--ease-out);
}

.nav-panel[data-open="true"] {
  grid-template-rows: 1fr;
  border-bottom-width: 1px;
  border-bottom-color: var(--rule);
}

.nav-panel__inner { min-height: 0; }

.nav-panel ul {
  display: flex;
  flex-direction: column;
  padding-block: 0.5rem 1.5rem;
}

.nav-panel a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule-soft);
  text-decoration: none;
  color: var(--ink-body);
  font-size: 1.0625rem;
}

.nav-panel a[aria-current="page"] { color: var(--accent); }

@media (min-width: 900px) {
  .nav-panel { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--r);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms var(--ease-out),
              background-color 180ms var(--ease-out),
              border-color 180ms var(--ease-out),
              color 180ms var(--ease-out);
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background-color: var(--accent);
  color: var(--accent-ink);
}

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover { background-color: var(--accent-dim); }
}

.btn--ghost {
  background-color: rgba(8, 8, 10, 0.55);
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--ink-100);
}

@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--ink-100);
  }
}

.hero {
  position: relative;
  display: flex;

  align-items: center;

  min-height: 100dvh;

  margin-top: calc((var(--masthead-h) + 1px) * -1);
  padding-top: calc(var(--masthead-h) + 1px);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__media img,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.hero__video {
  display: block;
  background-color: var(--page, #08080a);
  border: 0;

  filter: saturate(1.5) brightness(1.3) hue-rotate(12deg);
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {

    animation: none !important;
    transition: none !important;
  }
}

.hero__media::after {
  z-index: 2;
  content: "";
  position: absolute;
  inset: 0;

  --pool-x: 34%;
  --pool-w: 72%;

  --pool-y: 46%;

  --top-veil: 0.88;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 10, var(--top-veil)) 0%,
    rgba(8, 8, 10, 0.80) 10%,
    rgba(8, 8, 10, 0.40) 16%,
    rgba(8, 8, 10, 0) 24%
  );
}

@media (max-width: 1080px) {
  .hero__media::after {
    --pool-x: 50%;
    --pool-w: 96%;
  }
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: none;
  padding-inline: var(--edge);

  --hero-drop: 1.5rem;
  padding-top: calc(clamp(3rem, 8vw, 5.5rem) + var(--hero-drop));

  padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

.hero__inner {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__copy {

  max-width: none;
  position: relative;
  margin-inline: 0;
  text-align: left;
}

.hero__type {
  position: relative;
  width: fit-content;
  max-width: 100%;
}

.hero__lede {
  margin-inline: auto;
  text-align: center;
}

.hero .hero__actions {
  justify-content: center;
}

.particle-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__title.is-particled {
    color: transparent;
    background-image: none;
    -webkit-text-fill-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .particle-canvas { display: none; }
}

.hero__title {
  width: fit-content;
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--fs-hero);

  font-weight: 700;
  text-transform: uppercase;

  letter-spacing: 0.005em;
  line-height: 1.0;

  white-space: nowrap;
  color: var(--accent);

  margin-bottom: 3.25rem;
}

.hero__lede {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  line-height: 1.55;
  color: var(--ink-body);
  max-width: 34rem;

  margin-bottom: 3.75rem;
}

@media (max-height: 640px) {
  .hero__inner { --hero-drop: 0rem; }
  .hero__title { margin-bottom: 1.75rem; }
  .hero__lede { margin-bottom: 2.25rem; }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

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

.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section + .section { border-top: 1px solid var(--rule-soft); }

.section__head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__head h2,
.section__head h1 {
  font-size: var(--fs-h2);
  margin-bottom: 1.125rem;
}

.section__head p {
  font-size: 1.0625rem;
  max-width: 60ch;
}

.banner {
  position: relative;
  padding-block: clamp(4.5rem, 11vw, 8rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
}

.banner__label {
  display: block;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.banner h1 {
  font-size: var(--fs-display);
  margin-bottom: 1.25rem;
}

.banner p {
  font-size: 1.0625rem;
  max-width: 58ch;
}

.court {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.court__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border-radius: var(--r);
  padding: 0.7rem 1.1rem;
  margin-bottom: 0.5rem;
}

.court__bar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: linear-gradient(
    to right,
    rgba(var(--accent-rgb), 0.48) 0%,
    rgba(var(--accent-rgb), 0.34) 30%,
    rgba(var(--accent-rgb), 0.12) 66%,
    rgba(var(--accent-rgb), 0) 100%
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 42%, transparent 96%);
  mask-image: linear-gradient(to right, #000 0%, #000 42%, transparent 96%);
  pointer-events: none;
}

.court__bar > * { position: relative; }

.court__name {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-100);
  font-weight: 500;
}

.court__meta {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-45);
}

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

.fixture {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 1.5rem;
  align-items: center;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--rule-soft);
}

.fixture:last-child { border-bottom: 0; }

@media (min-width: 760px) {
  .fixture {
    grid-template-columns: 7.5rem 1fr auto;
    gap: 1.5rem 2rem;
  }
}

.fixture__time {
  font-size: var(--fs-small);
  font-variant-numeric: tabular-nums;
  color: var(--ink-45);
  letter-spacing: 0.04em;
}

.fixture__pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.75rem 2rem;
}

.player__given {
  display: block;
  font-size: 0.9375rem;
  color: var(--ink-45);
  line-height: 1.3;
  font-weight: 400;
}

.player__surname {
  display: block;
  font-size: clamp(1.1875rem, 2.1vw, 1.5rem);
  color: var(--ink-100);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.fixture__result {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}

@media (min-width: 760px) {
  .fixture__result {
    justify-content: flex-end;
    min-width: 13rem;
  }
}

.fixture__status {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-45);
  white-space: nowrap;
}

.fixture__status[data-live="true"] {
  color: var(--accent);
}

.score {
  display: flex;
  gap: 0.8rem;
  font-variant-numeric: tabular-nums;
}

.score__set {
  display: grid;
  gap: 0.15rem;
  justify-items: end;
  min-width: 1ch;
  line-height: 1.2;
}

.score__set span {
  font-size: 1rem;
  color: var(--ink-45);
}

.score__set span[data-won="true"] {
  color: var(--ink-100);
  font-weight: 500;
}

.stops {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 1.4vw, 1.125rem);
  background-color: transparent;
}

@media (min-width: 700px) { .stops { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .stops { grid-template-columns: repeat(3, 1fr); } }

@media (min-width: 1080px) {
  .stops--four { grid-template-columns: repeat(2, 1fr); }
}

.stop__body {
  font-size: var(--fs-small);
  color: var(--ink-body);
  max-width: 42ch;
}

.stop {
  position: relative;
  background-color: rgba(12, 12, 16, 0.36);

  backdrop-filter: blur(30px) saturate(145%);
  -webkit-backdrop-filter: blur(30px) saturate(145%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--r);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 14rem;
  transition: background-color 200ms var(--ease-out),
              border-color 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .stop:hover {
    background-color: rgba(22, 22, 28, 0.38);
    border-color: rgba(255, 255, 255, 0.22);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .stop {
    background-color: rgba(16, 16, 20, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.stops[data-accordion] {
  grid-template-columns: 1fr;
}

[data-accordion="ready"] .stop {
  min-height: 0;
  gap: 0;
  padding: 0;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  [data-accordion="ready"] .stop:hover {
    background-color: transparent;
    border-color: transparent;
  }
}

@media (prefers-reduced-transparency: reduce) {
  [data-accordion="ready"] .stop {
    background-color: transparent;
  }
}

.section[data-scrim] {
  position: relative;
  isolation: isolate;
}

.section[data-scrim]::before {
  content: "";
  position: absolute;

  inset: -8vh 0;
  z-index: -1;
  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      rgba(8, 8, 10, 0) 0%,
      rgba(8, 8, 10, 0.45) 14%,
      rgba(8, 8, 10, 0.55) 50%,
      rgba(8, 8, 10, 0.45) 86%,
      rgba(8, 8, 10, 0) 100%
    );
}

[data-accordion="ready"] .stop {
  padding-block: clamp(1.25rem, 2vw, 1.75rem);
  border-bottom: 1px solid var(--rule-soft);
}

[data-accordion="ready"] .stop:last-child {
  border-bottom: 0;
}

.stops[data-accordion="ready"] {
  gap: 0;
}

[data-accordion="ready"] .stop__city {
  margin: 0;
}

.stop__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-align: left;
  cursor: pointer;

  padding: 0.8rem 0;
  margin: -0.8rem 0;
}

.stop__toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
  border-radius: 2px;
}

.stop__sign {
  position: relative;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  transition: transform 260ms var(--ease-out);
}

.stop__sign::before,
.stop__sign::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  margin-top: -1px;
  background-color: currentColor;
  border-radius: 1px;
}

.stop__sign::after {
  transform: rotate(90deg);
  transition: transform 260ms var(--ease-out);
}

.stop[data-open="true"] .stop__sign::after {
  transform: rotate(0deg);
}

.stop__panel {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 300ms var(--ease-out),
              visibility 0s linear 300ms;
}

.stop__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.stop[data-open="true"] .stop__panel {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 300ms var(--ease-out),
              visibility 0s;
}

[data-accordion="ready"] .stop__panel-inner .stop__body {
  padding-top: 0.85rem;
  max-width: 64ch;
}

@media (prefers-reduced-motion: reduce) {
  .stop__panel,
  .stop[data-open="true"] .stop__panel,
  .stop__sign,
  .stop__sign::after {
    transition: none;
  }
}

.stop__city {
  font-size: var(--fs-h3);
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.stop__venue {
  font-size: var(--fs-small);
  color: var(--ink-45);
}

.stop__dates {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule-soft);
  font-size: var(--fs-small);
  color: var(--ink-body);
  font-variant-numeric: tabular-nums;
}

.stop__tag {
  position: absolute;
  top: clamp(1.75rem, 3vw, 2.5rem);
  right: clamp(1.75rem, 3vw, 2.5rem);
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-ink);
  background-color: var(--accent);
  border-radius: var(--r);
  padding: 0.2rem 0.5rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 1.4vw, 1.125rem);
  background-color: transparent;
}

@media (min-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

.gallery__item {
  position: relative;

  isolation: isolate;
  background-color: rgba(12, 12, 16, 0.36);
  backdrop-filter: blur(30px) saturate(145%);
  -webkit-backdrop-filter: blur(30px) saturate(145%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--r);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);

  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: clamp(1.25rem, 2.6vw, 1.85rem);
  overflow: hidden;
}

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

.gallery__item--shot {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.gallery__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 10, 0) 0%,
    rgba(8, 8, 10, 0.55) 46%,
    rgba(8, 8, 10, 0.88) 100%
  );
}

@media (prefers-reduced-transparency: reduce) {
  .gallery__item {
    background-color: rgba(16, 16, 20, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.gallery__item:not(.gallery__item--shot)::before {
  content: "";
  position: absolute;
  top: clamp(1.25rem, 2.6vw, 1.85rem);
  left: clamp(1.25rem, 2.6vw, 1.85rem);
  width: 2.5rem;
  height: 2.5rem;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.gallery__caption {
  font-size: var(--fs-small);
  color: var(--ink-body);
}

.gallery-stack {
  position: relative;
}

.gallery-stack__toggle {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.gallery-stack[data-stack="collapsed"] .gallery-stack__toggle {
  position: absolute;
  inset: 0;
  z-index: 70;
  width: 100%;
}

.gallery-stack[data-stack="expanded"] .gallery-stack__toggle {
  position: static;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1.75rem;
}

.gallery-stack__toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
  border-radius: var(--r);
}

.gallery[data-stack="collapsed"] {
  position: relative;
  display: block;
  height: clamp(320px, 42vw, 460px);
  perspective: 1100px;
  margin: 0;

  column-count: initial;
  column-gap: initial;
}

.gallery[data-stack="collapsed"] .gallery__item {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(78%, 460px);
  aspect-ratio: 4 / 3;
  margin: 0;
  break-inside: auto;
  transform-style: preserve-3d;
  transform:
    translateX(-50%)
    translateX(calc(var(--i, 0) * 12%))
    translateY(calc(var(--depth, 0) * 6px))
    rotate(calc(var(--i, 0) * 5deg))
    scale(calc(1 - var(--depth, 0) * 0.045));
  z-index: calc(40 - var(--depth, 0));
  opacity: calc(1 - var(--depth, 0) * 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  transition:
    transform 520ms var(--ease-out),
    opacity 320ms var(--ease-out);
}

.gallery[data-stack="collapsed"] .gallery__item[data-card="hidden"] {
  display: none;
}

.gallery[data-stack="collapsed"] .gallery__item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery[data-stack="collapsed"] .gallery__caption {
  display: none;
}

.gallery-stack:hover .gallery[data-stack="collapsed"] .gallery__item,
.gallery-stack:focus-within .gallery[data-stack="collapsed"] .gallery__item {
  transform:
    translateX(-50%)
    translateX(calc(var(--i, 0) * 14.5%))
    translateY(calc(var(--depth, 0) * 6px - 6px))
    rotate(calc(var(--i, 0) * 6.2deg))
    scale(calc(1.015 - var(--depth, 0) * 0.045));
}

.gallery-stack__hint {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 60;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-color: rgba(8, 8, 10, 0.72);
  color: #fff;
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.gallery-stack__hint svg {
  width: 0.85em;
  height: 0.85em;
  flex: none;
}

.gallery-stack[data-stack="expanded"] .gallery-stack__hint {
  position: static;
  transform: none;
  pointer-events: auto;
}

.gallery-stack[data-stack="expanded"] .gallery-stack__toggle:hover .gallery-stack__hint {
  border-color: var(--accent);
  color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .gallery[data-stack="collapsed"] .gallery__item,
  .gallery-stack:hover .gallery[data-stack="collapsed"] .gallery__item {
    transition: none;
    transform:
      translateX(-50%)
      translateX(calc(var(--i, 0) * 12%))
      rotate(calc(var(--i, 0) * 5deg));
  }
}

.gallery--flow {
  display: block;
  column-count: 1;
  column-gap: clamp(0.75rem, 1.4vw, 1.125rem);
}

@media (min-width: 700px)  { .gallery--flow { column-count: 2; } }
@media (min-width: 1080px) { .gallery--flow { column-count: 3; } }

.gallery--flow .gallery__item {

  aspect-ratio: auto;
  display: block;
  padding: 0;
  margin: 0 0 clamp(0.75rem, 1.4vw, 1.125rem);

  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.gallery--flow .gallery__item img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: fill;
  z-index: auto;
}

.gallery--flow .gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1rem 0.85rem;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 10, 0) 0%,
    rgba(8, 8, 10, 0.6) 50%,
    rgba(8, 8, 10, 0.9) 100%
  );
}

.gallery--flow .gallery__item::after { content: none; }

@media (max-width: 720px) {

  .hero {

    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;

  }

  .hero__video {
    object-fit: contain;
  }

  .hero__inner {
    align-self: auto;
    justify-content: flex-start;
    padding-top: 1.75rem;
  }

  .hero__inner > .hero__copy {
    flex: none;
  }

  .hero__media::after {
    content: none;
  }

  :root {
    --fs-label: 0.78rem;
  }

  .footer__grid ul a,
  .footer__legal a {
    display: inline-block;
    padding-block: 0.7rem;
  }

  .footer__grid ul {
    gap: 0;
  }

  .footer__legal {
    gap: 0 1.25rem;
  }

  .entry__value a,
  .entry__list a {
    display: inline-block;
    padding-block: 0.55rem;
  }
}

.entry__holding h3 {
  font-size: var(--fs-h3);
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.entry__holding p {
  color: var(--ink-body);
  max-width: 46ch;
}

.entry__holding p + p {
  margin-top: 1rem;
}

.entry__holding .hero__actions {
  margin-top: 1.75rem;
}

.tba {
  max-width: 46rem;
}

.tba__note {
  color: var(--ink-body);
  margin-bottom: 1.75rem;
}

.fixture {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

@media (min-width: 900px) {

  .fixture { grid-template-columns: minmax(0, 21rem) 1fr; }
}

.fixture__poster {
  margin: 0;
  position: relative;
}

.fixture__frame {
  display: block;
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  background-color: rgba(8, 8, 10, 0.55);
  padding: 0;
  cursor: default;
  position: relative;
  isolation: isolate;
  line-height: 0;
}

.fixture__frame img {
  width: 100%;
  height: auto;
  display: block;
}

button.fixture__frame {
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}

button.fixture__frame:hover { border-color: rgba(var(--accent-rgb), 0.55); }
button.fixture__frame:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
button.fixture__frame:active { transform: scale(0.995); }

.fixture__cue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--rule);
  background-color: rgba(8, 8, 10, 0.72);
  font-size: var(--fs-label);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-100);
  transition: background-color 200ms var(--ease-out);
}

button.fixture__frame:hover .fixture__cue {
  background-color: rgba(var(--accent-rgb), 0.12);
}

.fixture__sign {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.5);
  border-radius: var(--r);
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
  transition: transform 220ms var(--ease-out);
}

[data-fixture="ready"] .fixture__frame[aria-expanded="true"] .fixture__sign {
  transform: rotate(45deg);
}

[data-fixture="ready"] .fixture__detail {
  visibility: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 260ms var(--ease-out),
              transform 260ms var(--ease-out),
              visibility 0s linear 260ms;
}

[data-fixture="ready"] .fixture__detail[data-open="true"] {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity 260ms var(--ease-out),
              transform 260ms var(--ease-out),
              visibility 0s;
}

@media (max-width: 899px) {
  [data-fixture="ready"] .fixture__detail {
    height: 0;
    overflow: hidden;
  }
  [data-fixture="ready"] .fixture__detail[data-open="true"] {
    height: auto;
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-fixture="ready"] .fixture__detail,
  [data-fixture="ready"] .fixture__sign {
    transition: none;
    transform: none;
  }
}

.posters {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 700px) {
  .posters { grid-template-columns: repeat(2, minmax(0, 20rem)); }
}

@media (min-width: 1080px) {
  .posters { grid-template-columns: repeat(3, minmax(0, 18rem)); }
}

.poster { margin: 0; }

.poster__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  background-color: rgba(8, 8, 10, 0.55);
}

.poster__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.poster figcaption { padding-top: 1.25rem; }

.poster__title {
  display: block;
  font-size: var(--fs-h3);
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.poster__meta {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  font-size: var(--fs-small);
  color: var(--ink-45);
}

.poster__meta strong {
  color: var(--ink-body);
  font-weight: 400;
}

.table-wrap {
  overflow-x: auto;
  border-block: 1px solid var(--rule-soft);
}

table.standings {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  text-align: left;
}

.standings caption {
  text-align: left;
  font-size: var(--fs-small);
  color: var(--ink-45);
  padding-bottom: 1.25rem;
}

.standings th {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-45);
  font-weight: 500;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--rule);
  white-space: nowrap;
}

.standings td {
  padding: 1.15rem 1rem;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: middle;
}

.standings tbody tr:last-child td { border-bottom: 0; }

@media (hover: hover) and (pointer: fine) {
  .standings tbody tr { transition: background-color 160ms var(--ease-out); }
  .standings tbody tr:hover { background-color: rgba(255, 255, 255, 0.04); }
}

.standings .rank {
  font-variant-numeric: tabular-nums;
  color: var(--ink-45);
  font-size: 1.0625rem;
  width: 4rem;
}

.standings tr[data-leader="true"] .rank { color: var(--accent); }

.standings .num {
  font-variant-numeric: tabular-nums;
  text-align: right;
  color: var(--ink-body);
  white-space: nowrap;
}

.standings .num--points {
  color: var(--ink-100);
  font-size: 1.0625rem;
}

.standings .nation {
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-45);
}

.format {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

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

.format__group {
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.format__group h3 {
  font-size: var(--fs-h3);
  margin-bottom: 1rem;
}

.format__group dl {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.format__group div {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: var(--fs-small);
}

.format__group dt { color: var(--ink-45); }

.format__group dd {
  margin: 0;
  color: var(--ink-100);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.split__media {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.split__body h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1.25rem;
}

.split__body p + p { margin-top: 1rem; }

.split__body .btn { margin-top: 2rem; }

.banner--founder .shell {
  display: grid;
  grid-template-columns: 1fr;

  gap: clamp(1.5rem, 2.2vw, 2.25rem);
  align-items: center;

  width: 100%;
  max-width: none;
  padding-inline: var(--edge);
}

@media (min-width: 900px) {

  .banner--founder .shell {

    grid-template-columns: minmax(0, 1fr) auto;
  }

  .banner--founder .shell > div { max-width: 40rem; }
}

.founder__media {
  margin: 0;

  max-width: 41.4rem;
  justify-self: start;
}

@media (min-width: 900px) {

  .founder__media { justify-self: end; }
}

.founder__frame {
  display: block;

  border: clamp(2px, 0.22vw, 4px) solid transparent;
  border-radius: var(--r);
  overflow: hidden;
  line-height: 0;
  background:
    linear-gradient(rgba(8, 8, 10, 0.55), rgba(8, 8, 10, 0.55)) padding-box,
    var(--metal) border-box;
  box-shadow:
    0 0 0 1px rgba(8, 8, 10, 0.65),
    0 20px 46px rgba(0, 0, 0, 0.5),
    0 0 38px rgba(223, 181, 83, 0.16);
}

@supports not (background: linear-gradient(#000, #000) padding-box, #000 border-box) {
  .founder__frame {
    border-color: var(--accent);
    background: rgba(8, 8, 10, 0.55);
  }
}

.founder__frame img {
  width: 100%;
  height: auto;
  display: block;
}

.founder__caption {
  margin-top: 0.9rem;
  font-size: var(--fs-small);
  color: var(--ink-45);
  line-height: 1.5;
}

.founder__caption strong {
  display: block;
  color: var(--accent);
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.prose { max-width: 64rem; }

.prose h2 {
  font-size: var(--fs-h2);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.prose__cols {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 820px) {
  .prose__cols {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.prose__cols p { max-width: 44ch; }

.prose .btn { margin-top: clamp(2rem, 4vw, 2.75rem); }

.tenets {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.tenet {
  display: grid;
  gap: 0.5rem;
  padding-block: clamp(1.6rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--rule-soft);
}

@media (min-width: 860px) {
  .tenet {
    grid-template-columns: minmax(0, 19rem) minmax(0, 1fr);
    align-items: baseline;
    column-gap: clamp(1.5rem, 3.5vw, 3.5rem);
  }
}

.tenet__title {
  font-size: var(--fs-h3);
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.tenet__body {
  font-size: var(--fs-small);
  color: var(--ink-body);
  max-width: 52ch;
}

.closing {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 12vw, 9rem);
  border-top: 1px solid var(--rule-soft);
}

.closing__watermark {
  position: absolute;
  left: 50%;
  bottom: -0.12em;
  transform: translateX(-50%);

  font-size: clamp(2.75rem, 12vw, 10rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.045);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.closing__inner {
  position: relative;
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.closing h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1.25rem;
}

.closing p { margin-bottom: 2.25rem; }

.closing .hero__actions { justify-content: center; }

.form {
  display: grid;
  gap: 1.5rem;
  max-width: 34rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-body);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink-100);
  background-color: rgba(8, 8, 10, 0.72);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 0.85rem 1rem;
  transition: border-color 160ms var(--ease-out),
              background-color 160ms var(--ease-out);
}

.field textarea {
  resize: vertical;
  min-height: 9rem;
  line-height: 1.6;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-45);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background-color: rgba(8, 8, 10, 0.9);
  outline: none;
}

.field__help {
  font-size: var(--fs-small);
  color: var(--ink-45);
}

.field__error {
  font-size: var(--fs-small);

  color: #ff8fa3;
  display: none;
}

.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea {
  border-color: #ff8fa3;
}

.field[data-invalid="true"] .field__error { display: block; }

.form__status {
  display: none;
  padding: 1rem 1.15rem;
  border-radius: var(--r);
  border: 1px solid var(--accent);

  background-color: rgba(var(--accent-rgb), 0.12);
  color: var(--ink-100);
  font-size: var(--fs-small);
}

.form__status[data-visible="true"] { display: block; }

.entry {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (min-width: 1080px) {
  .entry { grid-template-columns: 0.85fr 1.15fr; }
}

.entry__aside {
  background-color: rgba(12, 12, 16, 0.36);
  backdrop-filter: blur(30px) saturate(145%);
  -webkit-backdrop-filter: blur(30px) saturate(145%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--r);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.entry__contact {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.entry__contact + .entry__contact { margin-top: 1.5rem; }

.entry__mark {
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.45);
  border-radius: var(--r);
  background-color: rgba(var(--accent-rgb), 0.10);
  color: var(--accent);
  font-size: 0.9rem;
  line-height: 1;
}

.entry__label {
  display: block;
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.entry__value {
  margin: 0;
  color: var(--ink-100);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.entry__value a { color: inherit; }

.entry__mark svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  display: block;
}

.social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.social a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink-100);
  text-decoration: none;
  font-size: var(--fs-small);
  border-bottom: 1px solid transparent;
  width: fit-content;
}

.social svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: var(--accent);
  flex: 0 0 auto;
  transition: fill 160ms var(--ease-out);
}

.social a:hover,
.social a:focus-visible {
  color: var(--accent);
}

.social a:hover .social__label,
.social a:focus-visible .social__label {
  border-bottom: 1px solid currentColor;
}

.social__label { border-bottom: 1px solid transparent; }

.social__soon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-small);
  color: var(--ink-45);
  cursor: default;
}

.social__soon svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: var(--ink-45);
}

.social__tag {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  border-radius: var(--r);
  padding: 0.15rem 0.4rem;
  white-space: nowrap;
}

.entry__facts { margin-top: 2rem; }

.entry__note {
  margin-top: 1.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--r);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  background-color: rgba(var(--accent-rgb), 0.09);
  font-size: var(--fs-small);
  color: var(--ink-body);
  line-height: 1.6;
}

.entry__note strong { color: var(--accent); }

.entry__form { max-width: none; }

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

@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.entry__foot {
  font-size: var(--fs-small);
  color: var(--ink-45);
  line-height: 1.6;
}

.entry__foot a { color: var(--accent); }

.entry__pay { display: none; }
.entry__pay[data-visible="true"] { display: block; }

.entry__pay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.legal {
  max-width: 44rem;
}

.legal h2 {
  font-size: var(--fs-h3);
  margin: 2.5rem 0 0.85rem;
}

.legal h2:first-child { margin-top: 0; }

.legal p {
  color: var(--ink-body);
  line-height: 1.75;
}

.legal p + p { margin-top: 1rem; }

.legal ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.legal li {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(var(--accent-rgb), 0.5);
  color: var(--ink-body);
  line-height: 1.7;
}

.legal li strong { color: var(--accent); }

.legal__lede {
  font-size: 1.0625rem;
  color: var(--ink-body);
  line-height: 1.75;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.legal__updated {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: var(--fs-small);
  color: var(--ink-45);
}

.legal__also {
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--ink-45);
}

.legal__also a { color: var(--accent); }

.footer {
  border-top: 1px solid var(--rule);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
  background-color: rgba(8, 8, 10, 0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

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

@media (min-width: 1080px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.15fr; }
}

.footer__social li { line-height: 1.2; }

.footer__social a,
.footer__soon {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-small);
}

.footer__social svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: var(--accent);
  transition: fill 160ms var(--ease-out);
}

.footer__soon {
  color: var(--ink-45);
  cursor: default;
}

.footer__soon svg { fill: var(--ink-45); }

.footer__tag {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  border-radius: var(--r);
  padding: 0.15rem 0.4rem;
  white-space: nowrap;
}

.footer h3 {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.footer ul { display: grid; gap: 0.7rem; }

.footer a {
  font-size: var(--fs-small);
  text-decoration: none;
  color: var(--ink-body);
  transition: color 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .footer a:hover { color: var(--accent); }
}

.footer__blurb {
  font-size: var(--fs-small);
  max-width: 30ch;
  margin-top: 1.25rem;
}

.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--rule-soft);
  font-size: var(--fs-small);
  color: var(--ink-45);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer__legal a {
  color: var(--ink-45);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer__legal a:hover,
.footer__legal a:focus-visible {
  color: var(--accent);
  border-bottom-color: currentColor;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms var(--ease-out),
              transform 620ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal][data-shown="true"] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

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

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