:root {
  --slb-red: #E30613;
  --slb-red-deep: #A8000B;
  --slb-red-dark: #6B0008;
  --slb-white: #FFFFFF;
  --slb-cream: #F8F4EC;
  --slb-ink: #1A0A0C;
  --slb-charcoal: #2D1517;
  --slb-gold: #C9A24A;
  --slb-gold-soft: #E5C97B;

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-stencil: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--slb-ink);
  background: var(--slb-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============= NAVIGATION ============= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 10, 12, 0.92);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  transition: padding 0.3s ease;
}

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

nav .brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--slb-white);
  text-decoration: none;
}

nav .brand-mark {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

nav .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

nav .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

nav .brand-text .top {
  font-family: var(--font-stencil);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--slb-white);
}

nav .brand-text .bottom {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--slb-gold-soft);
  margin-top: 3px;
}

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

nav ul.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav ul.nav-links a {
  color: var(--slb-white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

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

nav ul.nav-links a:hover { color: var(--slb-gold-soft); }
nav ul.nav-links a:hover::after { width: 100%; }

/* Language switcher */
.lang-switch {
  display: flex;
  gap: 0;
  border: 1px solid rgba(201, 162, 74, 0.4);
  border-radius: 2px;
  overflow: hidden;
}

.lang-switch a {
  color: var(--slb-cream);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-stencil);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  transition: all 0.25s ease;
  border-right: 1px solid rgba(201, 162, 74, 0.2);
}

.lang-switch a:last-child { border-right: none; }

.lang-switch a:hover {
  background: rgba(227, 6, 19, 0.3);
  color: var(--slb-white);
}

.lang-switch a.active {
  background: var(--slb-red);
  color: var(--slb-white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--slb-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(26, 10, 12, 0.85) 0%, rgba(168, 0, 11, 0.6) 100%),
    radial-gradient(ellipse at top right, rgba(227, 6, 19, 0.4) 0%, transparent 60%),
    linear-gradient(180deg, #2D1517 0%, #1A0A0C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--slb-white);
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: -50%;
  width: 200%; height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 80px,
    rgba(255, 255, 255, 0.02) 80px,
    rgba(255, 255, 255, 0.02) 82px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  animation: fadeUp 1s ease-out;
}

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

.hero-eyebrow {
  font-family: var(--font-stencil);
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--slb-gold-soft);
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--slb-gold);
  background: rgba(201, 162, 74, 0.1);
}

.hero-crest {
  width: 180px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: crestEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

@keyframes crestEntrance {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.85);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 580px) {
  .hero-crest { width: 130px; margin-bottom: 1.5rem; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero h1 .accent {
  color: var(--slb-red);
  font-style: italic;
  display: inline-block;
  background: linear-gradient(180deg, #FF1A2E 0%, #E30613 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--slb-cream);
  margin-bottom: 2.5rem;
  opacity: 0.92;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  font-family: var(--font-stencil);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--slb-red);
  color: var(--slb-white);
  box-shadow: 0 6px 24px rgba(227, 6, 19, 0.35);
}

.btn-primary:hover {
  background: var(--slb-red-deep);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(227, 6, 19, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--slb-white);
  border: 2px solid var(--slb-white);
}

.btn-ghost:hover {
  background: var(--slb-white);
  color: var(--slb-ink);
  transform: translateY(-3px);
}

.hero-eagle {
  display: none;
}

/* ============= SECTION GENERICS ============= */
section { padding: 6rem 2rem; position: relative; }
.container { max-width: 1300px; margin: 0 auto; }

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

.section-eyebrow {
  font-family: var(--font-stencil);
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  color: var(--slb-red);
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  padding: 0 2rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--slb-red);
}

.section-eyebrow::before { left: -15px; }
.section-eyebrow::after { right: -15px; }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--slb-ink);
}

.section-title em { color: var(--slb-red); font-style: italic; }

.section-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--slb-charcoal);
  opacity: 0.75;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============= ABOUT ============= */
.about { background: var(--slb-cream); position: relative; }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--slb-ink);
}

.about-text h2 em { color: var(--slb-red); font-style: italic; }

.about-text p {
  font-size: 1.05rem;
  color: var(--slb-charcoal);
  margin-bottom: 1.2rem;
  line-height: 1.75;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat {
  border-left: 3px solid var(--slb-red);
  padding-left: 1rem;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--slb-red);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--font-stencil);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--slb-charcoal);
  margin-top: 0.3rem;
  display: block;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--slb-red) 0%, var(--slb-red-dark) 100%);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(168, 0, 11, 0.3);
}

.about-visual::before {
  content: 'E PLURIBUS UNUM';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.about-visual-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  color: var(--slb-white);
  z-index: 2;
}

.about-visual-content .since {
  font-family: var(--font-stencil);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  opacity: 0.85;
}

.about-visual-content .year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  margin-top: 0.3rem;
}

/* ============= MATCHES ============= */
.matches { background: var(--slb-ink); color: var(--slb-white); position: relative; }

.matches::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--slb-red) 0%, var(--slb-gold) 50%, var(--slb-red) 100%);
}

.matches .section-title { color: var(--slb-white); }
.matches .section-subtitle { color: var(--slb-cream); opacity: 0.8; }
.matches .section-eyebrow { color: var(--slb-gold-soft); }
.matches .section-eyebrow::before,
.matches .section-eyebrow::after { background: var(--slb-gold); }

.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.match-card {
  background: linear-gradient(135deg, #2D1517 0%, #1A0A0C 100%);
  border: 1px solid rgba(201, 162, 74, 0.2);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.match-card:hover {
  transform: translateY(-6px);
  border-color: var(--slb-red);
  box-shadow: 0 20px 50px rgba(227, 6, 19, 0.25);
}

.match-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--slb-red);
  transition: width 0.4s ease;
}

.match-card:hover::before { width: 100%; }

.match-competition {
  font-family: var(--font-stencil);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--slb-gold-soft);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.match-competition::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--slb-red);
  border-radius: 50%;
}

.match-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0;
}

.team { text-align: center; flex: 1; }

.team-crest {
  width: 50px;
  height: 50px;
  margin: 0 auto 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--slb-gold-soft);
}

.team.benfica .team-crest {
  background: var(--slb-red);
  border-color: var(--slb-gold);
  color: var(--slb-white);
}

.team-name {
  font-family: var(--font-stencil);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.match-vs {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--slb-red);
  padding: 0 1rem;
}

.match-datetime {
  border-top: 1px dashed rgba(201, 162, 74, 0.3);
  padding-top: 1rem;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.match-datetime .date { color: var(--slb-cream); }
.match-datetime .time { color: var(--slb-gold-soft); font-weight: 600; }

/* ============= EVENTS ============= */
.events { background: var(--slb-cream); }

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--slb-white);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 10, 12, 0.08);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26, 10, 12, 0.15);
}

.event-image {
  height: 220px;
  background: linear-gradient(135deg, var(--slb-red) 0%, var(--slb-red-dark) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.event-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(0,0,0,0.05) 30px, rgba(0,0,0,0.05) 32px);
}

.event-date-tag {
  position: relative;
  background: var(--slb-white);
  color: var(--slb-ink);
  padding: 0.5rem 1rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-date-tag .day {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--slb-red);
}

.event-date-tag .month {
  font-family: var(--font-stencil);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--slb-charcoal);
}

.event-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-category {
  font-family: var(--font-stencil);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--slb-red);
  margin-bottom: 0.5rem;
}

.event-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--slb-ink);
}

.event-description {
  font-size: 0.95rem;
  color: var(--slb-charcoal);
  opacity: 0.85;
  margin-bottom: 1rem;
  flex: 1;
}

.event-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--slb-charcoal);
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 10, 12, 0.08);
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ============= MENU ============= */
.menu {
  background: linear-gradient(180deg, var(--slb-ink) 0%, var(--slb-charcoal) 100%);
  color: var(--slb-white);
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--slb-red), var(--slb-gold), var(--slb-red));
}

.menu .section-title { color: var(--slb-white); }
.menu .section-subtitle { color: var(--slb-cream); opacity: 0.85; }
.menu .section-eyebrow { color: var(--slb-gold-soft); }
.menu .section-eyebrow::before,
.menu .section-eyebrow::after { background: var(--slb-gold); }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-tab {
  background: transparent;
  border: 1px solid rgba(201, 162, 74, 0.3);
  color: var(--slb-cream);
  padding: 0.7rem 1.5rem;
  font-family: var(--font-stencil);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--slb-red);
  border-color: var(--slb-red);
  color: var(--slb-white);
}

.menu-section { display: none; }
.menu-section.active { display: block; animation: fadeIn 0.5s ease; }

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 1.5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-item {
  border-bottom: 1px dashed rgba(201, 162, 74, 0.25);
  padding-bottom: 1.2rem;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--slb-white);
  flex: 1;
}

.menu-item-name .tag {
  display: inline-block;
  font-family: var(--font-stencil);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  background: var(--slb-red);
  color: var(--slb-white);
  padding: 2px 8px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.menu-item-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--slb-gold-soft);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.92rem;
  color: var(--slb-cream);
  opacity: 0.75;
  font-style: italic;
  font-family: var(--font-display);
}

.menu-note {
  text-align: center;
  margin-top: 3rem;
  color: var(--slb-cream);
  opacity: 0.7;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

/* ============= VISIT ============= */
.visit { background: var(--slb-cream); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.visit-info h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--slb-ink);
}

.visit-detail {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(26, 10, 12, 0.08);
}

.visit-detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--slb-red);
  color: var(--slb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 50%;
}

.visit-detail-label {
  font-family: var(--font-stencil);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--slb-red);
  margin-bottom: 0.2rem;
}

.visit-detail-value {
  font-size: 1rem;
  color: var(--slb-ink);
  font-weight: 500;
}

.visit-detail-value small {
  display: block;
  font-size: 0.85rem;
  color: var(--slb-charcoal);
  opacity: 0.7;
  margin-top: 0.2rem;
  font-weight: 400;
}

.visit-map {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(26, 10, 12, 0.7) 0%, rgba(168, 0, 11, 0.7) 100%);
  position: relative;
  overflow: hidden;
  color: var(--slb-white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.visit-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.visit-map-content { position: relative; z-index: 2; }

.visit-map .pin {
  width: 24px;
  height: 24px;
  background: var(--slb-red);
  border: 3px solid var(--slb-white);
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 6px rgba(227, 6, 19, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(227, 6, 19, 0.3); }
  50% { box-shadow: 0 0 0 14px rgba(227, 6, 19, 0); }
}

.visit-map h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.visit-map p { opacity: 0.85; font-size: 0.95rem; }

/* ============= FOOTER ============= */
footer {
  background: var(--slb-ink);
  color: var(--slb-cream);
  padding: 4rem 2rem 2rem;
  border-top: 4px solid var(--slb-red);
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  width: 90px;
  height: auto;
  margin-bottom: 1.2rem;
  display: block;
  filter: brightness(1.1);
}

.footer-brand .footer-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--slb-white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-brand .footer-wordmark .accent { color: var(--slb-red); }

.footer-brand p {
  opacity: 0.7;
  font-size: 0.95rem;
  max-width: 350px;
  margin-bottom: 1.5rem;
}

.footer-socials { display: flex; gap: 0.8rem; }

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slb-cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--slb-red);
  border-color: var(--slb-red);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: var(--font-stencil);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--slb-gold-soft);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }

.footer-col ul a {
  color: var(--slb-cream);
  opacity: 0.7;
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.footer-col ul a:hover {
  opacity: 1;
  color: var(--slb-red);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.55;
}

.footer-bottom .glory {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--slb-gold-soft);
  margin-bottom: 0.5rem;
  opacity: 1;
}

/* ============= HISTORY TIMELINE ============= */
.history {
  background: var(--slb-cream);
  position: relative;
  overflow: hidden;
}

.history::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background:
    radial-gradient(ellipse at top right, rgba(227, 6, 19, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.history-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

.history-timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--slb-red) 5%,
    var(--slb-red) 95%,
    transparent 100%);
  transform: translateX(-50%);
}

.history-entry {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 4rem;
  gap: 2rem;
}

.history-entry:last-child { margin-bottom: 0; }

.history-marker {
  grid-column: 2;
  width: 80px;
  height: 80px;
  background: var(--slb-red);
  color: var(--slb-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--slb-cream), 0 8px 24px rgba(227, 6, 19, 0.3);
  flex-shrink: 0;
}

.history-year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.history-card {
  background: var(--slb-white);
  box-shadow: 0 4px 24px rgba(26, 10, 12, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.history-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 10, 12, 0.15);
}

.history-left .history-card { grid-column: 1; }
.history-right .history-card { grid-column: 3; }

.history-image {
  height: 200px;
  background: linear-gradient(135deg, var(--slb-red-deep) 0%, var(--slb-red-dark) 100%);
  overflow: hidden;
  position: relative;
}

.history-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 32px),
    linear-gradient(135deg, var(--slb-red-deep) 0%, var(--slb-red-dark) 100%);
  position: relative;
}

.history-placeholder span {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: -0.02em;
}

.history-body {
  padding: 1.5rem 1.8rem 1.8rem;
}

.history-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--slb-ink);
}

.history-description {
  font-size: 0.95rem;
  color: var(--slb-charcoal);
  line-height: 1.65;
  opacity: 0.85;
}

/* ============= JUNIORS ============= */
.juniors {
  background: linear-gradient(180deg, var(--slb-ink) 0%, var(--slb-charcoal) 100%);
  color: var(--slb-white);
  position: relative;
}

.juniors::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--slb-red), var(--slb-gold), var(--slb-red));
}

.juniors .section-title { color: var(--slb-white); }
.juniors .section-subtitle { color: var(--slb-cream); opacity: 0.85; }
.juniors .section-eyebrow { color: var(--slb-gold-soft); }
.juniors .section-eyebrow::before,
.juniors .section-eyebrow::after { background: var(--slb-gold); }

.juniors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.junior-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 74, 0.2);
  padding: 2rem 1.8rem;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.junior-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--slb-red);
  transition: height 0.4s ease;
}

.junior-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--slb-red);
  transform: translateY(-4px);
}

.junior-card:hover::before { height: 100%; }

.junior-age-badge {
  display: inline-block;
  font-family: var(--font-stencil);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  background: var(--slb-red);
  color: var(--slb-white);
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.2rem;
}

.junior-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: var(--slb-white);
}

.junior-description {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--slb-cream);
  opacity: 0.85;
}

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

/* ============= MERCH ============= */
.merch {
  background: var(--slb-cream);
  position: relative;
  overflow: hidden;
}

.merch-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--slb-red) 0%, var(--slb-red-dark) 100%);
  color: var(--slb-white);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.merch-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
    repeating-linear-gradient(-45deg, transparent 0, transparent 60px, rgba(255,255,255,0.03) 60px, rgba(255,255,255,0.03) 62px);
  pointer-events: none;
}

.merch-card::after {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.merch-content {
  position: relative;
  z-index: 2;
}

.merch-badge {
  display: inline-block;
  font-family: var(--font-stencil);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  background: var(--slb-gold);
  color: var(--slb-ink);
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
}

.merch-content .section-eyebrow {
  display: block;
  margin-bottom: 0;
}

.merch h2.section-title {
  color: var(--slb-white);
  margin-bottom: 1rem;
}

.merch h2.section-title em {
  color: var(--slb-gold-soft);
}

.merch .section-subtitle {
  color: var(--slb-cream);
  opacity: 0.95;
  margin-bottom: 2rem;
}

.merch-cta-btn {
  background: var(--slb-white);
  color: var(--slb-red-dark);
  border: none;
  padding: 1rem 2.2rem;
  font-family: var(--font-stencil);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.merch-cta-btn:hover {
  background: var(--slb-gold-soft);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* ============= SPONSORS ============= */
.sponsors {
  background: var(--slb-white);
  position: relative;
}

.sponsors::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--slb-red), transparent);
}

.sponsors-platinum,
.sponsors-gold,
.sponsors-silver {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.sponsors-platinum { gap: 3rem; }
.sponsors-gold     { gap: 2.5rem; }
.sponsors-silver   { gap: 2rem; }

.sponsor {
  transition: all 0.3s ease;
}

.sponsor a, .sponsor > div {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.sponsor img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.sponsor:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.sponsor-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--slb-charcoal);
  text-align: center;
  letter-spacing: -0.01em;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(26, 10, 12, 0.12);
  background: var(--slb-cream);
  transition: all 0.3s ease;
}

.sponsor:hover .sponsor-name {
  border-color: var(--slb-red);
  color: var(--slb-ink);
  background: var(--slb-white);
  box-shadow: 0 8px 24px rgba(227, 6, 19, 0.12);
}

.sponsor-platinum .sponsor-name {
  font-size: 1.4rem;
  padding: 1.4rem 2rem;
  min-width: 240px;
}
.sponsor-platinum img { max-height: 100px; }

.sponsor-gold .sponsor-name {
  font-size: 1.15rem;
  padding: 1.1rem 1.6rem;
  min-width: 200px;
}
.sponsor-gold img { max-height: 75px; }

.sponsor-silver .sponsor-name {
  font-size: 0.95rem;
  padding: 0.85rem 1.2rem;
  min-width: 160px;
}
.sponsor-silver img { max-height: 55px; }

.sponsors-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 968px) {
  .about-grid, .visit-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .nav-toggle { display: block; }
  .nav-center {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--slb-ink);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: flex-start;
  }
  .nav-center.open { display: flex; }
  nav ul.nav-links { flex-direction: column; gap: 1.2rem; }

  section { padding: 4rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 3rem; }

  /* Timeline collapses to a single left-aligned column on tablets/mobile */
  .history-timeline::before {
    left: 40px;
  }
  .history-entry {
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .history-marker {
    grid-column: 1;
    width: 60px;
    height: 60px;
    margin-left: 10px;
  }
  .history-year { font-size: 0.95rem; }
  .history-left .history-card,
  .history-right .history-card {
    grid-column: 2;
  }
  .history-image { height: 160px; }
}

@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  nav { padding: 0.8rem 1.2rem; }
  nav .brand-text .top { font-size: 1.1rem; }
  nav .brand-mark { width: 42px; height: 42px; }

  .merch-card { padding: 2.5rem 1.5rem; }
  .sponsor-platinum .sponsor-name { font-size: 1.15rem; min-width: 0; }
  .sponsor-gold .sponsor-name { font-size: 1rem; min-width: 0; }
}
