/* ============================================
   ALLERGY PRACTICE SOLUTIONS — Ghost Theme
   Forest Green + Gold · Panda Mascot
   ============================================ */

:root {
  --forest: #1A3A2E;
  --forest-dark: #122820;
  --forest-mid: #234B3D;
  --gold: #D4A93C;
  --gold-light: #E8C25C;
  --cream: #F7F5EE;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #5C6B66;
  --border-soft: rgba(26, 58, 46, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --max-width: 1180px;
  --content-width: 720px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

/* ── HEADER ── */
.site-header {
  background: var(--forest);
  color: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
}
.site-logo:hover { color: var(--white); }

.site-logo-panda {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.site-logo-text span {
  display: block;
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--gold); }

.site-nav-cta {
  background: var(--gold);
  color: var(--forest-dark) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
}
.site-nav-cta:hover {
  background: var(--gold-light);
  color: var(--forest-dark) !important;
}

.site-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* ── HERO ── */
.site-hero {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 60%, var(--forest-mid) 100%);
  color: var(--white);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 169, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 169, 60, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.site-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.site-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 24px;
}
.site-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.site-hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
  max-width: 500px;
}

.site-hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest-dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--forest-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.site-hero-panda {
  position: relative;
  text-align: center;
}
.site-hero-panda img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212, 169, 60, 0.15);
  border: 1px solid rgba(212, 169, 60, 0.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ── SECTIONS ── */
section {
  padding: 80px 24px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── OPPORTUNITY SECTION ── */
.opportunity {
  background: var(--cream);
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.opp-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}
.opp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 58, 46, 0.08);
}

.opp-icon-circle {
  width: 54px;
  height: 54px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 20px;
}

.opp-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}

.opp-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── SERVICES SECTION ── */
.services {
  background: var(--white);
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--border-soft);
  align-items: start;
}
.service-row:last-child { border-bottom: none; }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
}

.service-cpt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.services-footer {
  text-align: center;
  margin-top: 32px;
  font-style: italic;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 20px;
}

/* ── PROCESS SECTION ── */
.process {
  background: var(--forest);
  color: var(--white);
}
.process .section-title { color: var(--white); }
.process .section-label { color: var(--gold); }
.process .section-sub { color: rgba(255, 255, 255, 0.65); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 24px 16px;
}

.process-step-num {
  width: 52px;
  height: 52px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.process-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.process-tagline {
  text-align: center;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 169, 60, 0.25);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}

/* ── WHY MODEL WORKS / WHY PARTNER ── */
.why-works {
  background: var(--cream);
}

.why-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.why-check-list {
  list-style: none;
}

.why-check-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.65;
}
.why-check-list li:last-child { border-bottom: none; }

.why-check-list .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--forest);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  margin-top: 2px;
}

.why-callout {
  background: var(--forest);
  color: var(--white);
  padding: 36px 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
}

.why-callout-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-dark);
  font-size: 28px;
  flex-shrink: 0;
}

.why-callout-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
}

/* ── SUPPORT MODEL ── */
.support {
  background: var(--white);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.support-card {
  border-radius: 10px;
  padding: 36px;
  border: 1px solid var(--border-soft);
}

.support-card.aps {
  background: var(--cream);
  border-top: 4px solid var(--forest);
}

.support-card.clinic {
  background: var(--cream);
  border-top: 4px solid var(--gold);
}

.support-card h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 24px;
}

.support-card ul {
  list-style: none;
}

.support-card li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark);
}

.support-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--forest);
  font-weight: 700;
}

.support-card.clinic li::before { color: var(--gold); }

.support-tagline {
  background: var(--forest);
  color: var(--white);
  padding: 28px 36px;
  border-radius: 10px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.support-tagline img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
.support-tagline-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--white);
}

/* ── REVENUE CALCULATOR ── */
.calculator {
  background: var(--forest-dark);
  color: var(--white);
}
.calculator .section-title { color: var(--white); }
.calculator .section-label { color: var(--gold); }
.calculator .section-sub { color: rgba(255, 255, 255, 0.65); }

.calc-box {
  max-width: 640px;
  margin: 56px auto 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 169, 60, 0.2);
  padding: 40px 36px;
  border-radius: 10px;
}

.calc-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
.calc-label strong { color: var(--gold); font-weight: 600; }

.calc-box input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  border-radius: 2px;
  margin-bottom: 8px;
}
.calc-box input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
}
.calc-box input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); cursor: pointer; border: none;
}

.calc-result {
  border-top: 1px solid rgba(212, 169, 60, 0.25);
  padding-top: 32px;
  margin-top: 32px;
}

.calc-result-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.calc-result-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.calc-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
  line-height: 1.7;
  font-style: italic;
}

/* ── CTA SECTION ── */
.final-cta {
  background: var(--forest);
  color: var(--white);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.final-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.final-cta h2 em { color: var(--gold); font-style: italic; }

.final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-card {
  background: var(--cream);
  color: var(--text-dark);
  padding: 40px;
  border-radius: 10px;
  border: 2px solid var(--gold);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--forest);
  margin-bottom: 8px;
}
.contact-card-sub {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26, 58, 46, 0.1);
}
.contact-row:last-child { border-bottom: none; }

.contact-row-icon {
  width: 38px;
  height: 38px;
  background: var(--forest);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-row-text strong {
  display: block;
  font-size: 16px;
  color: var(--forest);
  margin-bottom: 2px;
}
.contact-row-text span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── POSTS / BLOG ── */
.post-feed {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
}

.post-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 58, 46, 0.1);
}

.post-card-image {
  aspect-ratio: 16/10;
  background: var(--forest);
  overflow: hidden;
}
.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-no-image {
  aspect-ratio: 16/10;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card-no-image img {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

.post-card-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-tags {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.post-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
}
.post-card h2 a {
  color: var(--forest);
}
.post-card h2 a:hover { color: var(--gold); }

.post-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.post-card-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── POST / PAGE ── */
.post-page {
  background: var(--white);
  min-height: 60vh;
}

.post-hero {
  background: var(--forest);
  color: var(--white);
  padding: 80px 24px 60px;
  text-align: center;
}

.post-hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.post-hero-tags {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 20px;
}

.post-hero-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.post-feature-image {
  max-width: 1000px;
  margin: -40px auto 0;
  padding: 0 24px;
}
.post-feature-image img {
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.post-content {
  max-width: var(--content-width);
  margin: 60px auto;
  padding: 0 24px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-dark);
}

.post-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--forest);
  margin: 56px 0 20px;
  line-height: 1.2;
}

.post-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--forest);
  margin: 40px 0 16px;
}

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

.post-content a {
  color: var(--forest);
  border-bottom: 2px solid var(--gold);
  transition: background 0.2s;
}
.post-content a:hover {
  background: rgba(212, 169, 60, 0.15);
}

.post-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--forest);
  line-height: 1.5;
}

.post-content img {
  margin: 32px 0;
  border-radius: 8px;
}

.post-content code {
  background: var(--cream);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: 'JetBrains Mono', Consolas, monospace;
}

.post-content pre {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 32px 0;
}
.post-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.post-content ul, .post-content ol {
  margin: 0 0 24px 24px;
}
.post-content li { margin-bottom: 8px; }

/* ── PAGINATION ── */
.pagination {
  max-width: var(--content-width);
  margin: 60px auto;
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-soft);
}

.pagination a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
}
.pagination a:hover { color: var(--gold); }

/* ── FOOTER ── */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 24px 32px;
}

.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.footer-brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-top: 6px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 8px;
  font-size: 14px;
}
.footer-col a { color: rgba(255, 255, 255, 0.6); }
.footer-col a:hover { color: var(--gold); }

.site-footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── PRIMARY TAGLINE STRIP ── */
.tagline-strip {
  background: var(--gold);
  color: var(--forest-dark);
  padding: 24px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-hero-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .site-hero-cta-row { justify-content: center; }
  .opportunity-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .why-works-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .post-feed-grid { grid-template-columns: 1fr 1fr; }
  .site-footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--forest);
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .site-nav-toggle { display: block; }
  .process-grid { grid-template-columns: 1fr; }
  .post-feed-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
}
