/* ═══════════════════════════════════════════
   OLYMPIAD GLOBAL TALENT — Shared Stylesheet
   ═══════════════════════════════════════════ */

:root {
  --red:       #B22234;
  --red-dark:  #8B1A27;
  --beige:     #F5F0E8;
  --beige-mid: #EDE6D6;
  --beige-dark:#D9CFBA;
  --white:     #FFFFFF;
  --ink:       #1A1410;
  --ink-soft:  #3D2E25;
  --muted:     #7A6A5E;
  --gold:      #C9A84C;
  --radius:    4px;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--beige); color: var(--ink); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── PAGE ENTRY ANIMATION ── */
main { animation: fadeUp 0.35s ease both; }
@keyframes fadeUp { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }

/* ════════════ TOP BAR ════════════ */
.topbar {
  background: var(--red-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-align: center;
  padding: 7px 20px;
}
.topbar strong { color: var(--gold); }

/* ════════════ NAVBAR ════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.logo-crest {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-crest svg { width: 26px; height: 26px; fill: var(--white); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main  { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--red-dark); letter-spacing: 0.02em; }
.logo-sub   { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links li a {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-links li a:hover         { color: var(--red); background: rgba(178,34,52,0.06); }
.nav-links li a.active        { color: var(--red); font-weight: 600; }
.nav-links li a.nav-cta       { background: var(--red) !important; color: var(--white) !important; padding: 8px 20px !important; }
.nav-links li a.nav-cta:hover { background: var(--red-dark) !important; }
.hamburger { display: none; }

/* ════════════ HERO ════════════ */
.hero {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, #C94A55 100%);
  color: var(--white);
  padding: 100px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.65); font-weight: 500; margin-bottom: 10px; }
.hero-motto {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  font-weight: 400;
  color: var(--gold, #d4a84b);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.hero h1 { font-family: var(--serif); font-size: clamp(40px, 5vw, 62px); font-weight: 600; line-height: 1.08; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-desc { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.82); margin-bottom: 36px; font-weight: 300; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 36px;
}
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat { text-align: center; padding: 20px; }
.stat-num { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--white); line-height: 1; }
.stat-num span { color: var(--gold); }
.stat-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 6px; }
.stat-divider { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 4px 0; }

/* ════════════ BUTTONS ════════════ */
.btn-primary {
  background: var(--white); color: var(--red-dark);
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 32px; border: none; cursor: pointer;
  border-radius: var(--radius); transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--beige); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn-ghost {
  background: transparent; color: var(--white);
  font-family: var(--sans); font-weight: 500; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 32px; border: 1.5px solid rgba(255,255,255,0.45);
  cursor: pointer; border-radius: var(--radius); transition: all 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline {
  background: transparent; color: var(--red);
  border: 1.5px solid var(--red);
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 28px; border-radius: var(--radius);
  cursor: pointer; transition: all 0.2s; width: 100%;
  display: inline-block; text-align: center;
}
.btn-outline:hover { background: var(--red); color: var(--white); }

.btn-white {
  background: var(--white); color: var(--red-dark); border: none;
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 28px; border-radius: var(--radius);
  cursor: pointer; transition: all 0.2s; width: 100%;
  display: inline-block; text-align: center;
}
.btn-white:hover { background: var(--beige); }

.btn-red {
  background: var(--red); color: var(--white);
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 36px; border: none; cursor: pointer;
  border-radius: var(--radius); transition: all 0.2s;
  align-self: flex-start; display: inline-block;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(178,34,52,0.25); }

/* ════════════ SECTIONS ════════════ */
section { padding: 80px 32px; }
.container { max-width: 1280px; margin: 0 auto; }
.section-label { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 10px; }
.section-title { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; color: var(--ink); line-height: 1.15; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 560px; line-height: 1.65; margin-bottom: 48px; }

/* ════════════ MARQUEE ════════════ */
.marquee-strip { background: var(--red-dark); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 30s linear infinite; }
.marquee-item { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.75); padding: 0 40px; }
.marquee-item::before { content: '◆'; color: var(--gold); margin-right: 40px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════ PROCESS STEPS ════════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { padding: 36px 28px; background: var(--white); border: 1px solid var(--beige-dark); border-right: none; position: relative; }
.step:last-child { border-right: 1px solid var(--beige-dark); }
.step-num { font-family: var(--serif); font-size: 52px; font-weight: 700; color: rgba(178,34,52,0.12); line-height: 1; margin-bottom: 12px; }
.step h4 { font-family: var(--serif); font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.65; }
.step::after { content: '→'; position: absolute; right: -16px; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--red); background: var(--white); padding: 4px; z-index: 1; }
.step:last-child::after { display: none; }

/* ════════════ CARDS ════════════ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.card { background: var(--white); border-radius: 6px; border: 1px solid var(--beige-dark); overflow: hidden; transition: all 0.25s; cursor: pointer; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,20,16,0.10); }
.card-img  { height: 180px; background: var(--beige-mid); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.card-body { padding: 24px; }
.card-tag  { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.card h3   { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.25; }
.card p    { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.card-link { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); border-bottom: 1.5px solid var(--red); padding-bottom: 1px; }

/* ════════════ TESTIMONIALS ════════════ */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.testimonial { background: var(--white); border: 1px solid var(--beige-dark); border-radius: 6px; padding: 32px; }
.testimonial-quote { font-family: var(--serif); font-size: 18px; font-style: italic; line-height: 1.6; color: var(--ink-soft); margin-bottom: 20px; }
.testimonial-quote::before { content: '\201C'; font-size: 48px; color: var(--red); line-height: 0; vertical-align: -18px; margin-right: 4px; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; background: var(--beige-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.testimonial-name   { font-size: 14px; font-weight: 600; color: var(--ink); }
.testimonial-school { font-size: 12px; color: var(--red); font-weight: 500; letter-spacing: 0.06em; }

/* ════════════ ABOUT ════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-block  { position: relative; }
.about-img-placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--beige-mid), var(--beige-dark)); border-radius: 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border: 2px dashed var(--beige-dark); color: var(--muted); }
.upload-badge { position: absolute; bottom: -18px; right: -18px; background: var(--red); color: var(--white); padding: 18px 24px; border-radius: 6px; font-family: var(--serif); font-size: 28px; font-weight: 700; text-align: center; box-shadow: 0 8px 24px rgba(178,34,52,0.3); }
.upload-badge small { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; opacity: 0.8; margin-top: 2px; }
.value-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.value-list li::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--red); margin-top: 8px; }

/* ── Founders ── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
.founder-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.founder-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s;
}
.founder-card:hover .founder-img { transform: scale(1.03); }
.founder-body { padding: 28px 32px 32px; }
.founder-name  { font-family: var(--serif); font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.founder-title { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 16px; }
.founder-bio   { font-size: 15px; color: var(--muted); line-height: 1.75; }
.founder-credentials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.founder-credentials li {
  padding-left: 14px;
  border-left: 3px solid var(--red);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cred-role   { font-size: 14px; font-weight: 700; color: var(--ink); }
.cred-org    { font-size: 13px; font-weight: 600; color: var(--red-dark, var(--red)); }
.cred-detail { font-size: 12px; color: var(--muted); line-height: 1.5; }

@media (max-width: 720px) {
  .founders-grid { grid-template-columns: 1fr; }
}

/* ════════════ SERVICES ════════════ */

/* Sticky jump-nav */
.services-jumpnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 48px;
  position: sticky;
  top: 68px; /* matches nav height */
  z-index: 10;
  background: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--beige-dark);
}
.services-jumpnav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--beige-dark);
  background: var(--beige);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.services-jumpnav a:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* Scroll offset so sticky nav doesn't cover headings */
#test-prep, #essay-strategy, #extracurricular { scroll-margin-top: 130px; }
#pricing { scroll-margin-top: 80px; }

.service-card { background: var(--beige); border: 1px solid var(--beige-dark); border-left: 4px solid var(--red); border-radius: 0 6px 6px 0; padding: 28px 28px 28px 32px; transition: all 0.25s; }
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.service-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.service-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.service-tags    { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.service-tags span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; background: var(--beige-dark); padding: 4px 10px; border-radius: 2px; color: var(--ink-soft); font-weight: 500; }

/* ════════════ CORE VALUES ════════════ */
.values-section { background: var(--white); padding: 80px 32px; }
.values-section .section-label { color: var(--red); }
.values-section .section-title { color: var(--ink); }
.values-section .section-title em { color: var(--red); }
.values-section .section-sub { color: var(--muted); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: 16px;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}
/* Per-card accent colors */
.value-card:nth-child(1) { border-top: 4px solid #B22234; }
.value-card:nth-child(1) .value-letter { color: #B22234; }
.value-card:nth-child(1):hover { background: #fff8f8; }

.value-card:nth-child(2) { border-top: 4px solid #1a6fa8; }
.value-card:nth-child(2) .value-letter { color: #1a6fa8; }
.value-card:nth-child(2):hover { background: #f5f9ff; }

.value-card:nth-child(3) { border-top: 4px solid #1e8c5e; }
.value-card:nth-child(3) .value-letter { color: #1e8c5e; }
.value-card:nth-child(3):hover { background: #f4fbf7; }

.value-letter {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.value-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.value-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 860px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ════════════ PRICING ════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; }
.pricing-card { background: var(--white); border: 1px solid var(--beige-dark); border-radius: 6px; padding: 36px 32px; transition: all 0.2s; }
.pricing-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-3px); }
.pricing-card.featured { background: var(--red-dark); color: var(--white); border-color: var(--red-dark); }
.pricing-card.featured .pricing-sub,
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.7); }
.pricing-card.featured .pricing-title { color: var(--white); }
.pricing-card.featured .pricing-price { color: var(--gold); }
.pricing-badge { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.pricing-title { font-family: var(--serif); font-size: 24px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.pricing-sub   { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.pricing-price { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--red-dark); margin-bottom: 24px; }
.pricing-price span { font-size: 13px; font-weight: 400; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature { font-size: 13px; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.pricing-feature::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.pricing-card.featured .pricing-feature::before { color: var(--gold); }

/* ════════════ GALLERY ════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.gallery-item { aspect-ratio: 3/4; background: var(--beige-mid); border-radius: 6px; border: 1px solid var(--beige-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; transition: all 0.2s; cursor: pointer; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.placeholder { border: 2px dashed var(--beige-dark); }
.gallery-item.placeholder:hover { border-color: var(--red); }
.gallery-item .ph-label { font-size: 12px; color: var(--muted); text-align: center; padding: 0 16px; }

/* ════════════ EVENTS ════════════ */
.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-row { background: var(--white); border: 1px solid var(--beige-dark); border-radius: 6px; padding: 20px 28px; display: grid; grid-template-columns: 80px 1fr auto; gap: 24px; align-items: center; transition: all 0.2s; }
.event-row:hover { border-color: var(--red); }
.event-date  { text-align: center; background: var(--red); color: var(--white); border-radius: 4px; padding: 10px 8px; }
.event-date .day   { font-family: var(--serif); font-size: 28px; font-weight: 700; line-height: 1; }
.event-date .month { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 2px; }
.event-title { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); }
.event-desc  { font-size: 13px; color: var(--muted); margin-top: 3px; }
.event-badge { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; background: rgba(178,34,52,0.1); color: var(--red); }

/* ════════════ RESOURCES ════════════ */
.resource-tabs { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.tab-btn { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 20px; border: 1.5px solid var(--beige-dark); background: var(--white); border-radius: 100px; cursor: pointer; transition: all 0.2s; color: var(--muted); }
.tab-btn:hover       { border-color: var(--red); color: var(--red); }
.tab-btn.active      { background: var(--red); border-color: var(--red); color: var(--white); }
.resource-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.resource-item  { background: var(--white); border: 1px solid var(--beige-dark); border-radius: 6px; padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: all 0.2s; cursor: pointer; }
.resource-item:hover { border-color: var(--red); box-shadow: 0 6px 24px rgba(178,34,52,0.08); }
.resource-icon  { width: 48px; height: 48px; background: var(--beige-mid); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.resource-name  { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.resource-meta  { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }
.resource-upload { border: 2px dashed var(--beige-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; padding: 32px; color: var(--muted); transition: border-color 0.2s; }
.resource-upload:hover { border-color: var(--red); color: var(--red); }
.resource-upload .upload-icon { font-size: 32px; }
.resource-upload span { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; }

/* ════════════ BLOG ════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card  { background: var(--white); border-radius: 6px; border: 1px solid var(--beige-dark); overflow: hidden; transition: all 0.25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,20,16,0.1); }
.blog-img  { height: 200px; background: linear-gradient(135deg, var(--beige-mid), var(--beige-dark)); display: flex; align-items: center; justify-content: center; font-size: 48px; border-bottom: 1px solid var(--beige-dark); }
.blog-body { padding: 24px; }
.blog-meta { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 10px; }
.blog-body h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.25; margin-bottom: 10px; }
.blog-body p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ════════════ CONTACT / SOCIAL ════════════ */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--social-color, var(--red));
  transform: scaleX(0);
  transition: transform 0.25s;
}
.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  border-color: var(--social-color, var(--red));
}
.social-card:hover::before { transform: scaleX(1); }
.social-icon {
  width: 64px; height: 64px;
  background: var(--beige-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  transition: background 0.25s;
}
.social-card:hover .social-icon {
  background: color-mix(in srgb, var(--social-color, var(--red)) 12%, transparent);
}
.social-platform { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.social-handle   { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); }
.social-action   { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--social-color, var(--red)); }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.contact-info-card {
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  border-left: 4px solid var(--red);
  border-radius: 0 6px 6px 0;
  padding: 28px;
}
.contact-info-card h4 { font-family: var(--serif); font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.contact-info-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }
.contact-info-card a  { color: var(--red); font-weight: 500; }
.contact-info-card a:hover { text-decoration: underline; }

/* ════════════ FOOTER ════════════ */
footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: 60px 32px 32px; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-main { color: var(--white); font-size: 22px; }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-col h5  { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; font-weight: 600; }
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { max-width: 1280px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: var(--gold); }

/* ════════════ INFO CALLOUT ════════════ */
.info-callout { background: var(--beige); border-left: 4px solid var(--gold); padding: 24px 28px; border-radius: 0 6px 6px 0; }
.info-callout h4 { font-family: var(--serif); font-size: 20px; margin-bottom: 8px; }
.info-callout p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 900px) {
  .hero-inner, .about-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: 1px solid var(--beige-dark); }
  .step::after { display: none; }
}
@media (max-width: 600px) {
  section { padding: 56px 20px; }
  .hero  { padding: 60px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 60px 1fr; }
  .event-badge { display: none; }
  .steps { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   2026 ACHIEVEMENT BANNER
   ════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   FACEBOOK FEED — index & blog
   ════════════════════════════════════════════ */

.fb-feed-section { background: var(--white); padding: 80px 32px; }

/* 3-col social preview grid */
.social-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: 28px;
  margin-top: 48px;
  align-items: start;
}
.social-preview-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.threads-preview-stack { display: flex; flex-direction: column; gap: 12px; }
.threads-card-sm .threads-card-body { display: none; } /* hide body text on small cards */
.threads-card-sm { border-radius: 12px; }

@media (max-width: 960px) {
  .social-preview-grid { grid-template-columns: 1fr 1fr; }
  .social-preview-grid > .social-preview-col:last-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .social-preview-grid { grid-template-columns: 1fr; }
}
/* ── Social platform rows (Latest Updates two-row layout) ── */
.social-platform-row { margin-top: 48px; }
.social-platform-row + .social-platform-row {
  margin-top: 40px;
  border-top: 1px solid var(--beige-dark, #e8e2d9);
  padding-top: 40px;
}
.social-platform-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.social-platform-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.social-embed-area { min-height: 400px; }
.threads-embeds-wrap { display: flex; flex-direction: column; gap: 16px; }
.threads-cta-inner {
  background: #0a0a0a !important;
}
.threads-cta-inner h3 { color: #fff !important; }
.threads-cta-inner p { color: rgba(255,255,255,0.6) !important; }
@media (max-width: 860px) {
  .social-platform-grid { grid-template-columns: 1fr; }
}

.fb-feed-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}
.fb-feed-embed { min-height: 620px; }
.fb-feed-cta-inner {
  background: var(--beige);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fb-cta-logo {
  width: 72px; height: 72px;
  border-radius: 12px;
  object-fit: cover;
}
.fb-feed-cta-inner h3 { font-size: 22px; margin: 0; }
.fb-feed-cta-inner p  { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }
.fb-follow-btn { text-align: center; }

/* ── blog.html tabs ── */
.blog-hero { background: var(--beige); padding: 64px 32px 0; }
.blog-tabs {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  border-bottom: 2px solid var(--beige-dark);
  padding-bottom: 0;
}
.blog-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.blog-tab:hover { color: var(--ink); }
.blog-tab.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ── blog post grid ── */
.blog-platform-section { background: var(--beige); padding: 48px 32px 80px; }
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}
/* native embed wrappers sit naturally in the grid */
.blog-posts-grid .fb-post,
.blog-posts-grid blockquote.text-post-media { width: 100% !important; }
.fb-iframe-post {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

/* placeholder cards shown until real posts are added */
.blog-post-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 260px;
  border: 2px dashed var(--beige-dark);
  border-radius: 14px;
  color: var(--muted);
  text-align: center;
  padding: 32px;
}
.blog-post-placeholder p { font-size: 14px; font-weight: 500; margin: 0; }
.blog-post-placeholder span { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.placeholder-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.placeholder-icon.threads { background: #000; font-family: var(--sans); }

/* ── Threads branded post cards ── */
.threads-card {
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.threads-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}
.threads-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.threads-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}
.threads-avatar img { width: 100%; height: 100%; object-fit: cover; }
.threads-handle {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.threads-platform {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
  letter-spacing: 0.06em;
}
.threads-icon {
  width: 22px; height: 22px;
  color: rgba(255,255,255,0.5);
  margin-left: auto;
  flex-shrink: 0;
}
.threads-card-body {
  flex: 1;
  padding: 20px;
  background: linear-gradient(160deg, #111 0%, #1a1a1a 100%);
}
.threads-card-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}
.threads-card-footer {
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.threads-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.threads-card:hover .threads-cta { color: #fff; }

/* follow bar at bottom of each tab */
.blog-follow-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 32px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.blog-follow-bar span { font-size: 15px; font-weight: 500; color: var(--ink); }

@media (max-width: 860px) {
  .fb-feed-grid { grid-template-columns: 1fr; }
  .fb-feed-cta-inner { padding: 28px 20px; }
  .blog-posts-grid { grid-template-columns: 1fr; }
  .blog-follow-bar { flex-direction: column; text-align: center; }
}

.achievement-section { background: var(--beige); padding: 80px 32px; }
.achievement-banner-wrap {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.achievement-banner-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ════════════════════════════════════════════
   HALL OF FAME CAROUSEL
   ════════════════════════════════════════════ */

.hof-section {
  background: var(--ink);
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}

/* subtle cross-hatch texture overlay */
.hof-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hof-header {
  max-width: 1280px;
  margin: 0 auto 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.hof-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.hof-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.hof-title em {
  font-style: italic;
  color: var(--gold);
}

.hof-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ── Arrow buttons ── */
.hof-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.hof-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.hof-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ── Track ── */
.hof-viewport {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.hof-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Individual slide ── */
.hof-slide {
  flex: 0 0 calc((100% - 32px) / 3);   /* 3 visible on desktop */
  min-width: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  position: relative;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.hof-slide:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: var(--gold);
  z-index: 2;
}

.hof-slide img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  background: rgba(255,255,255,0.03);
  display: block;
  transition: transform 0.4s ease;
}

.hof-slide:hover img { transform: scale(1.04); }

/* gold shimmer bar on hover */
.hof-slide::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e8c97a, var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.hof-slide:hover::after { transform: scaleX(1); }

/* ── Dot indicators ── */
.hof-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.hof-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 3px;
}

/* ── Counter badge ── */
.hof-counter {
  text-align: center;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

/* ── Lightbox ── */
@keyframes hof-zoom-in {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
.hof-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 72px;
}
.hof-lightbox.open { display: flex; }
.hof-lightbox-img {
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  border: 1px solid rgba(201,168,76,0.3);
  animation: hof-zoom-in 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.hof-lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  font-size: 32px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}
.hof-lightbox-close:hover { color: var(--gold); }
.hof-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.hof-lightbox-nav:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.hof-lightbox-prev { left: 16px; }
.hof-lightbox-next { right: 16px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hof-slide { flex: 0 0 calc((100% - 16px) / 2); }  /* 2 visible on tablet */
}
@media (max-width: 560px) {
  .hof-section { padding: 56px 20px; }
  .hof-slide { flex: 0 0 80%; }                       /* 1+ visible on mobile */
}
