/* Shared styles for Together We Leadership inner pages */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; margin: 0; line-height: 1.2; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

:root {
  --gold: #caa25b;
  --gold-dark: #b48a47;
  --cream: #f5f1ea;
  --ink: #1a1a1a;
  --ink-soft: #2a2a2a;
  --muted: #6b6b6b;
  --line: #e5e1d8;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Top nav */
.site-nav {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: #fff;
}
.site-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-left: 62px; /* clear room for fixed hamburger */
}

/* Hamburger menu (fixed top-left) */
.hamburger-btn {
  position: fixed;
  top: 22px;
  left: 22px;
  z-index: 1100;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.35));
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger-btn:hover { transform: scale(1.08); }
.hamburger-btn.is-open { opacity: 0; pointer-events: none; }
.hamburger-btn span {
  display: block;
  width: 28px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  z-index: 1050;
}
.menu-overlay.is-open { opacity: 1; pointer-events: auto; }

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 300px;
  max-width: 85vw;
  background: #fff;
  z-index: 1080;
  transform: translateX(-100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 16px rgba(0,0,0,.12);
}
.side-menu.is-open { transform: translateX(0); }
.side-menu-head {
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.side-menu-head .menu-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.menu-close {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  padding: 0 4px;
  font-family: inherit;
}
.menu-close:hover { color: var(--ink); }
.side-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  overflow-y: auto;
  flex: 1;
}
.side-menu-nav a {
  display: block;
  padding: 11px 22px;
  font-size: 14px;
  color: var(--ink);
  border-left: 3px solid transparent;
  transition: background .15s, border-color .15s, color .15s;
}
.side-menu-nav a:hover {
  background: var(--cream);
  border-left-color: var(--gold);
  color: var(--gold-dark);
}
.side-menu-nav .menu-section {
  padding: 14px 22px 6px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.side-menu-tagline {
  padding: 16px 22px 20px;
  border-top: 1px solid var(--line);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 14px;
}
.site-nav .brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
}
.site-nav .back {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.site-nav .back:hover { color: var(--gold-dark); }

/* Page header */
.page-head {
  text-align: center;
  padding: 64px 24px 40px;
  background: var(--cream);
}
.page-head .eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.page-head h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 8px; }
.page-head .page-sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 18px;
  margin-bottom: 16px;
}
.page-head p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 16px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  font-family: inherit;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* Generic content section */
.section { padding: 60px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 10px; }
.section-head p { color: var(--muted); }

/* Resource / option cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cards.three { grid-template-columns: repeat(3, 1fr); }
.resource-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.resource-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.06); transform: translateY(-2px); }
.resource-card .tag {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.resource-card h3 { font-size: 22px; margin-bottom: 8px; }
.resource-card .author { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.resource-card p { color: var(--muted); font-size: 14px; margin-bottom: 22px; flex: 1; }
.resource-card .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Coming soon placeholder */
.coming-soon {
  background: var(--cream);
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 32px;
  text-align: center;
  color: var(--muted);
  font-style: italic;
  grid-column: 1 / -1;
}

/* Sign-up callout */
.signup-cta {
  background: var(--ink);
  color: #fff;
  padding: 48px 24px;
  text-align: center;
  border-radius: 6px;
  margin-top: 40px;
}
.signup-cta h2 { font-size: clamp(24px, 2.8vw, 32px); color: #fff; margin-bottom: 10px; }
.signup-cta p { color: #c8c8c8; max-width: 540px; margin: 0 auto 22px; font-size: 15px; }

/* Footer */
.site-footer {
  background: #fff;
  padding: 40px 0 28px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.site-footer a { color: var(--gold-dark); }

/* Responsive */
@media (max-width: 760px) {
  .cards, .cards.three { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .page-head { padding: 48px 20px 32px; }
}
