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

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-muted: #1e1e1e;
  --yellow: #f5c518;
  --yellow-dark: #d4a90f;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #a3a3a3;
  --gray-600: #525252;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: var(--radius-sm);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-size: 1.125rem;
  font-weight: 700;
}

.logo-text small {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

.logo-image {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer-logo-image {
  height: 40px;
  max-width: 120px;
}

.site-nav {
  display: flex;
  gap: 8px;
}

.site-nav a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--black);
  background: var(--yellow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.diamond-card {
  background: var(--black-soft);
  border: 1px solid var(--black-muted);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.diamond {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  border: 3px solid var(--yellow);
  transform: rotate(45deg);
  border-radius: 4px;
  position: relative;
}

.diamond::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 2px solid rgba(245, 197, 24, 0.3);
  border-radius: 2px;
}

.stat-row {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray-100);
}

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

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

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* CTA Banner */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-banner p {
  color: var(--gray-400);
}

/* Page Hero */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 60px 0;
  border-bottom: 3px solid var(--yellow);
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.lead {
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 600px;
}

/* About */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.split-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.split-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.split-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}

.split-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--yellow);
}

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

.check-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid var(--black-muted);
  font-size: 0.95rem;
}

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

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

blockquote {
  border-left: 4px solid var(--yellow);
  padding-left: 24px;
}

blockquote p {
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 12px;
}

blockquote cite {
  font-size: 0.9rem;
  color: var(--gray-400);
  font-style: normal;
}

.values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

.value-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.value-item span {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Schedule */
.schedule-section {
  margin-bottom: 48px;
}

.schedule-section:last-child {
  margin-bottom: 0;
}

.schedule-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
}

.schedule-empty {
  text-align: center;
  color: var(--gray-600);
  font-size: 1rem;
}

.schedule-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.schedule-badge-game {
  background: var(--black);
  color: var(--yellow);
}

.schedule-badge-practice {
  background: #1e3a5f;
  color: var(--white);
}

.schedule-badge-tryout {
  background: var(--yellow);
  color: var(--black);
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.schedule-item:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
}

.schedule-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

.date-month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--yellow);
}

.date-day {
  font-size: 1.5rem;
  font-weight: 800;
}

.schedule-details h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.schedule-note {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-style: italic;
  margin-top: 4px;
}

.schedule-details p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.schedule-time span {
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--gray-100);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

/* Roster */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.roster-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 16px 24px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.roster-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}

.roster-photo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
}

.roster-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--black);
}

.roster-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--yellow);
  font-size: 2.5rem;
  font-weight: 800;
}

.roster-number {
  position: absolute;
  bottom: -4px;
  right: -4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.roster-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.roster-position {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.roster-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.roster-note code {
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* Tryout */
.tryout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.tryout-info h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.tryout-info > p {
  color: var(--gray-600);
  margin-bottom: 24px;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 4px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
}

.radio-label input {
  width: auto;
  accent-color: var(--yellow);
}

.field-hint {
  font-weight: 400;
  color: var(--gray-400);
  font-size: 0.8rem;
}

.position-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.position-chip {
  padding: 12px 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.position-chip:hover {
  border-color: var(--yellow);
}

.position-chip.selected {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}

.position-selected {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
  min-height: 1.25rem;
}

.position-picker.error {
  outline: 2px solid var(--red, #dc2626);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 32px;
}

.info-block {
  margin-bottom: 20px;
}

.info-block strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.info-block a {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
}

.info-block a:hover {
  color: var(--yellow-dark);
}

.contact-form-wrap {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
}

.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 32px;
  border-top: 3px solid var(--yellow);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-600);
  padding-top: 16px;
  border-top: 1px solid var(--black-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .split-layout,
  .mission-grid,
  .contact-layout,
  .tryout-layout,
  .cta-banner {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .roster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content p,
  .lead {
    margin-left: auto;
    margin-right: auto;
  }

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

  .cta-banner {
    align-items: center;
  }

  .schedule-item {
    grid-template-columns: 70px 1fr;
  }

  .schedule-time {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--black-soft);
    flex-direction: column;
    padding: 16px;
    border-bottom: 3px solid var(--yellow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 16px;
  }

  .header-inner {
    position: relative;
  }

  .roster-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .section {
    padding: 56px 0;
  }
}