/* ── THE MALE TRUTH — SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Source+Sans+3:wght@400;600;700;900&display=swap');

:root {
  --black: #0f0f0f;
  --white: #ffffff;
  --green: #006837;
  --green-light: #4caf7d;
  --gold: #c9a84c;
  --red: #c0392b;
  --grey: #f5f5f5;
  --mid-grey: #888;
  --border: #e8e8e8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 17px; color: var(--black); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.site-nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 60px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--black); letter-spacing: -0.3px; }
.nav-logo-name span { color: var(--green); }
.nav-logo-tag { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--mid-grey); margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 600; color: #444; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta { background: var(--green); color: var(--white) !important; font-size: 13px !important; font-weight: 800 !important; padding: 8px 16px; border-radius: 6px; letter-spacing: 0.3px; }
.nav-cta:hover { background: #004d28 !important; color: var(--white) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--black); border-radius: 2px; display: block; transition: all 0.3s; }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 16px 24px; flex-direction: column; gap: 16px; }
.mobile-menu a { font-size: 16px; font-weight: 700; color: #333; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.mobile-menu.open { display: flex; }

/* ── FOOTER ── */
.site-footer { background: var(--black); color: rgba(255,255,255,0.5); padding: 48px 24px 28px; margin-top: 80px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.footer-brand-name span { color: var(--green-light); }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.65; max-width: 260px; }
.footer-col-title { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.22); max-width: 520px; line-height: 1.6; }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: var(--font-body); font-size: 16px; font-weight: 800; padding: 14px 28px; border-radius: 8px; border: none; cursor: pointer; transition: all 0.2s; letter-spacing: 0.3px; text-align: center; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: #004d28; }
.btn-gold { background: linear-gradient(180deg, #fde74e 0%, #f0a500 100%); color: var(--black); border: 2px solid #c88a10; box-shadow: 0 4px 16px rgba(224,154,24,0.35); }
.btn-gold:hover { box-shadow: 0 6px 24px rgba(224,154,24,0.5); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }

/* ── UTILS ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.text-center { text-align: center; }
.eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.display-heading { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.15; color: var(--black); }
.section-heading { font-family: var(--font-display); font-size: clamp(24px, 4vw, 36px); font-weight: 700; line-height: 1.2; color: var(--black); }
.body-lg { font-size: 19px; line-height: 1.7; color: #444; }
.gold-line { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 14px 0; }
.gold-line-center { margin: 14px auto; }
.tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 99px; }
.tag-green { background: #e8f5ee; color: var(--green); }
.tag-red { background: #fff0ee; color: var(--red); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 48px 0; }
  .display-heading { font-size: clamp(28px, 7vw, 40px); }
}
