:root {
  --black: #050505;
  --ink: #111111;
  --muted: #7b7b7b;
  --line: #272727;
  --paper: #f4f4f1;
  --soft: #d9d9d4;
  --accent: #e30613;
  --font-body: "Inter", Arial, sans-serif;
  --font-display: "Oswald", Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: var(--font-body);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 20px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #050505;
  object-fit: cover;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 38px);
  font-size: 12px;
  font-weight: 800;
}

.main-nav a,
.site-footer nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--paper);
}

.social-links svg {
  width: 24px;
  fill: currentColor;
}

.icon-x {
  font-size: 16px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: 100vh;
  padding: 78px clamp(20px, 5vw, 80px) 64px;
  overflow: hidden;
}

.hero-without-carousel {
  min-height: auto;
  padding-top: clamp(92px, 12vw, 150px);
  padding-bottom: clamp(72px, 10vw, 130px);
}

.hero-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.hero-without-carousel .hero-copy {
  align-items: start;
}

.hero-without-carousel .eyebrow {
  align-self: flex-start;
  margin: 0;
  padding-top: 0.25em;
}

.eyebrow,
.section-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

h1 {
  font-size: clamp(48px, 7.2vw, 106px);
}

h2 {
  font-size: clamp(38px, 5.6vw, 78px);
}

.hero h1 {
  max-width: 1240px;
  font-size: clamp(48px, 6.8vw, 96px);
  line-height: 1.08;
}

.display-lines span {
  display: block;
  width: max-content;
  max-width: 100%;
}

.desktop-break {
  display: block;
}

.carousel-shell {
  position: relative;
  height: clamp(390px, 47vw, 600px);
}

.carousel-track {
  position: relative;
  height: 100%;
  perspective: 1100px;
}

.hero-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(68vw, 820px);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #171717;
  opacity: 0;
  transform: translateX(-50%) scale(0.72);
  transition: transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 360ms ease, filter 360ms ease;
  will-change: transform;
}

.hero-card.active {
  z-index: 3;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.hero-card.prev {
  z-index: 2;
  opacity: 0.74;
  filter: grayscale(1);
  transform: translateX(calc(-50% - min(38vw, 430px))) rotateY(14deg) scale(0.82);
}

.hero-card.next {
  z-index: 2;
  opacity: 0.74;
  filter: grayscale(1);
  transform: translateX(calc(-50% + min(38vw, 430px))) rotateY(-14deg) scale(0.82);
}

.placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  background: #9d9d98;
  color: #202020;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
}

.card-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.62);
  font-weight: 800;
}

.card-meta span {
  color: var(--accent);
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.5);
  color: var(--paper);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease, border-color 160ms ease;
}

.carousel-control:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.carousel-control.prev {
  left: 0;
}

.next-button {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.carousel-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: #555;
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--accent);
}

.sponsor-stage {
  margin-top: 79px;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 5vw, 80px);
  overflow: hidden;
  border-bottom: 1px solid #c9c9c3;
  background: var(--paper);
  color: var(--ink);
}

.sponsor-carousel-shell {
  height: clamp(150px, 20vw, 240px);
}

.sponsor-stage .hero-card {
  width: min(48vw, 560px);
  border: 1px solid #d1d1cb;
  background: #d7d7d2;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.sponsor-stage .hero-card.prev {
  opacity: 0.42;
  filter: none;
  transform: translateX(calc(-50% - min(31vw, 350px))) scale(0.74);
}

.sponsor-stage .hero-card.next {
  opacity: 0.42;
  filter: none;
  transform: translateX(calc(-50% + min(31vw, 350px))) scale(0.74);
}

.sponsor-stage .placeholder {
  background: #c8c8c3;
  color: #555;
  font-size: clamp(28px, 4.4vw, 58px);
}

.sponsor-stage .carousel-control {
  border-color: #9e9e98;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.sponsor-stage .carousel-control:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--paper);
}

.sponsor-stage .carousel-dots {
  margin-top: 16px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.marquee-under-header {
  margin-top: 79px;
}

.footer-marquee {
  margin-top: clamp(40px, 8vw, 90px);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
}

.marquee span {
  flex: 0 0 220px;
  display: grid;
  place-items: center;
  height: 86px;
  border-right: 1px solid #c7c7c0;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-marquee span {
  height: 62px;
  color: #6b6b65;
  font-size: 24px;
}

.marquee-under-header span {
  flex: 0 0 176px;
  height: 42px;
  font-size: 19px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-pad {
  position: relative;
  padding: clamp(88px, 12vw, 160px) clamp(20px, 5vw, 80px);
}

.page-main {
  min-height: calc(100vh - 120px);
  padding-top: 78px;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  border-bottom: 2px solid var(--accent);
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
}

.lead-text {
  max-width: 720px;
  color: #cfcfca;
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: normal;
}

.background-word {
  position: absolute;
  top: 48px;
  left: clamp(20px, 5vw, 80px);
  max-width: 920px;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 200px);
  font-weight: 700;
  line-height: 0.85;
  pointer-events: none;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
  margin-top: 26px;
}

.about-text {
  color: #d4d4cf;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}

.timeline {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.timeline div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  color: var(--accent);
  font-weight: 800;
}

.timeline p {
  margin: 0;
}

.about-hero {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: clamp(92px, 12vw, 170px) clamp(20px, 5vw, 80px) clamp(80px, 11vw, 150px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.about-osaka {
  position: absolute;
  right: 2vw;
  bottom: clamp(120px, 16vw, 230px);
  color: rgba(255, 255, 255, 0.052);
  font-family: var(--font-display);
  font-size: clamp(92px, 18vw, 280px);
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(44px, 9vw, 130px);
  align-items: end;
  margin-top: clamp(44px, 7vw, 92px);
}

.about-kicker {
  margin: 0 0 22px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(30px, 4.9vw, 72px);
  font-weight: 700;
  line-height: 0.94;
}

.about-hero h1 {
  max-width: 980px;
  font-size: clamp(50px, 7.2vw, 104px);
  line-height: 1.06;
}

.about-statement {
  border-left: 2px solid var(--accent);
  padding-left: clamp(22px, 3vw, 40px);
}

.about-statement p {
  margin: 0;
  color: #d8d8d2;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.85;
  word-break: keep-all;
  overflow-wrap: normal;
}

.about-statement p + p {
  margin-top: 24px;
}

.about-facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(60px, 9vw, 120px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-facts div {
  min-height: 170px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-facts span {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.about-facts strong span {
  color: var(--paper);
}

.about-facts strong {
  display: block;
  max-width: 360px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(23px, 2.25vw, 34px);
  line-height: 1.18;
  text-transform: uppercase;
  word-break: keep-all;
  overflow-wrap: normal;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: normal;
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.player-card {
  display: grid;
  gap: 18px;
  min-height: 470px;
  padding: 20px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease;
}

.player-card:hover {
  background: #101010;
}

.player-photo {
  display: block;
  aspect-ratio: 4 / 5;
  height: auto;
  overflow: hidden;
  background: #9d9d98;
}

.player-name {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.95;
}

.player-role {
  color: var(--muted);
  font-weight: 700;
}
.player-photo img,
.modal-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-photo.placeholder {
  display: grid;
  place-items: center;
}

.player-photo.placeholder::after {
  content: "";
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.sponsor-grid a {
  display: grid;
  place-items: center;
  min-height: 190px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #101010;
  color: #b9b9b4;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.sponsor-grid a:hover {
  background: var(--paper);
  color: var(--ink);
}

.news {
  background: var(--paper);
  color: var(--ink);
}

.news .section-label {
  color: var(--accent);
}

.news-list {
  border-top: 1px solid #c8c8c1;
}

.news-item {
  display: grid;
  grid-template-columns: 150px 120px 1fr;
  gap: 26px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #c8c8c1;
  transition: padding-left 180ms ease, color 180ms ease;
}

.news-item:hover {
  color: var(--accent);
  padding-left: 16px;
}

.news-item time,
.news-item span {
  color: #686862;
  font-size: 13px;
  font-weight: 800;
}

.news-item strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.3vw, 44px);
  line-height: 1.08;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(44px, 8vw, 110px);
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: #aaa;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #666;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-size: 18px;
  transition: border-color 160ms ease;
}

.contact-form input {
  height: 48px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  padding-top: 10px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form button {
  justify-self: start;
  min-width: 170px;
  height: 52px;
  border: 1px solid var(--paper);
  background: transparent;
  color: var(--paper);
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.contact-form button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--paper);
}

.form-status {
  min-height: 1.4em;
  margin: -4px 0 0;
  color: #aaa;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.76);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(280px, 1fr);
  width: min(920px, 100%);
  max-height: min(720px, 92vh);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0d0d0d;
  transform: translateY(18px);
  transition: transform 220ms ease;
}

.modal.open .modal-panel {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #050505;
  color: var(--paper);
  font-size: 26px;
  cursor: pointer;
}

.modal-photo {
  min-height: 500px;
  overflow: hidden;
  background: #9d9d98;
}

.modal-content {
  padding: clamp(32px, 6vw, 64px);
}

.modal-content h2 {
  margin: 10px 0 12px;
}

.modal-content p {
  color: #cfcfca;
  line-height: 1.7;
}

.modal-role {
  color: var(--accent) !important;
  font-weight: 800;
}

.achievement-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.achievement-list span {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: #f0f0ec;
  font-weight: 700;
}

.modal-socials {
  display: flex;
  gap: 12px;
}

.modal-socials a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #555;
  color: var(--paper);
  font-weight: 800;
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease;
}

.modal-socials a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.social-icon-x {
  border-radius: 5px;
}

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 79px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--line);
    background: #070707;
  }

  .main-nav.open {
    display: flex;
  }

  .social-links {
    justify-self: end;
  }

  .hero-copy,
  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .about-grid,
  .about-hero-grid,
  .contact-grid,
  .modal-panel {
    grid-template-columns: 1fr;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .player-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: start;
    flex-wrap: wrap;
  }

  .modal-photo {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 16px;
    padding: 16px 18px;
  }

  .brand-name {
    font-size: 21px;
  }

  .social-links {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  .carousel-shell {
    height: 390px;
  }

  .hero-card {
    width: 82vw;
  }

  .hero-card.prev {
    transform: translateX(calc(-50% - 54vw)) rotateY(12deg) scale(0.78);
  }

  .hero-card.next {
    transform: translateX(calc(-50% + 54vw)) rotateY(-12deg) scale(0.78);
  }

  .carousel-control {
    top: auto;
    bottom: -64px;
    transform: none;
  }

  .carousel-control.prev {
    left: calc(50% - 58px);
  }

  .next-button {
    right: calc(50% - 58px);
  }

  .carousel-dots {
    margin-top: 82px;
  }

  .sponsor-stage {
    margin-top: 75px;
    padding-block: 26px;
  }

  .sponsor-carousel-shell {
    height: 170px;
  }

  .sponsor-stage .hero-card {
    width: 62vw;
  }

  .sponsor-stage .carousel-control {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .sponsor-stage .carousel-control.prev {
    left: 0;
  }

  .sponsor-stage .next-button {
    right: 0;
  }

  .sponsor-stage .carousel-dots {
    margin-top: 18px;
  }

  .marquee span {
    width: 170px;
    height: 72px;
    font-size: 24px;
  }

  .timeline div,
  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-hero {
    padding-top: 90px;
  }

  .hero h1,
  .about-hero h1,
  .contact-title {
    font-size: clamp(38px, 11.4vw, 62px);
    line-height: 1.1;
  }

  h1 {
    font-size: clamp(38px, 11.5vw, 64px);
  }

  h2 {
    font-size: clamp(34px, 9.4vw, 54px);
  }

  .about-osaka {
    right: -18vw;
    bottom: 46%;
    font-size: clamp(82px, 31vw, 150px);
  }

  .about-statement {
    padding-left: 20px;
  }

  .about-facts div {
    min-height: 132px;
  }

  .about-facts strong {
    font-size: clamp(24px, 7.8vw, 34px);
  }

  .desktop-break {
    display: none;
  }

  .player-grid,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .player-card {
    min-height: 410px;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
  }

  .brand-name {
    max-width: 48vw;
    overflow: hidden;
    font-size: 19px;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .main-nav {
    top: 63px;
    right: 14px;
    left: 14px;
    z-index: 80;
    gap: 4px;
    padding: 18px;
  }

  .sponsor-stage {
    margin-top: 63px;
    padding: 24px 16px 30px;
  }

  .sponsor-carousel-shell {
    height: 148px;
  }

  .sponsor-stage .hero-card {
    width: 68vw;
  }

  .sponsor-stage .hero-card.prev {
    transform: translateX(calc(-50% - 44vw)) scale(0.74);
  }

  .sponsor-stage .hero-card.next {
    transform: translateX(calc(-50% + 44vw)) scale(0.74);
  }

  .sponsor-stage .placeholder {
    min-height: 0;
    font-size: 30px;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding: 76px 16px 56px;
  }

  .hero-without-carousel {
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .hero-copy {
    gap: 18px;
    margin-bottom: 0;
  }

  .hero-without-carousel .eyebrow {
    max-width: 240px;
    line-height: 1.35;
  }

  .hero h1,
  .about-hero h1,
  .contact-title {
    font-size: clamp(34px, 10vw, 50px);
    line-height: 1.12;
  }

  h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  h2 {
    font-size: clamp(31px, 8.4vw, 44px);
  }

  .display-lines span {
    width: auto;
    max-width: 100%;
  }

  .section-pad {
    padding: 76px 16px;
  }

  .background-word {
    top: 42px;
    left: 16px;
    font-size: 58px;
    line-height: 0.95;
  }

  .about-grid,
  .about-hero-grid,
  .contact-grid {
    gap: 32px;
  }

  .about-hero {
    min-height: auto;
    padding: 72px 16px 68px;
  }

  .about-osaka {
    top: 88px;
    right: -12vw;
    bottom: auto;
    font-size: clamp(72px, 26vw, 120px);
  }

  .about-kicker {
    margin-bottom: 16px;
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1;
  }

  .about-statement {
    padding-left: 18px;
  }

  .about-statement p,
  .about-text,
  .lead-text,
  .section-head p {
    font-size: 15px;
    line-height: 1.75;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .about-facts {
    margin-top: 48px;
  }

  .about-facts div {
    min-height: 118px;
    padding: 22px;
  }

  .about-facts strong {
    font-size: clamp(22px, 7vw, 30px);
  }

  .player-card {
    min-height: auto;
    padding: 16px;
  }

  .player-photo {
    aspect-ratio: 1 / 1;
  }

  .player-name {
    font-size: 42px;
  }

  .sponsor-grid a {
    min-height: 118px;
    font-size: 34px;
  }

  .news {
    margin-inline: 0;
    padding: 76px 22px;
  }

  .news .section-head {
    margin-bottom: 34px;
  }

  .news h1 {
    font-size: clamp(48px, 15vw, 66px);
    line-height: 0.95;
  }

  .news-list {
    border-top-color: #d2d2cc;
  }

  .news-item {
    gap: 10px;
    padding: 28px 0;
  }

  .news-item:hover {
    padding-left: 0;
  }

  .news-item time,
  .news-item span {
    font-size: 12px;
    line-height: 1.2;
  }

  .news-item strong {
    max-width: 12em;
    font-size: clamp(24px, 7.1vw, 31px);
    line-height: 1.22;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .contact-form button {
    width: 100%;
  }

  .marquee span {
    width: 150px;
    height: 56px;
    font-size: 20px;
  }

  .site-footer {
    gap: 22px;
    padding: 28px 16px;
  }

  .site-footer nav {
    gap: 16px 22px;
  }

  .modal {
    align-items: start;
    padding: 14px;
    overflow-y: auto;
  }

  .modal-panel {
    width: 100%;
    max-height: none;
  }

  .modal-photo {
    min-height: 220px;
  }

  .modal-content {
    padding: 30px 22px 34px;
  }

  .modal-content h2 {
    font-size: 52px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
}
