/* ===========================================================
   WAKABA杯 LP — Stylesheet
   Concept: 写真ドーン + スポーティブ（黒 × ライムアクセント）
   =========================================================== */

:root {
  --bg: #0a0a0a;
  --bg-soft: #131313;
  --bg-light: #f5f5f3;
  --bg-light-soft: #ffffff;
  --text: #ffffff;
  --text-muted: #b8b8b8;
  --text-dark: #111111;
  --text-dark-muted: #555555;
  --accent: #c8ff00;        /* ライムイエロー（スポーティブの差し色） */
  --accent-strong: #a8e000;
  --accent-deep: #1a3d2e;   /* 湘南グリーン（隠し味） */
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(0, 0, 0, 0.1);
  --container: 1200px;
  --header-h: 72px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 100;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.92);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.08em;
}

.nav-logo-en {
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--text);
}

.nav-logo-jp {
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.mobile-menu.active { max-height: 400px; }

.mobile-menu ul {
  list-style: none;
  padding: 16px 24px 32px;
}

.mobile-link {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  background-color: #000;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.7) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 24px;
  padding-left: 56px;
  position: relative;
}

.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-weight: 900;
  font-size: clamp(36px, 7vw, 88px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-title-jp {
  display: block;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) forwards;
}

.hero-title-jp:nth-child(1) { animation-delay: 0.2s; }
.hero-title-jp:nth-child(2) {
  animation-delay: 0.4s;
  color: var(--accent);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  padding: 10px 18px;
  border: 2px solid var(--text);
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) 0.6s forwards;
}

.hero-logo-en {
  font-weight: 900;
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero-logo-jp {
  font-weight: 900;
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1;
}

.hero-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  margin-bottom: 48px;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) 0.8s forwards;
}

.hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

.hero-meta-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
}

.hero-meta-value {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-meta-value small {
  font-size: 0.6em;
  color: var(--text-muted);
  margin-left: 6px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease) 1s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-indicator span {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--accent);
  animation: scrollDown 2s var(--ease) infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 255, 0, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-ghost:hover {
  background: var(--text);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.section-light .btn-outline {
  color: var(--text-dark);
  border-color: rgba(0,0,0,0.2);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.section-light .btn-outline:hover {
  background: var(--accent-deep);
  color: var(--accent);
  border-color: var(--accent-deep);
}

.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 18px 44px; font-size: 16px; }

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: var(--bg);
  color: var(--text);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
  position: relative;
  padding: 0 32px;
}

.section-light .label { color: var(--accent-deep); }

.label::before, .label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.label::before { left: 0; }
.label::after { right: 0; }

.section-header h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* ===== ABOUT (info-table) ===== */
.about-grid {
  max-width: 880px;
  margin: 0 auto;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.info-table tr {
  border-bottom: 1px solid var(--line);
}

.info-table tr:last-child { border-bottom: none; }

.info-table th,
.info-table td {
  padding: 24px 16px;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 200px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  white-space: nowrap;
}

.info-table td { font-weight: 500; }

.rule-list {
  list-style: none;
  counter-reset: rule;
}

.rule-list li {
  counter-increment: rule;
  padding-left: 32px;
  position: relative;
  margin-bottom: 8px;
}

.rule-list li:last-child { margin-bottom: 0; }

.rule-list li::before {
  content: counter(rule);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.full-notice {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 120, 120, 0.4);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.full-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  background: #d63838;
  padding: 4px 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.entry-btns {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn.is-closed {
  position: relative;
  opacity: 0.55;
  pointer-events: auto;
  cursor: not-allowed;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn.is-closed:hover {
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--text-dark);
  background: transparent;
  transform: none;
  opacity: 0.7;
}

.section-dark .btn.is-closed:hover {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.btn .btn-strike {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  opacity: 0.85;
}

.btn .btn-status {
  font-size: 11px;
  letter-spacing: 0.15em;
  background: currentColor;
  color: var(--bg-light);
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 700;
}

.section-dark .btn .btn-status {
  background: var(--text);
  color: var(--bg);
}

/* ===== FEATURE (Exhibition / Clinic) ===== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-reverse .feature-photo { order: 2; }

.feature-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-photo-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2a2a2a;
  transition: transform 0.6s var(--ease);
}

.section-light .feature-photo-img { background-color: #d8d8d4; }

.feature-photo:hover .feature-photo-img { transform: scale(1.04); }

.feature-photo-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text);
  background: rgba(0,0,0,0.6);
  padding: 6px 12px;
  border-radius: 2px;
  text-transform: uppercase;
}

.feature-lead {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 32px;
}

.section-light .feature-lead strong { color: var(--accent-deep); }
.section-dark .feature-lead strong { color: var(--accent); }

.feature-meta {
  list-style: none;
  margin-bottom: 24px;
  border-top: 1px solid currentColor;
  border-color: var(--line);
}

.section-light .feature-meta { border-color: var(--line-dark); }

.feature-meta li {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.section-light .feature-meta li { border-bottom-color: var(--line-dark); }

.feature-meta li span {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  flex: 0 0 110px;
  font-weight: 500;
}

.section-light .feature-meta li span { color: var(--accent-deep); }

.feature-meta li small {
  font-size: 0.7em;
  margin-left: 6px;
  opacity: 0.6;
}

.feature-meta .vs {
  display: inline-block;
  margin: 0 8px;
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-deep);
  padding: 2px 8px;
  font-size: 0.85em;
}

.section-light .feature-meta .vs {
  color: var(--bg-light);
  background: var(--accent-deep);
}

.feature-note {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.85;
}

/* ===== GOING BUTTON ===== */
.going-wrap {
  margin-top: 32px;
}

.btn-going {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--text-dark);
  color: var(--text);
  border-radius: 999px;
  border: 2px solid var(--text-dark);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-going .going-icon svg {
  width: 22px;
  height: 22px;
  transition: all 0.3s var(--ease);
}

.btn-going:hover {
  background: transparent;
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-going.is-going {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
  animation: goingPop 0.5s var(--ease);
}

.btn-going.is-going .going-icon svg {
  fill: var(--text-dark);
  stroke-width: 0;
}

@keyframes goingPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.going-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  margin-left: 8px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-dark-muted);
  transition: all 0.4s var(--ease);
  vertical-align: middle;
}

.section-dark .going-count {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
}

.going-count.is-loading {
  opacity: 0.6;
}

.going-count.is-active {
  background: rgba(26, 61, 46, 0.08);
  border-color: var(--accent-deep);
  color: var(--accent-deep);
}

.section-dark .going-count.is-active {
  background: rgba(200, 255, 0, 0.08);
  border-color: var(--accent);
  color: var(--accent);
}

.going-count-icon {
  display: inline-flex;
  align-items: center;
  opacity: 0.8;
}

.going-count-num {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-width: 24px;
  text-align: center;
  color: var(--text-dark);
  transition: transform 0.4s var(--ease);
}

.section-dark .going-count-num { color: var(--text); }

.going-count.is-active .going-count-num {
  color: var(--accent-deep);
}

.section-dark .going-count.is-active .going-count-num {
  color: var(--accent);
}

.going-count.bumping .going-count-num {
  transform: scale(1.25);
}

.going-count-label {
  font-weight: 500;
}

.going-helper {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
}

.going-helper.is-going {
  color: var(--accent-deep);
  opacity: 1;
  font-weight: 700;
}

.section-dark .going-helper.is-going { color: var(--accent); }

/* ===== FORM CTA (Clinic) ===== */
.form-cta { margin-top: 24px; }

.form-cta-note {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

/* ===== PROFILE (Shimoguchi) ===== */
.profile {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.profile-photo {
  aspect-ratio: 3 / 4;
  position: relative;
}

.profile-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-deep);
  border-radius: var(--radius);
  transform: translate(16px, 16px);
  z-index: 0;
}

.profile-photo-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-color: #ffffff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  z-index: 1;
  transition: transform 0.4s var(--ease);
}

.profile-photo:hover .profile-photo-img {
  transform: translate(-2px, -2px);
}

.profile-name-en {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--accent-deep);
  margin-bottom: 8px;
}

.profile-name-jp {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.profile-role {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-deep);
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 24px;
}

.profile-text {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.profile-quote {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  padding-left: 24px;
  border-left: 4px solid var(--accent-deep);
  letter-spacing: 0.04em;
}

/* ===== Section lead / status (BOOTHS / CO-HOSTS 共通) ===== */
.section-lead {
  text-align: center;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.9;
  margin: 0 auto 24px;
  max-width: 720px;
}

.section-status {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--bg);
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 999px;
}

.section-status-light .status-pill { color: var(--text); background: var(--accent-deep); }

.status-text {
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

/* ===== BOOTHS ===== */
.booth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.booth-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  position: relative;
  padding-bottom: 24px;
}

.booth-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.booth-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booth-photo-fallback {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.25);
  font-weight: 700;
}

.booth-photo[style*="background-image"] .booth-photo-fallback {
  /* hide fallback if image is set successfully (best-effort; fallback always behind image) */
  display: none;
}

.booth-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  margin: 0 24px 10px;
  border-radius: 2px;
  color: var(--bg);
  background: var(--accent);
  align-self: flex-start;
}

.booth-tag[data-tag="物販"] { background: #7be0ff; color: var(--bg); }
.booth-tag[data-tag="体験"] { background: #ffb878; color: var(--bg); }

.booth-name {
  margin: 0 24px 8px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.booth-desc {
  margin: 0 24px 16px;
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.8;
}

.booth-info {
  margin: 0 24px 16px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.6;
}

.booth-info-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 4px 0;
}

.booth-info-row dt {
  flex: 0 0 56px;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 500;
}

.booth-info-row dd {
  flex: 1;
  margin: 0;
  color: rgba(255,255,255,0.75);
  word-break: break-word;
}

.booth-info-row dd a {
  color: inherit;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.booth-info-row dd a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.booth-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 24px;
  padding: 8px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 2px;
  align-self: flex-start;
  transition: all 0.2s var(--ease);
}

.booth-link:hover {
  background: var(--accent);
  color: var(--bg);
}

/* Placeholder card (募集中) */
.booth-card-placeholder {
  border: 2px dashed rgba(200,255,0,0.3);
  background: transparent;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 24px;
}

.booth-card-placeholder:hover {
  border-color: var(--accent);
  border-style: dashed;
}

.booth-placeholder-content {
  text-align: center;
}

.booth-placeholder-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}

.booth-placeholder-content p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.booth-placeholder-link {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

/* ===== CO-HOSTS ===== */
.cohost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.cohost-cell {
  position: relative;
  aspect-ratio: 3 / 2;
  background: var(--bg-light-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.cohost-cell:hover {
  border-color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.cohost-img {
  position: absolute;
  inset: 16px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.cohost-fallback {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--text-dark-muted);
  opacity: 0.4;
  z-index: 0;
}

/* ===== SPONSOR ===== */
.section-sponsor {
  background: var(--accent-deep);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.section-sponsor::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(200,255,0,0.12) 0%, rgba(200,255,0,0) 70%);
  pointer-events: none;
}

.section-sponsor .label { color: var(--accent); }
.section-sponsor .label::before,
.section-sponsor .label::after { background: var(--accent); }

.sponsor-lead {
  text-align: center;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.9;
  margin: 0 auto 56px;
  max-width: 760px;
  opacity: 0.92;
}

.sponsor-lead strong {
  color: var(--accent);
  font-weight: 700;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}

.sponsor-card {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  position: relative;
  transition: all 0.3s var(--ease);
}

.sponsor-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.sponsor-card-num {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.sponsor-card-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1.4;
}

.sponsor-card-target {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 700;
  border-bottom: 1px solid rgba(200,255,0,0.25);
  padding-bottom: 14px;
}

.sponsor-card-text {
  font-size: 14px;
  line-height: 1.85;
  opacity: 0.88;
}

.sponsor-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.sponsor-cta-label {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.sponsor-cta-note {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.65;
}

/* ===== CONTACT ===== */
.contact-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.contact-label {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 16px;
}

.contact-email {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s var(--ease);
}

.contact-email:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.contact-note {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.75;
}

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-logo-en {
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.footer-logo-jp {
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  color: var(--accent);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 32px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* ===== SCHEDULE PAGE ===== */
.is-current {
  color: var(--accent) !important;
}
.is-current::after {
  width: 100% !important;
}

/* Page hero (sub page) */
.page-hero {
  background: var(--bg);
  color: var(--text);
  padding: calc(var(--header-h) + 80px) 0 64px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(200,255,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(26,61,46,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 32px;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}

.back-link:hover {
  color: var(--accent);
  gap: 12px;
}

.page-hero-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.page-hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.page-hero-meta small {
  font-size: 0.7em;
  opacity: 0.7;
  margin-left: 4px;
}

.page-hero-meta .dot {
  color: var(--accent);
  opacity: 0.5;
}

/* FORMAT cards */
.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.format-card {
  padding: 36px 24px;
  border: 1px solid var(--line-dark);
  background: var(--bg-light-soft);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  transition: all 0.3s var(--ease);
}

.format-card:hover {
  border-color: var(--accent-deep);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.format-card-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--accent-deep);
  margin-bottom: 16px;
  font-weight: 500;
}

.format-card-value {
  display: block;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.format-card-note {
  font-size: 12px;
  color: var(--text-dark-muted);
  letter-spacing: 0.04em;
}

/* RULES & NOTES */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
}

.rules-block .label { display: inline-block; margin-bottom: 16px; padding: 0; }
.rules-block .label::before, .rules-block .label::after { display: none; }

.rules-title {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.rule-list-lg li {
  padding-left: 40px;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.rule-list-lg li::before {
  width: 26px;
  height: 26px;
  font-size: 13px;
}

.notes-list {
  list-style: none;
}

.notes-list li {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

.notes-list li:last-child { border-bottom: none; }

.notes-key {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent);
  flex: 0 0 130px;
  font-weight: 500;
  padding-top: 4px;
}

.notes-val { flex: 1; }

/* TEAMS */
.teams-lead {
  text-align: center;
  font-size: 16px;
  margin-bottom: 56px;
}

.teams-lead strong { color: var(--accent-deep); font-weight: 700; }

.teams-cat {
  margin-bottom: 56px;
}

.teams-cat:last-child { margin-bottom: 0; }

.teams-cat-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--text-dark);
}

.teams-cat-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg-light);
  background: var(--text-dark);
  padding: 8px 16px;
  border-radius: 2px;
}

.teams-cat-count {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-dark-muted);
}

.teams-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.team-group {
  padding: 28px 28px 24px;
  background: var(--bg-light-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  position: relative;
  border-left: 4px solid var(--accent-deep);
}

.team-group-name {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--accent-deep);
  margin-bottom: 16px;
  font-weight: 700;
}

.team-list {
  list-style: none;
  counter-reset: tlist;
}

.team-list li {
  counter-increment: tlist;
  padding: 10px 0 10px 32px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px dashed var(--line-dark);
  position: relative;
}

.team-list li:last-child { border-bottom: none; }

.team-list li::before {
  content: counter(tlist);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-deep);
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TIMETABLE */
.timetable-lead {
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.timetable-lead strong { color: var(--accent); font-weight: 700; }

.timetable-note-inline {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.schedule {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}

.schedule-head {
  display: grid;
  grid-template-columns: 200px 140px 1fr 1fr;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--line);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-weight: 500;
}

.schedule-head .schedule-cell {
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}

.schedule-head .schedule-cell:last-child { border-right: none; }

.schedule-row {
  display: grid;
  grid-template-columns: 200px 140px 1fr 1fr;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s var(--ease);
}

.schedule-row:last-child { border-bottom: none; }

.schedule-row:hover { background: rgba(200,255,0,0.04); }

.schedule-cell {
  padding: 20px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.schedule-cell:last-child { border-right: none; }

.schedule-time {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--text);
}

.schedule-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-align: center;
}

.schedule-cat[data-cat="u12"] { color: var(--accent); background: rgba(200,255,0,0.08); }
.schedule-cat[data-cat="u10"] { color: #7be0ff; background: rgba(123,224,255,0.08); }
.schedule-cat[data-cat="event"] { color: var(--text-muted); background: rgba(255,255,255,0.04); }
.schedule-cat[data-cat="break"] { color: #ffb878; background: rgba(255,184,120,0.06); }
.schedule-cat[data-cat="exhibition"] { color: var(--accent); background: rgba(200,255,0,0.12); }
.schedule-cat[data-cat="clinic"] { color: var(--accent); background: rgba(200,255,0,0.12); }

.schedule-court {
  font-size: 14px;
  line-height: 1.6;
}

.schedule-court-full {
  grid-column: 3 / span 2;
  text-align: center;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
}

.schedule-row-event .schedule-court-full,
.schedule-row-break .schedule-court-full {
  font-style: normal;
  letter-spacing: 0.05em;
}

.schedule-row-special .schedule-court-full {
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
}

.schedule-row-special .schedule-court-full em {
  font-style: normal;
  margin: 0 8px;
  padding: 2px 8px;
  background: var(--accent-deep);
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.85em;
  font-weight: 700;
}

.schedule-group {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  background: rgba(200,255,0,0.1);
  padding: 2px 8px;
  margin-bottom: 6px;
  align-self: flex-start;
  font-weight: 500;
}

.schedule-cat[data-cat="u10"] ~ .schedule-court .schedule-group {
  color: #7be0ff;
  background: rgba(123,224,255,0.1);
}

.schedule-match {
  display: block;
  font-weight: 500;
}

.schedule-match em {
  font-style: normal;
  margin: 0 6px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.85em;
  font-weight: 700;
  color: var(--text-muted);
}

.timetable-foot-note {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* BACK CTA */
.section-back-cta { padding: 80px 0; }

.back-cta {
  text-align: center;
}

.back-cta-text {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--text-dark-muted);
}

/* ===== FADE-UP ANIMATION (scroll-triggered) ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .booth-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cohost-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-reverse .feature-photo { order: 0; }

  .profile {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 480px;
  }

  .profile-photo { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }

  .hero-content { padding-bottom: 60px; }
  .hero-meta { gap: 24px 32px; }

  .info-table th,
  .info-table td {
    display: block;
    padding: 8px 0;
  }

  .info-table th {
    width: 100%;
    padding-top: 20px;
    border-bottom: none;
  }

  .info-table tr:first-child th { padding-top: 8px; }

  .feature-meta li {
    flex-direction: column;
    gap: 4px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .sponsor-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sponsor-card {
    padding: 32px 24px;
  }

  /* BOOTHS / CO-HOSTS — mobile */
  .booth-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cohost-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .booth-card-placeholder { min-height: 200px; }

  /* SCHEDULE PAGE — mobile */
  .page-hero { padding: calc(var(--header-h) + 48px) 0 48px; }

  .page-hero-meta {
    font-size: 14px;
    gap: 8px;
  }

  .format-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .format-card { padding: 28px 16px; }

  .rules-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .teams-groups {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Convert schedule grid → stacked cards on mobile */
  .schedule-head { display: none; }

  .schedule-row,
  .schedule-row.schedule-row-event,
  .schedule-row.schedule-row-break,
  .schedule-row.schedule-row-special {
    display: block;
    padding: 16px 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .schedule-cell {
    padding: 4px 0;
    border-right: none;
  }

  .schedule-time {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--accent);
    font-weight: 700;
  }

  .schedule-cat {
    display: inline-block;
    text-align: left;
    padding: 4px 10px;
    margin-bottom: 8px;
    align-self: flex-start;
    font-size: 11px;
  }

  .schedule-court {
    display: block;
    padding: 8px 0;
    border-top: 1px dashed var(--line);
    font-size: 14px;
  }

  .schedule-row > .schedule-court:nth-child(3):not(.schedule-court-full)::before {
    content: 'COURT A';
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 4px;
  }

  .schedule-row > .schedule-court:nth-child(4)::before {
    content: 'COURT B';
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 4px;
  }

  .schedule-court-full {
    grid-column: auto;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }

  .btn { padding: 12px 24px; font-size: 13px; }
  .btn-lg { padding: 16px 32px; font-size: 15px; }

  .hero-eyebrow {
    font-size: 11px;
    padding-left: 40px;
  }
  .hero-eyebrow::before { width: 28px; }

  .contact-card { padding: 40px 20px; }
}
