/* =========================================================
   Playing It Forward Foundation — Styles
   Brand: navy #14254f, logo brown #9d5a2b, cream #faf6f0
   ========================================================= */

/* Self-hosted Inter (variable, covers weights 100–900).
   Shipped with the site so the font never depends on Google Fonts. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/InterVariable.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/InterVariable-Italic.woff2') format('woff2');
}

:root {
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --navy: #14254f;
  --navy-2: #1c3164;
  --navy-deep: #0c1937;
  --bronze: #7c4019;       /* logo brown — primary (darkened) */
  --bronze-2: #92501f;     /* logo brown — accents/hover (darkened, no orange) */
  --bronze-soft: #e6c9a8;
  --cream: #faf6f0;
  --cream-2: #f1e9da;
  --ink: #1b1f2a;
  --muted: #5a6478;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(20, 37, 79, 0.08);
  --shadow-md: 0 10px 30px rgba(20, 37, 79, 0.12);
  --shadow-lg: 0 30px 60px rgba(20, 37, 79, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --header-h: 112px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; color: var(--navy); }
h1 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.015em; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(250, 246, 240, 0.95);
  border-bottom-color: rgba(20, 37, 79, 0.08);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.brand-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand-text-1 { font-size: 0.85rem; color: var(--navy); }
.brand-text-2 { font-size: 1.1rem; color: var(--bronze); }

.primary-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  transition: background .2s ease, color .2s ease;
}
.nav-list a:hover { background: rgba(20, 37, 79, 0.06); color: var(--bronze); }
/* Donate button keeps white text (override the navy nav-link color). */
.nav-list a.btn-primary,
.nav-list a.btn-primary:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  border-radius: 10px;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--bronze);
  color: #fff;
  box-shadow: 0 8px 20px rgba(164, 90, 42, 0.35);
}
.btn-primary:hover { background: var(--bronze-2); box-shadow: 0 12px 26px rgba(164, 90, 42, 0.45); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover { background: #fff; color: var(--navy); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 80px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 85% 10%, rgba(164, 90, 42, 0.18), transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(20, 37, 79, 0.12), transparent 60%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 37, 79, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 37, 79, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
}
.eyebrow-dark { color: var(--bronze); }
.eyebrow-light { color: #fff; }

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 0 0 18px;
  color: var(--navy);
  line-height: 1;
}
.hero-title .accent { color: var(--bronze); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  padding: 22px 0 0;
  margin: 0;
  border-top: 1px solid rgba(20, 37, 79, 0.12);
  max-width: 520px;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.hero-stats span { font-size: 0.85rem; color: var(--muted); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Transparent container — no card/frame. The logo blends straight into
   the hero background via the image's multiply blend mode. */
.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 28px;
}
.hero-visual-float {
  width: 100%;
  height: 100%;
}
.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 96px 0; position: relative; scroll-margin-top: var(--header-h); }
#top { scroll-margin-top: 0; }
.section-light { background: var(--cream); }
.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #e8ecf6;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-impact {
  background:
    radial-gradient(80% 80% at 10% 0%, rgba(164,90,42,0.25), transparent 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #e8ecf6;
}
.section-impact h2 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head-center { margin: 0 auto 56px; text-align: center; }
.lede { font-size: 1.12rem; color: var(--muted); }
.lede-light { color: rgba(255,255,255,0.78); }
.section-dark .lede, .section-impact .lede { color: rgba(255,255,255,0.78); }

/* two-col */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.two-col-flip { grid-template-columns: 1fr 1.1fr; }

.col-text p:last-child { margin-bottom: 0; }

.col-card {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.quote {
  margin: 0;
  padding: 36px 32px;
  background: var(--white);
  border-left: 6px solid var(--bronze);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.5;
}
.quote p { margin: 0 0 14px; font-weight: 500; font-style: italic; }
.quote footer { font-size: 0.9rem; color: var(--muted); font-style: normal; }

/* value-grid (purpose) */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(196, 113, 56, 0.5);
}
.value-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-2));
  color: #fff;
  margin-bottom: 16px;
}
.value-icon svg { width: 24px; height: 24px; }
.value-card h3 { color: #fff; margin-bottom: 6px; }
.value-card p { color: rgba(255,255,255,0.75); margin: 0; font-size: 0.95rem; }

/* cover-grid */
.cover-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cover-grid li {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(20, 37, 79, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.cover-grid li::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(164,90,42,0.12), transparent 70%);
}
.cover-grid li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(164, 90, 42, 0.35);
}
.cover-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--bronze);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.cover-grid h3 { margin-bottom: 6px; }
.cover-grid p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* impact */
.impact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.impact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.impact-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.impact-stats li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.impact-stats strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--bronze-2);
  letter-spacing: -0.01em;
  min-width: 60px;
}
.impact-stats span { color: rgba(255,255,255,0.85); }

/* donate CTA */
.donate-wrap {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.donate-wrap .involve-actions { justify-content: center; }

/* contact */
.involve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 14px;
  border: 1px solid rgba(20, 37, 79, 0.08);
}

/* Goal thermometer */
.goal-card {
  align-self: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(20, 37, 79, 0.08);
  text-align: center;
}
.goal-card h3 { margin: 0 0 4px; color: var(--ink); }
.goal-card .goal-sub { margin: 0 0 20px; color: var(--muted); font-size: 0.96rem; }

.thermometer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 9px;
  height: 150px;
  margin: 0 auto 16px;
}
.thermo-track {
  position: relative;
  width: 13px;
  height: 115px;
  margin-bottom: 23px;
  background: linear-gradient(180deg, #f1ece4, #e6ddd0);
  border-radius: 7px;
  box-shadow: inset 0 1px 3px rgba(27, 31, 42, 0.16),
              inset 0 -1px 1px rgba(255, 255, 255, 0.7);
}
/* glass reservoir bulb */
.thermo-track::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f1ece4, #e2d8c9);
  box-shadow: inset 0 1px 3px rgba(27, 31, 42, 0.16);
  z-index: 0;
}
.thermo-fill {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(180deg, #e89150 0%, var(--bronze-2) 45%, var(--bronze) 100%);
  box-shadow: 0 0 9px rgba(196, 113, 56, 0.5);
  transition: height 1.3s cubic-bezier(.2, .8, .2, 1);
  z-index: 1;
}
/* mercury reservoir (always filled) with glossy highlight */
.thermo-fill::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0a868 0%, var(--bronze-2) 45%, var(--bronze) 100%);
  box-shadow: 0 3px 9px rgba(164, 90, 42, 0.45);
  z-index: 1;
}
/* live percentage pill that rides the top of the fill */
.thermo-pct {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 6px;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 3px 7px rgba(27, 31, 42, 0.25);
  z-index: 2;
}
.thermo-pct::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 1px;
}
.thermo-scale {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 115px;
  margin: 0 0 23px;
  padding: 0;
  list-style: none;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--muted);
}
.thermo-scale li {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.thermo-scale li::before {
  content: "";
  width: 5px;
  height: 2px;
  background: rgba(27, 31, 42, 0.2);
  border-radius: 1px;
}
.thermo-amounts {
  display: grid;
  gap: 2px;
  margin-bottom: 20px;
}
.thermo-raised {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--bronze-2), var(--bronze));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.thermo-caption { font-size: 0.92rem; color: var(--muted); }
.thermo-caption strong { color: var(--ink); }
.contact-card h3 { margin-bottom: 0; }
.contact-sub { color: var(--muted); margin: 0 0 6px; }
.contact-card label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.contact-card input,
.contact-card select,
.contact-card textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid rgba(20, 37, 79, 0.15);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  font-weight: 400;
}
.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  outline: 0;
  border-color: var(--bronze);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(164, 90, 42, 0.15);
}
.form-success {
  margin: 0;
  padding: 12px 14px;
  background: rgba(34, 139, 84, 0.1);
  color: #186b3f;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-logo { width: 112px; height: 112px; object-fit: contain; background: #fff; padding: 10px; border-radius: 14px; }
.footer-brand p { margin: 0; }
.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.site-footer a { color: rgba(255,255,255,0.78); transition: color .2s ease; }
.site-footer a:hover { color: var(--bronze-2); }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
/* Email choice menu */
.email-menu {
  position: relative;
  display: inline-block;
}
.email-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 6px 10px;
  font: inherit;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.email-trigger:hover,
.email-menu.is-open .email-trigger {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}
.email-trigger > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.email-icon { width: 18px; height: 18px; flex-shrink: 0; }
.email-caret { width: 14px; height: 14px; flex-shrink: 0; transition: transform .2s ease; }
.email-menu.is-open .email-caret { transform: rotate(180deg); }

.email-options {
  position: absolute;
  left: 0;
  bottom: calc(100% + 6px);
  z-index: 20;
  min-width: 100%;
  display: grid;
  padding: 6px;
  background: #1b1b1b;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.email-options[hidden] { display: none; }
.email-options a,
.email-options button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  font: inherit;
  white-space: nowrap;
  color: rgba(255,255,255,0.82);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: color .15s ease, background .15s ease;
}
.opt-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.email-options a:hover,
.email-options button:hover,
.email-options a:focus-visible,
.email-options button:focus-visible {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.email-copy.is-copied { color: var(--bronze-2); }

/* =========================================================
   POLICIES (footer cards)
   ========================================================= */
.policy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.policy-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 8pt;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
.policy-card h4 {
  margin: 0 0 8px;
  font-size: 8pt;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bronze-2);
}
.policy-card p { margin: 0 0 8px; }
.policy-card p:last-child { margin-bottom: 0; }
.policy-card .policy-meta {
  margin-top: 10px;
  font-style: italic;
  color: rgba(255,255,255,0.45);
}
.policy-card strong { color: rgba(255,255,255,0.92); }
.policy-card a { color: var(--bronze-2); text-decoration: underline; }
.policy-card a:hover { color: var(--bronze-soft); }

.footer-policy-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-visual-frame { max-width: 320px; }
  .two-col, .two-col-flip { grid-template-columns: 1fr; gap: 32px; }
  .col-card { position: static; }
  .impact-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .cover-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .policy-cards { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .hero { padding-top: calc(var(--header-h) + 32px); padding-bottom: 64px; }

  .nav-toggle { display: block; }
  .nav-list {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(20, 37, 79, 0.1);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list li { width: 100%; }
  .nav-list a {
    display: block;
    padding: 14px 12px;
    border-radius: 10px;
    font-size: 1rem;
  }
  .nav-list a.btn-primary { text-align: center; margin-top: 6px; }

  .brand-text-1 { font-size: 0.78rem; }
  .brand-text-2 { font-size: 1rem; }
  .brand-logo { width: 80px; height: 80px; }

  .hero-stats { grid-template-columns: 1fr; gap: 14px; }
  .hero-stats li { flex-direction: row; align-items: baseline; gap: 12px; }
  .value-grid { grid-template-columns: 1fr; }
  .cover-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* =========================================================
   BACK TO TOP / HOME
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(20, 37, 79, 0.35);
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .2s ease, box-shadow .2s ease;
}
.back-to-top svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.back-to-top:hover {
  background: var(--bronze);
  box-shadow: 0 18px 36px rgba(164, 90, 42, 0.45);
  transform: translateY(0) scale(1);
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(164, 90, 42, 0.4), 0 14px 30px rgba(20, 37, 79, 0.35);
}

@media (max-width: 720px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    padding: 12px;
  }
  .back-to-top span { display: none; }
  .back-to-top svg { width: 20px; height: 20px; }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
