:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5d6067;
  --paper: #fffdf9;
  --soft: #f5f2ec;
  --line: #e7ded2;
  --red: #d4141c;
  --red-dark: #970d13;
  --black: #080808;
  --teal: #0b6765;
  --violet: #6f3aa8;
  --gold: #c5963b;
  --shadow: 0 20px 50px rgba(12, 12, 12, .12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(212, 20, 28, .35);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 50;
  background: var(--black);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 8px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 249, .92);
  border-bottom: 1px solid rgba(23, 23, 23, .08);
  backdrop-filter: blur(16px);
}

.topbar {
  max-width: var(--max);
  margin: 0 auto;
  padding: .55rem clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .88rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(23, 23, 23, .06);
}

.topbar a {
  text-decoration: none;
  font-weight: 700;
}

.header-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: .85rem clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: 190px;
  text-decoration: none;
}

.brand img {
  width: clamp(150px, 22vw, 245px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 23, 23, .16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .18rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .55rem .72rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: .93rem;
  font-weight: 750;
  color: #292929;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: var(--black);
  color: #fff;
}

.nav-list .nav-cta {
  background: var(--red);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, .96), rgba(255, 253, 249, .76)),
    repeating-linear-gradient(-14deg, rgba(212, 20, 28, .07) 0 1px, transparent 1px 24px);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: var(--max);
  min-height: min(720px, calc(100vh - 126px));
  margin: 0 auto;
  padding: clamp(3.2rem, 7vw, 6rem) clamp(1rem, 3vw, 2rem) clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(310px, .98fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 1rem;
  padding: .32rem .72rem;
  border: 1px solid rgba(212, 20, 28, .24);
  border-radius: 999px;
  color: var(--red-dark);
  background: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 950;
}

.hero-copy {
  max-width: 690px;
  margin: 1.2rem 0 0;
  color: #333;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn:disabled,
.btn[disabled] {
  cursor: wait;
  opacity: .65;
  transform: none;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(212, 20, 28, .2);
}

.btn-dark {
  background: var(--black);
  color: #fff;
}

.btn-light {
  background: #fff;
  border-color: rgba(23, 23, 23, .16);
  color: var(--ink);
}

.hero-media {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.hero-logo {
  width: min(100%, 640px);
  margin-left: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.hero-badge {
  min-height: 96px;
  padding: .9rem;
  border: 1px solid rgba(23, 23, 23, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
}

.hero-badge strong {
  display: block;
  font-size: 1.32rem;
  line-height: 1.1;
}

.hero-badge span {
  color: var(--muted);
  font-size: .9rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1rem, 3vw, 2rem);
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--black);
  color: #fff;
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, .9), rgba(8, 8, 8, .9)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 1px, transparent 1px 22px);
  color: #fff;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.wide-container {
  width: 100%;
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(240px, .58fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-head.center {
  display: block;
  max-width: 760px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  margin: 0 0 .65rem;
  color: var(--red);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-dark .section-kicker,
.section-accent .section-kicker {
  color: #ffccd0;
}

.section h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.55rem);
  line-height: 1.05;
}

.section-lead {
  margin: .85rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-lead,
.section-accent .section-lead {
  color: rgba(255, 255, 255, .78);
}

.grid {
  display: grid;
  gap: 1rem;
}

.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));
}

.card,
.feature,
.price-card,
.partner-card,
.timeline-item {
  border: 1px solid rgba(23, 23, 23, .11);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(23, 23, 23, .07);
}

.card,
.feature,
.price-card {
  padding: clamp(1.1rem, 2vw, 1.45rem);
}

.feature h3,
.card h3,
.price-card h3,
.partner-card h3,
.timeline-item h3 {
  font-size: 1.16rem;
}

.feature p,
.card p,
.price-card p,
.timeline-item p {
  margin: .55rem 0 0;
  color: var(--muted);
}

.feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: .85rem;
  border-radius: 8px;
  background: rgba(212, 20, 28, .12);
  color: var(--red-dark);
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(300px, .72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.text-block p:first-child {
  margin-top: 0;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin: 2rem 0 .65rem;
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  line-height: 1.18;
}

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

.legal-content p {
  max-width: 760px;
  margin: .4rem 0;
  font-size: 1rem;
  line-height: 1.7;
}

.moral-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.moral-list li {
  min-height: 92px;
  padding: .9rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.moral-list strong {
  color: #fff;
}

.moral-list span {
  display: block;
  margin-top: .24rem;
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
}

.page-hero {
  background: var(--black);
  color: #fff;
  border-bottom: 5px solid var(--red);
}

.page-hero .container {
  padding: clamp(3.2rem, 7vw, 5.2rem) clamp(1rem, 3vw, 2rem);
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.45rem, 5.6vw, 4.65rem);
  line-height: 1.02;
}

.page-hero p {
  max-width: 790px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.image-frame {
  border: 1px solid rgba(23, 23, 23, .13);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.poster {
  width: 100%;
  background: #fff;
}

.procedure-frame {
  max-width: min(1120px, 100%);
  margin: 0 auto;
}

.procedure-frame .poster {
  width: 100%;
}

.schedule-table,
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(23, 23, 23, .06);
}

.schedule-table th,
.schedule-table td,
.pricing-table th,
.pricing-table td {
  padding: .9rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.schedule-table th,
.pricing-table th {
  background: #151515;
  color: #fff;
}

.pricing-table tbody tr:nth-child(even),
.schedule-table tbody tr:nth-child(even) {
  background: #fbf8f3;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 8px;
}

.price-card strong {
  display: block;
  margin-top: .65rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--red);
}

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

.timeline-item {
  padding: 1rem;
}

.timeline-item time {
  display: inline-flex;
  margin-bottom: .45rem;
  color: var(--red-dark);
  font-weight: 900;
}

.notice {
  padding: 1rem;
  border-left: 5px solid var(--red);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(23, 23, 23, .06);
}

.notice p {
  margin: 0;
}

.steps-list {
  margin: .8rem 0 0;
  padding-left: 1.1rem;
}

.steps-list li + li {
  margin-top: .4rem;
}

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

.partner-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  text-decoration: none;
}

.partner-card picture,
.partner-card img {
  width: 100%;
}

.partner-card picture {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.partner-card img {
  max-height: 170px;
  object-fit: contain;
}

.partner-card .partner-body {
  padding: .95rem;
  border-top: 1px solid var(--line);
}

.partner-card .partner-body p {
  margin: .25rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.team-list li {
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.team-list strong {
  display: block;
}

.team-list span {
  color: var(--muted);
  font-size: .92rem;
}

.contact-band {
  background: #101010;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(260px, .45fr);
  gap: 1rem;
  align-items: center;
}

.contact-grid p {
  margin: .4rem 0 0;
  color: rgba(255, 255, 255, .78);
}

.footer {
  padding: 2rem clamp(1rem, 3vw, 2rem);
  background: #050505;
  color: rgba(255, 255, 255, .72);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer a {
  color: #fff;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    background: rgba(255, 253, 249, .98);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    max-width: var(--max);
    margin: 0 auto;
    padding: .8rem clamp(1rem, 3vw, 2rem) 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-list a {
    justify-content: center;
  }

  .hero-inner,
  .section-head,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-logo {
    margin-left: 0;
  }

  .grid-4,
  .partner-grid,
  .team-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .topbar {
    display: none;
  }

  .header-main {
    min-height: 74px;
  }

  .brand img {
    width: 170px;
  }

  .nav-list,
  .hero-badges,
  .grid-2,
  .grid-3,
  .grid-4,
  .partner-grid,
  .timeline,
  .team-list,
  .moral-list {
    grid-template-columns: 1fr;
  }

  h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .schedule-table th,
  .schedule-table td,
  .pricing-table th,
  .pricing-table td {
    padding: .72rem;
    font-size: .92rem;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Visual refresh inspired by the historic Judo Rioz site */
body {
  background: #fff;
}

.site-header {
  background: #fff;
  border-bottom: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
}

.utility-header {
  background: #fff;
}

.utility-inner {
  max-width: var(--max);
  min-height: 118px;
  margin: 0 auto;
  padding: .7rem clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(190px, 270px) 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
}

.brand {
  min-width: 0;
}

.brand img {
  width: min(250px, 38vw);
}

.header-info {
  display: flex;
  justify-content: flex-end;
  gap: clamp(1rem, 4vw, 3rem);
}

.info-chip {
  position: relative;
  padding-left: 1.25rem;
  color: #777;
  text-decoration: none;
  font-size: .92rem;
  line-height: 1.25;
}

.info-chip::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25rem;
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: var(--red);
}

.info-chip span,
.info-chip strong {
  display: block;
}

.info-chip strong {
  margin-top: .08rem;
  color: #171717;
  font-weight: 900;
}

.header-actions {
  display: grid;
  gap: .55rem;
  width: 190px;
}

.header-actions .btn {
  min-height: 45px;
  padding: .65rem .9rem;
  text-transform: uppercase;
  font-size: .9rem;
}

.nav-shell {
  background: #202020;
}

.nav-shell .nav {
  max-width: var(--max);
  margin: 0 auto;
  display: block;
  position: static;
  background: transparent;
  border: none;
}

.nav-shell .nav-list {
  justify-content: center;
  gap: 0;
}

.nav-shell .nav-list a {
  min-height: 58px;
  padding: .9rem 1.35rem;
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: .88rem;
  font-weight: 950;
}

.nav-shell .nav-list a:hover,
.nav-shell .nav-list a[aria-current="page"] {
  background: #101010;
  color: #fff;
}

.nav-shell .nav-list .nav-cta {
  background: transparent;
}

.photo-hero {
  position: relative;
  min-height: clamp(390px, 45vw, 590px);
  overflow: hidden;
  background: #111;
}

.hero-photo,
.hero-photo img {
  width: 100%;
  height: clamp(390px, 45vw, 590px);
}

.hero-photo img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.photo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.35), rgba(0,0,0,.04) 40%, rgba(0,0,0,.35));
  pointer-events: none;
}

.hero-title-card {
  position: absolute;
  left: max(1rem, calc((100vw - var(--max)) / 2 + 2rem));
  bottom: clamp(1.2rem, 4vw, 3rem);
  z-index: 1;
  width: min(620px, calc(100% - 2rem));
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(212, 20, 28, .9);
  color: #fff;
  border-left: 8px solid #fff;
  box-shadow: 0 24px 50px rgba(0,0,0,.26);
}

.hero-title-card .eyebrow {
  background: #fff;
  border-color: #fff;
  color: var(--red-dark);
}

.hero-title-card h1 {
  max-width: none;
  font-size: clamp(2.7rem, 8vw, 6.8rem);
  text-transform: uppercase;
}

.hero-title-card p {
  margin: .6rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 750;
}

.quick-strip {
  background: #202020;
  color: #fff;
  border-top: 5px solid var(--red);
}

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

.quick-grid a {
  min-height: 112px;
  padding: 1.25rem;
  border-right: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
}

.quick-grid a:first-child {
  border-left: 1px solid rgba(255,255,255,.12);
}

.quick-grid strong,
.quick-grid span {
  display: block;
}

.quick-grid strong {
  text-transform: uppercase;
  font-weight: 950;
}

.quick-grid span {
  margin-top: .25rem;
  color: rgba(255,255,255,.72);
}

.season-section {
  background: #fff;
}

.season-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: 1.2rem;
  align-items: stretch;
}

.season-main {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.season-main picture,
.season-main img {
  width: 100%;
  height: 100%;
}

.season-main img {
  object-fit: cover;
}

.season-main div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  background: linear-gradient(0deg, rgba(0,0,0,.86), rgba(0,0,0,.2));
  color: #fff;
}

.season-main h3 {
  font-size: clamp(1.45rem, 3vw, 2.4rem);
}

.season-main p {
  max-width: 640px;
  margin: .45rem 0 0;
  color: rgba(255,255,255,.82);
}

.season-cards {
  grid-template-columns: 1fr;
}

.dojo-moral {
  position: relative;
  overflow: hidden;
  background: #202020;
  color: #fff;
}

.dojo-moral::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 62%;
  height: 42%;
  background: var(--red);
  clip-path: polygon(0 38%, 100% 0, 86% 100%, 0 100%);
}

.moral-stage {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(250px, .55fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.moral-copy {
  color: #1f1f1f;
  background: #fff;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.moral-copy p {
  color: #565656;
}

.moral-copy .section-kicker {
  color: var(--red);
}

.moral-copy h2 {
  color: #242424;
}

.judoka-figure {
  align-self: end;
  display: flex;
  justify-content: center;
}

.judoka-figure img {
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(0,0,0,.35));
}

.moral-stage .moral-list {
  grid-template-columns: 1fr;
}

.moral-stage .moral-list li {
  min-height: auto;
  padding: .6rem 0 .6rem 1.45rem;
  border: none;
  border-radius: 0;
  background: transparent;
  position: relative;
}

.moral-stage .moral-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.02rem;
  width: .6rem;
  height: .6rem;
  border-radius: 999px;
  background: #fff;
}

.moral-stage .moral-list strong {
  font-size: 1.12rem;
}

.activity-section {
  background: #f7f7f7;
}

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

.activity-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0,0,0,.1);
}

.activity-card picture,
.activity-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.activity-card img {
  object-fit: cover;
}

.activity-card div {
  padding: 1rem;
  border-top: 5px solid var(--red);
}

.activity-card h3 {
  font-size: 1.12rem;
}

.activity-card p {
  margin: .28rem 0 0;
  color: var(--muted);
}

.page-hero {
  background: #202020;
  color: #fff;
  border-bottom: none;
}

.page-photo,
.page-photo picture,
.page-photo img {
  width: 100%;
  height: clamp(180px, 23vw, 280px);
}

.page-photo img {
  object-fit: cover;
  object-position: center;
}

.page-title {
  position: relative;
  background: #202020;
}

.page-title::before {
  content: "";
  position: absolute;
  inset: auto 0 100% 0;
  height: 52px;
  background: var(--red);
  clip-path: polygon(0 100%, 100% 38%, 100% 100%, 0 100%);
}

.page-hero .container {
  padding: clamp(2rem, 5vw, 3.8rem) clamp(1rem, 3vw, 2rem);
}

.page-title .eyebrow {
  background: #fff;
  color: var(--red-dark);
  border-color: rgba(212,20,28,.28);
}

.info-section {
  background: #fff;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(310px, .55fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
}

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

.info-copy picture,
.info-copy img {
  width: 100%;
}

.info-copy img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.poster-frame {
  background: #fff;
}

.tariff-section {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: #fff;
  padding-top: clamp(5rem, 10vw, 8rem);
}

.tariff-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 74px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 28%, 0 100%);
}

.tariff-section .section-kicker,
.tariff-section .section-lead,
.tariff-section .price-card p {
  color: rgba(255,255,255,.82);
}

.tariff-section .price-card,
.tariff-section .pricing-table {
  box-shadow: none;
  border-color: rgba(255,255,255,.28);
}

.tariff-section .price-card {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.22);
}

.tariff-section .price-card strong {
  color: #fff;
}

.tariff-section .pricing-table th {
  background: #2b2b2b;
  color: #fff;
  border-color: rgba(255,255,255,.22);
}

.tariff-section .pricing-table tbody tr:nth-child(odd) {
  background: #fff;
}

.tariff-section .pricing-table tbody tr:nth-child(even) {
  background: #f8f1f1;
}

.tariff-section .pricing-table td {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23,23,23,.12);
  font-weight: 750;
}

.tariff-section .pricing-table td span {
  color: var(--muted);
}

.tariff-section .notice {
  color: #171717;
}

.registration-section {
  background: #fff;
}

.registration-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .52fr);
  gap: 1rem;
  align-items: stretch;
}

.registration-panel {
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--red);
}

.registration-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.registration-photo picture,
.registration-photo img {
  width: 100%;
  height: 100%;
}

.registration-photo img {
  object-fit: cover;
}

.payment-box {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(150px, .24fr) minmax(0, 1fr) minmax(260px, .4fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.payment-title {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-right: 1rem;
  border-right: 1px solid rgba(23,23,23,.1);
}

.payment-logos {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  align-items: center;
}

.payment-logos picture,
.payment-logos img {
  width: 220px;
  height: 112px;
  object-fit: contain;
}

.payment-logos img {
  padding: .7rem;
  border: 1px solid rgba(23,23,23,.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23,23,23,.08);
}

.team-section {
  padding-left: 0;
  padding-right: 0;
}

.team-photo-frame {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  box-shadow: none;
}

.team-photo-frame picture,
.team-photo-frame img {
  width: 100%;
}

.map-band {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background:
    linear-gradient(rgba(43,43,43,.9), rgba(43,43,43,.9)),
    repeating-linear-gradient(35deg, transparent 0 32px, rgba(255,255,255,.08) 32px 34px),
    repeating-linear-gradient(112deg, transparent 0 42px, rgba(255,255,255,.06) 42px 44px);
  color: #fff;
}

.map-panel {
  max-width: var(--max);
  width: min(100%, 820px);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
}

.map-marker {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  font-weight: 950;
  font-size: 1.4rem;
}

.map-panel p {
  margin: .3rem 0 0;
  color: rgba(255,255,255,.82);
}

.map-panel a {
  color: #fff;
  font-weight: 850;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(170px, .28fr) minmax(420px, .9fr) minmax(300px, .62fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
}

.footer-club img {
  width: 150px;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 8px;
}

.footer-club p {
  margin: .45rem 0 0;
  color: rgba(255,255,255,.84);
}

.footer-cta p {
  color: rgba(255,255,255,.78);
}

.footer-cta h2 {
  max-width: 13ch;
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1.08;
}

.contact-form {
  display: grid;
  grid-template-columns: minmax(190px, .72fr) minmax(240px, 1fr);
  gap: .85rem 1rem;
}

.contact-form label {
  display: block;
}

.contact-form .hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label > span:not(.privacy-text) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-fields {
  display: grid;
  gap: .75rem;
}

.message-field textarea,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 100%;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 6px;
  background: #565656;
  color: #fff;
  font: inherit;
  min-height: 46px;
  padding: .82rem .95rem;
}

.message-field textarea {
  min-height: 152px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.62);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,.45);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 20, 28, .28);
}

.form-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, .32fr);
  gap: .85rem;
  align-items: center;
}

.privacy-check {
  min-height: 46px;
  display: flex !important;
  align-items: center;
  gap: .65rem;
  padding: .72rem .85rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.78);
  font-size: .9rem;
}

.privacy-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--red);
  flex: 0 0 auto;
}

.form-bottom .btn {
  width: 100%;
  min-height: 46px;
  cursor: pointer;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.2rem;
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: .92rem;
}

@media (max-width: 1020px) {
  .utility-inner {
    grid-template-columns: 1fr auto;
    min-height: 86px;
  }

  .header-info,
  .header-actions {
    display: none;
  }

  .nav-shell .nav {
    display: none;
  }

  .nav-shell .nav.is-open {
    display: block;
    position: static;
  }

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

  .season-layout,
  .moral-stage,
  .info-layout,
  .registration-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .payment-box {
    grid-template-columns: 1fr;
  }

  .payment-title {
    padding-right: 0;
    padding-bottom: .9rem;
    border-right: 0;
    border-bottom: 1px solid rgba(23,23,23,.1);
  }

  .payment-logos {
    justify-content: flex-start;
  }

  .moral-copy {
    color: #fff;
    background: rgba(255,255,255,.08);
  }

  .moral-copy h2,
  .moral-copy p {
    color: #fff;
  }

  .judoka-figure {
    order: 3;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .utility-inner {
    min-height: 76px;
  }

  .brand img {
    width: 176px;
  }

  .nav-shell .nav-list,
  .activity-grid,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .hero-title-card {
    left: 1rem;
    right: 1rem;
  }

  .hero-title-card h1 {
    font-size: clamp(2.45rem, 16vw, 4.3rem);
  }

  .quick-grid a {
    min-height: 86px;
    border-left: 1px solid rgba(255,255,255,.12);
  }

  .payment-box,
  .payment-logos {
    display: block;
  }

  .payment-logos picture {
    width: 100%;
    margin-top: .75rem;
  }

  .payment-logos img {
    width: 100%;
  }

  .form-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1020px) {
  .section-head,
  .page-title .container,
  .footer-grid,
  .map-panel,
  .legal-content,
  .text-block {
    text-align: center;
  }

  .section-head,
  .season-layout,
  .info-layout,
  .registration-grid,
  .footer-grid,
  .split {
    justify-items: center;
  }

  .section-head > div,
  .section-head .section-lead,
  .page-title h1,
  .page-title p,
  .legal-content,
  .legal-content p,
  .text-block p,
  .footer-cta h2,
  .footer-cta p,
  .footer-club p {
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow,
  .section-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .season-cards,
  .info-copy,
  .registration-panel,
  .poster-frame,
  .procedure-frame,
  .contact-form {
    width: 100%;
    max-width: 760px;
  }

  .footer-grid {
    max-width: 820px;
  }

  .footer-club img {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .button-row,
  .payment-logos {
    justify-content: center;
  }

  .map-panel {
    justify-content: center;
    justify-items: center;
  }
}

@media (max-width: 700px) {
  .page-title .container,
  .hero-title-card,
  .quick-grid a,
  .activity-card,
  .feature,
  .card,
  .price-card,
  .partner-card,
  .timeline-item,
  .team-list li,
  .moral-copy,
  .registration-panel,
  .legal-content {
    text-align: center;
  }

  .page-hero h1,
  .page-hero p,
  .hero-title-card h1,
  .hero-title-card p,
  .season-main h3,
  .season-main p,
  .section-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title-card {
    border-left: 0;
    border-top: 8px solid #fff;
  }

  .hero-actions,
  .button-row {
    justify-content: center;
    align-items: center;
  }

  .btn,
  .form-bottom .btn {
    width: min(100%, 320px);
  }

  .feature-mark {
    margin-left: auto;
    margin-right: auto;
  }

  .season-main div,
  .activity-card div,
  .payment-title {
    text-align: center;
  }

  .payment-title {
    justify-content: center;
  }

  .payment-logos picture,
  .payment-logos img {
    margin-left: auto;
    margin-right: auto;
  }

  .moral-stage .moral-list li {
    padding-left: 0;
    text-align: center;
  }

  .moral-stage .moral-list li::before {
    display: none;
  }

  .schedule-table th,
  .schedule-table td,
  .pricing-table th,
  .pricing-table td {
    text-align: center;
  }

  .contact-form,
  .form-fields,
  .message-field,
  .form-bottom {
    margin-left: auto;
    margin-right: auto;
  }

  .form-bottom {
    justify-items: center;
  }

  .privacy-check {
    justify-content: center;
    text-align: center;
  }

  .footer .container {
    justify-content: center;
    text-align: center;
  }
}
