/* ── TEAM HERO OVERRIDES ── */
.hero { padding: 40px 24px 32px; }
.hero-flag { font-size: 52px; margin-bottom: 12px; line-height: 1; }
.hero h1 { font-size: clamp(28px, 5vw, 56px); margin-bottom: 10px; }
.hero h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0.9;
}
.hero-body {
  font-size: 15px;
  color: rgba(253,250,244,0.55);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.stat-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: rgba(253,250,244,0.7);
}
.stat-chip strong { color: var(--gold-light); }

/* ── INLINE BODY LINKS ── */
.section-label + div a { color: var(--grass); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(42,107,58,0.3); }
.section-label + div a:hover { color: var(--grass-light); border-bottom-color: rgba(61,143,80,0.5); }

/* ── OTHER TEAMS ── */
.other-teams { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.other-teams-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.team-links { display: flex; flex-wrap: wrap; gap: 8px; }
.team-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
}
.team-link:hover { border-color: var(--gold); color: var(--gold); background: var(--bg); }

/* ── FOOD GUIDE CALLOUT ── */
.food-guide-callout {
  max-width: 1100px;
  margin: 0 auto 0;
  padding: 0 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  max-width: 1100px;
  margin: 0 24px 32px;
  flex-wrap: wrap;
}
@media (min-width: 700px) {
  .food-guide-callout { margin: 0 auto 32px; max-width: 1100px; padding: 20px 32px; }
}
.fgc-icon { font-size: 32px; flex-shrink: 0; }
.fgc-body { flex: 1; min-width: 160px; }
.fgc-label { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.fgc-text { font-size: 13px; color: var(--ink2); line-height: 1.5; }
.fgc-link {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.18s;
  flex-shrink: 0;
}
.fgc-link:hover { background: var(--gold-light); }
