/* ============================================================
   BLANKNER CUP — Master Stylesheet
   "The North Versus The South"
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --gold:       #D4AF37;
  --gold-light: #E8C94A;
  --gold-dark:  #A8892A;
  --charcoal:   #1A1A1A;
  --black:      #0D0D0D;
  --gray-bg:    #F4F4F4;
  --gray-mid:   #E0E0E0;
  --gray-dark:  #888;
  --white:      #FFFFFF;
  --navy:       #0B1E3D;
  --navy-mid:   #122850;

  --font-serif:  'Playfair Display', 'Georgia', serif;
  --font-alt:    'Cormorant Garamond', serif;
  --font-sans:   'Montserrat', sans-serif;

  --nav-h:    72px;
  --radius:   4px;
  --shadow:   0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:0 20px 60px rgba(0,0,0,0.20);
  --transition: 0.3s ease;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--gray-bg);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem auto;
}
.gold-rule.left { margin-left: 0; }

/* ── Navigation ────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.25);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand .brand-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-brand .brand-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 1.5rem 2rem;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-drawer.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-drawer a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.nav-drawer a:hover { color: var(--gold); }

/* ── Page Header (shared) ──────────────────────────────── */
.page-header {
  margin-top: var(--nav-h);
  padding: 5rem 2rem 3.5rem;
  text-align: center;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(212,175,55,0.03) 40px,
    rgba(212,175,55,0.03) 41px
  );
}
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  position: relative;
}
.page-header h1 span { color: var(--gold); }
.page-header p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  font-family: var(--font-sans);
  position: relative;
}

/* ── Sections ──────────────────────────────────────────── */
.section {
  padding: 5rem 2rem;
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--charcoal);
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 3rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(212,175,55,0.15);
}
.site-footer .footer-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.site-footer .footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.68rem; color: rgba(255,255,255,0.2); }

/* ============================================================
   INDEX.HTML — HOME
   ============================================================ */

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?w=1800&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.75) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(0,0,0,0.80) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 860px;
  animation: heroFadeUp 1.2s ease both;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-title .cup { color: var(--gold); display: block; }
.hero-divider {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  opacity: 0.7;
}
.hero-tagline {
  font-family: var(--font-alt);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-cue i { color: var(--gold); font-size: 1rem; }

/* Scoreboard Ribbon */
.score-ribbon {
  background: var(--charcoal);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 2px solid var(--gold);
}
.score-ribbon .score-team {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.score-ribbon .score-number {
  font-size: 2rem;
  font-weight: 900;
}
.score-ribbon .north { color: var(--white); }
.score-ribbon .north .score-number { color: var(--white); }
.score-ribbon .south { color: var(--gold); }
.score-ribbon .south .score-number { color: var(--gold); }
.score-ribbon .vs-sep {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.3);
  margin: 0 2rem;
  text-transform: uppercase;
}

/* Next Event Card */
.next-event-section {
  background: var(--white);
  padding: 5rem 2rem;
}
.next-event-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.next-event-img {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.next-event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.next-event-img:hover img { transform: scale(1.04); }
.next-event-img .img-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
}
.next-event-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
}
.next-event-info h2 span { color: var(--gold); }
.next-event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}
.next-event-meta .meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-dark);
}
.next-event-meta .meta-row i {
  color: var(--gold);
  width: 16px;
  text-align: center;
}

/* Highlights Strip */
.highlights-section {
  padding: 5rem 2rem;
  background: var(--gray-bg);
}
.highlights-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.highlight-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.highlight-card .card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.highlight-card .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.highlight-card:hover .card-img img { transform: scale(1.06); }
.highlight-card .card-body {
  padding: 1.5rem;
}
.highlight-card .card-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.highlight-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.highlight-card p {
  font-size: 0.83rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* Series Summary Strip */
.series-strip {
  background: var(--charcoal);
  padding: 4rem 2rem;
  text-align: center;
}
.series-strip .strip-inner {
  max-width: 900px;
  margin: 0 auto;
}
.series-strip h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.series-strip h2 em {
  color: var(--gold);
  font-style: italic;
}
.series-strip p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.stat-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-item .stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
  display: block;
}

/* ============================================================
   HISTORY.HTML
   ============================================================ */

.history-hero {
  margin-top: var(--nav-h);
  background: linear-gradient(160deg, #0f1f0f 0%, #1a2e1a 40%, #111a11 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.history-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.09) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.05) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255,255,255,0.012) 50px, rgba(255,255,255,0.012) 51px);
}
.history-hero-content { position: relative; max-width: 700px; }
.history-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.history-hero h1 span { color: var(--gold); }
.history-hero p {
  font-family: var(--font-alt);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
}

.founders-section {
  background: linear-gradient(180deg, #1a2e1a 0%, #0f1f0f 100%);
  padding: 5rem 2rem;
}
.founders-inner {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 2px;
  padding: 4rem;
}
.founders-title {
  text-align: center;
  margin-bottom: 3rem;
}
.founders-title h2 {
  font-size: 2rem;
  color: var(--white);
}
.founders-title h2 span { color: var(--gold); }

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.founder-card { text-align: center; }
.founder-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(212,175,55,0.1);
}
.founder-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.founder-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.founder-card .founder-title {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.founder-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.history-narrative {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(212,175,55,0.15);
  text-align: center;
}
.history-narrative p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.9;
  max-width: 660px;
  margin: 0 auto 1.25rem;
}
.history-narrative p:first-child {
  font-family: var(--font-alt);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
}

.narrative-img-wrap {
  max-width: 560px;
  margin: 2rem auto;
  border: 1px solid rgba(212,175,55,0.25);
  padding: 0.6rem;
}
.narrative-img-wrap img {
  width: 100%;
  display: block;
  filter: sepia(0.2) contrast(1.05);
}

.trophy-section {
  background: linear-gradient(160deg, #111a11 0%, #1e301e 50%, #0f1a0f 100%);
  padding: 5rem 2rem;
  text-align: center;
}
.trophy-section h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.trophy-section h2 span { color: var(--gold); }
.trophy-section p {
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 0.9rem;
}
.trophy-img-wrap {
  max-width: 440px;
  margin: 0 auto;
  border: 1px solid rgba(212,175,55,0.25);
  padding: 1rem;
}
.trophy-img-wrap img {
  width: 100%;
  filter: sepia(0.2) contrast(1.05);
}

/* ============================================================
   RESULTS.HTML
   ============================================================ */

.scoreboard-header {
  margin-top: var(--nav-h);
  background: var(--black);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.scoreboard-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 4rem;
}
.scoreboard-team .team-name {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.scoreboard-team .team-score {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}
.scoreboard-team .team-record {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  opacity: 0.5;
  font-family: var(--font-sans);
}
.sb-north .team-name { color: rgba(255,255,255,0.5); }
.sb-north .team-score { color: var(--white); }
.sb-south .team-name { color: var(--gold-dark); }
.sb-south .team-score { color: var(--gold); }
.sb-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0 3rem;
}
.sb-divider .divider-line {
  width: 1px;
  height: 60px;
  background: rgba(212,175,55,0.3);
}
.sb-divider .vs-text {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* Timeline */
.timeline-section {
  padding: 5rem 2rem;
  background: var(--gray-bg);
}
.timeline-inner {
  max-width: 820px;
  margin: 0 auto;
}
.timeline {
  position: relative;
  padding: 1rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold) 5%, var(--gold) 95%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.tl-card {
  flex: 1;
  background: var(--white);
  border-radius: 2px;
  padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-left: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tl-card:hover {
  box-shadow: var(--shadow);
}
.timeline-item:nth-child(odd) .tl-card {
  border-left: none;
  border-right: 3px solid transparent;
}
.tl-card.north-win { border-left-color: var(--charcoal); }
.tl-card.south-win { border-left-color: var(--gold); }

.tl-year {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-dark);
  display: block;
  margin-bottom: 0.25rem;
}
.tl-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.tl-venue {
  font-size: 0.78rem;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.tl-venue i { color: var(--gold); font-size: 0.7rem; }

.tl-score-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}
.tl-score-badge.north { background: var(--charcoal); color: var(--white); }
.tl-score-badge.south { background: var(--gold); color: var(--charcoal); }

.tl-dot {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--gray-bg);
  z-index: 2;
  box-shadow: 0 0 0 2px var(--gold);
}

/* ============================================================
   WINNERS.HTML & MVP.HTML
   ============================================================ */

.winner-hero-card {
  margin-top: var(--nav-h);
  background: var(--charcoal);
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.winner-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: center;
}
.winner-hero-photo {
  position: relative;
}
.winner-hero-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 12px 12px 0 rgba(212,175,55,0.2), -4px -4px 0 rgba(212,175,55,0.1);
}
.winner-hero-photo .photo-label {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  background: var(--gold);
  color: var(--charcoal);
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem;
}
.winner-hero-info { color: var(--white); }
.winner-hero-info .latest-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1.25rem;
}
.winner-hero-info h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.25rem;
  color: var(--white);
}
.winner-hero-info .winner-year {
  color: var(--gold);
  font-size: 1rem;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.5rem;
}
.winner-hero-info .winner-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.winner-hero-info .w-stat .w-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.winner-hero-info .w-stat .w-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
  display: block;
}

/* Player Cards Grid */
.players-grid-section {
  padding: 5rem 2rem;
  background: var(--gray-bg);
}
.players-grid-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.players-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}
.player-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.player-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.player-card .pc-photo {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.player-card .pc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(0.15);
}
.player-card:hover .pc-photo img { transform: scale(1.06); filter: grayscale(0); }
.player-card .pc-body {
  padding: 1.25rem;
  border-top: 2px solid transparent;
}
.player-card.north-card .pc-body { border-top-color: var(--charcoal); }
.player-card.south-card .pc-body { border-top-color: var(--gold); }
.player-card .pc-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--charcoal);
}
.player-card .pc-year {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.player-card .pc-detail {
  font-size: 0.78rem;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.player-card .pc-detail i { font-size: 0.7rem; color: var(--gold); }

/* ============================================================
   TEAMS.HTML
   ============================================================ */

.teams-hero {
  margin-top: var(--nav-h);
  background: var(--charcoal);
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 2px solid var(--gold);
}
.teams-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
}
.teams-hero h1 span { color: var(--gold); }
.teams-hero p {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Transitions for dynamic transitions between selections */
.split-screen { transition: opacity 0.25s ease-in-out; }
.split-screen.fading { opacity: 0; }

/* Override standard layout grid when showing the updated champions single column layout */
.split-screen:has(.champions-section) {
  display: block;
  min-height: auto;
  background: var(--black);
}

.team-side {
  padding: 4rem 3rem;
}
.team-side.north-side {
  background: var(--charcoal);
}
.team-side.south-side {
  background: #1C1408;
  border-left: 2px solid rgba(212,175,55,0.3);
}

.team-side-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.team-side-header .team-crest {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
}
.north-side .team-crest {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.south-side .team-crest {
  background: rgba(212,175,55,0.12);
  border: 2px solid rgba(212,175,55,0.4);
  color: var(--gold);
}
.team-side-header h2 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.north-side .team-side-header h2 { color: var(--white); }
.south-side .team-side-header h2 { color: var(--gold); }
.team-side-header .team-record-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  margin-top: 0.5rem;
}
.north-side .team-record-badge {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}
.south-side .team-record-badge {
  background: rgba(212,175,55,0.15);
  color: var(--gold);
}

.team-players-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.team-player-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.north-side .team-player-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}
.south-side .team-player-card:hover {
  background: rgba(212,175,55,0.07);
  border-color: rgba(212,175,55,0.3);
}

.team-player-card .tpc-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.team-player-card .tpc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.85);
  transition: filter 0.4s ease;
}
.team-player-card:hover .tpc-photo img {
  filter: grayscale(0) brightness(0.95);
}
.team-player-card .tpc-info {
  padding: 1rem;
}
.team-player-card .tpc-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}
.north-side .tpc-name { color: var(--white); }
.south-side .tpc-name { color: var(--gold-light); }
.team-player-card .tpc-pos {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 0.75rem;
}
.south-side .tpc-pos { color: rgba(212,175,55,0.45); }
.team-player-card .tpc-record {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.25rem;
}
.tpc-record .rec-item {
  text-align: center;
  padding: 0.4rem 0.25rem;
  background: rgba(0,0,0,0.2);
  border-radius: 2px;
}
.tpc-record .rec-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.south-side .rec-num { color: var(--gold); }
.tpc-record .rec-label {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-top: 2px;
}

/* ── Upgraded Dynamic Champions Roster Views (Aesthetic Additions) ── */
.year-selector-bar {
  background: #141414;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.year-selector-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.year-select {
  background: #1f1f1f;
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.5rem 2rem 0.5rem 1rem;
  border-radius: 3px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D4AF37' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  transition: all 0.25s;
}
.year-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(212,175,55,0.2);
}
.year-select option { background: #1a1a1a; color: var(--white); }
.year-result-badge.win-badge {
  margin-left: auto;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.25);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
}

.champions-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.champions-header { text-align: center; margin-bottom: 3.5rem; }
.champions-header .team-crest {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 10px rgba(212,175,55,0.15));
}
.champions-header h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.champions-venue-sub {
  font-family: var(--font-alt);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  margin-top: 0.4rem;
}

/* Strict 2-Column Grid Formulation */
.champions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.champions-grid .team-player-card {
  background: linear-gradient(135deg, #191919 0%, #131313 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  gap: 1.25rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.25s ease;
}
.champions-grid .team-player-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,0.4);
  border-left-color: var(--gold-light);
}
.champions-grid .team-player-card .tpc-photo {
  width: 50px;
  height: 50px;
  background: #242424;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}
.champions-grid .team-player-card .tpc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}
.champions-grid .team-player-card .tpc-info { text-align: left; padding: 0; }
.champions-grid .team-player-card .tpc-name {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  color: #f0f0f0;
  letter-spacing: 0.3px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .next-event-inner { gap: 2.5rem; }
  .winner-hero-inner { grid-template-columns: 280px 1fr; gap: 2.5rem; }
  .team-side { padding: 3rem 2rem; }
}

@media (max-width: 900px) {
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .players-grid { grid-template-columns: repeat(2, 1fr); }
  .founders-grid { gap: 2rem; }

  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: column; padding-left: 48px; }
  .timeline-item .tl-card { text-align: left; border-left: 3px solid transparent; border-right: none; }
  .timeline-item .tl-card.north-win { border-left-color: var(--charcoal); }
  .timeline-item .tl-card.south-win { border-left-color: var(--gold); }
  .tl-dot { left: 20px; }

  .split-screen { grid-template-columns: 1fr; }
  .south-side { border-left: none; border-top: 2px solid rgba(212,175,55,0.3); }
}

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

  .hero-actions { flex-direction: column; align-items: center; }

  .next-event-inner { grid-template-columns: 1fr; gap: 2rem; }
  .winner-hero-inner { grid-template-columns: 1fr; }
  .winner-hero-photo img { max-height: 340px; object-position: top; }
  .winner-hero-info .winner-stats { gap: 1.5rem; }

  .scoreboard-header { flex-wrap: nowrap; gap: 0; padding: 2.5rem 1rem; }
  .scoreboard-team { padding: 0 .75rem; }
  .scoreboard-team .team-score { font-size: 3rem; }
  .sb-divider { padding: 0 1.25rem; }
  .sb-divider .divider-line { height: 44px; }

  .score-ribbon { flex-wrap: wrap; gap: 0.5rem; }
  .score-ribbon .vs-sep { margin: 0 1rem; }

  .highlights-grid { grid-template-columns: 1fr; }
  .players-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .team-players-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  
  /* Make champions grid single file on mobile layouts */
  .champions-grid { grid-template-columns: 1fr; gap: 1rem; }
  .year-selector-bar { padding: 1rem; gap: 0.75rem; }
  .year-result-badge.win-badge { margin-left: 0; width: 100%; text-align: center; }

  .founders-grid { grid-template-columns: 1fr; }
  .founders-inner { padding: 2.5rem 1.5rem; }

  .site-nav { padding: 0 1.25rem; }
  .section { padding: 3.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .players-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 2rem; }
  .team-players-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }

  .scoreboard-header { padding: 2rem .5rem; }
  .scoreboard-team { padding: 0 .4rem; }
  .scoreboard-team .team-name { font-size: .55rem; letter-spacing: .15em; }
  .scoreboard-team .team-score { font-size: 2.25rem; }
  .scoreboard-team .team-record { font-size: .55rem; }
  .sb-divider { padding: 0 .5rem; gap: .35rem; }
  .sb-divider .divider-line { height: 32px; }
  .sb-divider .vs-text { font-size: .55rem; }
}

/* --- Belt History Section --- */
.belt-history-intro {
  padding: 80px 20px 40px;
  background-color: #ffffff;
  text-align: center;
}

.belt-history-intro .intro-container {
  max-width: 750px;
  margin: 0 auto;
}

.belt-history-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin: 0.5rem 0 1rem;
  font-weight: 700;
}

.belt-history-intro .belt-description {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #444;
  font-style: italic;
  margin-top: 1.5rem;
}

/* Custom Gold Rule for this section */
.gold-rule-center {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #D4AF37, transparent);
  margin: 0 auto;
}

.section-eyebrow-alt {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

/* ── Belt History Intro ── */
.belt-history-intro {
  margin-top: var(--nav-h); /* Pushes it down so it doesn't hide behind the fixed nav */
  padding: 5rem 2rem;
  background: var(--gray-bg);
}

.belt-history-inner {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3.5rem 2.5rem;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow); /* Gives it that 3D popping out effect */
  border-top: 3px solid var(--gold); /* Optional: adds a nice gold accent line at the top */
}

.belt-history-inner p {
  color: var(--gray-dark);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
/* ── Archive Help CTA (mvp.html / winners.html) ─────────── */
.archive-help-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px dashed var(--gold-dark);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
}
.archive-help-card i.fa-clock-rotate-left {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.archive-help-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.archive-help-card p {
  color: var(--gray-dark);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ── Forms Page ──────────────────────────────────────────── */
.forms-hero {
  margin-top: var(--nav-h);
  background: var(--black);
  padding: 4.5rem 2rem 3.5rem;
  text-align: center;
}
.forms-hero h1 { font-size: clamp(2rem,4vw,3rem); color: var(--white); }
.forms-hero h1 span { color: var(--gold); }
.forms-hero p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 1rem auto 0; font-size: 0.95rem; line-height: 1.7; }

.forms-contact-strip {
  background: var(--charcoal);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.forms-contact-strip span { color: rgba(255,255,255,0.55); font-size: 0.85rem; letter-spacing: 0.05em; }
.forms-contact-strip a { color: var(--gold); font-weight: 700; font-size: 0.95rem; }
.forms-contact-strip a:hover { color: var(--gold-light); }

.form-section { padding: 4rem 2rem; background: var(--gray-bg); }
.form-wrap { max-width: 640px; margin: 0 auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.75rem; }
.form-wrap h2 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-wrap .form-sub { color: var(--gray-dark); font-size: 0.88rem; margin-bottom: 2rem; line-height: 1.6; }

.form-row { margin-bottom: 1.4rem; }
.form-row label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.5rem; }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  background: var(--gray-bg);
  color: var(--charcoal);
  transition: border-color var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 560px) { .form-grid-2 { grid-template-columns: 1fr; gap: 0; } }

.form-submit-btn { width: 100%; justify-content: center; margin-top: 0.5rem; font-size: 0.78rem; }
.form-note { font-size: 0.78rem; color: var(--gray-dark); margin-top: 1.25rem; line-height: 1.6; text-align: center; }
.form-status { display: none; text-align: center; padding: 2.5rem; }
.form-status.success { display: block; }
.form-status i { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.form-status h3 { font-family: var(--font-serif); margin-bottom: 0.5rem; }
.form-status p { color: var(--gray-dark); font-size: 0.9rem; }
