/* =====================================================
   TRIPLE MONKEY — SHARED STYLESHEET
   Mobile-first. Designed for cPanel hand-upload.
   ===================================================== */

/* ── TOKENS ───────────────────────────────────────── */
:root {
  --char:        #141414;
  --char2:       #1c1c1c;
  --char3:       #252525;
  --char4:       #0e0e0e;
  --cream:       #f4ede1;
  --cream2:      #ece2d2;
  --felt:        #0e4d3a;
  --felt-lite:   #176a52;
  --felt-deep:   #0a3a2c;
  --gold:        #c9a84c;
  --goldhov:     #e2c06a;
  --goldfa:      rgba(201,168,76,0.10);
  --muted:       #6a6660;
  --line:        rgba(201,168,76,0.18);
  --linewhite:   rgba(244,237,225,0.08);
  --shadow-lg:   0 30px 80px rgba(0,0,0,0.4);
}

/* ── RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--char);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── TYPE ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.centred { justify-content: center; }
.eyebrow.centred::before { display: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); }
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold); }
.body-text {
  font-size: 0.96rem;
  color: rgba(244,237,225,0.6);
  font-weight: 300;
  line-height: 1.78;
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn-gold, .btn-ghost, .btn-felt {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
  min-height: 44px;
}
.btn-gold {
  background: var(--gold);
  color: var(--char);
}
.btn-gold:hover { background: var(--goldhov); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244,237,225,0.4);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(244,237,225,0.06); }
.btn-felt {
  background: var(--felt);
  color: var(--cream);
}
.btn-felt:hover { background: var(--felt-lite); transform: translateY(-2px); }

/* ── CONTAINER ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ── NAV ──────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 64px;
  background: rgba(20,20,20,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--cream);
  white-space: nowrap;
}
.wordmark em { font-style: italic; color: var(--gold); }

.nav-links {
  display: none;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,237,225,0.6);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--char) !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 2px;
  margin-left: 0.4rem;
}
.nav-cta:hover { background: var(--goldhov); color: var(--char); }

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

#nav-mobile {
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: rgba(20,20,20,0.99);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0;
  z-index: 899;
  transform: translateY(-110%);
  transition: transform 0.3s;
}
#nav-mobile.open { transform: translateY(0); }
#nav-mobile ul { list-style: none; }
#nav-mobile a {
  display: block;
  padding: 1.1rem 1.6rem;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,237,225,0.8);
  border-bottom: 1px solid var(--linewhite);
  font-weight: 500;
}
#nav-mobile a.active { color: var(--gold); }
#nav-mobile a.nav-cta {
  background: var(--gold);
  color: var(--char) !important;
  font-weight: 700;
  margin: 0.7rem 1.6rem;
  text-align: center;
  border-radius: 2px;
}

@media (min-width: 880px) {
  #nav { height: 70px; }
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  #nav-mobile { display: none; }
}

/* ── HERO (HOME — Option A) ────────────────────────── */
.hero {
  position: relative;
  padding: 100px 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url('../images/venue-full.jpg') center 12% / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(14,14,14,0.94) 0%, rgba(14,14,14,0.6) 55%, rgba(14,14,14,0.25) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(14,14,14,0.7) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  align-items: center;
}
.hero-copy { opacity: 0; animation: riseIn 0.9s 0.2s ease forwards; }
.hero-h {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 12ch;
}
.hero-h em { font-style: italic; color: var(--gold); }
.hero-sub {
  margin-top: 1.4rem;
  font-size: 1.02rem;
  color: rgba(244,237,225,0.7);
  line-height: 1.7;
  font-weight: 300;
  max-width: 440px;
}
.hero-cta {
  display: flex;
  gap: 0.7rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Right-side widget */
.hero-widget {
  background: rgba(20,20,20,0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  padding: 1.5rem 1.4rem;
  border-radius: 4px;
  opacity: 0;
  animation: riseIn 0.9s 0.5s ease forwards;
}
.widget-eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.widget-winner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.winner-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--char3);
  background-image: url('../images/winner.jpg');
  background-position: center 18%;
  background-size: cover;
  background-repeat: no-repeat;
  border: 2px solid var(--gold);
}
.winner-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
}
.winner-tag {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.league-list {
  list-style: none;
  margin-top: 0.8rem;
}
.league-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.82rem;
  color: rgba(244,237,225,0.78);
  border-bottom: 1px dashed rgba(244,237,225,0.07);
}
.league-list li:last-child { border-bottom: none; }
.league-list .rank {
  color: var(--gold);
  font-weight: 700;
  width: 22px;
  flex-shrink: 0;
}
.league-list .nm { flex: 1; }
.league-list .pts {
  font-weight: 600;
  color: var(--cream);
  flex-shrink: 0;
}
.widget-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.widget-link:hover { color: var(--goldhov); gap: 0.7rem; }

@media (min-width: 880px) {
  .hero { padding: 70px 0 0; height: 100vh; min-height: 720px; }
  .hero-inner {
    grid-template-columns: 1.25fr 1fr;
    gap: 2.5rem;
    padding: 0 2.5rem;
  }
  .hero-widget { max-width: 460px; justify-self: end; width: 100%; margin-right: 24px; }
}

/* ── THIS WEEK STRIP ──────────────────────────────── */
.this-week {
  background: var(--gold);
  padding: 1rem 0;
}
.this-week-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}
.this-week-cell {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--char);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4rem 0;
}
.this-week-cell strong {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.this-week-cell .sep {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(20,20,20,0.4);
}
@media (min-width: 740px) {
  .this-week-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 2.5rem;
  }
  .this-week-cell { padding: 0; }
}

/* ── GENERIC SECTION ───────────────────────────────── */
.section {
  padding: 4.5rem 0;
}
@media (min-width: 740px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }
.section-cream { background: var(--cream); color: var(--char); }
.section-cream .section-title { color: var(--char); }
.section-cream .section-title em { color: var(--felt); }
.section-cream .eyebrow { color: var(--felt); }
.section-cream .eyebrow::before { background: var(--felt); }
.section-cream .body-text { color: rgba(20,20,20,0.65); }
.section-felt {
  background: var(--felt);
  color: var(--cream);
}
.section-felt .section-title em { color: var(--gold); }
.section-felt .eyebrow { color: var(--gold); }
.section-alt { background: var(--char2); }

.section-head {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.section-head.centred { align-items: center; text-align: center; }
@media (min-width: 740px) {
  .section-head { margin-bottom: 3.5rem; }
  .section-head.row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

/* ── THREE WAYS TO PLAY (offer cards) ──────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
}
.offer-card {
  padding: 2.4rem 1.8rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.3s;
  display: block;
}
.offer-card:last-child { border-bottom: none; }
.offer-card:hover { background: rgba(201,168,76,0.04); }
.offer-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.35s ease;
}
.offer-card:hover::after { width: 100%; }
.offer-suit {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}
.offer-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--cream);
}
.offer-card p {
  font-size: 0.92rem;
  color: rgba(244,237,225,0.55);
  line-height: 1.7;
  font-weight: 300;
}
.offer-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.8rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  transition: gap 0.2s;
}
.offer-card:hover .offer-arrow { gap: 0.7rem; }
@media (min-width: 880px) {
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
  .offer-card { padding: 3rem 2.5rem; border-bottom: none; border-right: 1px solid var(--line); }
  .offer-card:last-child { border-right: none; }
}

/* ── ATMOSPHERE SPLIT ──────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr;
}
.split-photo {
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.split-text {
  padding: 4rem 1.5rem;
  display: flex;
  align-items: center;
}
.split-text-inner { max-width: 460px; }
.split-text h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.split-text h2 em { font-style: italic; color: var(--gold); }
.split-text p {
  color: rgba(244,237,225,0.6);
  font-size: 0.96rem;
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 1rem;
}
.split-features {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.split-feat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: rgba(244,237,225,0.78);
}
.split-feat::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; min-height: 580px; }
  .split-photo { min-height: 0; }
  .split-text { padding: 5rem 4rem; }
}

/* ── KIT BAND (chips close-up + copy) ──────────────── */
.kit-band {
  background: var(--char2);
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kit-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.kit-text h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.04;
  color: var(--cream);
  margin-bottom: 1rem;
}
.kit-text h2 em { font-style: italic; color: var(--gold); }
.kit-text p {
  color: rgba(244,237,225,0.6);
  font-size: 0.96rem;
  line-height: 1.78;
  font-weight: 300;
  max-width: 460px;
}
.kit-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  height: 360px;
}
.kit-photos > div {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2px;
}
@media (min-width: 880px) {
  .kit-band { padding: 6rem 0; }
  .kit-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .kit-photos { height: 460px; }
}

/* ── MEMBERS SAY ────────────────────────────────────── */
.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.quote-card {
  background: var(--char3);
  border: 1px solid var(--line);
  padding: 1.8rem 1.6rem;
  border-radius: 2px;
  transition: border-color 0.3s, transform 0.3s;
}
.quote-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-2px); }
.quote-card .text {
  color: rgba(244,237,225,0.7);
  font-style: italic;
  font-size: 0.96rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1rem;
}
.quote-card .author {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
@media (min-width: 880px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

/* ── GALLERY ────────────────────────────────────────── */
.gallery {
  padding: 5rem 0 0;
  overflow: hidden;
}
.gallery-scroll {
  display: flex;
  gap: 0.7rem;
  padding: 1rem 1.5rem 4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item {
  flex-shrink: 0;
  width: 75vw;
  max-width: 320px;
  height: 240px;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 2px;
  background: var(--char3);
}
.gallery-item.tall { height: 320px; width: 60vw; max-width: 240px; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }
@media (min-width: 740px) {
  .gallery-scroll { padding: 1rem 2.5rem 4rem; gap: 0.9rem; }
  .gallery-item { width: 320px; height: 240px; }
  .gallery-item.tall { width: 240px; height: 320px; }
}

/* ── BANNER (e.g. "A proper poker room") ───────────── */
.banner {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 4rem 1.5rem;
}
.banner-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,0.62);
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.banner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.04;
  color: var(--cream);
}
.banner h2 em { font-style: italic; color: var(--gold); }
.banner p {
  margin-top: 0.8rem;
  color: rgba(244,237,225,0.65);
  font-size: 0.96rem;
  font-weight: 300;
}
@media (min-width: 740px) { .banner { min-height: 460px; } }

/* ── JOIN / FORM SECTION ───────────────────────────── */
.join {
  background: var(--char2);
  padding: 4.5rem 0;
}
.join-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.join-left h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.04;
  color: var(--cream);
  margin: 0.6rem 0 1.2rem;
}
.join-left h2 em { font-style: italic; color: var(--gold); }
.join-left p {
  color: rgba(244,237,225,0.55);
  font-size: 0.96rem;
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 1.6rem;
  max-width: 460px;
}
.join-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.join-checklist li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: rgba(244,237,225,0.78);
}
.join-checklist li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--goldfa);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.form-card {
  background: var(--char3);
  border: 1px solid var(--line);
  padding: 1.8rem;
  border-radius: 2px;
}
.form-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--cream);
}
.form-card > p {
  font-size: 0.84rem;
  color: rgba(244,237,225,0.45);
  margin-bottom: 1.6rem;
  line-height: 1.6;
}
.form-row { display: flex; flex-direction: column; gap: 1rem; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
@media (max-width: 520px) { .form-2col { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  outline: none;
  width: 100%;
  border-radius: 2px;
  transition: border-color 0.2s;
  min-height: 44px;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(255,255,255,0.06);
}
.field select option { background: var(--char2); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0.4rem;
}
@media (min-width: 880px) {
  .join { padding: 7rem 0; }
  .join-inner { grid-template-columns: 1.05fr 0.95fr; gap: 5rem; align-items: center; }
  .form-card { padding: 2.4rem; }
}

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--char4);
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.footer-brand .wordmark { font-size: 1.5rem; display: inline-block; margin-bottom: 0.8rem; }
.footer-brand p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.78;
  font-weight: 300;
  max-width: 300px;
}
.footer-col h5 {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: var(--muted);
}
.footer-suits {
  letter-spacing: 0.8rem;
  color: rgba(201,168,76,0.22);
  font-size: 1rem;
}
@media (min-width: 740px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ── TOURNAMENTS: 2-COLUMN LEAGUE + TIMELINE ───────── */
.league-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 880px) {
  .league-split {
    grid-template-columns: minmax(300px, 0.85fr) 1.15fr;
    gap: 3.5rem;
  }
}

/* The standings card (left side) */
.league-card {
  background: var(--cream);
  color: var(--char);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 580px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.league-card-head {
  background: var(--felt);
  color: var(--cream);
  padding: 0.95rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.league-card-head .lc-title {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.league-card-head .lc-week {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244,237,225,0.85);
}
.standings-scroll {
  overflow-y: auto;
  flex: 1;
  position: relative;
  -webkit-overflow-scrolling: touch;
}
.standings-scroll::-webkit-scrollbar { width: 8px; }
.standings-scroll::-webkit-scrollbar-track { background: rgba(14,77,58,0.06); }
.standings-scroll::-webkit-scrollbar-thumb { background: var(--felt); border-radius: 4px; }
.standings-scroll::-webkit-scrollbar-thumb:hover { background: var(--felt-lite); }
.standings-scroll table.standings { margin: 0; width: 100%; }
.standings-scroll table.standings th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--cream2);
  border-bottom: 1px solid rgba(14,77,58,0.2);
}
.standings-scroll table.standings td.r {
  font-size: 0.92rem;
  width: 50px;
}
.standings-scroll table.standings td,
.standings-scroll table.standings th {
  padding: 0.7rem 0.85rem;
  font-size: 0.88rem;
}
.league-card-foot {
  background: rgba(14,77,58,0.06);
  border-top: 1px solid rgba(14,77,58,0.18);
  padding: 0.8rem 1.3rem;
  flex-shrink: 0;
  text-align: center;
}
.qualify-note {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--felt);
  font-weight: 700;
}

/* Timeline column on the right */
.timeline-col h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.04;
  color: var(--cream);
}
.timeline-col h2 em { font-style: italic; color: var(--gold); }

/* Winner photo + format details (replaces old hero on tournaments) */
.winner-format-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  align-items: center;
}
.winner-photo-wrap {
  height: 360px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
}
.winner-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.format-grid-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.format-grid-compact .format-cell {
  background: var(--char2);
  padding: 1rem 1.1rem;
}
.format-grid-compact .format-cell .k {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.format-grid-compact .format-cell .v {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  color: var(--cream);
  font-weight: 700;
}
.format-grid-compact .format-cell .v small {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(244,237,225,0.5);
  font-weight: 400;
  display: block;
  margin-top: 0.15rem;
  letter-spacing: 0;
}
@media (min-width: 880px) {
  .winner-format-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .winner-photo-wrap { height: 520px; }
}

/* Compact Champions League strip */
.champions-strip {
  background: var(--char2);
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.champions-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: center;
}
@media (min-width: 880px) {
  .champions-strip-inner {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
}
.champions-strip-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.15;
}
.champions-strip-title em { font-style: italic; color: var(--gold); display: block; font-size: 0.92rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-style: normal; margin-bottom: 0.3rem; font-family: 'Inter', sans-serif; }
.champions-strip-title small {
  display: block;
  font-size: 0.78rem;
  color: rgba(244,237,225,0.5);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  margin-top: 0.4rem;
  letter-spacing: 0;
  max-width: 240px;
}
.champions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.champion-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--cream);
  font-weight: 500;
}
.champion-chip::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
}

/* ── PAGE HERO (sub-pages) ─────────────────────────── */
.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 110px 0 3rem;
}
.page-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.97) 0%, rgba(14,14,14,0.45) 55%, rgba(14,14,14,0.12) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(244,237,225,0.6);
  line-height: 1.7;
  font-weight: 300;
  max-width: 540px;
}
@media (min-width: 740px) { .page-hero { padding: 130px 0 4.5rem; min-height: 82vh; } }

/* ── REVEAL ANIMATION ──────────────────────────────── */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ── COOKIE CONSENT BANNER ─────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1000;
  background: rgba(20,20,20,0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.9rem 1.1rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: stretch;
}
@media (min-width: 600px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}
.cookie-banner p {
  font-size: 0.8rem;
  color: rgba(244,237,225,0.7);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  cursor: pointer;
  min-height: 36px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: inherit;
}
.cookie-btn-gold {
  background: var(--gold);
  color: var(--char);
  border: 1px solid var(--gold);
}
.cookie-btn-gold:hover { background: var(--goldhov); border-color: var(--goldhov); }
.cookie-btn-ghost {
  background: transparent;
  color: rgba(244,237,225,0.75);
  border: 1px solid rgba(244,237,225,0.25);
}
.cookie-btn-ghost:hover {
  color: var(--cream);
  border-color: rgba(244,237,225,0.5);
}

/* ── ACCESSIBILITY ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
