@import url(https://fonts.googleapis.com/css2?family=Archivo:wght@600;700;800;900&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap);
:root {
  --ink: #16161A;
  --ink-soft: #212127;
  --paper: #FDFAF3;
  --paper-2: #F3EAD8;
  --sand: #E9DCC3;
  --orange: #F57C00;
  --orange-hi: #FF9422;
  --orange-ink: #A85400;
  --amber: #FFC61A;
  --coral: #E8543F;
  --navy: #13385C;
  --body: #43423C;
  --muted: #77746A;
  --line: #E3D9C6;
  --line-dark: #33333A;
  --shell: 1400px;
  --shell-slim: 1120px;
  --pad: clamp(20px, 4vw, 64px);
  --nav-h: 92px;
  --nav-h-sm: 62px;
  --logo-h: 62px;
  --logo-h-sm: 40px;
  --ease: cubic-bezier(.22,.68,.28,1);
  --ease-out: cubic-bezier(.16,1,.3,1)
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip
}
body {
  background: var(--paper);
  color: var(--body);
  font-family: 'Inter',system-ui,sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip
}
img,
svg {
  max-width: 100%;
  display: block
}
a {
  color: inherit;
  text-decoration: none
}
ul {
  list-style: none
}
.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad)
}
.shell-slim {
  max-width: var(--shell-slim);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad)
}
.section {
  padding: clamp(64px,8vw,120px) 0;
  position: relative
}
.section--tight {
  padding: clamp(44px,5vw,72px) 0
}
.bg-paper2 {
  background: var(--paper-2)
}
.bg-ink {
  background: var(--ink);
  color: #e6e4dc
}
.bg-ink h1,
.bg-ink h2,
.bg-ink h3,
.bg-ink h4 {
  color: #fff
}
.bg-orange {
  background: var(--orange);
  color: #17140f
}
.bg-orange h1,
.bg-orange h2 {
  color: #141414
}
.grid {
  display: grid;
  gap: clamp(18px,2vw,28px)
}
.grid-2 {
  grid-template-columns: repeat(2,minmax(0,1fr))
}
.grid-3 {
  grid-template-columns: repeat(3,minmax(0,1fr))
}
.grid-4 {
  grid-template-columns: repeat(4,minmax(0,1fr))
}
@media (max-width:1080px) {
  .grid-4 {
    grid-template-columns: repeat(2,minmax(0,1fr))
  }
  .grid-3 {
    grid-template-columns: repeat(2,minmax(0,1fr))
  }
}
@media (max-width:700px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr
  }
}
.grid-wide-left {
  grid-template-columns: minmax(0,1.75fr) minmax(0,1fr)
}
@media (max-width:900px) {
  .grid-wide-left {
    grid-template-columns: 1fr
  }
}
.center {
  text-align: center
}
.mt-1 {
  margin-top: 14px
}
.mt-2 {
  margin-top: 28px
}
.mt-3 {
  margin-top: 48px
}
.mb-2 {
  margin-bottom: 28px
}
h1,
h2,
h3,
h4 {
  font-family: 'Archivo',system-ui,sans-serif;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 800;
  text-wrap: balance
}
h1 {
  font-size: clamp(2.8rem,6.4vw,6.2rem);
  text-transform: uppercase
}
h2 {
  font-size: clamp(2rem,4vw,3.6rem);
  text-transform: uppercase
}
h3 {
  font-size: clamp(1.15rem,1.6vw,1.45rem);
  letter-spacing: -.015em
}
h4 {
  font-size: 1rem;
  letter-spacing: 0
}
p {
  margin: 0 0 1.05em
}
p:last-child {
  margin-bottom: 0
}
.eyebrow {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-ink);
  display: block;
  margin-bottom: 1rem
}
.bg-ink .eyebrow,
.hero .eyebrow {
  color: var(--amber)
}
.hero .eyebrow {
  font-size: .84rem;
  letter-spacing: .2em
}
.bg-orange .eyebrow {
  color: #6e3300
}
.note {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .74rem;
  letter-spacing: .06em;
  color: var(--muted);
  text-transform: uppercase
}
.lede {
  font-size: clamp(1.02rem,1.25vw,1.2rem);
  color: var(--body);
  max-width: 62ch
}
.bg-ink .lede,
.hero .lede {
  color: #dedcd3
}
.section-head {
  max-width: 760px;
  margin-bottom: clamp(32px,4vw,56px)
}
.section-head.center {
  margin-left: auto;
  margin-right: auto
}
.more {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--orange-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: gap .25s var(--ease),color .25s var(--ease)
}
.more:hover {
  gap: 15px;
  color: var(--ink)
}
.bg-ink .more {
  color: var(--amber)
}
.bg-ink .more:hover {
  color: #fff
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter',sans-serif;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s var(--ease),background .25s var(--ease),color .25s var(--ease),border-color .25s var(--ease),box-shadow .25s var(--ease)
}
.btn:hover {
  transform: translateY(-3px)
}
.btn:active {
  transform: translateY(-1px) scale(.98)
}
.btn-primary {
  background: var(--orange);
  color: #141414
}
.btn-primary:hover {
  background: var(--orange-hi);
  box-shadow: 0 12px 30px rgba(245,124,0,.35)
}
.btn-ink {
  background: var(--ink);
  color: #fff
}
.btn-ink:hover {
  background: #2a2c31;
  box-shadow: 0 12px 30px rgba(16,17,20,.28)
}
.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--ink)
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}
.bg-ink .btn-ghost,
.hero .btn-ghost {
  color: #fff
}
.bg-ink .btn-ghost:hover,
.hero .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff
}
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,.45);
  pointer-events: none;
  animation: ripple .62s var(--ease-out) forwards
}
.btn-primary .ripple {
  background: rgba(20,20,20,.25)
}
@keyframes ripple {
  to {
    transform: scale(3.4);
    opacity: 0
  }
}
.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px
}
.btn-row.center {
  justify-content: center
}
.site-nav {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(253,250,243,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease),border-color .3s var(--ease)
}
.site-nav .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--nav-h);
  transition: min-height .34s var(--ease)
}
.site-nav.is-small .shell {
  min-height: var(--nav-h-sm)
}
.site-nav.is-small .brand-logo {
  height: var(--logo-h-sm)
}
.site-nav.is-small .brand-text {
  opacity: 0;
  max-width: 0;
  margin-left: 0
}
.site-nav.is-small {
  box-shadow: 0 6px 22px rgba(60,50,30,.10);
  border-bottom-color: var(--orange)
}
.site-nav.is-expanded .shell {
  min-height: var(--nav-h)
}
.site-nav.is-expanded .brand-logo {
  height: var(--logo-h)
}
.site-nav.is-expanded .brand-text {
  opacity: 1;
  max-width: 220px;
  margin-left: 14px
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0
}
.brand-logo {
  height: var(--logo-h);
  width: auto;
  transition: height .34s var(--ease)
}
.brand-text {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.5;
  margin-left: 14px;
  max-width: 220px;
  border-left: 2px solid var(--orange);
  padding-left: 12px;
  overflow: hidden;
  white-space: normal;
  transition: opacity .3s var(--ease),max-width .34s var(--ease),margin-left .34s var(--ease)
}
@media (max-width:1339px) {
  .brand-text {
    display: none
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px,1.8vw,30px)
}
.nav-links a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 2px;
  position: relative;
  white-space: nowrap
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width .3s var(--ease)
}
.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%
}
.nav-links a.active {
  color: var(--orange-ink)
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0
}
.nav-cta {
  padding: 12px 22px;
  font-size: .76rem;
  letter-spacing: .05em;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px
}
.lang-switch button {
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-family: 'IBM Plex Mono',monospace;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--muted);
  padding: 6px 10px;
  transition: color .22s,background .22s
}
.lang-switch button:hover {
  color: var(--ink)
}
.lang-switch button.active {
  background: var(--orange);
  color: #141414
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 1.05rem;
  line-height: 1
}
.nav-toggle:hover {
  border-color: var(--orange)
}
@media (max-width:1119px) {
  .site-nav .shell {
    flex-wrap: wrap;
    padding-top: 14px;
    padding-bottom: 14px;
    min-height: 0;
    row-gap: 4px
  }
  .site-nav.is-expanded .shell,
  .site-nav.is-small .shell {
    min-height: 0
  }
  .nav-toggle {
    display: block;
    order: 3
  }
  .nav-links {
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .4s var(--ease),opacity .3s var(--ease)
  }
  .nav-links a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: .95rem
  }
  .nav-links a::after {
    display: none
  }
  .nav-links li:last-of-type a {
    border-bottom: none
  }
  .site-nav.is-open .nav-links {
    max-height: 720px;
    opacity: 1;
    margin-bottom: 12px
  }
  .nav-cta {
    display: none
  }
  .nav-cta-mobile {
    border-bottom: none;
    margin-top: 8px
  }
  .nav-cta-mobile a.btn {
    display: flex;
    width: 100%;
    padding: 18px 34px;
    font-size: .85rem;
    letter-spacing: .07em;
    border-bottom: none
  }
}
@media (min-width:1120px) {
  .nav-cta-mobile {
    display: none
  }
}
.hero {
  background: var(--ink);
  color: #dedcd3;
  position: relative;
  overflow: hidden;
  padding: clamp(70px,9vw,130px) 0 clamp(60px,7vw,100px)
}
.hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -30%;
  width: min(880px,80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%,
      rgba(255,198,26,.30), rgba(245,124,0,.16) 45%, transparent 68%);
  pointer-events: none;
  animation: heroGlow 14s ease-in-out infinite alternate
}
@keyframes heroGlow {
  from {
    transform: translate3d(0,0,0) scale(1)
  }
  to {
    transform: translate3d(-40px,30px,0) scale(1.12)
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background: linear-gradient(90deg,transparent calc(50% - 1px),rgba(255,255,255,.35) 50%,transparent calc(50% + 1px)),linear-gradient(180deg,transparent calc(70% - 1px),rgba(255,255,255,.35) 70%,transparent calc(70% + 1px))
}
.hero .shell {
  position: relative;
  z-index: 2
}
.hero h1 {
  color: #fff;
  max-width: 18ch
}
.hero h1 .hl {
  background: linear-gradient(100deg,var(--amber),var(--orange) 55%,var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}
.hero .lede {
  margin-top: 26px;
  max-width: 66ch;
  font-size: clamp(1.05rem,1.35vw,1.28rem)
}
.hero-mark {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: min(460px,42vw);
  opacity: .10;
  pointer-events: none;
  color: #fff;
  animation: markFloat 12s ease-in-out infinite alternate
}
@keyframes markFloat {
  from {
    transform: translateY(0) rotate(0)
  }
  to {
    transform: translateY(-26px) rotate(-6deg)
  }
}
@media (max-width:900px) {
  .hero-mark {
    display: none
  }
}
.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none
}
.hero-photo img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 124%;
  width: auto;
  max-width: min(50%,660px);
  object-fit: contain;
  object-position: 100% 100%;
  opacity: .94;
  filter: saturate(1) brightness(1);
  -webkit-mask-image: linear-gradient(90deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.06) 22%,
      rgba(0,0,0,.34) 48%,
      rgba(0,0,0,.74) 75%,
      rgba(0,0,0,1) 100%),linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.14) 18%,
      rgba(0,0,0,.48) 36%,
      rgba(0,0,0,.84) 58%,
      rgba(0,0,0,1) 76%);
  mask-image: linear-gradient(90deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.06) 22%,
      rgba(0,0,0,.34) 48%,
      rgba(0,0,0,.74) 75%,
      rgba(0,0,0,1) 100%),linear-gradient(180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.14) 18%,
      rgba(0,0,0,.48) 36%,
      rgba(0,0,0,.84) 58%,
      rgba(0,0,0,1) 76%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect
}
@media (max-width:1099px) {
  .hero-photo {
    display: none
  }
}
.about-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 55%;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(16,17,20,.14)
}
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(52px)
}
.is-loaded .hero-word {
  animation: wordUp .9s var(--ease-out) forwards;
  animation-delay: calc(var(--w) * 85ms)
}
@keyframes wordUp {
  to {
    opacity: 1;
    transform: none
  }
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px,3vw,54px);
  margin-top: clamp(38px,5vw,64px);
  padding-top: 30px;
  border-top: 1px solid var(--line-dark)
}
.hero-fact .k {
  font-family: 'Archivo',sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem,3vw,2.7rem);
  color: var(--amber);
  line-height: 1;
  letter-spacing: -.03em;
  display: block
}
.hero-fact .v {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #bebcb3;
  display: block;
  margin-top: 8px;
  max-width: 22ch
}
.page-hero {
  background: var(--ink);
  color: #dedcd3;
  position: relative;
  overflow: hidden;
  padding: clamp(56px,6vw,92px) 0 clamp(48px,5vw,72px)
}
.page-hero::before {
  content: "";
  position: absolute;
  left: -8%;
  top: -60%;
  width: min(620px,70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(245,124,0,.22),transparent 68%);
  pointer-events: none
}
.page-hero .shell {
  position: relative;
  z-index: 2
}
.page-hero h1 {
  color: #fff
}
.page-hero .eyebrow {
  font-size: .84rem;
  letter-spacing: .2em;
  margin-bottom: 1.15rem
}
.page-hero .lede,
.page-hero p {
  color: #edebe3;
  margin-top: 18px
}
.marquee {
  background: var(--orange);
  color: #17140f;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 16px 0
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite
}
.marquee:hover .marquee-track {
  animation-play-state: paused
}
.marquee-track span {
  font-family: 'Archivo',sans-serif;
  font-weight: 900;
  font-size: clamp(1rem,1.8vw,1.5rem);
  text-transform: uppercase;
  letter-spacing: -.01em;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap
}
.marquee-track span::after {
  content: "●";
  font-size: .5em;
  color: #7a3d00
}
@keyframes marquee {
  from {
    transform: translateX(0)
  }
  to {
    transform: translateX(-50%)
  }
}
.court-rule {
  height: 56px;
  overflow: hidden
}
.court-rule svg {
  width: 100%;
  height: 100%
}
.court-rule .base-line {
  stroke: var(--orange);
  stroke-width: 2.5;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 1.3s var(--ease-out)
}
.court-rule.drawn .base-line {
  stroke-dashoffset: 0
}
.court-rule .tick {
  stroke: var(--line);
  stroke-width: 2
}
.bg-ink .court-rule .tick {
  stroke: var(--line-dark)
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(22px,2.4vw,32px);
  position: relative;
  overflow: hidden;
  transition: transform .38s var(--ease),box-shadow .38s var(--ease),border-color .38s var(--ease)
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg,var(--amber),var(--orange),var(--coral));
  transition: width .5s var(--ease-out)
}
.card:hover {
  transform: translateY(-9px);
  border-color: #d8d3c8;
  box-shadow: 0 26px 50px rgba(16,17,20,.12)
}
.card:hover::before {
  width: 100%
}
.bg-paper2 .card {
  background: var(--paper)
}
.bg-ink .card {
  background: var(--ink-soft);
  border-color: var(--line-dark)
}
.bg-ink .card p {
  color: #d0cec6
}
.card h3 {
  margin-bottom: 10px
}
.card p {
  font-size: .96rem
}
.card .tag {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-ink);
  display: inline-block;
  margin-bottom: 12px
}
.bg-ink .card .tag {
  color: var(--amber)
}
.card .badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg,var(--amber),var(--orange));
  color: #141414;
  font-family: 'Archivo',sans-serif;
  font-weight: 900;
  font-size: 1.05rem
}
.ticks li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  font-size: .96rem;
  align-items: flex-start
}
.ticks li:last-child {
  border-bottom: none
}
.ticks li::before {
  content: "→";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0
}
.bg-ink .ticks li {
  border-bottom-color: var(--line-dark)
}
.img-ph {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: repeating-linear-gradient(135deg,var(--paper-2),var(--paper-2) 12px,var(--sand) 12px,var(--sand) 24px);
  border: 1px dashed #c7c1b4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-family: 'IBM Plex Mono',monospace;
  font-size: .74rem;
  line-height: 1.55;
  color: var(--muted);
  transition: border-color .3s,transform .45s var(--ease)
}
.img-ph:hover {
  border-color: var(--orange)
}
.img-ph.square {
  aspect-ratio: 1/1
}
.img-ph.tall {
  aspect-ratio: 3/4
}
.img-ph.wide {
  aspect-ratio: 16/9
}
.stat-strip {
  display: flex;
  flex-wrap: wrap;
  background: var(--ink)
}
.stat {
  flex: 1 1 220px;
  padding: clamp(32px,4vw,52px) 26px;
  text-align: center;
  border-right: 1px solid var(--line-dark);
  transition: background .3s var(--ease)
}
.stat:last-child {
  border-right: none
}
.stat:hover {
  background: var(--ink-soft)
}
.stat .num {
  font-family: 'Archivo',sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem,4.5vw,3.6rem);
  line-height: 1;
  letter-spacing: -.04em;
  display: block;
  background: linear-gradient(120deg,var(--amber),var(--orange) 60%,var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}
.stat .label {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c6c4bb;
  display: block;
  margin-top: 14px
}
.coach-row {
  display: grid;
  grid-template-columns: minmax(0,5fr) minmax(0,6fr);
  gap: clamp(24px,4vw,64px);
  align-items: center;
  padding: clamp(36px,5vw,64px) 0;
  border-bottom: 1px solid var(--line)
}
.coach-row:last-child {
  border-bottom: none
}
.coach-row.flip .coach-media {
  order: 2
}
.coach-row.flip .coach-body {
  order: 1
}
@media (max-width:860px) {
  .coach-row {
    grid-template-columns: 1fr
  }
  .coach-row.flip .coach-media {
    order: 1
  }
  .coach-row.flip .coach-body {
    order: 2
  }
}
.coach-media {
  position: relative
}
.coach-media .img-ph {
  aspect-ratio: 4/5;
  border-radius: 16px
}
.coach-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px
}
.coach-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 16px;
  border: 2px solid var(--orange);
  z-index: -1;
  transition: inset .45s var(--ease)
}
.coach-row:hover .coach-media::before {
  inset: 10px -24px -24px 10px
}
.coach-body .role {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-ink);
  display: block;
  margin: 6px 0 20px
}
.coach-body h2 {
  font-size: clamp(1.9rem,3.4vw,3rem)
}
.coach-block {
  margin-top: 26px
}
.coach-block h4 {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line)
}
.coach-block ul li {
  padding: 8px 0;
  font-size: .96rem;
  display: flex;
  gap: 11px;
  align-items: flex-start
}
.coach-block ul li::before {
  content: "—";
  color: var(--orange);
  flex-shrink: 0
}
.coach-block .meta {
  font-size: .95rem;
  color: var(--body)
}
.coach-block .meta strong {
  color: var(--ink);
  font-weight: 600
}
.coach-mini .img-ph {
  aspect-ratio: 1/1;
  border-radius: 14px;
  margin-bottom: 20px
}
.coach-mini img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px
}
.coach-mini .role {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-ink);
  display: block;
  margin: 4px 0 14px
}
.sched-wrap {
  overflow-x: auto
}
.sched {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden
}
.sched thead th {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-family: 'Archivo',sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 20px 24px
}
.sched thead th:first-child {
  color: var(--amber);
  border-right: 1px solid rgba(255,255,255,.14)
}
.sched tbody tr {
  border-top: 1px solid var(--line)
}
.sched tbody tr:first-child {
  border-top: none
}
.sched tbody tr:nth-child(even) {
  background: rgba(0,0,0,.018)
}
.sched-group {
  text-align: center;
  font-weight: 400;
  vertical-align: middle;
  padding: 26px 28px;
  width: 46%;
  border-right: 1px solid var(--line)
}
.sched-group .tag {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-ink);
  display: block;
  margin-bottom: 8px
}
.sched-name {
  display: block;
  font-family: 'Archivo',sans-serif;
  font-weight: 800;
  font-size: 1.22rem;
  line-height: 1.12;
  color: var(--ink)
}
.sched-desc {
  display: block;
  margin: 10px auto 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.6
}
.sched-count {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(245,124,0,.1);
  font-family: 'IBM Plex Mono',monospace;
  font-size: .74rem;
  color: var(--orange-ink);
  font-weight: 700;
  letter-spacing: .04em
}
.sched-slots {
  padding: 26px 24px;
  vertical-align: middle
}
.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center
}
.slot {
  flex: 0 0 auto;
  min-width: 132px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--paper-2);
  transition: border-color .3s var(--ease),transform .3s var(--ease),box-shadow .3s var(--ease)
}
.slot:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,124,0,.14)
}
.slot-day {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted)
}
.slot-time {
  display: block;
  margin-top: 6px;
  font-family: 'IBM Plex Mono',monospace;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap
}
@media (max-width:760px) {
  .sched,
  .sched tbody,
  .sched td,
  .sched th,
  .sched tr {
    display: block;
    width: auto
  }
  .sched thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap
  }
  .sched {
    border: none;
    background: none;
    border-radius: 0
  }
  .sched tbody tr,
  .sched tbody tr:nth-child(even) {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    margin-bottom: 16px
  }
  .sched tbody tr:last-child {
    margin-bottom: 0
  }
  .sched-group {
    width: auto;
    padding: 24px 22px 0;
    border-right: none
  }
  .sched-slots {
    padding: 18px 22px 24px
  }
  .slot {
    flex: 1 1 132px
  }
}
.priv-panel {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,1fr);
  gap: clamp(28px,4vw,56px);
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(26px,4vw,48px)
}
.priv-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(16,17,20,.14)
}
@media (max-width:900px) {
  .priv-panel {
    grid-template-columns: 1fr
  }
  .priv-photo {
    aspect-ratio: 3/2;
    object-position: 50% 10%;
    order: -1
  }
}
.court-shot,
.venue-shot {
  margin: 0
}
.court-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(16,17,20,.14)
}
.venue-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(16,17,20,.12)
}
.court-shot figcaption,
.venue-shot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6
}
.loc-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(16,17,20,.12)
}
.map-embed--wide {
  aspect-ratio: 21/8;
  min-height: 380px
}
@media (max-width:700px) {
  .map-embed--wide {
    aspect-ratio: 4/3;
    min-height: 300px
  }
}
.photo-credit {
  font-size: .82rem;
  color: var(--muted)
}
.photo-credit a {
  color: var(--orange-ink);
  text-decoration: underline;
  text-underline-offset: 2px
}
.photo-credit a:hover {
  color: var(--orange)
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
  gap: 14px;
  grid-auto-flow: dense
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--paper-2);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease),box-shadow .4s var(--ease)
}
.gallery-item.is-wide {
  grid-column: span 2;
  aspect-ratio: 3/2
}
.gallery-item.is-square {
  aspect-ratio: 1/1
}
@media (max-width:700px) {
  .gallery-item.is-wide {
    grid-column: span 1;
    aspect-ratio: 3/2
  }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transition: transform .6s var(--ease)
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(16,17,20,.16)
}
.gallery-item:hover img {
  transform: scale(1.06)
}
.gallery-item::after {
  content: "＋";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(16,17,20,.42);
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  opacity: 0;
  transition: opacity .32s var(--ease)
}
.gallery-item:hover::after {
  opacity: 1
}
.gallery-item.is-empty {
  cursor: default;
  border-style: dashed;
  border-color: #c7c1b4;
  background: repeating-linear-gradient(135deg,var(--paper-2),var(--paper-2) 12px,var(--sand) 12px,var(--sand) 24px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  font-family: 'IBM Plex Mono',monospace;
  font-size: .72rem;
  color: var(--muted)
}
.gallery-item.is-empty::after {
  display: none
}
.gallery-item.is-empty:hover {
  transform: none;
  box-shadow: none
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(10,10,12,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease),visibility .3s
}
.lightbox.open {
  opacity: 1;
  visibility: visible
}
.lightbox img {
  max-width: min(1200px,90vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  animation: lbIn .38s var(--ease-out)
}
@keyframes lbIn {
  from {
    opacity: 0;
    transform: scale(.94)
  }
  to {
    opacity: 1;
    transform: none
  }
}
.lb-btn {
  position: absolute;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  transition: background .25s,transform .25s var(--ease)
}
.lb-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #141414;
  transform: scale(1.08)
}
.lb-prev {
  left: clamp(10px,3vw,42px)
}
.lb-next {
  right: clamp(10px,3vw,42px)
}
.lb-close {
  top: clamp(10px,3vw,32px);
  right: clamp(10px,3vw,32px);
  width: 48px;
  height: 48px;
  font-size: 1.2rem
}
.lb-count {
  position: absolute;
  bottom: clamp(14px,3vw,34px);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'IBM Plex Mono',monospace;
  font-size: .78rem;
  letter-spacing: .16em;
  color: #dcdad2
}
.strip {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--line)
}
.strip-track {
  display: flex;
  transition: transform .8s var(--ease-out)
}
.strip-item {
  flex: 0 0 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--ink)
}
@media (max-width:700px) {
  .strip-item {
    aspect-ratio: 4/5
  }
}
.strip-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(30px) saturate(1.3) brightness(.5);
  transform: scale(1.2)
}
.strip-fg {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .6s var(--ease)
}
.strip-item:hover .strip-fg {
  transform: scale(1.03)
}
.strip-item.is-empty {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  cursor: default;
  background: repeating-linear-gradient(135deg,var(--paper-2),var(--paper-2) 12px,var(--sand) 12px,var(--sand) 24px);
  font-family: 'IBM Plex Mono',monospace;
  font-size: .72rem;
  color: var(--muted)
}
.strip-dots {
  display: flex;
  gap: 8px;
  margin: 0 6px
}
.strip-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sand);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s,transform .25s
}
.strip-dots button.on {
  background: var(--orange);
  transform: scale(1.4)
}
.strip-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 22px
}
.strip-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.05rem;
  transition: background .25s,color .25s,transform .25s var(--ease)
}
.strip-nav button:hover {
  background: var(--ink);
  color: #fff;
  transform: scale(1.08)
}
.post {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 20px 46px rgba(16,17,20,.08)
}
@media (max-width:900px) {
  .post {
    grid-template-columns: 1fr
  }
}
.post-media {
  position: relative;
  background: #0e0e10;
  min-height: 340px;
  display: grid;
  place-items: center
}
.post-media img {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: contain
}
.post-media .img-ph {
  border-radius: 0;
  border: none;
  height: 100%;
  min-height: 340px;
  background: #17171a;
  color: #a8a69e
}
.post-media .lb-btn {
  width: 44px;
  height: 44px;
  font-size: 1.15rem
}
.post-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px
}
.post-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.45)
}
.post-dots i.on {
  background: var(--orange)
}
.post-side {
  display: flex;
  flex-direction: column;
  padding: 26px;
  gap: 18px
}
.post-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line)
}
.post-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  padding: 2px;
  background: var(--paper)
}
.post-user {
  font-weight: 700;
  color: var(--ink);
  font-size: .95rem
}
.post-user span {
  display: block;
  font-family: 'IBM Plex Mono',monospace;
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase
}
.post-caption {
  font-size: .97rem;
  white-space: pre-line;
  flex: 1;
  overflow-wrap: anywhere
}
.post-meta {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--line)
}
.post-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill,minmax(260px,1fr))
}
.post-thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  aspect-ratio: 1/1;
  position: relative;
  background: var(--paper-2);
  transition: transform .35s var(--ease),box-shadow .35s var(--ease)
}
.post-thumb:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(16,17,20,.14)
}
.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.info-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: flex-start;
  transition: padding-left .3s var(--ease)
}
.info-list li:hover {
  padding-left: 10px
}
.info-list li:last-child {
  border-bottom: none
}
.info-list .k {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--orange-ink);
  min-width: 132px;
  flex-shrink: 0;
  padding-top: 4px
}
.info-list .v {
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 500;
  flex: 1 1 0;
  min-width: 0
}
.info-list .v small {
  display: block;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 4px
}
.info-list .v-line {
  display: block;
  margin-top: 4px
}
.info-list a.v:hover {
  color: var(--orange-ink)
}
.v-map {
  display: block
}
.v-map > span:first-child {
  border-bottom: 1px dashed rgba(245,124,0,.55);
  padding-bottom: 2px;
  transition: border-color .25s var(--ease),color .25s var(--ease)
}
.v-map:hover > span:first-child {
  border-bottom-style: solid;
  border-bottom-color: var(--orange)
}
.v-map small[data-i18n] {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--orange-ink);
  font-weight: 500
}
.v-map small[data-i18n]::before {
  content: "";
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  background: var(--orange-ink);
  -webkit-mask: var(--pin) center/contain no-repeat;
  mask: var(--pin) center/contain no-repeat
}
:root {
  --pin: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E")
}
.bg-ink .info-list li {
  border-bottom-color: var(--line-dark)
}
.bg-ink .info-list .k {
  color: var(--amber)
}
.bg-ink .info-list .v {
  color: #fff
}
.btn-wa {
  background: #25d366;
  color: #0b2e18
}
.btn-wa:hover {
  background: #1fbf5b;
  box-shadow: 0 12px 30px rgba(37,211,102,.32)
}
.btn-wa svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0
}
.map-embed {
  width: 100%;
  aspect-ratio: 21/9;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 1px dashed #c7c1b4;
  border-radius: 16px;
  background: repeating-linear-gradient(45deg,var(--paper-2),var(--paper-2) 13px,var(--sand) 13px,var(--sand) 26px)
}
@media (max-width:700px) {
  .map-embed {
    aspect-ratio: 4/3;
    min-height: 300px
  }
}
.map-embed.loaded {
  border: 1px solid var(--line);
  background: none
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block
}
.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 26px
}
.map-consent .map-addr {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  max-width: 36ch
}
.map-consent .map-note {
  font-size: .76rem;
  color: var(--muted);
  margin: 0;
  max-width: 38ch
}
.social-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}
.social-row.center {
  justify-content: center
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 11px 22px 11px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: transform .3s var(--ease),background .3s var(--ease),color .3s var(--ease),border-color .3s var(--ease),box-shadow .3s var(--ease)
}
.social-btn .ic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--ink);
  color: #fff;
  transition: background .3s var(--ease),color .3s var(--ease)
}
.social-btn .ic svg {
  width: 20px;
  height: 20px;
  fill: currentColor
}
.social-btn .tx {
  display: flex;
  flex-direction: column;
  line-height: 1.25
}
.social-btn .tx b {
  font-size: .94rem;
  font-weight: 600
}
.social-btn .tx small {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .7rem;
  letter-spacing: .06em;
  color: var(--muted)
}
.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(16,17,20,.14)
}
.social-btn.ig:hover .ic {
  background: linear-gradient(45deg,#f9ce34,#ee2a7b 55%,#6228d7)
}
.social-btn.fb:hover .ic {
  background: #1877f2
}
.social-btn.tt:hover .ic {
  background: #000
}
.social-btn.tt:hover {
  border-color: #000
}
.social-icons {
  display: flex;
  gap: 10px
}
.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid var(--line-dark);
  transition: background .28s var(--ease),transform .28s var(--ease),border-color .28s
}
.social-icons a svg {
  width: 18px;
  height: 18px;
  fill: currentColor
}
.social-icons a:hover {
  transform: translateY(-4px)
}
.social-icons a.ig:hover {
  background: linear-gradient(45deg,#f9ce34,#ee2a7b 55%,#6228d7);
  border-color: transparent
}
.social-icons a.fb:hover {
  background: #1877f2;
  border-color: transparent
}
.social-icons a.tt:hover {
  background: #fff;
  color: #000;
  border-color: #fff
}
.site-footer {
  background: var(--ink);
  color: #dcdad2;
  padding: clamp(48px,6vw,80px) 0 26px
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(24px,3vw,44px);
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-dark)
}
@media (max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}
@media (max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr
  }
}
.footer-logo-plate {
  display: inline-block;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 18px
}
.footer-logo-plate img {
  height: 76px;
  width: auto
}
.site-footer h4 {
  color: #fff;
  font-family: 'IBM Plex Mono',monospace;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 18px
}
.site-footer p {
  font-size: .93rem;
  color: #c7c5bc;
  max-width: 36ch
}
.site-footer li {
  margin-bottom: 12px;
  font-size: .93rem;
  color: #dcdad2
}
.site-footer a {
  color: #dcdad2;
  transition: color .22s,padding-left .22s var(--ease)
}
.site-footer a:hover {
  color: var(--orange)
}
.site-footer li a:hover {
  padding-left: 6px
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'IBM Plex Mono',monospace;
  font-size: .73rem;
  letter-spacing: .06em;
  color: #9c9a92
}
.footer-bottom a {
  color: #9c9a92;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .25s var(--ease),border-color .25s var(--ease)
}
.footer-bottom a:hover {
  color: var(--amber);
  border-bottom-color: var(--amber)
}
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .75s var(--ease-out),transform .75s var(--ease-out);
  transition-delay: calc(var(--i,0) * 80ms);
  will-change: opacity,transform
}
.reveal {
  transform: translateY(48px) scale(.985)
}
.reveal.above {
  transform: translateY(-48px) scale(.985)
}
.reveal-left {
  transform: translateX(-56px)
}
.reveal-right {
  transform: translateX(56px)
}
.reveal-left.in,
.reveal-right.in,
.reveal.in {
  opacity: 1;
  transform: none
}
.page-shell {
  animation: pageIn .55s var(--ease-out) both
}
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(18px)
  }
  to {
    opacity: 1;
    transform: none
  }
}
.page-shell.leaving {
  animation: none;
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity .34s var(--ease),transform .34s var(--ease)
}
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg,var(--amber),var(--orange),var(--coral));
  transition: width .1s linear
}
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: #141414;
  padding: 12px 20px;
  z-index: 300;
  font-weight: 700
}
.skip-link:focus {
  left: 0
}
@media (prefers-reduced-motion:reduce) {
  *,
  *::after,
  *::before {
    animation-duration: .01ms!important;
    transition-duration: .01ms!important;
    animation-iteration-count: 1!important;
    scroll-behavior: auto!important
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1!important;
    transform: none!important
  }
  .page-shell {
    animation: none!important;
    opacity: 1!important
  }
  .hero-word {
    opacity: 1!important;
    transform: none!important
  }
}
.ig-embed {
  --ig-floor: #1B2A22;
  --ig-line: rgba(255,255,255,.055);
  min-height: 180px;
  align-items: center;
  display: flex;
  justify-content: center;
  border: 1px solid rgba(255,198,26,.16);
  border-radius: 20px;
  padding: clamp(26px,4vw,60px);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: radial-gradient(ellipse at 50% 50%,
      rgba(255,255,255,.045) 0, transparent 62%),repeating-linear-gradient(90deg,
      transparent, transparent 62px,
      var(--ig-line) 62px, var(--ig-line) 63px),repeating-linear-gradient(0deg,
      transparent, transparent 62px,
      var(--ig-line) 62px, var(--ig-line) 63px),linear-gradient(160deg, #223529 0, var(--ig-floor) 55%, #141f19 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06),0 20px 46px rgba(16,17,20,.16)
}
.ig-embed::before {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle at 30% 22%, rgba(255,198,26,.30), transparent 46%),radial-gradient(circle at 72% 78%, rgba(245,124,0,.22), transparent 48%);
  filter: blur(14px);
  animation: igDrift 22s ease-in-out infinite alternate
}
@keyframes igDrift {
  0% {
    transform: translate3d(-3%,-2%,0) scale(1)
  }
  50% {
    transform: translate3d( 2%, 3%,0) scale(1.08)
  }
  100% {
    transform: translate3d( 4%,-3%,0) scale(1.02)
  }
}
.ig-embed::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  opacity: .20;
  background: radial-gradient(circle at 34% 30%, #ffe27a, #ffc61a 46%, #c79000 100%);
  box-shadow: inset -26px -22px 46px rgba(0,0,0,.35),inset 16px 14px 30px rgba(255,255,255,.22);
  animation: igBall 26s linear infinite
}
@keyframes igBall {
  from {
    transform: rotate(0)
  }
  to {
    transform: rotate(360deg)
  }
}
@media (max-width:640px) {
  .ig-embed::after {
    display: none
  }
}
@media (prefers-reduced-motion:reduce) {
  .ig-embed::after,
  .ig-embed::before {
    animation: none
  }
}
.ig-embed blockquote {
  margin: 0 auto!important;
  max-width: 620px!important;
  display: grid;
  place-items: center;
  min-height: 140px;
  border-radius: 14px!important;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(60,45,20,.16)
}
.ig-embed iframe {
  max-width: 620px!important;
  min-width: 0!important;
  border-radius: 14px!important
}
.ig-fallback {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange-ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px
}
.ig-fallback:hover {
  color: var(--ink)
}
.ig-embed.ig-failed {
  min-height: 220px
}
.ig-embed.ig-failed blockquote {
  background: var(--paper)!important;
  border: 1px solid var(--line)!important;
  border-radius: 14px;
  padding: 34px 26px!important;
  text-align: center
}
.ig-embed.ig-failed .ig-fallback {
  display: inline-block;
  border: 0;
  padding: 15px 28px;
  border-radius: 999px;
  background: linear-gradient(45deg,#f9ce34,#ee2a7b 55%,#6228d7);
  color: #fff;
  font-weight: 600;
  letter-spacing: .05em
}
.ig-embed.ig-failed .ig-fallback:hover {
  color: #fff;
  transform: translateY(-3px)
}
.ig-embed iframe {
  margin: 0 auto!important
}
.ig-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit,minmax(330px,1fr))
}
#blog-latest {
  max-width: 920px;
  margin: 0 auto
}
.ig-todo {
  border: 2px dashed var(--orange);
  border-radius: 16px;
  padding: clamp(28px,4vw,52px);
  text-align: center;
  background: var(--paper-2)
}
.ig-todo code {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .86rem;
  background: var(--ink);
  color: var(--amber);
  padding: 4px 9px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 6px
}
.blog-cta {
  background: var(--ink);
  color: #e6e4dc;
  border-radius: 20px;
  padding: clamp(30px,4vw,56px);
  text-align: center;
  position: relative;
  overflow: hidden
}
.blog-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -60%;
  transform: translateX(-50%);
  width: min(700px,90%);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle,rgba(245,124,0,.22),transparent 66%)
}
.blog-cta > * {
  position: relative;
  z-index: 2
}
.blog-cta h2 {
  color: #fff
}
.blog-cta p {
  color: #dedcd3;
  max-width: 56ch;
  margin: 14px auto 0
}
.follow-panel {
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: clamp(26px,3vw,40px);
  margin-top: clamp(26px,3vw,40px)
}
.follow-panel.is-alone {
  border-top: 0;
  margin-top: 0;
  padding-top: 0
}
.follow-panel h3 {
  font-size: clamp(1.4rem,2.4vw,2rem);
  text-transform: uppercase
}
.follow-panel p {
  max-width: 52ch;
  margin: 12px auto 0;
  color: var(--body)
}
.follow-panel .social-row {
  justify-content: center;
  margin-top: 28px
}
.err-section {
  min-height: 64vh;
  display: flex;
  align-items: center;
  text-align: center
}
.err-shell {
  max-width: 760px;
  margin: 0 auto
}
.err-court {
  width: min(320px,72vw);
  margin: 0 auto 26px
}
.err-court svg {
  width: 100%;
  height: auto;
  overflow: visible
}
.err-line {
  fill: none;
  stroke: var(--line);
  stroke-width: 2
}
.err-ball {
  fill: var(--amber);
  stroke: var(--orange);
  stroke-width: 2;
  animation: errBounce 2.8s ease-in-out infinite;
  transform-origin: center
}
@keyframes errBounce {
  0%,
  100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-14px)
  }
}
.err-code {
  font-size: clamp(4.5rem,16vw,9rem);
  line-height: 1;
  margin: 6px 0 10px;
  color: transparent;
  background: linear-gradient(140deg,var(--amber),var(--orange) 60%,var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -.03em
}
.err-section .lede {
  margin-left: auto;
  margin-right: auto
}
.err-section .btn-row {
  margin-top: 30px
}
.err-or {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .74rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 44px
}
.err-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 14px
}
.err-links a {
  font-size: .95rem;
  color: var(--body);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .25s var(--ease),border-color .25s var(--ease)
}
.err-links a:hover {
  color: var(--orange-ink);
  border-bottom-color: var(--orange)
}
@media (prefers-reduced-motion:reduce) {
  .err-ball {
    animation: none
  }
}
.legal-shell {
  max-width: var(--shell-slim);
  margin: 0 auto
}
.legal-updated {
  font-family: 'IBM Plex Mono',monospace;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin: 0
}
.legal-shell h2 {
  font-size: clamp(1.15rem,2.1vw,1.5rem);
  margin: 44px 0 14px;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
  text-transform: none;
  letter-spacing: 0
}
.legal-shell p {
  max-width: 74ch;
  color: var(--body);
  line-height: 1.75
}
.legal-shell a {
  color: var(--orange-ink);
  border-bottom: 1px solid rgba(245,124,0,.35)
}
.legal-shell a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink)
}
.legal-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  max-width: 74ch
}
.legal-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--body);
  line-height: 1.7
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber)
}
.section--court {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(245,124,0,.30);
  border-bottom: 1px solid rgba(245,124,0,.30);
  background: radial-gradient(circle at 6% -4%,   rgba(255,198,26,.42), transparent 45%),radial-gradient(circle at 97% 8%,   rgba(245,124,0,.24),  transparent 42%),radial-gradient(circle at 50% 108%, rgba(255,198,26,.26), transparent 46%),linear-gradient(180deg, var(--paper-2) 0, var(--paper) 48%, var(--paper-2) 100%)
}
.section--court::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .9;
  background: radial-gradient(circle at 50% 50%, rgba(245,124,0,.30) 0 5px,
                                       transparent 5.5px),radial-gradient(circle at 50% 50%, rgba(255,198,26,.55) 0 2px,
                                       transparent 2.5px),repeating-linear-gradient(45deg,
      transparent, transparent 21px,
      rgba(120,95,45,.13) 21px, rgba(120,95,45,.13) 22px),repeating-linear-gradient(-45deg,
      transparent, transparent 21px,
      rgba(120,95,45,.10) 21px, rgba(120,95,45,.10) 22px);
  background-size: 64px 64px,64px 64px,auto,auto;
  background-position: 0 0,32px 32px,0 0,0 0;
  -webkit-mask-image: radial-gradient(ellipse 62% 58% at 50% 50%,
                     transparent 38%, #000 100%);
  mask-image: radial-gradient(ellipse 62% 58% at 50% 50%,
                     transparent 38%, #000 100%)
}
.section--court::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  left: -90px;
  top: -70px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(245,124,0,.22);
  animation: courtFloat 20s ease-in-out infinite alternate
}
@keyframes courtFloat {
  from {
    transform: translate(0,0) scale(1)
  }
  to {
    transform: translate(26px,20px) scale(1.06)
  }
}
@media (prefers-reduced-motion:reduce) {
  .section--court::after {
    animation: none
  }
}
@media (max-width:640px) {
  .section--court::after {
    display: none
  }
}
@media (max-width:1119px) {
  .lang-switch button {
    padding: 11px 14px;
    font-size: .76rem
  }
  .site-footer li {
    margin-bottom: 4px
  }
  .site-footer li a {
    display: inline-block;
    padding: 11px 0
  }
  .footer-bottom a {
    display: inline-block;
    padding: 8px 0
  }
}
