/* Pennsbury Gems Gold — Design System */
:root {
  --navy: #0a1628;
  --navy-light: #142238;
  --navy-mid: #1e3354;
  --gold: #c9a227;
  --gold-light: #e8c84a;
  --gold-dark: #9a7b1a;
  --white: #ffffff;
  --gray-100: #f4f6f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 640px;
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  height: var(--nav-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.nav-social {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.625rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  transition: background 0.2s, color 0.2s;
}

.nav-social a:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav-social a:hover .social-icon-img {
  filter: none;
}

.nav-social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.nav-social .social-icon-img {
  width: 26px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.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: transform 0.3s, opacity 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  margin-top: var(--nav-height);
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  background: var(--navy);
}

.hero-bg-img {
  width: min(100%, 1024px);
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.97) 0%,
    rgba(10, 22, 40, 0.88) 12%,
    rgba(10, 22, 40, 0.55) 24%,
    rgba(10, 22, 40, 0.15) 36%,
    transparent 48%,
    transparent 62%,
    rgba(10, 22, 40, 0.45) 78%,
    rgba(10, 22, 40, 0.85) 100%
  );
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 90vh;
  padding: 0.5rem 1.5rem 2rem;
}

.hero-top {
  max-width: 720px;
  padding-top: 0.25rem;
}

.hero-bottom {
  max-width: 100%;
  padding-top: 1rem;
  margin-top: auto;
}

.champion-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.champion-badge svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--gold-light);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 3px rgba(10, 22, 40, 0.95), 0 2px 12px rgba(10, 22, 40, 0.75);
}

.hero-location {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

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

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Sections */
section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.pillar-card h3 {
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

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

/* Coach cards */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.coach-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.coach-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.coach-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.coach-initials {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.coach-info {
  padding: 1.5rem;
}

.coach-info h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.coach-role {
  font-size: 0.8125rem;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.coach-info p.coach-role {
  margin-bottom: 0.5rem;
}

.coach-bio-wrap {
  margin-bottom: 0.5rem;
}

.bio-clamp {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 15;
}

.coach-bio--preview {
  -webkit-line-clamp: 4;
  margin-bottom: 1rem;
}

.bio-clamp.is-expanded {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}

.bio-clamp strong {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 0.375rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.bio-clamp ul {
  margin: 0 0 0.75rem 1.1rem;
  padding-left: 0.75rem;
  list-style: disc;
}

.bio-clamp li {
  margin-bottom: 0.25rem;
}

.bio-toggle,
.coach-bio-toggle {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.bio-toggle:hover,
.coach-bio-toggle:hover {
  color: var(--navy);
}

.coach-contact {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.coach-contact a {
  font-size: 0.8125rem;
  color: var(--navy-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s;
}

.coach-contact a:hover {
  color: var(--gold-dark);
}

/* Player cards */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.player-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.player-photo {
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.player-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.player-photo.has-photo .player-number {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.player-photo.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.35) 0%, transparent 40%);
  pointer-events: none;
}

.player-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.35);
  line-height: 1;
}

.player-initials {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.player-info {
  padding: 1.5rem;
}

.player-info h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.player-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.tag {
  font-size: 0.6875rem;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gray-100);
  color: var(--navy-mid);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
}

.tag-gold {
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-dark);
}

.player-info p.player-bats-throws {
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.player-bio-wrap {
  margin-bottom: 0.25rem;
}

.player-bio.bio-clamp {
  -webkit-line-clamp: 10;
}

.player-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.qr-code {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  border: 2px solid var(--gray-200);
  background: var(--white);
}

.qr-label {
  flex: 1;
}

.qr-label span {
  display: block;
  font-size: 0.6875rem;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.qr-label a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
}

.qr-label a:hover {
  color: var(--gold-dark);
}

/* Schedule */
.schedule-list {
  max-width: 800px;
  margin: 0 auto;
}

.schedule-item {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: transform 0.2s;
}

.schedule-item:hover {
  transform: translateX(4px);
}

.schedule-dates {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}

.schedule-event {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
}

.schedule-location {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item-featured {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.gallery-item-featured img {
  object-position: center 40%;
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.gallery-cta h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.gallery-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.social-links-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link .social-icon-img {
  width: 22px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.social-link:hover .social-icon-img {
  filter: none;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.contact-card h3 {
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-card .coach-role {
  margin-bottom: 1rem;
}

.contact-card a {
  display: block;
  font-size: 0.9375rem;
  color: var(--navy-mid);
  margin-bottom: 0.375rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--gold-dark);
}

.roster-seo-intro {
  margin-bottom: 2rem;
  max-width: 720px;
}

.recruiting-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: var(--white);
  margin-top: 3rem;
}

.recruiting-banner h3 {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.recruiting-banner p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Page header */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
}

.page-header-highlight {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  margin: 0.75rem auto 1rem;
  max-width: 36rem;
  line-height: 1.4;
}

/* Coaching staff award badge */
.coaching-award-badge {
  margin: 1.25rem auto 1.5rem;
  display: flex;
  justify-content: center;
}

.coaching-award-badge__seal {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 1;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}

.coaching-award-badge__ring {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.35),
    inset 0 -2px 6px rgba(0, 0, 0, 0.2);
}

.coaching-award-badge__ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.coaching-award-badge__content {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem 1.25rem;
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.35);
}

.coaching-award-badge__star {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  fill: var(--gold-light);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
  transform: translateY(-50%);
}

.coaching-award-badge__star--left {
  left: 10px;
}

.coaching-award-badge__star--right {
  right: 10px;
}

.coaching-award-badge__year {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  margin-bottom: 0.15rem;
}

.coaching-award-badge__orgs {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.coaching-award-badge__title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.coaching-award-badge__sport {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.35rem;
  border-top: 1px solid rgba(201, 162, 39, 0.45);
  min-width: 7rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
  mix-blend-mode: lighten;
}

.footer-brand p {
  font-size: 0.875rem;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 0.8125rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-social a:hover .social-icon-img {
  filter: none;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social .social-icon-img {
  width: 22px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* CTA section */
section.cta-section {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    width: 100%;
    padding: 0.875rem 1rem;
  }

  .nav-social {
    margin: 1rem 0 0.75rem;
    padding: 1.25rem 0 0.75rem;
    border-left: none;
    border-top: 1px solid rgba(201, 162, 39, 0.35);
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }

  .nav-social a {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(201, 162, 39, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  .nav-social svg {
    width: 28px;
    height: 28px;
  }

  .nav-social .social-icon-img {
    width: 32px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    height: auto;
  }

  .hero-bg-img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 1rem;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

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

@media (max-width: 600px) {
  section {
    padding: 3.5rem 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .player-footer {
    flex-direction: column;
    text-align: center;
  }
}
