/*
Theme Name: American Founders Institute
Theme URI: https://americanfoundersinstitute.org
Author: Cedar Line Media
Description: Research and publications arm of the American Founders Society.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPLv2 or later
Text Domain: afi
*/

/* ===== RESET & VARIABLES ===== */
:root {
  --black: #08090C;
  --charcoal: #0F1117;
  --slate: #171A22;
  --slate-light: #1E222D;
  --parchment: #E8E0D4;
  --cream: #F4EFEA;
  --ivory: #FAF7F4;
  --gold: #B8965A;
  --gold-light: #D4B87C;
  --gold-muted: rgba(184, 150, 90, 0.5);
  --gold-faint: rgba(184, 150, 90, 0.12);
  --gold-ghost: rgba(184, 150, 90, 0.06);
  --text-primary: rgba(244, 239, 234, 0.85);
  --text-secondary: rgba(244, 239, 234, 0.45);
  --text-tertiary: rgba(244, 239, 234, 0.25);
  --rule: rgba(184, 150, 90, 0.1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'EB Garamond', Georgia, serif;
  color: var(--text-primary);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(184,150,90,0.2); border-radius: 3px; }

/* ===== TOP LINE ===== */
.top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gold-muted) 50%, transparent 90%);
}

/* ===== NAVIGATION ===== */
.site-nav {
  padding: 0 60px;
  background: transparent;
  position: fixed;
  top: 1px;
  left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s;
}

.site-nav.scrolled {
  background: rgba(8, 9, 12, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.nav-brand:hover { opacity: 1; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a,
.nav-menu .current_page_item a {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold-muted);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 40% 35% at 50% 45%, rgba(30, 34, 45, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(184, 150, 90, 0.03) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-crest {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(184, 150, 90, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 48px;
  position: relative;
}

.hero-crest::after {
  content: '⚜';
  color: var(--gold-muted);
  font-size: 20px;
}

.hero-crest::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  border: 1px solid rgba(184, 150, 90, 0.08);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: 1px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: var(--gold-muted);
  margin: 36px auto;
}

.hero-tagline {
  font-family: 'Crimson Pro', serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  letter-spacing: 0.3px;
  max-width: 440px;
  margin: 0 auto;
}

.hero-bottom {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-text {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--gold-muted), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ===== SECTION OVERLINE ===== */
.section-overline {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(184, 150, 90, 0.4);
  margin-bottom: 32px;
  display: block;
}

/* ===== STATEMENT ===== */
.statement {
  padding: 120px 60px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.statement-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.statement-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
}

.statement-attr {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 32px;
  display: block;
}

/* ===== RECENT DISPATCHES (homepage) ===== */
.recent-dispatches {
  padding: 100px 60px;
  border-bottom: 1px solid var(--rule);
}

.recent-dispatches-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}

.section-header-title {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.section-header-link {
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 1px;
  transition: color 0.3s;
}

.section-header-link:hover { color: var(--gold); }

.institute-credit {
  font-family: 'Crimson Pro', serif;
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 1px;
  font-style: italic;
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.institute-credit a {
  color: var(--gold-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.institute-credit a:hover { color: var(--gold); }

/* ===== DISPATCH ITEMS ===== */
.dispatch {
  padding: 36px 0;
  border-bottom: 1px solid var(--gold-ghost);
  transition: all 0.3s;
  display: block;
}

.dispatch:hover { padding-left: 16px; }
.dispatch:hover .dispatch-title { color: var(--gold-light); }

.dispatch-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.dispatch-tag {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-muted);
  background: var(--gold-ghost);
  padding: 4px 10px;
}

.dispatch-date {
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  color: var(--text-tertiary);
}

.dispatch-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.dispatch-excerpt {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
}

.dispatch-author {
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 12px;
}

.dispatch-author strong { color: var(--text-secondary); font-weight: 400; }

.dispatch-source {
  font-family: 'Crimson Pro', serif;
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 6px;
  font-style: italic;
}

.dispatch-source a {
  color: var(--gold-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== DISPATCHES PAGE ===== */
.dispatches-page {
  padding: 140px 60px 100px;
  min-height: 100vh;
}

.dispatches-inner {
  max-width: 800px;
  margin: 0 auto;
}

.dispatches-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}

.dispatches-title {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.dispatches-count {
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  color: var(--text-tertiary);
}

.dispatches-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}

.dispatches-pagination a,
.dispatches-pagination span {
  font-family: 'Crimson Pro', serif;
  font-size: 14px;
  padding: 8px 14px;
  color: var(--text-tertiary);
  border: 1px solid var(--rule);
  transition: all 0.3s;
}

.dispatches-pagination a:hover,
.dispatches-pagination .current {
  color: var(--gold);
  border-color: var(--gold-muted);
}

.dispatches-pagination .current {
  background: var(--gold-ghost);
}

/* ===== SINGLE POST ===== */
.single-dispatch {
  padding: 160px 60px 100px;
  min-height: 100vh;
}

.single-dispatch-inner {
  max-width: 700px;
  margin: 0 auto;
}

.single-dispatch h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 16px;
}

.single-dispatch .dispatch-author {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}

.entry-content {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-primary);
}

.entry-content p { margin-bottom: 24px; }

.entry-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin: 48px 0 20px;
}

.entry-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin: 36px 0 16px;
}

.entry-content blockquote {
  border-left: 2px solid var(--gold-muted);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-secondary);
}

.entry-content ul,
.entry-content ol {
  margin: 20px 0;
  padding-left: 24px;
}

.entry-content li { margin-bottom: 8px; }

.entry-content a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(184, 150, 90, 0.3);
}

.entry-content a:hover { text-decoration-color: var(--gold); }

.entry-content img {
  margin: 32px 0;
  border: 1px solid var(--rule);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 16px;
}

.entry-content th,
.entry-content td {
  padding: 10px 14px;
  border: 1px solid var(--rule);
  text-align: left;
}

.entry-content th {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-muted);
  background: var(--gold-ghost);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 48px;
  transition: color 0.3s;
}

.back-link:hover { color: var(--gold); }

/* ===== INQUIRY FORM ===== */
.inquiry {
  padding: 120px 60px;
  background: var(--charcoal);
  position: relative;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.inquiry::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(184, 150, 90, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.inquiry-inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.inquiry-header {
  text-align: center;
  margin-bottom: 56px;
}

.inquiry-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
}

.inquiry-subtitle {
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

.inquiry-note {
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 8px;
}

.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  display: block;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 150, 90, 0.12);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-tertiary); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold-muted); }

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(184,150,90,0.4)' fill='none' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-select option { background: var(--charcoal); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.form-divider { height: 1px; background: var(--rule); margin: 36px 0; }

.form-section-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(184, 150, 90, 0.3);
  margin-bottom: 20px;
  display: block;
}

.form-checkgroup { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.form-check { display: flex; align-items: center; gap: 10px; cursor: pointer; }

.form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(184, 150, 90, 0.2);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.form-check input[type="checkbox"]:checked {
  border-color: var(--gold);
  background: rgba(184, 150, 90, 0.15);
}

.form-check input[type="checkbox"]:checked::after {
  content: '✦';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 7px;
}

.form-check-label {
  font-family: 'Crimson Pro', serif;
  font-size: 14px;
  color: var(--text-secondary);
}

.form-submit {
  width: 100%;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 16px;
  margin-top: 36px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(184, 150, 90, 0.3);
  cursor: pointer;
  transition: all 0.4s;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.form-disclaimer {
  font-family: 'Crimson Pro', serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
  font-style: italic;
}

.form-disclaimer a {
  color: var(--gold-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-message {
  text-align: center;
  padding: 16px;
  margin-bottom: 24px;
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
}

.form-message.success {
  border: 1px solid rgba(184, 150, 90, 0.3);
  color: var(--gold-light);
  background: rgba(184, 150, 90, 0.05);
}

.form-message.error {
  border: 1px solid rgba(180, 60, 60, 0.3);
  color: rgba(220, 120, 120, 0.8);
  background: rgba(180, 60, 60, 0.05);
}

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 160px 60px 100px; min-height: 100vh; }
.legal-inner { max-width: 700px; margin: 0 auto; }

.legal-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
}

.legal-updated {
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  display: block;
}

.legal-inner h2 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin: 40px 0 16px;
}

.legal-inner p {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-inner ul { margin: 12px 0 20px; padding-left: 20px; }

.legal-inner li {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.legal-inner a {
  color: var(--gold-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 50px 60px;
  background: var(--black);
  border-top: 1px solid var(--rule);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left { display: flex; align-items: center; gap: 20px; }

.footer-crest {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(184, 150, 90, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-crest::after {
  content: '⚜';
  color: rgba(184, 150, 90, 0.25);
  font-size: 12px;
}

.footer-copy {
  font-family: 'Crimson Pro', serif;
  font-size: 12px;
  color: var(--text-tertiary);
}

.footer-copy a {
  color: var(--text-tertiary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-copy a:hover { color: var(--gold-muted); }

.footer-right {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(184, 150, 90, 0.15);
  letter-spacing: 2px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeIn 0.9s ease forwards;
  opacity: 0;
}

.hero-crest { animation-delay: 0.2s; }
.hero h1 { animation-delay: 0.5s; }
.hero-rule { animation-delay: 0.7s; }
.hero-tagline { animation-delay: 0.9s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-nav { padding: 0 24px; }
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: rgba(8, 9, 12, 0.97);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--rule);
  }
  .nav-menu.open { display: flex; }
  .hero { padding: 100px 24px; min-height: 90vh; }
  .hero h1 { font-size: 36px; }
  .statement { padding: 80px 24px; }
  .statement-text { font-size: 22px; }
  .recent-dispatches { padding: 70px 24px; }
  .inquiry { padding: 80px 24px; }
  .form-row, .form-checkgroup { grid-template-columns: 1fr; }
  .dispatches-page { padding: 120px 24px 80px; }
  .dispatches-header { flex-direction: column; gap: 8px; }
  .dispatch-title { font-size: 22px; }
  .single-dispatch { padding: 120px 24px 80px; }
  .single-dispatch h1 { font-size: 30px; }
  .legal-page { padding: 120px 24px 80px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .section-header { flex-direction: column; gap: 8px; }
}

/* ===== INSTITUTE-SPECIFIC: ABOUT PAGE ===== */
.about-page {
  padding: 160px 60px 100px;
  min-height: 100vh;
}

.about-inner {
  max-width: 750px;
  margin: 0 auto;
}

.about-header {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}

.about-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 16px;
}

.about-header p {
  font-family: 'Crimson Pro', serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-body p {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.about-body h2 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin: 48px 0 20px;
}

.about-society-cta {
  margin-top: 60px;
  padding: 44px;
  border: 1px solid var(--rule);
  background: var(--gold-ghost);
  text-align: center;
}

.about-society-cta p {
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-society-cta a {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184, 150, 90, 0.3);
  padding: 12px 32px;
  transition: all 0.4s;
}

.about-society-cta a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ===== INSTITUTE: FOUNDER SECTION ===== */
.founder-section {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}

.founder-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}

.founder-portrait {
  background: rgba(184, 150, 90, 0.04);
  border: 1px solid var(--rule);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-portrait-text {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  opacity: 0.4;
}

.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}

.founder-title-line {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 20px;
  display: block;
}

.founder-bio {
  font-family: 'EB Garamond', serif;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.founder-roles {
  list-style: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.founder-roles li {
  font-family: 'Crimson Pro', serif;
  font-size: 14px;
  color: var(--text-tertiary);
  padding: 5px 0 5px 18px;
  position: relative;
}

.founder-roles li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--gold-muted);
}

/* ===== INSTITUTE: HOMEPAGE FEATURES ===== */
.institute-intro {
  padding: 120px 60px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.institute-intro-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.institute-intro p {
  font-family: 'EB Garamond', serif;
  font-size: 19px;
  line-height: 1.85;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.institute-division-label {
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--text-tertiary);
  margin-top: 24px;
  letter-spacing: 0.5px;
}

.institute-division-label a {
  color: var(--gold-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .about-page { padding: 120px 24px 80px; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-portrait { max-width: 180px; }
}
