/*
Theme Name: Bag of Smite
Theme URI: https://bagofsmite.com
Author: Smite Team
Description: Custom WordPress theme for Bag of Smite with ACF integration
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bag-of-smite
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #1A6614;
  --green-mid: #228B1A;
  --green-bright: #2EA821;
  --green-pale: #E8F5E4;
  --green-deep: #0F3D09;
  --green-glow: rgba(26,102,20,0.18);
  --black: #141418;
  --white: #FFFFFF;
  --muted: #575757;
  --light-grey: #F4F4F4;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* BACKGROUND */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at -10% 0%, rgba(31,111,24,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 110% 30%, rgba(31,111,24,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(31,111,24,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 90%, rgba(31,111,24,0.05) 0%, transparent 55%);
  pointer-events: none;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31,111,24,0.15);
}
.nav-logo img { 
    height: 64px; width: auto; display: block;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(31,111,24,0.25);
  }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green); color: #fff;
  padding: 0.6rem 1.4rem; border-radius: 99px;
  font-size: 0.88rem; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }
.tm-badge {
  font-size: 0.75rem; color: var(--muted);
  white-space: nowrap;
}

/* BUTTONS */
.btn-primary {
  background: var(--green); color: #fff;
  padding: 0.9rem 2.2rem; border-radius: 99px;
  font-size: 1rem; font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(31,111,24,0.3);
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(31,111,24,0.35); }
.btn-secondary {
  background: transparent; color: var(--black);
  padding: 0.9rem 2.2rem; border-radius: 99px;
  font-size: 1rem; font-weight: 500; text-decoration: none;
  border: 1.5px solid rgba(31,31,35,0.2);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-light {
  background: #fff; color: var(--green);
  padding: 0.9rem 2.2rem; border-radius: 99px;
  font-size: 1rem; font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.2s;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.btn-ghost {
  background: transparent; color: #fff;
  padding: 0.9rem 2.2rem; border-radius: 99px;
  font-size: 1rem; font-weight: 500; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* TYPOGRAPHY */
h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 1rem;
}
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--green); border-radius: 1px; }
.section-intro { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 560px; margin-bottom: 2.5rem; }

/* SECTIONS */
section { padding: 5rem 3rem; }
section:nth-child(even) { background: linear-gradient(180deg, var(--green-pale) 0%, #fff 100%); }

/* DIVIDERS */
.wave-divider svg { display: block; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 4rem 0;
  position: relative; overflow: hidden;
  background: #0F3D09;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.4rem 1.2rem;
  border-radius: 99px; margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -0.03em; margin-bottom: 1rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 .brand { color: var(--green); }
h1 em { font-style: italic; }
.hero-tagline {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; font-style: italic;
  color: var(--green); margin-bottom: 1rem;
  animation: fadeUp 0.6s 0.15s ease both;
}
.hero-sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.7;
  max-width: 480px; margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-visual {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  animation: fadeUp 0.6s 0.2s ease both;
  position: relative;
}
.hero-img-wrap {
  position: relative; width: 100%; max-width: 480px;
}
.hero-img-wrap img {
  width: 100%; height: auto; display: block;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(31,111,24,0.2);
}
.hero-float-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--green); color: #fff;
  border-radius: 50%; width: 100px; height: 100px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; text-align: center;
  font-size: 0.7rem; font-weight: 700; line-height: 1.2;
  box-shadow: 0 8px 24px rgba(31,111,24,0.35);
}
.hero-float-badge span { font-size: 1.1rem; }
.hero-pills {
  display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center;
}
.hero-pill {
  background: #fff; border: 1px solid rgba(31,111,24,0.2);
  border-radius: 99px; padding: 0.35rem 1rem;
  font-size: 0.8rem; font-weight: 500; color: var(--black);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* HERO VIDEO BACKGROUND */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.65;
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(5,20,4,0.88) 0%,
      rgba(5,20,4,0.75) 35%,
      rgba(5,20,4,0.45) 60%,
      rgba(5,20,4,0.10) 100%
    ),
    linear-gradient(180deg,
      rgba(5,20,4,0.4) 0%,
      rgba(5,20,4,0.1) 30%,
      rgba(5,20,4,0.1) 70%,
      rgba(5,20,4,0.5) 100%
    );
}
.hero > *:not(.hero-video-bg) {
  position: relative;
  z-index: 1;
}
.hero-text {
  position: relative;
  z-index: 2;
  padding: 0 4rem 2rem 4rem;
  max-width: 620px;
  margin-top: auto;
  background: linear-gradient(90deg, rgba(3,15,2,0.55) 0%, rgba(3,15,2,0.25) 70%, transparent 100%);
  padding-top: 3rem;
  border-radius: 0;
}
.hero-text h1, .hero-text p, .hero-text .hero-tagline, .hero-text .hero-eyebrow {
  color: #fff !important;
}
.hero-text .hero-sub {
  color: rgba(255,255,255,0.92) !important;
}
.hero-text h1 .brand {
  color: #7FE870 !important;
}
.hero-visual {
  position: relative;
  left: auto;
  transform: none;
  z-index: 2;
  width: 320px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0 0 4rem;
}
.hero-img-wrap {
  width: 100%;
  max-width: 320px;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5) !important;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-float-badge {
  width: 80px; height: 80px;
  font-size: 0.62rem;
}
.hero-float-badge span { font-size: 0.95rem; }
.hero-pills {
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
}
.hero-pill {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  background: rgba(255,255,255,0.10) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(4px);
}
.hero-eyebrow { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); }
.hero-actions .btn-secondary { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero-actions .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hero-float-badge { background: #7FE870; color: #0F3D09; box-shadow: 0 8px 32px rgba(127,232,112,0.4); }
.hero-tagline { color: #A8F09A; }

/* HERO QUOTE BOX */
.hero-quote-box {
  background: rgba(127,232,112,0.10);
  border: 1px solid rgba(127,232,112,0.3);
  border-left: 3px solid #7FE870;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-top: 0.75rem;
  max-width: 320px;
}
.hero-quote-text {
  font-family: 'Fraunces', serif;
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.90);
  line-height: 1.6;
  margin: 0;
}

/* PARTNERSHIP BADGE */
.partnership-badge {
  margin-top: 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  backdrop-filter: blur(8px);
}
.pb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pb-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pb-announcement {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7FE870;
}
.pb-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.pb-left img {
  height: 32px;
  width: auto;
  display: block;
  margin-top: 0.3rem;
}
.pb-btn {
  background: #7FE870;
  color: #0F3D09;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.pb-btn:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* STATS BAR */
.stats-bar {
  background: linear-gradient(90deg, #0F3D09 0%, #1A6614 50%, #0F3D09 100%);
  border-top: 2px solid rgba(127,232,112,0.3);
  padding: 2.5rem 3rem;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem;
}
.stat { text-align: center; color: #fff; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem; font-weight: 900;
  color: #7FE870; line-height: 1;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* GREEN STRIPE */
.green-stripe { height: 6px; background: linear-gradient(90deg, #0F3D09 0%, #1A6614 30%, #7FE870 50%, #1A6614 70%, #0F3D09 100%); }

/* STEP CARDS */
.how-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 3rem; align-items: center;
}
.how-diagram {
  background: #fff; border-radius: 24px;
  padding: 2.5rem; text-align: center;
  border: 1px solid rgba(31,111,24,0.15);
  box-shadow: 0 8px 32px rgba(31,111,24,0.08);
}
.how-diagram img { width: 100%; max-width: 260px; height: auto; display: block; margin: 0 auto; }
.how-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.step-card {
  background: #fff; border-radius: 20px; padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.06); position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.step-num {
  font-family: 'Fraunces', serif; font-size: 3.5rem; font-weight: 900;
  color: var(--green-pale); line-height: 1;
  position: absolute; top: 0.5rem; right: 0.8rem;
}
.step-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.step-title { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* SMITCH CARD */
.smitch-card {
  margin-top: 1.5rem; background: var(--green-pale);
  border: 1.5px solid rgba(31,111,24,0.2);
  border-radius: 20px; padding: 1.4rem 1.5rem;
}
.smitch-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem; }
.smitch-title { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 900; color: var(--green); }
.smitch-tag {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green);
  background: rgba(31,111,24,0.12); border-radius: 99px; padding: 0.2rem 0.7rem;
}
.smitch-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin: 0 0 1rem; }
.smitch-dims {
  display: flex; align-items: center;
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(31,111,24,0.12);
}
.smitch-dim {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; padding: 0.8rem 0.5rem; gap: 2px;
}
.smitch-dim strong { font-size: 1.1rem; color: var(--green); font-weight: 700; }
.smitch-dim span { font-size: 0.72rem; color: var(--muted); }
.smitch-divider { width: 1px; height: 48px; background: rgba(31,111,24,0.12); flex-shrink: 0; }

/* SCORING */
.rules-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.scoring-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.scoring-card { border-radius: 16px; padding: 1.2rem; border: 1px solid transparent; }
.sc-green { background: var(--green-pale); border-color: rgba(31,111,24,0.15); }
.sc-black { background: #f3f3f3; border-color: rgba(0,0,0,0.08); }
.sc-red   { background: #fff0ee; border-color: rgba(192,57,43,0.15); }
.sc-dark  { background: var(--black); border-color: transparent; }
.sc-dark .sc-title, .sc-dark .sc-desc { color: #fff; }
.sc-dark .sc-desc { color: rgba(255,255,255,0.65); }
.sc-icon  { font-size: 1.4rem; margin-bottom: 0.4rem; }
.sc-title { font-weight: 500; font-size: 0.9rem; margin-bottom: 0.3rem; }
.sc-desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.tactics-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.tactic {
  padding: 1.1rem 1.3rem; background: #fff; border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06); border-left: 3px solid var(--green);
}
.tactic-label { font-weight: 500; font-size: 0.9rem; margin-bottom: 4px; color: var(--green); }
.tactic p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0; }
.formats-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.5rem; }
.format-pill {
  background: var(--black); color: #fff;
  border-radius: 99px; padding: 0.4rem 1rem;
  font-size: 0.82rem; font-weight: 500;
}

/* WHY */
.why-section {
  background: var(--green); border-radius: 32px;
  margin: 0 2rem; padding: 5rem 4rem; color: #fff;
}
.why-section .section-label { color: rgba(255,255,255,0.7); }
.why-section .section-label::before { background: rgba(255,255,255,0.5); }
.why-section h2 { color: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 2.5rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.why-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,0.1); border-radius: 16px;
  padding: 1.2rem 1.4rem; border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}
.why-item:hover { background: rgba(255,255,255,0.15); }
.why-icon { font-size: 1.5rem; flex-shrink: 0; }
.why-item-title { font-weight: 500; margin-bottom: 2px; color: #fff; }
.why-item-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.why-quote-box {
  background: rgba(0,0,0,0.2); border-radius: 24px; padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.why-quote-box .big-quote {
  font-family: 'Fraunces', serif; font-size: 1.5rem;
  font-style: italic; line-height: 1.4; color: #fff;
  margin-bottom: 1rem;
}
.why-stats { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
.why-stat { display: flex; align-items: center; gap: 0.8rem; }
.why-stat-num {
  font-family: 'Fraunces', serif; font-size: 1.8rem;
  font-weight: 900; color: var(--green-pale); min-width: 70px;
}
.why-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* HISTORY */
.history-wrap {
  background: linear-gradient(135deg, #0F3D09 0%, #1A6614 60%, #228B1A 100%); border-radius: 32px;
  margin: 0 2rem; padding: 5rem 4rem; color: #fff;
  border: none;
}
.history-wrap h2,
.history-wrap .section-label { color: #fff; }
.history-wrap .section-label::before { background: rgba(255,255,255,0.5); }
.history-wrap .section-label { color: rgba(255,255,255,0.7); }
.history-wrap p,
.history-wrap .ms-content p { color: rgba(255,255,255,0.7); }
.history-wrap .ms-title { color: #fff; }
.history-wrap .ms-year { color: #7FE870; background: rgba(127,232,112,0.12); }
.history-wrap .milestone { border-bottom-color: rgba(255,255,255,0.1); }
.history-wrap .founders-quote { background: rgba(255,255,255,0.1); border-left-color: #7FE870; }
.history-wrap .founders-quote p { color: #fff; }
.history-wrap .founders-quote footer { color: rgba(255,255,255,0.5); }
.history-wrap .ms-new { background: rgba(127,232,112,0.08); }
.history-wrap .ms-new .ms-year { color: #7FE870; }
.history-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; margin-top: 2rem; }
.founders-quote {
  margin-top: 2rem; padding: 1.5rem;
  background: #fff; border-radius: 16px;
  border-left: 4px solid var(--green);
}
.founders-quote p {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 1.05rem; line-height: 1.6; color: var(--black);
}
.founders-quote footer { font-size: 0.82rem; color: var(--muted); margin-top: 0.8rem; font-style: normal; }
.milestones { display: flex; flex-direction: column; }
.milestone {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid rgba(31,111,24,0.15);
}
.milestone:last-child { border-bottom: none; }
.ms-year {
  font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 900;
  color: var(--green); min-width: 44px; flex-shrink: 0; padding-top: 2px;
}
.ms-title { font-weight: 500; font-size: 0.95rem; margin-bottom: 3px; color: var(--black); }
.ms-content p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; margin: 0; }
.ms-new { background: rgba(31,111,24,0.06); border-radius: 12px; padding: 1rem; border: none !important; }
.ms-new .ms-year { color: var(--green-mid); }

/* DISPLAY TYPE MOMENT */
.display-type-moment {
  text-align: center;
  padding: 4rem 3rem 3rem;
  background: var(--green-deep);
  position: relative; overflow: hidden;
}
.display-word {
  font-family: 'Fraunces', serif;
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 900; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.06);
  line-height: 0.85;
  position: relative;
}
.display-sub {
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 1.5rem;
}

/* HOW TO PLAY SECTION */
#how {
  background: linear-gradient(135deg, #0F3D09 0%, #1A6614 60%, #228B1A 100%) !important;
  color: #fff;
}
#how .section-label { color: rgba(255,255,255,0.7); }
#how .section-label::before { background: rgba(255,255,255,0.5); }
#how h2 { color: #fff; }
#how .section-intro { color: rgba(255,255,255,0.75); }
#how .how-diagram {
  background: rgba(255,255,255,0.12);
  border-color: rgba(127,232,112,0.25);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
#how .step-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}
#how .step-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
#how .step-num { color: rgba(255,255,255,0.08); }
#how .step-title { color: #fff; }
#how .step-desc { color: rgba(255,255,255,0.7); }
#how .step-icon svg { stroke: #7FE870; }
#how .smitch-card {
  background: rgba(127,232,112,0.08);
  border-color: rgba(127,232,112,0.2);
}
#how .smitch-title { color: #7FE870; }
#how .smitch-tag { color: #7FE870; background: rgba(127,232,112,0.12); }
#how .smitch-desc { color: rgba(255,255,255,0.65); }
#how .smitch-dims { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
#how .smitch-dims strong { color: #7FE870; }
#how .smitch-dims span { color: rgba(255,255,255,0.5); }
#how .smitch-divider { background: rgba(255,255,255,0.1); }
#how p { color: rgba(255,255,255,0.7); }
#how strong { color: #fff; }

/* CHAMPIONSHIPS */
.champs-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.champ-card {
  background: #fff; border-radius: 20px; padding: 2rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.06); text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.champ-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.champ-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.champ-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.3; }
.champ-location { font-size: 0.85rem; color: var(--green); font-weight: 500; margin-bottom: 4px; }
.champ-when { font-size: 0.8rem; color: var(--muted); }
.champ-icon-wrap { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: var(--green-pale); border-radius: 14px; margin: 0 auto 1rem; }

/* PARTNER BANNER */
.partner-banner {
  background: linear-gradient(135deg, #0F3D09 0%, #1A6614 60%, #228B1A 100%); border-radius: 28px; padding: 3.5rem 4rem; color: #fff;
  position: relative; overflow: hidden;
}
.partner-badge {
  display: inline-block; background: rgba(127,232,112,0.15); border: 1px solid rgba(127,232,112,0.3); color: #7FE870;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 99px; margin-bottom: 1.2rem;
}
.partner-heading {
  font-family: 'Fraunces', serif; font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900; color: #fff; line-height: 1.15;
  letter-spacing: -0.02em; max-width: 700px; margin-bottom: 1rem;
}
.partner-sub { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 620px; margin-bottom: 2rem; }
.partner-stat-row {
  display: flex; gap: 2rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
}
.partner-stat { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* JACOB SECTION */
.jacob-section {
  padding: 0;
  background: var(--black);
  overflow: hidden;
}
.jacob-full-bleed {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: flex-end;
}
.jacob-full-bleed img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  opacity: 0.7;
}
.jacob-full-bleed::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,61,9,0.1) 0%,
    rgba(15,61,9,0.3) 40%,
    rgba(10,38,8,0.92) 100%
  );
}
.jacob-overlay-text {
  position: relative; z-index: 2;
  padding: 3rem 4rem 3.5rem;
  max-width: 780px;
}
.jacob-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: #7FE870;
  margin-bottom: 1rem; display: block;
}
.jacob-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.02em; color: #fff;
  margin-bottom: 1.2rem;
}
.jacob-headline em { font-style: italic; color: #7FE870; }
.jacob-body-text {
  font-size: 1rem; color: rgba(255,255,255,0.75);
  line-height: 1.75; max-width: 620px;
}

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1rem; margin-top: 2rem; }
.gallery-col { display: flex; flex-direction: column; gap: 1rem; }
.gallery-item {
  position: relative; border-radius: 20px; overflow: hidden;
  background: var(--black); cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease, opacity 0.3s ease; opacity: 0.92;
}
.gi-tall { min-height: 480px; }
.gallery-col .gallery-item { min-height: 220px; }
.gallery-item:hover img { transform: scale(1.04); opacity: 1; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: #fff;
}
.gc-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 99px;
  font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.75rem; margin-bottom: 0.4rem;
}
.gallery-caption p { font-size: 0.85rem; line-height: 1.5; margin: 0; color: rgba(255,255,255,0.9); }
.gallery-cta {
  margin-top: 1.5rem; text-align: center; padding: 1rem 1.5rem;
  background: var(--green-pale); border-radius: 16px;
  border: 1px solid rgba(31,111,24,0.15); font-size: 0.95rem; color: var(--muted);
}

/* WHAT'S IN THE BOX */
.whats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.whats-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.whats-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.2rem; background: #fff; border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
}
.whats-icon { font-size: 1.6rem; flex-shrink: 0; }
.whats-item strong { font-size: 0.95rem; font-weight: 500; display: block; margin-bottom: 2px; }
.whats-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; margin: 0; }
.whats-img-wrap img { width: 100%; height: auto; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.testimonial {
  background: #fff; border-radius: 20px; padding: 1.8rem;
  border: 1px solid rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 1rem;
}
.stars { color: var(--green); font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.6; flex: 1; font-style: italic; }
.testimonial-author { display: flex; gap: 10px; align-items: center; }
.avatar-initial {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-weight: 500; font-size: 0.9rem; }
.author-meta { font-size: 0.78rem; color: var(--muted); }
.testimonial-featured {
  border-color: rgba(26,102,20,0.25) !important;
  background: #F0FAF0 !important;
}

/* CTA */
.cta-section {
  background: var(--green); border-radius: 32px;
  margin: 0 2rem; padding: 5rem 4rem; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-section h2 { color: #fff; font-size: clamp(2rem,4vw,3rem); }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 520px; margin: 1rem auto; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* FUNDRAISING */
.fundraising-section {
  padding: 5rem 3rem;
  background: linear-gradient(180deg, #fff 0%, var(--green-pale) 100%);
}
.fundraising-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-bottom: 4rem;
}
.fundraising-hero-text h2 { margin-bottom: 1rem; }
.fundraising-hero-text .section-intro { max-width: 100%; }
.fundraising-key-stat {
  display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2rem;
}
.fk-stat {
  background: var(--green); color: #fff;
  border-radius: 20px; padding: 1.2rem 1.8rem;
  text-align: center; flex: 1; min-width: 120px;
}
.fk-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem; font-weight: 900; color: #7FE870;
  line-height: 1;
}
.fk-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.8); margin-top: 4px; }
.fundraising-main-photo {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,102,20,0.2);
  position: relative;
}
.fundraising-main-photo img { width: 100%; height: 340px; object-fit: cover; display: block; }
.fundraising-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 1rem; margin-bottom: 3rem;
}
.mosaic-photo { border-radius: 16px; overflow: hidden; position: relative; }
.mosaic-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.mosaic-photo:hover img { transform: scale(1.04); }
.mosaic-photo.tall { grid-row: 1 / 3; }
.mosaic-photo .photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,61,9,0.8));
  color: #fff; font-size: 0.78rem; font-weight: 500;
  padding: 1.5rem 1rem 0.7rem;
}
.fundraising-how {
  background: var(--green); border-radius: 28px;
  padding: 3rem 3.5rem; color: #fff; margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.fundraising-how h3 {
  font-family: 'Fraunces', serif; font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 900; color: #fff; margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  grid-column: 1 / -1;
}
.fr-steps-new {
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fr-step-new {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.fr-step-last { border-bottom: none; }
.fr-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(127,232,112,0.15);
  border: 2px solid rgba(127,232,112,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fr-step-icon-last {
  background: rgba(127,232,112,0.25);
  border-color: #7FE870;
}
.fr-step-n {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 900;
  color: #7FE870;
  line-height: 1;
}
.fr-step-body {
  flex: 1;
  padding-top: 0.2rem;
}
.fr-step-new .fr-step-title {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.fr-step-new .fr-step-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.fr-step-arrow {
  color: rgba(127,232,112,0.4);
  font-size: 1.4rem;
  padding-top: 0.6rem;
  flex-shrink: 0;
  transform: rotate(90deg);
}
.fr-how-summary {
  grid-column: 2 / 3;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.8rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.fr-how-summary-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #7FE870;
  margin-bottom: 1rem;
}
.fr-how-stat {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fr-how-stat:last-child { border-bottom: none; }
.fr-how-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #7FE870;
  min-width: 60px;
  line-height: 1;
}
.fr-how-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.tournament-format {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 3rem;
}
.format-box {
  background: #fff; border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(26,102,20,0.1);
  box-shadow: 0 4px 20px rgba(26,102,20,0.06);
}
.format-box-title {
  font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 900;
  color: var(--green); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.format-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.format-box li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: var(--muted); line-height: 1.5;
}
.format-box li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0; margin-top: 7px;
}
.fundraising-cta {
  background: var(--green); border-radius: 24px;
  padding: 3rem; text-align: center; color: #fff;
}
.fundraising-cta h3 {
  font-family: 'Fraunces', serif; font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900; color: #fff; margin-bottom: 0.8rem;
}
.fundraising-cta p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }

/* FOOTER */
footer {
  padding: 3rem; text-align: center;
  border-top: 1px solid rgba(31,111,24,0.12);
  background: linear-gradient(180deg, #0F3D09 0%, #141418 100%);
  color: var(--muted); font-size: 0.85rem;
}
.footer-logo img { height: 52px; width: auto; display: inline-block; margin-bottom: 0.8rem; }
.footer-tagline {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 1.1rem; color: var(--green); margin-bottom: 0.5rem;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* SVG ICON CLASSES */
.svg-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex-shrink: 0; }
.svg-icon svg { width: 100%; height: 100%; }
.step-icon .svg-icon { width: 44px; height: 44px; }
.sc-icon .svg-icon { width: 36px; height: 36px; }
.why-icon .svg-icon { width: 32px; height: 32px; }
.pillar-icon .svg-icon { width: 40px; height: 40px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  section { padding: 4rem 1.5rem; }
  .why-section, .history-wrap, .cta-section { margin: 0 1rem; padding: 3rem 1.5rem; }
  .why-grid, .history-grid, .charity-grid, .whats-grid, .rules-grid { grid-template-columns: 1fr; gap: 2rem; }
  .how-layout { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .champs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-col { display: grid; gap: 1rem; }
  .gi-tall { min-height: 280px; }
  .scoring-cards { grid-template-columns: 1fr 1fr; }
  .partner-banner { padding: 2.5rem 1.5rem; }
  .fundraising-hero { grid-template-columns: 1fr; }
  .fundraising-steps { grid-template-columns: 1fr 1fr; }
  .tournament-format { grid-template-columns: 1fr; }
  .fundraising-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic-photo.tall { grid-row: auto; }
  .fundraising-how { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .fr-steps-new { grid-column: 1; }
  .fr-how-summary { grid-column: 1; }
  .fr-step-arrow { display: none; }
  .hero-text { padding: 0 1.5rem 2rem; }
  .hero-visual { width: 160px; margin: 1.5rem 0 0; }
  .hero-img-wrap { max-width: 160px; }
  .stats-bar { padding: 2rem 1.5rem; gap: 1.5rem; }
  .display-word { font-size: clamp(4rem, 22vw, 8rem); }
}

@media (max-width: 768px) {
  nav { padding: 0.8rem 1.2rem; }
  .nav-links { display: none; }
  section { padding: 3rem 1.5rem; }
  .hero { padding: 0 0 3rem 0; }
  .hero-text { padding: 0 1.5rem 2rem; }
  .hero-visual { width: 160px; margin: 1.5rem 0 0; }
  .hero-img-wrap { max-width: 160px; }
  .how-steps { grid-template-columns: 1fr; }
  .why-section { margin: 0; border-radius: 0; padding: 3rem 1.5rem; }
  .history-wrap { margin: 0; border-radius: 0; padding: 3rem 1.5rem; }
  .jacob-overlay-text { padding: 2rem 1.5rem 2.5rem; }
  .jacob-full-bleed { min-height: 55vh; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-col { display: grid; gap: 1rem; }
  .partner-banner { padding: 2rem; }
  h1 { font-size: clamp(2.2rem, 8vw, 5rem); }
  h2 { font-size: clamp(1.6rem, 5vw, 3rem); }
  .fundraising-steps { grid-template-columns: 1fr !important; }
}
