@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Oswald:wght@400;500;600;700&family=Crimson+Pro:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --maroon: #7A1F2E;
  --maroon-dark: #5a1520;
  --maroon-light: #9e2a3d;
  --vanilla: #F5EDD6;
  --vanilla-dark: #e8ddc0;
  --white: #ffffff;
  --black: #0e0e0e;
  --gray: #444;
  --light-gray: #f0ebe0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--vanilla);
  color: var(--black);
  font-size: 18px;
  line-height: 1.6;
}

/* ===== NAVIGATION ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--maroon);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

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

.nav-logo span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--vanilla);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0 1.1rem;
  height: 64px;
  line-height: 64px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vanilla);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--maroon);
  color: var(--white);
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vanilla);
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(122,31,46,0.45) 0%, transparent 65%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
}

.hero-diamond {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 600px;
  height: 600px;
  border: 2px solid rgba(122,31,46,0.3);
  opacity: 0.5;
}

.hero-diamond-2 {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 420px;
  height: 420px;
  border: 1px solid rgba(245,237,214,0.1);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-text { }

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--maroon-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--maroon-light);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-title em {
  color: var(--maroon-light);
  font-style: normal;
}

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vanilla);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(245,237,214,0.75);
  max-width: 480px;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--vanilla);
  border-color: rgba(245,237,214,0.4);
}

.btn-outline:hover {
  border-color: var(--vanilla);
  background: rgba(245,237,214,0.08);
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 0 60px rgba(122,31,46,0.6));
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,237,214,0.15);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--maroon-light);
  line-height: 1;
}

.hero-stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,237,214,0.5);
  margin-top: 0.25rem;
}

/* ===== SECTION COMMON ===== */
section {
  padding: 5rem 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--maroon);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--black);
}

.section-title em {
  color: var(--maroon);
  font-style: normal;
}

/* ===== NEWS TICKER ===== */
.ticker-wrap {
  background: var(--maroon);
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-block;
  animation: ticker 30s linear infinite;
}

.ticker-inner span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vanilla);
  padding: 0 3rem;
}

.ticker-inner span::before {
  content: '⚾';
  margin-right: 1rem;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ROSTER SECTION ===== */
.roster-section {
  background: var(--white);
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}

.player-card {
  background: var(--vanilla);
  border: 1px solid var(--vanilla-dark);
  text-align: center;
  padding: 1.5rem 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.player-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--maroon);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.player-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.player-card:hover::before { transform: scaleX(1); }

.player-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--vanilla-dark);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border: 3px solid var(--maroon);
  overflow: hidden;
}

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

.player-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-top: 0.3rem;
}

.player-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.player-pos {
  font-family: 'Crimson Pro', serif;
  font-size: 0.85rem;
  color: var(--maroon);
  font-style: italic;
}

.coaches-row {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--vanilla-dark);
}

.coaches-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.coach-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--black);
  color: var(--vanilla);
}

.coach-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.coach-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.coach-role {
  font-family: 'Crimson Pro', serif;
  font-size: 0.85rem;
  color: rgba(245,237,214,0.6);
  font-style: italic;
}

/* ===== ITINERARY SECTION ===== */
.itinerary-section {
  background: var(--vanilla);
  color: var(--black);
}

.itinerary-section .section-title { color: var(--black); }
.itinerary-section .section-title em { color: var(--maroon); }
.itinerary-section .section-eyebrow { color: var(--maroon); }
.itinerary-section .section-eyebrow::before { background: var(--maroon); }

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.65rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--maroon), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245,237,214,0.08);
}

.timeline-item:last-child { border-bottom: none; margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2.65rem;
  top: 0.25rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--maroon);
  border: 2px solid var(--maroon-light);
  box-shadow: 0 0 0 4px rgba(122,31,46,0.2);
}

.timeline-day {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 0.3rem;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 1rem;
  color: rgba(245,237,214,0.7);
  font-style: italic;
}

.timeline-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(122,31,46,0.3);
  color: var(--maroon-light);
  border: 1px solid rgba(122,31,46,0.5);
}

/* ===== FUNDRAISING SECTION ===== */
.fundraising-section {
  background: var(--vanilla);
}

.fundraising-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.fund-goal-card {
  background: var(--black);
  color: var(--vanilla);
  padding: 2.5rem;
}

.fund-goal-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,214,0.5);
  margin-bottom: 0.5rem;
}

.fund-goal-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.fund-goal-sub {
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  color: rgba(245,237,214,0.5);
  font-style: italic;
  margin-bottom: 2rem;
}

.progress-bar-wrap {
  background: rgba(255,255,255,0.08);
  height: 12px;
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--maroon), var(--maroon-light));
  transition: width 1s ease;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(245,237,214,0.6);
}

.fund-ways {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fund-ways h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.fund-card {
  background: var(--white);
  border-left: 4px solid var(--maroon);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.fund-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.fund-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.fund-card-desc {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
}

.sponsors-wrap {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--vanilla-dark);
}

.sponsors-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  margin-bottom: 2rem;
}

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

.sponsor-slot {
  background: var(--white);
  border: 2px dashed var(--vanilla-dark);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vanilla-dark);
  transition: border-color 0.2s;
}

.sponsor-slot:hover { border-color: var(--maroon); color: var(--maroon); }

/* ===== GALLERY SECTION ===== */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 0.75rem;
}

.gallery-item {
  background: var(--vanilla-dark);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-inner {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--vanilla-dark);
  background: var(--light-gray);
  transition: transform 0.3s;
  position: relative;
}

.gallery-item:first-child .gallery-item-inner { aspect-ratio: auto; height: 100%; min-height: 300px; }

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(122,31,46,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 1.5rem;
  color: white;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-placeholder-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vanilla-dark);
  text-align: center;
  padding: 1rem;
}

/* ===== BLOG SECTION ===== */
.blog-section { background: var(--vanilla); }

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.blog-featured {
  background: var(--black);
  color: var(--vanilla);
  overflow: hidden;
}

.blog-featured-img {
  height: 260px;
  background: var(--maroon-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.blog-featured-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.blog-featured-body { padding: 2rem; }

.blog-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--maroon-light);
  background: rgba(122,31,46,0.2);
  padding: 0.2rem 0.6rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: rgba(245,237,214,0.7);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.blog-meta {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,237,214,0.4);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--vanilla-dark);
}

.blog-mini {
  background: var(--white);
  padding: 1.25rem;
  transition: background 0.2s;
  cursor: pointer;
}

.blog-mini:hover { background: var(--vanilla); }

.blog-mini-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 0.4rem;
}

.blog-mini-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.blog-mini-date {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: var(--vanilla);
  padding: 3rem 0 1.5rem;
  border-top: 3px solid var(--maroon);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245,237,214,0.1);
}

.footer-brand img { height: 80px; margin-bottom: 1rem; }

.footer-brand-text {
  font-family: 'Crimson Pro', serif;
  font-size: 0.95rem;
  color: rgba(245,237,214,0.6);
  font-style: italic;
  line-height: 1.6;
  max-width: 220px;
}

.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--maroon-light);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-family: 'Crimson Pro', serif;
  font-size: 0.95rem;
  color: rgba(245,237,214,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--vanilla); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,237,214,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-logo-wrap { display: none; }
  .fundraising-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--black);
    border-top: 1px solid var(--maroon);
    z-index: 99;
  }
  .nav-links.open a { height: auto; line-height: 1; padding: 1rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .hero-stats { gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.site-footer{background:#0b0b0b;color:#fff;margin-top:24px}
.footer-mini{max-width:1200px;margin:0 auto;padding:10px 14px;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:10px}
.footer-title{font-weight:800;font-size:13px}
.footer-meta{font-size:12px;opacity:.85;margin-left:10px}
.footer-links{display:flex;flex-wrap:wrap;gap:10px;font-size:12px}
.footer-links a{color:#fff;text-decoration:none}

.event-hero img{width:100%;height:420px;object-fit:cover;object-position:center 45%}
.brewsters img{object-position:center 55%}

.thermo{background:#eee;border-radius:10px;overflow:hidden;height:20px;max-width:500px;margin:20px auto}
.bar{background:#8b1e2d;height:100%}

.object-fix {
  object-fit: cover;
  object-position: center 35%;
}
.event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card-body {
  flex-grow: 1;
}
/* ===== EVENTS GRID FIX ===== */

.events-grid,
.events-wrap,
.events-list,
.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
}

/* prevent cards stretching weird */
.event-card {
  height: auto;
}
.event-thumb-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.5rem;
  margin-top:1rem;
}

.event-thumb-grid img{
  width:100%;
  aspect-ratio:1;
  object-fit:cover;
  border-radius:4px;
}
.gallery-item-inner a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
/* ===== CINEMATIC LIGHTBOX ===== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 6px;
  transform: scale(.96);
  transition: transform .35s ease;
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  opacity: .8;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  cursor: pointer;
  padding: 12px;
  opacity: .7;
  user-select: none;
}

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.lightbox-nav:hover,
.lightbox-close:hover {
  opacity: 1;
}
/* ===== ITINERARY COLOR FIX ===== */

.itinerary-section {
  background: var(--vanilla);
  color: var(--black);
}

.itinerary-section .timeline-title {
  color: var(--black);
}

.itinerary-section .timeline-desc {
  color: var(--gray);
  opacity: 1;
}

.itinerary-section .timeline-day {
  color: var(--maroon);
}

.itinerary-section .badge {
  background: rgba(122,31,46,0.08);
  border: 1px solid rgba(122,31,46,0.25);
  color: var(--maroon);
}

.itinerary-section .timeline-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.itinerary-section .timeline-dot {
  background: var(--maroon);
  border-color: var(--maroon);
  box-shadow: 0 0 0 4px rgba(122,31,46,0.15);
}
/* ===== ITINERARY TITLE VISIBILITY FIX ===== */

.itinerary-section .section-title {
  color: var(--black);
}

.itinerary-section .section-title em {
  color: var(--maroon);
}
