/* ============================================================
   AkindaCo — Positive Behaviour Support
   styles.css
   ============================================================ */

:root {
  /* Palette */
  --cream:      #FBF7F1;
  --cream-2:    #F4ECE1;
  --ink:        #21302A;
  --forest:     #1E4D3B;
  --forest-2:   #2C6B52;
  --sage:       #8FBFA6;
  --sage-soft:  #DCEBE1;
  --coral:      #E86A4F;
  --coral-dark: #D2543B;
  --sun:        #F4B95F;
  --muted:      #63736B;
  --line:       #E7DED0;
  --white:      #ffffff;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  /* Shape */
  --radius:    18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(33, 48, 42, 0.06);
  --shadow:    0 14px 40px rgba(33, 48, 42, 0.10);
  --shadow-lg: 0 30px 70px rgba(30, 77, 59, 0.18);

  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--serif); line-height: 1.08; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: var(--forest); text-decoration: none; }
img, svg { max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 44px); }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--forest); color: #fff; padding: 10px 16px;
  border-radius: 10px; z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 12px; }

.kicker {
  font-family: var(--sans);
  font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--coral-dark); margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--forest);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 14px 24px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  box-shadow: var(--shadow-sm);
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { --btn-bg: var(--coral); --btn-fg: #fff; box-shadow: 0 10px 24px rgba(232, 106, 79, 0.32); }
.btn-primary:hover { --btn-bg: var(--coral-dark); box-shadow: 0 16px 34px rgba(210, 84, 59, 0.40); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--forest); box-shadow: none; border: 1.5px solid rgba(30,77,59,.22); }
.btn-ghost:hover { --btn-bg: rgba(30,77,59,.05); box-shadow: none; }
.btn-light { --btn-bg: #fff; --btn-fg: var(--forest); }
.btn-lg { padding: 17px 30px; font-size: 1.06rem; }
.btn-sm { padding: 10px 18px; font-size: .92rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 241, 0.82);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 24px rgba(33,48,42,.05); }
.header-inner { display: flex; align-items: center; gap: 20px; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); }
.brand-mark { flex: none; }
.brand-name { font-size: 1.4rem; font-weight: 600; color: var(--forest); letter-spacing: -0.02em; }
.brand-co { color: var(--coral); }
.brand-mark { border-radius: 50%; }

.nav { display: flex; gap: 6px; margin-left: auto; }
.nav a {
  color: var(--ink); font-weight: 500; font-size: .96rem;
  padding: 9px 14px; border-radius: 999px; transition: background .2s, color .2s;
}
.nav a:hover { background: var(--sage-soft); color: var(--forest); }
.nav-cta { flex: none; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--forest); border-radius: 2px; margin: 5px 0; transition: transform .3s var(--ease), opacity .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); }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 12px clamp(20px,5vw,44px) 22px; border-top: 1px solid var(--line); background: var(--cream); }
.mobile-nav a { padding: 12px 8px; font-weight: 500; color: var(--ink); border-radius: 12px; }
.mobile-nav a:hover { background: var(--sage-soft); }
.mobile-nav .btn { margin-top: 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(64px, 11vw, 120px) 0 clamp(56px, 8vw, 96px); overflow: hidden; }
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; z-index: 1; pointer-events: none; }
.hero-blob-1 { width: 520px; height: 520px; background: radial-gradient(circle, #F6D7A6, transparent 68%); top: -140px; right: -120px; }
.hero-blob-2 { width: 460px; height: 460px; background: radial-gradient(circle, #CFE6D6, transparent 66%); bottom: -180px; left: -140px; }

.eyebrow {
  display: inline-block; font-weight: 600; font-size: .86rem; letter-spacing: .06em;
  color: var(--forest-2); background: var(--sage-soft);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 26px;
}
.hero-title { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 600; letter-spacing: -0.025em; }
.hl { position: relative; color: var(--coral); font-style: italic; white-space: nowrap; }
.hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 6%; height: 34%;
  background: rgba(244, 185, 95, 0.38); border-radius: 4px; z-index: -1; transform: rotate(-1.2deg);
}
.hero-lede { font-size: clamp(1.08rem, 1.9vw, 1.32rem); color: var(--muted); max-width: 640px; margin-top: 26px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-reassure { margin-top: 18px; color: var(--forest-2); font-weight: 500; font-size: .98rem; }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 40px; }
.trust-row li { position: relative; color: var(--muted); font-weight: 500; font-size: .92rem; padding-left: 24px; }
.trust-row li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-sub { margin-top: 18px; color: var(--muted); font-size: 1.1rem; }

/* ---------- Empathy ---------- */
.empathy { background: var(--white); }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.pain-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 26px 56px; font-size: 1.06rem; color: var(--ink); position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pain-card::before {
  content: ""; position: absolute; left: 22px; top: 30px; width: 18px; height: 18px;
  background: var(--coral); border-radius: 6px; opacity: .85;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 21s-7-4.35-9.5-8.5C.9 9.6 2.4 6 5.8 6 8 6 9.3 7.4 12 10c2.7-2.6 4-4 6.2-4 3.4 0 4.9 3.6 3.3 6.5C19 16.65 12 21 12 21z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 21s-7-4.35-9.5-8.5C.9 9.6 2.4 6 5.8 6 8 6 9.3 7.4 12 10c2.7-2.6 4-4 6.2-4 3.4 0 4.9 3.6 3.3 6.5C19 16.65 12 21 12 21z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.empathy-close {
  margin-top: 44px; font-family: var(--serif); font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.35; color: var(--forest); max-width: 800px;
}
.empathy-close strong { color: var(--coral-dark); }

/* ---------- PBS ---------- */
.pbs { background: var(--forest); color: #fff; }
.pbs .kicker { color: var(--sun); }
.pbs-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.pbs-copy h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 22px; }
.pbs-copy p { color: rgba(255,255,255,.82); font-size: 1.08rem; margin-top: 16px; }
.pbs-copy em { color: var(--sun); font-style: italic; }

.principles { display: grid; gap: 16px; }
.principle {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 24px 26px;
  transition: transform .3s var(--ease), background .3s;
}
.principle:hover { transform: translateY(-3px); background: rgba(255,255,255,.1); }
.principle-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px; background: rgba(244,185,95,.16); color: var(--sun); margin-bottom: 14px;
}
.principle h3 { color: #fff; font-size: 1.24rem; margin-bottom: 6px; }
.principle p { color: rgba(255,255,255,.72); font-size: .98rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--sage-soft); color: var(--forest);
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.28rem; margin-bottom: 8px; }
.step p { color: var(--muted); }
.step:not(:last-child) .step-num::after {
  content: ""; position: absolute; left: 62px; top: 34px; height: 2px; width: calc(100% - 62px);
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
@media (max-width: 720px){ .step:not(:last-child) .step-num::after { display: none; } }

.steps-5 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.steps-note {
  margin-top: 40px; text-align: center; color: var(--forest);
  font-size: 1.1rem; font-weight: 500;
}

/* ---------- What this looks like for you ---------- */
.expect { background: var(--cream-2); }
.expect-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.expect-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 28px 28px 60px; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.expect-card::before {
  content: ""; position: absolute; left: 24px; top: 32px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}
.expect-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.expect-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.expect-card p { color: var(--muted); font-size: .99rem; }

/* ---------- Funding ---------- */
.funding { background: var(--sage-soft); }
.funding-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 76px); align-items: start; }
.funding-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 20px; }
.funding-copy p { color: var(--ink); font-size: 1.06rem; margin-top: 16px; }
.funding-copy strong { color: var(--forest); }
.fund-card {
  background: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow); border-left: 6px solid var(--forest);
}
.fund-card h3 { font-size: 1.35rem; color: var(--forest); margin-bottom: 20px; }
.fund-rows { margin: 0; display: grid; gap: 16px; }
.fund-row { display: grid; gap: 3px; padding-bottom: 16px; border-bottom: 1px dashed var(--line); }
.fund-row:last-child { border-bottom: 0; padding-bottom: 0; }
.fund-row dt {
  font-weight: 600; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--coral-dark);
}
.fund-row dd { margin: 0; color: var(--ink); font-weight: 500; font-size: 1.02rem; }
.fund-note { color: var(--muted); font-weight: 400; font-size: .92rem; }

/* ---------- Rights & safeguards ---------- */
.rights { background: var(--cream); }
.rights-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.rights-lede { font-weight: 600; color: var(--forest); font-size: 1.1rem; margin-bottom: 16px; }
.rights-list { display: grid; gap: 12px; }
.rights-list li { position: relative; padding-left: 32px; color: var(--ink); font-weight: 500; }
.rights-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}
.rights-contacts { margin-top: 26px; color: var(--muted); font-size: 1rem; }
.rights-contacts a { font-weight: 600; }
.rp-card {
  background: var(--white); border: 1px solid var(--line); border-left: 6px solid var(--sun);
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 38px); box-shadow: var(--shadow-sm);
}
.rp-card h3 { font-size: 1.3rem; color: var(--forest); margin-bottom: 12px; }
.rp-card p { color: var(--muted); font-size: 1rem; }

/* ---------- Who ---------- */
.who { background: var(--white); }
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.who-card {
  background: linear-gradient(180deg, var(--cream), var(--white));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.who-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--sage); }
.who-age {
  display: inline-flex; align-items: baseline; font-family: var(--serif); font-weight: 600;
  font-size: 2rem; color: var(--coral); background: rgba(232,106,79,.1);
  padding: 4px 16px; border-radius: 999px; margin-bottom: 18px;
}
.who-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.who-card p { color: var(--muted); }
.who-note {
  margin-top: 36px; text-align: center; max-width: 720px; margin-inline: auto;
  color: var(--forest); font-size: 1.12rem; font-weight: 500;
}

/* ---------- About ---------- */
.about-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-card {
  background: var(--forest); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 56px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.about-card::before { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(244,185,95,.28), transparent 70%); top: -80px; right: -60px; }
.about-quote { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.4; margin-top: 22px; position: relative; }
.about-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin: 14px 0 20px; }
.about-copy p { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }
.about-copy em { color: var(--forest-2); font-style: italic; }
.about-list { margin-top: 24px; display: grid; gap: 12px; }
.about-list li { position: relative; padding-left: 32px; color: var(--ink); font-weight: 500; }
.about-list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream-2); }
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.quote-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; position: relative; box-shadow: var(--shadow-sm); margin: 0;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote-card::before {
  content: "\201C"; font-family: var(--serif); font-size: 4rem; color: var(--sage);
  line-height: 1; position: absolute; top: 14px; left: 22px; opacity: .55;
}
.quote-card blockquote { margin: 26px 0 18px; font-size: 1.1rem; color: var(--ink); line-height: 1.55; position: relative; }
.quote-card figcaption { color: var(--muted); font-weight: 600; font-size: .95rem; }
.quote-note { margin-top: 28px; text-align: center; color: var(--muted); font-size: .92rem; }

/* ---------- Contact booking button ---------- */
.contact-book { margin-top: 26px; }

/* ---------- Big CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.09);
}
.cta-band::before { width: 340px; height: 340px; top: -160px; left: -80px; }
.cta-band::after { width: 300px; height: 300px; bottom: -170px; right: -60px; }
.cta-inner { position: relative; z-index: 2; padding: clamp(64px, 9vw, 108px) 0; max-width: 780px; margin-inline: auto; }
.cta-inner h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); color: #fff; }
.cta-inner p { margin: 20px auto 34px; font-size: 1.16rem; color: rgba(255,255,255,.92); max-width: 560px; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-inner { max-width: 820px; margin-inline: auto; }
.faq .section-head { margin-inline: auto; text-align: center; }
.accordion { display: grid; gap: 14px; }
.acc-item {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.acc-item[open] { box-shadow: var(--shadow); border-color: var(--sage); }
.acc-item summary {
  cursor: pointer; list-style: none; padding: 22px 56px 22px 26px; position: relative;
  font-family: var(--serif); font-size: 1.16rem; font-weight: 600; color: var(--forest);
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::after {
  content: ""; position: absolute; right: 24px; top: 50%; width: 13px; height: 13px;
  border-right: 2.4px solid var(--coral); border-bottom: 2.4px solid var(--coral);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.acc-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.acc-body { padding: 0 26px 24px; }
.acc-body p { color: var(--muted); font-size: 1.02rem; }

/* ---------- Contact ---------- */
.contact { background: var(--cream-2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.contact-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 18px; }
.contact-copy > p { color: var(--muted); font-size: 1.1rem; }
.contact-details { margin-top: 30px; display: grid; gap: 16px; }
.contact-details li { display: flex; align-items: center; gap: 14px; }
.contact-details a { color: var(--forest); font-weight: 600; font-size: 1.08rem; }
.contact-details a:hover { color: var(--coral-dark); }
.ci { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--white); color: var(--forest); box-shadow: var(--shadow-sm); flex: none; }

.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-narrow { max-width: 200px; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 7px; }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--cream); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); background: #fff;
  box-shadow: 0 0 0 4px rgba(143,191,166,.22);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-fineprint { margin-top: 12px; font-size: .84rem; color: var(--muted); text-align: center; }
.form-status { margin-top: 14px; font-weight: 600; text-align: center; min-height: 1.2em; }
.form-status.ok { color: var(--forest-2); }
.form-status.err { color: var(--coral-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: clamp(48px, 6vw, 72px) 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; align-items: start; }
.site-footer .brand-name { color: #fff; }
.footer-brand p { margin-top: 14px; max-width: 320px; font-size: .98rem; }
.footer-nav { display: grid; gap: 10px; }
.footer-nav a, .footer-contact a { color: rgba(255,255,255,.72); font-weight: 500; transition: color .2s; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--sun); }
.footer-contact { display: grid; gap: 10px; }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 12px 30px; justify-content: space-between; align-items: center; }
.acknowledgement { font-size: .86rem; max-width: 620px; color: rgba(255,255,255,.55); }
.copyright { font-size: .86rem; color: rgba(255,255,255,.55); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav.open { display: flex; }
  .pbs-inner, .about-inner, .contact-inner, .funding-inner, .rights-grid { grid-template-columns: 1fr; }
  .about-media { order: 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
