/* =============================================================
   Young Tee Foundation — Main Stylesheet
   Dark mode default · Light mode via .light-mode class on body
   ============================================================= */

/* ── DARK THEME (default) ── */
:root {
  --bg:           #0C0F14;
  --bg2:          #131820;
  --bg3:          #1A2030;
  --amber:        #F5A623;
  --amber-light:  #FFCF6B;
  --coral:        #FF6B4A;
  --teal:         #0FD6C2;
  --text:         #F0EDE8;
  --muted:        #8A8F9E;
  --border:       rgba(245,166,35,0.18);
  --shadow:       0 2px 20px rgba(0,0,0,0.4);
  --btn-text:     #0C0F14;
}

/* ── LIGHT THEME ── */
body.light-mode {
  --bg:           #FAFAF8;
  --bg2:          #F2F0EB;
  --bg3:          #E8E4DC;
  --amber:        #D4820A;
  --amber-light:  #F5A623;
  --coral:        #D94F30;
  --teal:         #0A8F80;
  --text:         #1A1814;
  --muted:        #6B6560;
  --border:       rgba(180,130,40,0.2);
  --shadow:       0 2px 20px rgba(0,0,0,0.07);
  --btn-text:     #fff;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

body.light-mode::before { display: none; }

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: 0.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── NAVIGATION ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(12,15,20,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
body.light-mode .site-header {
  background: rgba(250,250,248,0.92);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.site-branding img { height: 50px; width: auto; }

/* WP nav menu */
.main-navigation ul {
  display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0;
}
.main-navigation a {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: var(--amber); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-cta {
  background: var(--amber);
  color: var(--btn-text);
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.nav-cta:hover { background: var(--amber-light); transform: translateY(-1px); }

/* ── THEME TOGGLE ── */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 0.25s, color 0.25s;
}
.theme-toggle:hover { border-color: var(--amber); color: var(--amber); }

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 30s linear infinite;
}
body.light-mode .hero-bg-grid {
  background-image:
    linear-gradient(rgba(180,130,40,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,130,40,0.07) 1px, transparent 1px);
}
@keyframes gridDrift {
  from { transform: translateY(0); }
  to   { transform: translateY(60px); }
}

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero-orb-1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(245,166,35,0.18), transparent 70%);
  top: -100px; right: 0;
  animation: orbFloat 12s ease-in-out infinite;
}
body.light-mode .hero-orb-1 {
  background: radial-gradient(circle, rgba(212,130,10,0.12), transparent 70%);
}
.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(15,214,194,0.1), transparent 70%);
  bottom: 0; left: 20%;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0); }
  50%       { transform: translate(20px,-30px); }
}

.hero-content { position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245,166,35,0.1);
  border: 1px solid var(--border);
  color: var(--amber);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber); border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(1.4); }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -0.03em; margin-bottom: 1.5rem;
  color: var(--text);
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-headline .accent { color: var(--amber); font-style: italic; }
.hero-headline .line2 { display: block; }
.hero-headline .line3 { display: block; color: var(--muted); font-size: 0.7em; }

.hero-sub {
  font-size: 1.1rem; color: var(--muted);
  line-height: 1.7; max-width: 480px;
  margin-bottom: 2.5rem; font-weight: 300;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary {
  background: var(--amber); color: var(--btn-text);
  padding: 0.9rem 2rem; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.02em; transition: all 0.25s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  display: inline-block;
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); color: var(--btn-text); }

.btn-ghost {
  color: var(--text); font-weight: 500; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color 0.25s;
}
.btn-ghost:hover { color: var(--amber); }
.btn-ghost svg { transition: transform 0.25s; }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-side {
  position: relative; z-index: 2;
  display: flex; justify-content: flex-end;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 2.5rem; max-width: 380px; width: 100%;
  position: relative;
  box-shadow: var(--shadow);
}
body.light-mode .hero-card { background: #fff; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--coral), var(--teal));
}

.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-bottom: 2rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900;
  color: var(--amber); line-height: 1; margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 400; line-height: 1.3; }

.hero-quote {
  font-size: 0.95rem; color: var(--text); font-weight: 300;
  line-height: 1.65; font-style: italic;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.hero-quote strong { color: var(--amber); font-style: normal; font-weight: 600; }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── MARQUEE ── */
.marquee-wrapper {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 1rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0 2rem; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.marquee-dot { color: var(--amber); font-size: 1.2rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
.section-inner { max-width: 1200px; margin: 0 auto; }
.site-section { padding: 6rem 3rem; }

.section-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before {
  content: ''; width: 30px; height: 2px; background: var(--amber);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 1.5rem; color: var(--text);
}
.section-title .em { color: var(--amber); font-style: italic; }

/* ── ABOUT ── */
.about-section { background: var(--bg2); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.about-body {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.75; font-weight: 300; margin-bottom: 1.5rem;
}
.about-body strong { color: var(--text); font-weight: 500; }

.mv-grid { display: grid; gap: 1.5rem; }
.mv-card {
  background: var(--bg3);
  border: 1px solid var(--border); padding: 2rem;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
body.light-mode .mv-card { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.mv-card:hover { border-color: rgba(245,166,35,0.5); transform: translateY(-3px); }
body.light-mode .mv-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-color: var(--amber); }
.mv-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.mv-card:hover::after { transform: scaleX(1); }

.mv-icon {
  width: 44px; height: 44px;
  background: rgba(245,166,35,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.4rem;
}
body.light-mode .mv-icon { background: rgba(212,130,10,0.1); }
.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 0.75rem; letter-spacing: -0.02em; color: var(--text);
}
.mv-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── FOCUS AREAS ── */
.focus-section { background: var(--bg); }
.focus-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 3.5rem;
}
.focus-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1.5px; background: var(--border);
}
.focus-card {
  background: var(--bg); padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s;
}
.focus-card:hover { background: var(--bg2); }
body.light-mode .focus-card:hover { background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.focus-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 900;
  color: rgba(245,166,35,0.08);
  position: absolute; top: 1rem; right: 1.5rem;
  line-height: 1; transition: color 0.3s;
}
body.light-mode .focus-num { color: rgba(212,130,10,0.08); }
.focus-card:hover .focus-num { color: rgba(245,166,35,0.15); }
body.light-mode .focus-card:hover .focus-num { color: rgba(212,130,10,0.14); }

.focus-icon { font-size: 1.8rem; margin-bottom: 1.5rem; display: block; }
.focus-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 0.75rem; color: var(--text);
}
.focus-card h3 span { color: var(--amber); }
.focus-card p {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem;
}
.focus-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2); color: var(--amber);
}
body.light-mode .tag {
  background: rgba(212,130,10,0.08);
  border-color: rgba(212,130,10,0.25);
}

/* ── STRUCTURE ── */
.structure-section { background: var(--bg2); }
.structure-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: center;
}

.struct-box {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 1.5rem 2rem; text-align: center;
  transition: border-color 0.3s;
}
body.light-mode .struct-box { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.struct-box:hover { border-color: rgba(245,166,35,0.5); }
body.light-mode .struct-box:hover { border-color: var(--amber); }
.struct-box.main {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.4); margin-bottom: 1rem;
}
body.light-mode .struct-box.main { background: rgba(212,130,10,0.07); border-color: rgba(212,130,10,0.4); }
.struct-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.25rem; color: var(--text);
}
.struct-box p { font-size: 0.8rem; color: var(--muted); font-weight: 300; }
.struct-connector { width: 2px; height: 2rem; background: var(--border); margin: 0 auto; }
.struct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.struct-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.5rem; background: var(--amber);
  color: var(--btn-text); margin-bottom: 0.5rem;
}

.struct-list {}
.struct-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
}
.struct-item:last-child { border-bottom: none; }
.struct-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(245,166,35,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-top: 0.1rem;
}
body.light-mode .struct-icon { background: rgba(212,130,10,0.1); }
.struct-item h4 { font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; color: var(--text); }
.struct-item p { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.6; }

/* ── IMPACT STATEMENT ── */
.impact-section {
  background: linear-gradient(135deg, #0C0F14 0%, #131820 50%, #0C0F14 100%);
  text-align: center; padding: 7rem 3rem;
  position: relative; overflow: hidden;
}
body.light-mode .impact-section {
  background: linear-gradient(135deg, #FBF7F0 0%, #F5EFE3 50%, #FBF7F0 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.impact-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.08) 0%, transparent 70%);
}
body.light-mode .impact-glow {
  background: radial-gradient(ellipse at center, rgba(212,130,10,0.07) 0%, transparent 70%);
}
.impact-section .section-label { justify-content: center; }
.impact-section .section-title {
  max-width: 800px; margin: 0 auto 1.5rem;
  position: relative; z-index: 1;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.impact-sub {
  font-size: 1.1rem; color: var(--muted); font-weight: 300;
  max-width: 550px; margin: 0 auto 2.5rem;
  line-height: 1.7; position: relative; z-index: 1;
}
.impact-line {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  margin: 0 auto 2rem;
}

/* ── GET INVOLVED ── */
.involved-section { background: var(--bg); }
body.light-mode .involved-section { background: var(--bg); }
.involved-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}

.inv-cards { display: grid; gap: 1rem; }
.inv-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--bg2); border: 1px solid var(--border);
  padding: 1.5rem; transition: border-color 0.3s, transform 0.25s;
}
body.light-mode .inv-card { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.inv-card:hover { border-color: rgba(245,166,35,0.45); transform: translateX(4px); }
body.light-mode .inv-card:hover { border-color: var(--amber); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.inv-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.inv-card h4 { font-weight: 600; margin-bottom: 0.3rem; font-size: 0.95rem; color: var(--text); }
.inv-card p { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.55; }

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 2.5rem; position: relative;
}
body.light-mode .contact-form-wrap {
  background: #fff; box-shadow: 0 4px 30px rgba(0,0,0,0.07);
}
.contact-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--coral));
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 0.75rem; color: var(--text);
}
.contact-form-wrap .form-intro {
  font-size: 0.9rem; color: var(--muted);
  font-weight: 300; line-height: 1.65; margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--bg3);
  border: 1px solid var(--border); color: var(--text);
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.25s; resize: none;
}
body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea { background: var(--bg2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--amber); }
.form-group select option { background: var(--bg3); color: var(--text); }
body.light-mode .form-group select option { background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
  width: 100%; background: var(--amber); color: var(--btn-text);
  border: none; padding: 1rem;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.03em; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-submit:hover { background: var(--amber-light); transform: translateY(-1px); }

.form-status {
  margin-top: 1rem; font-size: 0.85rem; display: none;
}

/* CF7 overrides */
.wpcf7-form .wpcf7-submit {
  width: 100%; background: var(--amber); color: var(--btn-text);
  border: none; padding: 1rem;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.03em; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 0.25s;
}
.wpcf7-form .wpcf7-submit:hover { background: var(--amber-light); }
.wpcf7-response-output {
  border: none !important; padding: 0.75rem 0 !important;
  font-size: 0.85rem !important; margin: 0.5rem 0 0 !important;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border); padding: 3rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand img { height: 70px; width: auto; }
.footer-note { font-size: 0.8rem; color: var(--muted); font-weight: 300; margin-top: 0.3rem; }
.footer-contact {
  margin-top: 0.5rem; display: flex; flex-direction: column;
  gap: 0.25rem; font-size: 0.8rem; color: var(--muted); font-weight: 300;
}
.footer-nav ul { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.footer-nav a { font-size: 0.8rem; color: var(--muted); transition: color 0.25s; }
.footer-nav a:hover { color: var(--amber); }
.footer-copy { font-size: 0.75rem; color: rgba(138,143,158,0.6); font-weight: 300; text-align: right; }
body.light-mode .footer-copy { color: rgba(107,101,96,0.6); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── WP ALIGNMENTS ── */
.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-header { padding: 1rem 1.5rem; }
  .main-navigation { display: none; }
  .hero-section { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; }
  .hero-side { justify-content: flex-start; margin-top: 2rem; }
  .hero-card { max-width: 100%; }
  .site-section { padding: 4rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .focus-grid { grid-template-columns: 1fr; }
  .structure-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .involved-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
}
