/* =============================================
   EVERLOVING PRIDE — Global Stylesheet
   /css/style.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@font-face { font-family: 'Cooper'; src: url('../fonts/Cooper-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Cooper'; src: url('../fonts/Cooper-Italic.woff2') format('woff2'); font-weight: 400; font-style: italic; }
@font-face { font-family: 'Cooper'; src: url('../fonts/Cooper-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; }
@font-face { font-family: 'Cooper'; src: url('../fonts/Cooper-MediumItalic.woff2') format('woff2'); font-weight: 500; font-style: italic; }
@font-face { font-family: 'Cooper'; src: url('../fonts/Cooper-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; }
@font-face { font-family: 'Cooper'; src: url('../fonts/Cooper-SemiBoldItalic.woff2') format('woff2'); font-weight: 600; font-style: italic; }
@font-face { font-family: 'Cooper'; src: url('../fonts/Cooper-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; }
@font-face { font-family: 'Cooper'; src: url('../fonts/Cooper-BoldItalic.woff2') format('woff2'); font-weight: 700; font-style: italic; }
@font-face { font-family: 'Cooper'; src: url('../fonts/Cooper-ExtraBold.woff2') format('woff2'); font-weight: 800; font-style: normal; }
@font-face { font-family: 'Cooper'; src: url('../fonts/Cooper-ExtraBoldItalic.woff2') format('woff2'); font-weight: 800; font-style: italic; }
@font-face { font-family: 'Cooper'; src: url('../fonts/Cooper-Black.woff2') format('woff2'); font-weight: 900; font-style: normal; }
@font-face { font-family: 'Cooper'; src: url('../fonts/Cooper-BlackItalic.woff2') format('woff2'); font-weight: 900; font-style: italic; }

/* ── TOKENS ── */
:root {
  --purple-deep:  #181146;
  --purple-mid:   #5d587e;
  --gold:         #ddc639;
  --red:          #d04727;
  --white:        #ffffff;
  --font-head:    'Cooper', Georgia, serif;
  --font-body:    'Poppins', sans-serif;
  --text-primary:   rgba(255,255,255,1.0);
  --text-secondary: rgba(255,255,255,0.88);
  --text-tertiary:  rgba(255,255,255,0.78);
  --text-muted:     rgba(255,255,255,0.60);
  --text-dim:       rgba(255,255,255,0.40);
  --page-pad:  60px;
  --page-max:  1100px;
  --body-max:  880px;
  --body-pad:  40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: var(--font-body); background: var(--purple-deep); color: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
.site-nav { display: flex; align-items: center; justify-content: space-between; padding: 22px var(--page-pad); border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; background: var(--purple-deep); }
.wordmark { font-family: var(--font-head); font-weight: 600; font-size: 20px; color: var(--white); text-decoration: none; transition: color 0.2s; z-index: 101; }
.wordmark:hover { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.65; transition: opacity 0.2s, color 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; z-index: 101; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform 0.25s, opacity 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 14px 32px; background: var(--red); color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: 13px; text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; transition: background 0.2s, color 0.2s, transform 0.15s; }
.btn:hover { background: var(--gold); color: var(--purple-deep); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

/* ── EYEBROW ── */
.eyebrow { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; display: block; }

/* ── PAGE HEADERS ── */
.page-header { padding: 80px var(--page-pad) 60px; max-width: 1100px; }
.page-header h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(36px, 5vw, 60px); line-height: 1.08; margin-bottom: 24px; }
.page-header .intro { font-size: 18px; font-weight: 300; color: var(--text-secondary); max-width: 780px; line-height: 1.85; }

/* ── ARTICLE HEADER ── */
.article-header { background: var(--purple-deep); padding: 80px var(--page-pad) 64px; }
.article-header h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(30px, 4.5vw, 58px); line-height: 1.08; color: var(--white); max-width: 860px; }

/* ── ARTICLE BODY ── */
.article-body { background: #ffffff; max-width: var(--body-max); margin: 0 auto; padding: 72px var(--body-pad) 100px; }
.article-body p { font-size: 18px; font-weight: 300; line-height: 1.85; color: #2f2f2f; margin-bottom: 28px; }
.article-body h2 { font-family: var(--font-head); font-weight: 600; font-size: 26px; color: var(--purple-deep); margin: 56px 0 24px; }
.article-body em { font-style: italic; }
.article-body ul { margin: 0 0 28px 24px; }
.article-body ul li { font-size: 18px; font-weight: 300; line-height: 1.85; color: #2f2f2f; margin-bottom: 8px; }
.article-pull-quote { border-left: 3px solid var(--red); padding: 24px 32px; margin: 48px 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(20px, 2.5vw, 26px); line-height: 1.3; color: var(--purple-deep); }

/* ── PEDAGOGY BLOCKS ── */
.pblock { background: #f4f3f9; border-left: 3px solid var(--purple-deep); padding: 28px 32px; margin: 40px 0; border-radius: 0 4px 4px 0; }
.pblock .plabel, .plabel { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--purple-mid); margin-bottom: 12px; display: block; }
.pblock p { font-size: 16px; color: #2f2f2f; margin-bottom: 0; }
.pblock p + p { margin-top: 14px; }
.pblock ul { margin: 12px 0 0 20px; }
.pblock ul li { font-size: 16px; font-weight: 300; color: #2f2f2f; line-height: 1.75; margin-bottom: 6px; }

/* ── ARTICLE NAV ── */
.article-nav { background: var(--purple-deep); padding: 40px var(--page-pad); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.article-nav a { color: var(--white); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.65; transition: opacity 0.2s, color 0.2s; }
.article-nav a:hover { opacity: 1; color: var(--gold); }

/* ── STRATEGY NAV ── */
.strategy-nav { background: var(--purple-deep); padding: 40px var(--page-pad); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.strategy-nav a { color: var(--white); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.65; transition: opacity 0.2s, color 0.2s; }
.strategy-nav a:hover { opacity: 1; color: var(--gold); }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; background: rgba(255,255,255,0.06); }
.card { background: var(--purple-deep); padding: 44px 40px; text-decoration: none; color: inherit; transition: background 0.2s; display: block; }
.card:hover { background: rgba(208,71,39,0.08); }
.card-tag { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; display: block; }
.card h3 { font-family: var(--font-head); font-weight: 600; font-size: 21px; line-height: 1.3; margin-bottom: 14px; }
.card p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.90); line-height: 1.75; }
.card .arrow { display: inline-block; margin-top: 20px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.card:hover .arrow { color: var(--gold); }

/* ── PULL QUOTE (dark bg) ── */
.pull-quote { border-left: 3px solid var(--red); padding: 24px 32px; margin: 48px 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(20px, 2.5vw, 26px); line-height: 1.3; color: var(--white); }

/* ── ACTION BLOCKS ── */
.actions { background: #f4f3f9; border-left: 3px solid var(--purple-deep); padding: 28px 32px; margin: 32px 0; border-radius: 0 4px 4px 0; }
.actions-label { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple-mid); margin-bottom: 16px; display: block; }
.action-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.action-list li { font-size: 16px; font-weight: 300; color: #2f2f2f; line-height: 1.65; padding-left: 22px; position: relative; }
.action-list li::before { content: '→'; position: absolute; left: 0; color: var(--red); font-size: 13px; top: 2px; }

/* ── INDEX ── */
.hero { max-width: var(--page-max); margin: 0 auto; padding: 80px var(--page-pad) 60px; }
.hero-eyebrow-wrap { text-align: center; margin-bottom: 40px; }
.hero-columns { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; margin-bottom: 48px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(36px, 5vw, 64px); line-height: 1.05; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--red); }
.hero p { font-size: 17px; font-weight: 300; color: var(--text-secondary); line-height: 1.85; margin-bottom: 40px; }
.hero-logo img { max-width: 100%; height: auto; max-height: 320px; }
.statement { border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 80px var(--page-pad); }
.statement-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.statement h2 { font-family: var(--font-head); font-weight: 600; font-size: clamp(26px, 3.5vw, 40px); line-height: 1.25; margin-bottom: 24px; }
.statement p { font-size: 17px; font-weight: 300; color: var(--text-secondary); line-height: 1.85; }
.section { max-width: var(--page-max); margin: 0 auto; padding: 80px var(--page-pad); }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 40px; display: block; }
.tool-cta { margin: 0 var(--page-pad) 80px; background: rgba(208,71,39,0.08); border: 1px solid rgba(208,71,39,0.18); padding: 64px; text-align: center; }
.tool-cta h2 { font-family: var(--font-head); font-weight: 600; font-size: clamp(28px, 4vw, 48px); margin-bottom: 20px; line-height: 1.15; }
.tool-cta p { font-size: 17px; font-weight: 300; color: var(--text-secondary); max-width: 560px; margin: 0 auto 36px; line-height: 1.8; }

/* ── ARTICLES LIST ── */
.articles-list { max-width: 1100px; margin: 0 auto; padding: 0 60px 100px; }
.article-row { display: grid; grid-template-columns: 80px 1fr; gap: 40px; align-items: start; padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.08); text-decoration: none; color: inherit; transition: background 0.2s; }
.article-row:hover .article-title { color: var(--gold); }
.article-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.article-num { font-family: var(--font-head); font-weight: 600; font-size: 28px; color: var(--red); opacity: 0.4; padding-top: 4px; }
.article-tag { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 6px; }
.article-status { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.45); display: block; margin-bottom: 12px; }
.article-row > div:last-child { min-width: 0; }
.article-title { font-family: var(--font-head); font-weight: 600; font-size: clamp(20px, 2.5vw, 28px); line-height: 1.2; margin-top: 4px; margin-bottom: 12px; transition: color 0.2s; }
.article-excerpt { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.90); line-height: 1.75; max-width: 580px; margin-bottom: 16px; }
.article-link { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.article-row:hover .article-link { color: var(--gold); }
.article-row.coming { cursor: default; }
.article-row.coming .article-title, .article-row.coming .article-excerpt { opacity: 0.4; }
.article-row.coming .article-link { display: none; }
.article-row.coming h2 { color: rgba(255,255,255,0.4); }

/* ── RESOURCES LIST ── */
.resources-list { max-width: 1100px; margin: 0 auto; padding: 0 60px 100px; }
.resource-row { display: grid; grid-template-columns: 80px 1fr; gap: 40px; align-items: start; padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.08); text-decoration: none; color: inherit; transition: background 0.2s; }
.resource-row:hover .resource-title { color: var(--gold); }
.resource-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.resource-num { font-family: var(--font-head); font-weight: 600; font-size: 28px; color: var(--red); opacity: 0.4; padding-top: 4px; }
.resource-tag { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 8px; }
.resource-title { font-family: var(--font-head); font-weight: 600; font-size: clamp(20px, 2.5vw, 28px); line-height: 1.2; margin-bottom: 12px; transition: color 0.2s; }
.resource-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.90); line-height: 1.75; max-width: 580px; margin-bottom: 16px; }
.resource-link { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.resource-row:hover .resource-link { color: var(--gold); }
.resource-row.coming .resource-title, .resource-row.coming .resource-desc { opacity: 0.4; }
.resource-row.coming .resource-link { display: none; }

/* ── STRATEGIES LIST ── */
.strategies-list { max-width: 1100px; margin: 0 auto; padding: 0 60px 100px; }
.strategy-row { display: grid; grid-template-columns: 80px 1fr; gap: 40px; align-items: start; padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.08); text-decoration: none; color: inherit; transition: background 0.2s; }
.strategy-row:hover .strategy-title { color: var(--gold); }
.strategy-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.strategy-num { font-family: var(--font-head); font-weight: 600; font-size: 28px; color: var(--red); opacity: 0.4; padding-top: 4px; }
.strategy-title { font-family: var(--font-head); font-weight: 600; font-size: clamp(20px, 2.5vw, 28px); line-height: 1.2; margin-bottom: 12px; transition: color 0.2s; }
.strategy-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.82); line-height: 1.75; max-width: 580px; margin-bottom: 16px; }
.strategy-arrow { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.strategy-row:hover .strategy-arrow { color: var(--gold); }
.strategy-row.coming .strategy-title, .strategy-row.coming .strategy-desc { opacity: 0.4; }
.strategy-row.coming .strategy-arrow { display: none; }

/* ── STRATEGY PAGES ── */
.strategy-header { background: var(--purple-deep); padding: 80px var(--page-pad) 64px; }
.strategy-header .eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }
.strategy-header .number { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; display: block; }
.strategy-header h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(30px, 4.5vw, 54px); line-height: 1.08; color: var(--white); max-width: 860px; }
.strategy-body { background: #ffffff; max-width: var(--body-max); margin: 0 auto; padding: 72px var(--body-pad) 100px; }
.strategy-body p { font-size: 18px; font-weight: 300; line-height: 1.85; color: #2f2f2f; margin-bottom: 28px; }
.strategy-body h3 { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: var(--purple-deep); margin: 48px 0 18px; }

/* ── ABOUT ── */
.about-header { padding: 80px var(--page-pad) 0; max-width: 1100px; }
.about-header h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(36px, 5vw, 60px); line-height: 1.08; }
.about-body { max-width: var(--body-max); margin: 0 auto; padding: 64px var(--body-pad) 100px; }
.about-body p { font-size: 18px; font-weight: 300; color: var(--text-secondary); line-height: 1.85; margin-bottom: 28px; }
.about-body h2 { font-family: var(--font-head); font-weight: 600; font-size: 24px; color: var(--white); margin: 56px 0 20px; line-height: 1.2; }
.contact-line { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.contact-line a { color: var(--white); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); transition: border-color 0.2s, color 0.2s; }
.contact-line a:hover { color: var(--gold); border-color: var(--gold); }

/* ── COLLABORATORS ── */
.collab-header { padding: 80px var(--page-pad) 60px; max-width: 1100px; }
.collab-header h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(36px, 5vw, 60px); line-height: 1.08; margin-bottom: 24px; }
.collab-header .intro { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.88); max-width: 780px; line-height: 1.85; }
.collab-body { background: #ffffff; max-width: var(--body-max); margin: 0 auto; padding: 64px var(--body-pad) 100px; }
.collab-body p { font-size: 18px; font-weight: 300; line-height: 1.85; color: #2f2f2f; margin-bottom: 28px; }
.collab-body h2 { font-family: var(--font-head); font-weight: 600; font-size: 24px; color: var(--purple-deep); margin: 56px 0 20px; line-height: 1.2; }
.scripture { border-left: 3px solid var(--red); padding: 24px 32px; margin: 40px 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(18px, 2.5vw, 23px); line-height: 1.4; color: var(--purple-deep); }
.scripture cite { display: block; font-family: var(--font-body); font-weight: 400; font-size: 14px; color: var(--purple-mid); margin-top: 10px; font-style: normal; }
.contribute-box { background: #f4f3f9; border-radius: 4px; padding: 36px 40px; margin: 40px 0; }
.contribute-box h3 { font-family: var(--font-head); font-weight: 600; font-size: 20px; color: var(--purple-deep); margin-bottom: 16px; }
.contribute-box p { font-size: 16px; font-weight: 300; color: #2f2f2f; margin-bottom: 20px; }
.contribute-box .btn { display: inline-block; padding: 13px 28px; }
.contact-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(10,8,28,0.85); z-index: 500; align-items: center; justify-content: center; padding: 24px; }
.contact-modal-overlay.open { display: flex; }
.contact-modal { background: #ffffff; border-radius: 4px; padding: 36px 40px; max-width: 520px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; }
.contact-modal h3 { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: var(--purple-deep); margin-bottom: 8px; }
.contact-modal .modal-intro { font-size: 14px; font-weight: 300; color: #555; line-height: 1.6; margin-bottom: 24px; }
.contact-modal label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--purple-deep); margin-bottom: 6px; margin-top: 16px; }
.contact-modal input, .contact-modal textarea { width: 100%; box-sizing: border-box; padding: 10px 12px; font-size: 14px; font-weight: 300; border: 1px solid #d0cce8; border-radius: 3px; color: #2f2f2f; font-family: inherit; }
.contact-modal textarea { height: 120px; resize: vertical; }
.contact-modal-actions { display: flex; gap: 12px; margin-top: 24px; justify-content: flex-end; }
.contact-modal-cancel { background: none; border: 1px solid #d0cce8; color: #555; padding: 10px 20px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; border-radius: 2px; }
.contact-modal-submit { background: var(--purple-deep); color: #fff; border: none; padding: 10px 24px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background 0.2s; }
.contact-modal-submit:hover { background: var(--red); }
.contact-modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 20px; cursor: pointer; color: #aaa; line-height: 1; }
.contact-modal-close:hover { color: #555; }
.contact-modal-success { text-align: center; padding: 20px 0; }
.contact-modal-success p { font-size: 16px; color: var(--purple-deep); font-weight: 400; line-height: 1.7; }

/* ── ORGANIZATIONS ── */
.orgs-header { padding: 80px var(--page-pad) 60px; max-width: 1100px; }
.orgs-header h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(36px, 5vw, 60px); line-height: 1.08; margin-bottom: 24px; }
.orgs-header .intro { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.88); max-width: 640px; line-height: 1.85; }
.orgs-actions { padding: 0 var(--page-pad) 60px; display: flex; gap: 16px; flex-wrap: wrap; }
.orgs-body { background: #ffffff; padding: 0; }
.orgs-section { max-width: var(--body-max); margin: 0 auto; padding: 64px var(--body-pad); }
.orgs-note { background: #f4f3f9; border-left: 3px solid var(--purple-deep); padding: 24px 32px; margin: 0 0 56px; border-radius: 0 4px 4px 0; }
.orgs-note p { font-size: 16px; font-weight: 300; color: #2f2f2f; line-height: 1.75; margin: 0; }
.orgs-category { margin-bottom: 56px; }
.orgs-category > h2 { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: var(--purple-deep); padding-bottom: 16px; border-bottom: 2px solid var(--purple-deep); margin-bottom: 0; }
.org-entry { padding: 24px 0; border-bottom: 1px solid #e8e4f0; }
.org-entry:last-child { border-bottom: none; }
.org-entry h3 { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--purple-deep); line-height: 1.3; margin-bottom: 4px; }
.org-entry h3 a { color: var(--purple-deep); text-decoration: none; }
.org-entry h3 a:hover { color: var(--red); }
.org-entry .org-tag { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 10px; }
.org-entry p { font-size: 15px; font-weight: 300; color: #2f2f2f; line-height: 1.75; margin: 0; }
.org-entry p + p { margin-top: 10px; }
.org-entry a.org-link { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--purple-deep); text-decoration: none; }
.org-entry a.org-link:hover { color: var(--red); }
.legacy-box { background: #f9f6e8; border-left: 3px solid #c8a84b; padding: 24px 32px; margin: 24px 0 0; border-radius: 0 4px 4px 0; }
.legacy-box p { font-size: 15px; font-weight: 300; color: #2f2f2f; line-height: 1.75; margin: 0; }
.legacy-box p + p { margin-top: 10px; }

/* ── READING LIST ── */
.reading-header { padding: 80px var(--page-pad) 60px; max-width: 1100px; }
.reading-header h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(36px, 5vw, 60px); line-height: 1.08; margin-bottom: 24px; }
.reading-header .intro { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.88); max-width: 640px; line-height: 1.85; }
.reading-actions { padding: 0 var(--page-pad) 60px; display: flex; gap: 16px; flex-wrap: wrap; }
.reading-body { background: #ffffff; padding: 0; }
.reading-section { max-width: var(--body-max); margin: 0 auto; padding: 64px var(--body-pad); }
.reading-note { background: #f4f3f9; border-left: 3px solid var(--purple-deep); padding: 24px 32px; margin: 0 0 56px; border-radius: 0 4px 4px 0; }
.reading-note p { font-size: 16px; font-weight: 300; color: #2f2f2f; line-height: 1.75; margin: 0; }
.reading-category { margin-bottom: 56px; }
.reading-category .category-note { font-size: 15px; font-weight: 300; color: #555; line-height: 1.75; margin: 16px 0 24px; }
.reading-category > h2 { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: var(--purple-deep); padding-bottom: 16px; border-bottom: 2px solid var(--purple-deep); margin-bottom: 0; }
.reading-entry { padding: 24px 0; border-bottom: 1px solid #e8e4f0; }
.reading-entry:last-child { border-bottom: none; }
.reading-entry h3 { font-family: var(--font-head); font-weight: 600; font-size: 18px; line-height: 1.3; margin-bottom: 4px; }
.reading-entry h3 a { color: var(--purple-deep); text-decoration: none; }
.reading-entry h3 a:hover { color: var(--red); }
.reading-entry .entry-author { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 10px; }
.reading-entry p { font-size: 15px; font-weight: 300; color: #2f2f2f; line-height: 1.75; margin: 0; }
.reading-entry p a { color: var(--purple-deep); }

/* ── EPISCOPAL PRIDE TOOLS ── */
.ep-body { max-width: 940px; margin: 0 auto; padding: 0 var(--body-pad) 100px; }
.shield-block { display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: start; margin: 0 0 80px; }
.shield-img { width: 100%; height: auto; display: block; }
.shield-caption { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 12px; }
.ep-section { margin-bottom: 72px; }
.ep-section h2 { font-family: var(--font-head); font-weight: 600; font-size: clamp(20px, 2.5vw, 26px); margin-bottom: 20px; line-height: 1.25; }
.ep-body p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.90); line-height: 1.85; margin-bottom: 20px; max-width: 720px; }
.ep-body p:last-child { margin-bottom: 0; }
.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 40px; }
.tool-card { background: rgba(255,255,255,0.04); padding: 32px; transition: background 0.2s; }
.tool-card:hover { background: rgba(255,255,255,0.07); }
.tool-card-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; display: block; }
.tool-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 18px; line-height: 1.3; margin-bottom: 10px; }
.tool-card p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 16px; max-width: none; }
.tool-link { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.tool-link:hover { text-decoration: underline; }
.divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 72px 0; }
.resistance-block { background: rgba(255,255,255,0.04); border-left: 3px solid var(--red); padding: 40px 48px; margin-bottom: 72px; }
.resistance-block p { max-width: none; }

/* ── CALENDAR ── */
.cal-header { padding: 80px var(--page-pad) 60px; max-width: 1100px; }
.cal-header h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(36px, 5vw, 60px); line-height: 1.08; margin-bottom: 24px; }
.cal-header .intro { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.88); max-width: 640px; line-height: 1.85; }
.cal-actions { padding: 0 var(--page-pad) 60px; display: flex; gap: 16px; flex-wrap: wrap; }
.cal-body { background: #ffffff; padding: 0; }
.cal-section { max-width: var(--body-max); margin: 0 auto; padding: 64px var(--body-pad); scroll-margin-top: 50px; }
.cal-section h2 { font-family: var(--font-head); font-weight: 600; font-size: 24px; color: var(--purple-deep); margin-bottom: 32px; scroll-margin-top: 50px; }
.cal-entries { display: flex; flex-direction: column; gap: 0; }
.cal-entry { padding: 24px 0; border-top: 1px solid #e8e4f0; display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: start; }
.cal-entry:last-child { border-bottom: 1px solid #e8e4f0; }
.cal-date { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); line-height: 1.5; padding-top: 3px; }
.cal-entry-content h3 { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--purple-deep); margin-bottom: 8px; line-height: 1.3; }
.cal-entry-content p { font-size: 15px; font-weight: 300; color: #2f2f2f; line-height: 1.75; margin: 0; }
.cal-tag { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple-mid); margin-bottom: 6px; }
.cal-note { background: #f4f3f9; border-left: 3px solid var(--purple-deep); padding: 24px 32px; margin: 40px 0; border-radius: 0 4px 4px 0; }
.cal-note p { font-size: 16px; font-weight: 300; color: #2f2f2f; line-height: 1.75; margin: 0; }
.month-nav { position: sticky; top: 0; z-index: 100; background: #ffffff; border-bottom: 1px solid #e8e4f0; padding: 0; }
.month-nav-inner { max-width: 100%; padding: 0 60px; display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; justify-content: center; }
.month-nav-inner::-webkit-scrollbar { display: none; }
.month-nav-inner a { display: block; padding: 14px 16px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(80,60,140,0.45); text-decoration: none; white-space: nowrap; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.month-nav-inner a:hover { color: var(--purple-deep); }
.month-nav-inner a.active { color: var(--purple-deep); border-bottom-color: var(--purple-deep); }
.mn-short { display: none; }
.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px; background: var(--purple-deep); color: #fff; border: none; border-radius: 50%; font-size: 20px; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.25s, background 0.2s; z-index: 200; display: flex; align-items: center; justify-content: center; line-height: 1; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--red); }

/* ── PRIVACY ── */
.policy-header { padding: 80px var(--page-pad) 60px; max-width: 1100px; }
.policy-header h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(32px, 4vw, 52px); line-height: 1.08; margin-bottom: 16px; }
.policy-header .updated { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 0; }
.policy-body { background: #ffffff; max-width: var(--body-max); margin: 0 auto; padding: 64px var(--body-pad) 100px; }
.policy-body p { font-size: 17px; font-weight: 300; line-height: 1.85; color: #2f2f2f; margin-bottom: 24px; }
.policy-body h2 { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: var(--purple-deep); margin: 48px 0 16px; }
.policy-body ul { margin: 0 0 24px 20px; }
.policy-body ul li { font-size: 17px; font-weight: 300; line-height: 1.85; color: #2f2f2f; margin-bottom: 8px; }
.policy-body a { color: var(--purple-deep); text-decoration: underline; }

/* ── PHOTO GALLERY (first-wave article) ── */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 48px 0; }
.gallery-item { cursor: pointer; overflow: hidden; border-radius: 4px; aspect-ratio: 1; background: #f0eef8; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.25s, opacity 0.25s; }
.gallery-item:hover img { transform: scale(1.04); opacity: 0.9; }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(10,8,28,0.94); z-index: 1000; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; display: block; border-radius: 4px; }
.lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; line-height: 1; padding: 4px 8px; opacity: 0.7; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-download { display: inline-block; margin-top: 14px; padding: 8px 20px; background: var(--red); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.2s; }
.lightbox-download:hover { background: var(--gold); color: var(--purple-deep); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 12px 16px; border-radius: 2px; transition: background 0.2s; }
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }
.lightbox-footer { text-align: center; }

/* ── FOOTER ── */
.site-footer { text-align: center; padding: 48px var(--page-pad); border-top: 1px solid rgba(255,255,255,0.08); background: var(--purple-deep); font-size: 13px; color: var(--text-muted); }
.site-footer a { color: var(--white); text-decoration: none; opacity: 0.6; }
.stoneroller-credit { display: block; margin-top: 8px; font-size: 12px; }
.stoneroller-credit a { opacity: 0.5; }
.stoneroller-credit a:hover { color: var(--gold); opacity: 1; }
.site-footer a:hover { color: var(--gold); opacity: 1; }

/* ── RESPONSIVE ── */
@media(max-width: 780px) {
  :root { --page-pad: 24px; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--purple-deep); flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 100; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; opacity: 0.85; }
  .nav-toggle { display: flex; }
  .site-nav { padding: 20px var(--page-pad); }
  .page-header { padding: 56px 32px 40px; }
  .page-header .intro { max-width: 100%; }
  .article-header { padding: 56px 32px 40px; }
  .article-header h1 { max-width: 100%; }
  .article-body { padding: 48px var(--page-pad) 72px; }
  .article-body p { font-size: 17px; }
  .article-body ul li { font-size: 17px; }
  .article-nav { padding: 32px var(--page-pad); }
  .card { padding: 32px 28px; }
  .site-footer { padding: 40px var(--page-pad); }
  .about-header { padding: 60px var(--page-pad) 0; }
  .about-body { padding: 48px var(--page-pad) 72px; }
  .about-body p { font-size: 17px; }
  .collab-header { padding: 60px 24px 40px; }
  .collab-body { padding: 48px 24px 72px; }
  .collab-body p { font-size: 17px; }
  .contribute-box { padding: 28px 24px; }
  .contact-modal-overlay { align-items: flex-start; padding: 20px 16px; overflow-y: auto; }
  .contact-modal { max-height: none; padding: 28px 24px; }
  .orgs-header { padding: 60px 24px 40px; }
  .orgs-actions { padding: 0 24px 40px; }
  .orgs-section { padding: 48px 24px; }
  .reading-header { padding: 60px 24px 40px; }
  .reading-actions { padding: 0 24px 40px; }
  .reading-section { padding: 48px 24px; }
  .cal-header { padding: 60px 24px 40px; }
  .cal-actions { padding: 0 24px 40px; }
  .cal-section { padding: 48px 24px; }
  .cal-entry { grid-template-columns: 1fr; gap: 8px; }
  .cal-date { padding-top: 0; }
  .month-nav-inner { padding: 0 8px; justify-content: center; }
  .month-nav-inner a { padding: 12px 6px; font-size: 11px; letter-spacing: 0.03em; }
  .mn-long { display: none; }
  .mn-short { display: inline; }
  .back-to-top { bottom: 20px; right: 16px; }
  .policy-header { padding: 60px 24px 40px; }
  .policy-body { padding: 48px 24px 72px; }
  .strategy-header { padding: 60px 24px 40px; }
  .strategy-body { padding: 48px 24px 72px; }
  .strategy-body p { font-size: 17px; }
  .strategy-nav { padding: 32px 24px; }
  .ep-body { padding: 0 24px 72px; }
  .shield-block { grid-template-columns: 1fr; gap: 32px; }
  .shield-img { max-width: 220px; }
  .tool-grid { grid-template-columns: 1fr; }
  .resistance-block { padding: 28px 24px; }
  .articles-list { padding: 0 24px 72px; }
  .article-row { grid-template-columns: 1fr; gap: 10px; padding: 36px 0; }
  .article-num { font-size: 20px; }
  .resources-list { padding: 0 24px 72px; }
  .resource-row { grid-template-columns: 1fr; gap: 10px; padding: 36px 0; }
  .strategies-list { padding: 0 24px 72px; }
  .strategy-row { grid-template-columns: 1fr; gap: 10px; padding: 36px 0; }
  .strategy-num { font-size: 20px; }
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .lightbox-prev { left: -4px; }
  .lightbox-next { right: -4px; }
  .lightbox-nav { padding: 8px 12px; font-size: 18px; }
  .hero { padding: 60px var(--page-pad); }
  .hero-columns { grid-template-columns: 1fr; gap: 0; }
  .hero-logo { display: flex; justify-content: center; margin-bottom: 28px; }
  .hero-logo img { max-height: 180px; width: auto; }
  .tool-cta { margin: 0 var(--page-pad) 60px; padding: 48px var(--page-pad); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
@media(max-width: 680px) { .hero-logo img { max-height: 220px; } }
@media(max-width: 480px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ── PRINT ── */
@media print {
  .site-nav, .reading-actions, .pride-stripe, .site-footer, .stoneroller-credit { display: none !important; }
  body { background: #fff !important; color: #000 !important; font-size: 11pt; }
  .reading-body { background: #fff !important; }
  .reading-section { padding: 0 !important; max-width: 100% !important; }
  .reading-note { border-left: 2px solid #000; background: #f5f5f5 !important; break-inside: avoid; }
  .reading-category { break-inside: avoid; margin-bottom: 24pt; }
  .reading-category > h2 { border-bottom: 1.5pt solid #000; color: #000 !important; font-size: 14pt; margin-bottom: 8pt; padding-bottom: 4pt; }
  .reading-entry { break-inside: avoid; padding: 8pt 0; border-bottom: 0.5pt solid #ccc; }
  .reading-entry h3 { font-size: 11pt; margin-bottom: 2pt; }
  .reading-entry h3 a { color: #000 !important; text-decoration: none; }
  .reading-entry h3 a::after { content: " (" attr(href) ")"; font-size: 8pt; color: #555; font-weight: 300; }
  .reading-entry .entry-author { color: #333 !important; font-size: 9pt; }
  .reading-entry p { font-size: 10pt; color: #222 !important; margin: 4pt 0 0; line-height: 1.5; }
  .reading-header { padding: 0 0 16pt !important; }
  .reading-header h1 { font-size: 20pt !important; color: #000 !important; }
  .reading-header .intro { color: #333 !important; font-size: 11pt; }
}

/* ── PRIDE FLAG STRIPE ── */
.pride-stripe { width: 100%; height: 30px; display: flex; }
.pride-stripe-flag { flex: 1; height: 30px; }
.psf-progress { background: linear-gradient(to bottom, #000000 0%, #000000 9%, #613915 9%, #613915 18%, #55CDFC 18%, #55CDFC 27%, #F7A8B8 27%, #F7A8B8 36%, #FFFFFF 36%, #FFFFFF 45%, #E40303 45%, #E40303 54%, #FF8C00 54%, #FF8C00 63%, #FFED00 63%, #FFED00 72%, #008026 72%, #008026 81%, #004DFF 81%, #004DFF 90%, #750787 90%, #750787 100%); }
.psf-trans { background: linear-gradient(to bottom, #55CDFC 0%, #55CDFC 20%, #F7A8B8 20%, #F7A8B8 40%, #FFFFFF 40%, #FFFFFF 60%, #F7A8B8 60%, #F7A8B8 80%, #55CDFC 80%, #55CDFC 100%); }
.psf-bi { background: linear-gradient(to bottom, #D60270 0%, #D60270 40%, #9B4F96 40%, #9B4F96 60%, #0038A8 60%, #0038A8 100%); }
.psf-lesbian { background: linear-gradient(to bottom, #D52D00 0%, #D52D00 20%, #FF9A56 20%, #FF9A56 40%, #FFFFFF 40%, #FFFFFF 60%, #D162A4 60%, #D162A4 80%, #A50062 80%, #A50062 100%); }
.psf-nonbinary { background: linear-gradient(to bottom, #FCF434 0%, #FCF434 25%, #FFFFFF 25%, #FFFFFF 50%, #9C59D1 50%, #9C59D1 75%, #2C2C2C 75%, #2C2C2C 100%); }
.psf-intersex { background: linear-gradient(to bottom, #FFD800 0%, #FFD800 30%, #7902AA 30%, #7902AA 70%, #FFD800 70%, #FFD800 100%); }
.psf-pan { background: linear-gradient(to bottom, #FF218C 0%, #FF218C 33%, #FFD800 33%, #FFD800 66%, #21B1FF 66%, #21B1FF 100%); }
.psf-ace { background: linear-gradient(to bottom, #000000 0%, #000000 25%, #A4A4A4 25%, #A4A4A4 50%, #FFFFFF 50%, #FFFFFF 75%, #810081 75%, #810081 100%); }

/* ── COLLABORATOR BANNER ── */
.collab-banner { background: var(--gold); padding: 56px 60px; }
.collab-banner-inner { max-width: 820px; margin: 0 auto; }
.collab-banner-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.collab-banner-hed { font-family: var(--font-head); font-weight: 600; font-size: clamp(24px, 3vw, 36px); color: var(--purple-deep); line-height: 1.1; }
.collab-banner-ref { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--purple-mid); }
.collab-banner-body { font-size: 16px; font-weight: 400; color: var(--purple-deep); line-height: 1.85; max-width: 700px; margin-bottom: 28px; }
.collab-banner-cta { display: inline-block; padding: 12px 28px; background: var(--purple-deep); color: #ffffff; font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.2s; }
.collab-banner-cta:hover { background: var(--red); }
@media(max-width: 780px) { .collab-banner { padding: 40px 24px; } .collab-banner-body { font-size: 15px; } }