/*
Theme Name: ReKognizeHer
Theme URI: https://rekognizeher.com
Author: ReKognizeHer
Description: Custom classic theme for ReKognizeHer — countering stereotypes one trailblazer at a time.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: rekognizeher
*/

:root {
  --white: #FDFAF8;
  --black: #0A0A0A;
  --rose:  #C4705A;
  --rose-mid: #D98870;
  --rose-light: #EAA48C;
  --rose-pale: #FAE8E2;
  --brick: #AD553E;
  --teal-mid: #C4705A;
  --teal-light: #F5E6E2;
  --gray: #5C5C5C;
  --border: #EDD5CC;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(253,250,248,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo-img { height: 36px; width: auto; display: block; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--black); text-decoration: none; letter-spacing: -0.02em;
}
.nav-logo span { color: var(--rose); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.875rem; color: var(--gray);
  text-decoration: none; letter-spacing: 0.04em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose); }
.nav-cta {
  background: var(--black); color: var(--white) !important;
  padding: 0.5rem 1.2rem; border-radius: 2px;
  font-size: 0.8rem !important; letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--brick) !important; color: white !important; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px; background: none; border: none; padding: 0;
  cursor: pointer; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--black);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--rose); color: white;
  padding: 0.85rem 2rem; border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--black); transform: translateY(-1px); }
.btn-nominate {
  background: var(--rose); color: white;
  padding: 0.85rem 2rem; border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.2s; display: inline-block;
}
.btn-nominate:hover { background: var(--brick); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--black);
  padding: 0.85rem 2rem; border: 1px solid var(--border); border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--brick); color: var(--brick); }
.btn-accent {
  background: var(--brick); color: white;
  padding: 0.85rem 2rem; border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.2s; display: inline-block;
}
.btn-accent:hover { background: var(--black); transform: translateY(-1px); }

/* ── EYEBROW ── */
.eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brick);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.eyebrow::before {
  content: ''; width: 2rem; height: 1px;
  background: var(--brick); display: inline-block; flex-shrink: 0;
}
.eyebrow-rose { color: var(--rose-light); }
.eyebrow-rose::before { background: var(--rose-light); }

/* ── SECTION HEADLINE ── */
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--black); max-width: 600px; margin-bottom: 1.5rem;
}
.section-headline em { font-style: italic; color: var(--rose); }
.section-body {
  font-size: 1rem; line-height: 1.75;
  color: var(--gray); max-width: 560px; font-weight: 300;
}

/* ── HERO ── */
#home {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr; padding-top: 80px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900;
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--black); margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--rose); }
.hero-sub {
  font-size: 1.05rem; line-height: 1.7; color: var(--gray);
  max-width: 420px; margin-bottom: 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right {
  background: var(--rose-pale); position: relative;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero-visual {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.neural-bg { position: absolute; inset: 0; opacity: 0.22; }

.spotlight-card {
  position: relative; background: white; border-radius: 4px;
  padding: 2rem; width: 300px;
  box-shadow: 0 20px 60px rgba(196,112,90,0.2);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.spotlight-tag {
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brick); font-weight: 500; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.spotlight-tag::before { content: '●'; animation: pulse 2s ease-in-out infinite; color: var(--brick); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.spotlight-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--black); margin-bottom: 0.25rem;
}
.spotlight-title { font-size: 0.8rem; color: var(--rose); font-weight: 500; margin-bottom: 1rem; }
.spotlight-quote {
  font-size: 0.875rem; line-height: 1.6; color: var(--gray);
  font-style: italic; border-left: 2px solid var(--rose-pale); padding-left: 0.75rem;
}

.floating-chip {
  position: absolute; background: white; border-radius: 100px;
  padding: 0.5rem 1rem; font-size: 0.75rem; font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex; align-items: center; gap: 0.4rem;
}
.chip-1 { top: 20%; right: 8%; color: var(--brick); animation: float 7s ease-in-out infinite 1s; }
.chip-2 { bottom: 25%; left: 6%; color: var(--rose); animation: float 5s ease-in-out infinite 2s; }
.chip-3 { top: 60%; right: 5%; color: var(--brick); animation: float 8s ease-in-out infinite 0.5s; }

/* ── STATS ── */
.stats-bar {
  background: var(--black); padding: 2.5rem 4rem;
  display: flex; justify-content: space-around; align-items: center; gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--rose-light); display: block; line-height: 1; margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ── ABOUT ── */
#about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center; padding: 7rem 4rem;
  background: var(--white);
}
.about-card {
  background: var(--teal-light); border-radius: 4px; padding: 3rem;
  position: relative;
}
.about-card-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 1.25rem;
}
.science-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.science-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: 0.9rem; line-height: 1.6; color: var(--black);
}
.science-icon {
  width: 32px; height: 32px; border-radius: 50%; background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.accent-block {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--rose); color: white;
  padding: 1.5rem; border-radius: 4px; width: 180px; text-align: center;
  box-shadow: 0 12px 32px rgba(196,112,90,0.35);
}
.accent-block-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; display: block; line-height: 1; margin-bottom: 0.3rem;
}
.accent-block-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }

/* ── ACCENT BAND ── */
.accent-band {
  background: var(--brick); padding: 3rem 4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.accent-band-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: white; line-height: 1.3; max-width: 600px;
}
.accent-band-text em { font-style: italic; color: var(--rose-light); }

/* ── SPOTLIGHTS ── */
#spotlights { background: var(--rose-pale); padding: 7rem 4rem; }
#paved-the-way { background: var(--white); padding: 7rem 4rem; }
.spotlights-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem;
}
.spotlights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.leader-card {
  background: white; border-radius: 4px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
  display: block; text-decoration: none; color: inherit;
}
.leader-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(196,112,90,0.18); }
.leader-card-img {
  height: 220px; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.leader-card-img img { width: 100%; height: 100%; object-fit: cover; }
.leader-initials {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: var(--brick); opacity: 0.4;
}
.leader-card-body { padding: 1.5rem; }
.leader-week {
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brick); font-weight: 500; margin-bottom: 0.5rem;
}
.leader-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--black); margin-bottom: 0.2rem;
}
.leader-role { font-size: 0.8rem; color: var(--rose); font-weight: 500; margin-bottom: 1rem; }
.leader-quote { font-size: 0.85rem; line-height: 1.6; color: var(--gray); font-style: italic; }
.coming-soon-card {
  background: white; border-radius: 4px; border: 2px dashed var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 3rem 2rem; text-align: center; min-height: 340px;
}
.coming-soon-icon { font-size: 2rem; margin-bottom: 1rem; opacity: 0.3; }
.coming-soon-text { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gray); font-style: italic; }

/* ── TRAILBLAZER ARCHIVE ── */
.archive-hero { background: var(--rose-pale); padding: calc(80px + 4rem) 4rem 3rem; }
.archive-hero .section-headline { margin-bottom: 1rem; }
.archive-hero .section-body { margin-bottom: 2rem; }
.filter-toggle {
  display: inline-flex; gap: 0.25rem; background: white;
  padding: 0.35rem; border-radius: 100px; box-shadow: 0 4px 16px rgba(196,112,90,0.12);
}
.filter-toggle a {
  padding: 0.6rem 1.4rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray); text-decoration: none; transition: background 0.2s, color 0.2s;
}
.filter-toggle a.active { background: var(--brick); color: white; }
.filter-toggle a:hover:not(.active) { color: var(--brick); }

#archive-grid { background: var(--white); padding: 4rem 4rem 7rem; }

.archive-pagination { margin-top: 3.5rem; }
.archive-pagination ul { list-style: none; display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.archive-pagination a, .archive-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.5rem; height: 2.5rem; padding: 0 0.75rem;
  border-radius: 2px; border: 1px solid var(--border);
  font-size: 0.85rem; color: var(--black); text-decoration: none;
}
.archive-pagination a:hover { border-color: var(--brick); color: var(--brick); }
.archive-pagination span.current { background: var(--brick); border-color: var(--brick); color: white; }
.archive-pagination span.dots { border: none; }

/* ── ABOUT PAGE ── */
#about-hero { background: var(--rose-pale); padding: calc(80px + 4rem) 4rem 4rem; }
#about-hero .section-headline { max-width: none; }
#about-hero .section-body { max-width: none; }
.about-stats-row {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
  padding: 3rem 4rem; background: var(--white);
}
.about-stat-card {
  background: var(--rose); color: white;
  padding: 1.5rem; border-radius: 4px; text-align: center;
  box-shadow: 0 12px 32px rgba(196,112,90,0.35);
  flex: 1 1 180px; max-width: 220px;
}
#the-problem-intro { background: var(--white); padding: 7rem 4rem 0; }
#the-problem-intro .section-headline,
#the-problem-intro .section-body { max-width: none; }
#the-problem-detail { background: var(--white); padding: 3rem 4rem 7rem; }
#the-problem-detail .section-body { max-width: none; margin-bottom: 1.5rem; }
#the-problem-detail .section-body:last-child { margin-bottom: 0; }
#what-we-do { background: var(--rose-pale); padding: 7rem 4rem; }
#what-we-do .section-headline { max-width: none; }
#what-we-do .section-body { max-width: none; margin-bottom: 1.5rem; }
#what-we-do .section-body:last-child { margin-bottom: 0; }
#founder-story { background: var(--white); padding: 7rem 4rem; }
#founder-story .section-headline { max-width: none; }
#founder-story .section-body { max-width: none; margin-bottom: 1.5rem; }
#founder-story .section-body:last-child { margin-bottom: 0; }
#get-involved { background: var(--rose-pale); padding: 7rem 4rem; text-align: center; }
#get-involved .section-headline { margin: 0 auto 2.5rem; text-align: center; }
#get-involved .about-card { max-width: 560px; margin: 0 auto 3rem; text-align: left; }
#get-involved .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BOOK PAGE ── */
#book-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  background: var(--rose-pale); padding: calc(80px + 4rem) 4rem 4rem;
}
.book-subtitle {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.4rem; color: var(--rose); margin-bottom: 1.25rem;
}
.book-cover {
  width: 100%; max-width: 320px; aspect-ratio: 2 / 3; margin: 0 auto;
  border-radius: 4px; overflow: hidden; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(196,112,90,0.2);
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-cover-placeholder-text {
  font-family: 'Playfair Display', serif; font-style: italic;
  color: var(--brick); opacity: 0.5; font-size: 1rem; text-align: center; padding: 2rem;
}
#about-book { background: var(--white); padding: 7rem 4rem; }
#about-book .section-headline { max-width: none; }
#about-book .section-body { max-width: none; margin-bottom: 1.5rem; }
#about-book .section-body:last-child { margin-bottom: 0; }
#book-cta { background: var(--rose-pale); padding: 5rem 4rem; text-align: center; }

/* ── PRIVACY POLICY / LEGAL PAGES ── */
#privacy-hero { background: var(--rose-pale); padding: calc(80px + 4rem) 4rem 3rem; }
#privacy-hero .section-headline { max-width: none; margin-bottom: 0.5rem; }
.legal-effective-date { font-size: 0.85rem; color: var(--gray); letter-spacing: 0.02em; font-style: italic; }

.legal-content { background: var(--white); padding: 5rem 4rem; }
.legal-block { margin-bottom: 3rem; }
.legal-block:last-child { margin-bottom: 0; }
.legal-block h2 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--black); margin-bottom: 1rem;
}
.legal-block p { font-size: 1rem; line-height: 1.8; color: var(--gray); font-weight: 300; margin-bottom: 1.25rem; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul { margin: 0 0 1.25rem 1.25rem; padding: 0; }
.legal-block ul:last-child { margin-bottom: 0; }
.legal-block li { font-size: 1rem; line-height: 1.8; color: var(--gray); font-weight: 300; margin-bottom: 0.5rem; }
.legal-block li:last-child { margin-bottom: 0; }
.legal-block a { color: var(--rose); text-decoration: underline; }
.legal-block a:hover { color: var(--brick); }

/* ── SINGLE TRAILBLAZER ── */
.trailblazer-hero {
  background: var(--rose-pale); padding: calc(80px + 4rem) 4rem 4rem;
  display: grid; grid-template-columns: 320px 1fr; gap: 3rem; align-items: center;
}
.trailblazer-hero-photo {
  width: 320px; height: 320px; border-radius: 4px; overflow: hidden;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(196,112,90,0.2); flex-shrink: 0;
}
.trailblazer-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.trailblazer-hero-photo .leader-initials { font-size: 5rem; }
.trailblazer-hero-name {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -0.03em;
  color: var(--black); margin-bottom: 0.5rem;
}
.trailblazer-hero-role { font-size: 1rem; color: var(--rose); font-weight: 500; margin-bottom: 1.25rem; }
.trailblazer-hero-meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem;
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray);
}
.trailblazer-hero-quote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.4rem; line-height: 1.4; color: var(--black);
  border-left: 3px solid var(--rose); padding-left: 1.25rem; max-width: 600px;
}

.trailblazer-story { max-width: 760px; margin: 0 auto; padding: 5rem 4rem; }
.story-block { margin-bottom: 3rem; }
.story-block:last-child { margin-bottom: 0; }
.story-block h2 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--black); margin-bottom: 1rem;
}
.story-block p { font-size: 1rem; line-height: 1.8; color: var(--gray); font-weight: 300; white-space: pre-line; }

.trailblazer-social { background: var(--black); padding: 4rem; text-align: center; }
.trailblazer-social p {
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.trailblazer-social-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.trailblazer-social-links a {
  background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.15);
  padding: 0.75rem 1.5rem; border-radius: 2px; text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.trailblazer-social-links a:hover { background: var(--rose); border-color: var(--rose); }

/* ── NOMINATE ── */
#nominate {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  background: var(--black); padding: 7rem 4rem;
}
#nominate .eyebrow { color: var(--rose-light); }
#nominate .eyebrow::before { background: var(--rose-light); }
#nominate .section-headline { color: white; }
#nominate .section-headline em { color: var(--rose-light); }
#nominate .section-body { color: rgba(255,255,255,0.55); }

.nominate-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 500;
}
.form-field input, .form-field textarea, .form-field select {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px; padding: 0.75rem 1rem; color: white;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--rose); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select option { background: var(--black); }
.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.25); line-height: 1.5; }

/* CF7 wrapper neutralization so our custom .form-field / .form-row layout is untouched */
.wpcf7-form-control-wrap { display: contents; }
.wpcf7 form .wpcf7-response-output {
  margin: 0; border-radius: 2px; font-size: 0.8rem;
}
#nominate .wpcf7-response-output { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.wpcf7-not-valid-tip { font-size: 0.72rem; color: var(--rose-light); margin-top: 0.2rem; }
.contact-form .wpcf7-not-valid-tip { color: var(--brick); }
.wpcf7-spinner { margin-left: 0.75rem; }

/* ── PLATFORMS ── */
#platforms { background: var(--white); text-align: center; padding: 7rem 4rem; }
#platforms .eyebrow { justify-content: center; }
#platforms .eyebrow::before { display: none; }
#platforms .section-headline { margin: 0 auto 1.5rem; text-align: center; }
#platforms .section-body { margin: 0 auto 4rem; text-align: center; }
.platforms-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; max-width: 800px; margin: 0 auto;
}
.platform-card {
  border: 1px solid var(--border); border-radius: 4px; padding: 3rem 2.5rem;
  text-align: left; transition: border-color 0.2s, transform 0.2s;
  text-decoration: none; display: block; color: inherit;
}
.platform-card:hover { border-color: var(--brick); transform: translateY(-2px); }
.platform-icon { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
.platform-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem;
}
.platform-handle { font-size: 0.8rem; color: var(--rose); font-weight: 500; letter-spacing: 0.04em; margin-bottom: 1rem; }
.platform-desc { font-size: 0.875rem; line-height: 1.65; color: var(--gray); font-weight: 300; }

/* ── CONTACT ── */
#contact {
  background: var(--teal-light); padding: 7rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
#contact .eyebrow { color: var(--brick); }
#contact .eyebrow::before { background: var(--brick); }
#contact .section-headline em { color: var(--brick); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form .form-field label { color: var(--gray); }
.contact-form .form-field input,
.contact-form .form-field textarea,
.contact-form .form-field select {
  background: white; border: 1px solid var(--border); color: var(--black);
}
.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder { color: #ccc; }
.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus,
.contact-form .form-field select:focus { border-color: var(--brick); }
.contact-form .form-field select option { background: white; color: var(--black); }

/* ── FOOTER ── */
footer {
  background: var(--black); padding: 3rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo-img { height: 44px; width: auto; display: block; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: white; text-decoration: none;
}
.footer-logo span { color: var(--rose); }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-top: 0.25rem; font-style: italic; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s;
}
.footer-links a:hover { color: var(--rose); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ── SCREEN-READER ONLY (accessibility helper, not visible design change) ── */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: var(--white); color: var(--black);
  clip: auto; clip-path: none; height: auto; width: auto;
  overflow: visible; padding: 0.75rem 1.25rem; margin: 0;
  position: fixed; top: 0.5rem; left: 0.5rem; z-index: 999;
  border-radius: 2px; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  font-size: 0.85rem; text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 0.5rem 1.5rem 1.5rem; box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { display: block; padding: 0.85rem 0; }
  .nav-links .nav-cta { display: inline-block; margin-top: 0.5rem; text-align: center; }
  #home { grid-template-columns: 1fr; }
  .hero-right { min-height: 380px; }
  .hero-left { padding: 4rem 1.5rem; }
  #about, #nominate, #contact { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  #spotlights, #platforms, #paved-the-way { padding: 5rem 1.5rem; }
  .spotlights-grid, .platforms-grid { grid-template-columns: 1fr; }
  .spotlights-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stats-bar { flex-wrap: wrap; padding: 2rem 1.5rem; }
  .stat-divider { display: none; }
  .accent-band { padding: 2rem 1.5rem; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .accent-block { position: static; margin-top: 2rem; width: 100%; }
  .archive-hero { padding: calc(80px + 2.5rem) 1.5rem 2rem; }
  #archive-grid { padding: 2.5rem 1.5rem 5rem; }
  .trailblazer-hero { grid-template-columns: 1fr; padding: calc(80px + 2.5rem) 1.5rem 2.5rem; text-align: center; }
  .trailblazer-hero-photo { width: 220px; height: 220px; margin: 0 auto; }
  .trailblazer-hero-meta { justify-content: center; }
  .trailblazer-hero-quote { margin: 0 auto; text-align: left; }
  .trailblazer-story { padding: 3rem 1.5rem; }
  .trailblazer-social { padding: 2.5rem 1.5rem; }
  #about-hero { padding: calc(80px + 2.5rem) 1.5rem 2.5rem; }
  .about-stats-row { padding: 2rem 1.5rem; }
  #the-problem-intro { padding: 5rem 1.5rem 0; }
  #the-problem-detail, #what-we-do, #founder-story, #get-involved { padding: 3rem 1.5rem; }
  #book-hero { grid-template-columns: 1fr; padding: calc(80px + 2.5rem) 1.5rem 2.5rem; text-align: center; }
  #book-hero .book-cover { order: -1; margin-bottom: 2rem; }
  #about-book, #book-cta { padding: 3rem 1.5rem; }
  #privacy-hero { padding: calc(80px + 2.5rem) 1.5rem 2.5rem; }
  .legal-content { padding: 3rem 1.5rem; }
}
