/* Punya Kaarya Foundation — 2026 design system */
:root {
  --saffron: #ff5a1f;
  --saffron-deep: #c2410c;
  --saffron-soft: #ffedd5;
  --teal: #0f766e;
  --teal-bright: #14b8a6;
  --teal-deep: #115e59;
  --gold: #f59e0b;
  --gold-soft: #fef3c7;
  --rose: #e11d48;
  --navy: #0b1220;
  --ink: #1c1917;
  --muted: #78716c;
  --line: rgba(28, 25, 23, 0.1);
  --cream: #fff7ed;
  --sand: #ffedd5;
  --paper: #fffaf5;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(11, 18, 32, 0.12);
  --radius: 28px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul {
  list-style: none;
}

.skip {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--navy);
  color: #fff;
  padding: 8px 14px;
  z-index: 100;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.wrap-wide {
  width: min(1320px, calc(100% - 32px));
  margin-inline: auto;
}

/* Grain */
body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 247, 237, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.06);
  background: rgba(255, 250, 245, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1320px, calc(100% - 32px));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-text span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.nav > li {
  position: relative;
}

.nav > li > a,
.nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.25s, color 0.25s;
}

.nav > li > a:hover,
.nav-btn:hover,
.nav > li > a.active,
.nav-btn.active {
  background: var(--saffron-soft);
  color: var(--saffron-deep);
}

.caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s var(--ease);
}

.nav > li:hover .dropdown,
.nav > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.dropdown a:hover,
.dropdown a.active {
  background: var(--cream);
  color: var(--saffron-deep);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--ink);
  left: 13px;
  border-radius: 2px;
}

.menu-toggle span {
  top: 21px;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--rose));
  color: #fff;
  box-shadow: 0 10px 24px rgba(225, 29, 72, 0.28);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-teal {
  background: var(--teal);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.25) 0%, rgba(11, 18, 32, 0.72) 58%, rgba(11, 18, 32, 0.92) 100%),
    radial-gradient(circle at 80% 20%, rgba(255, 90, 31, 0.35), transparent 40%);
}

.hero-content {
  padding: 72px 0 64px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin: 18px 0 22px;
}

.hero p.lead {
  max-width: 42ch;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 28px;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 560;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

/* Marquee */
.marquee {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  border-bottom: 4px solid var(--saffron);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 32s linear infinite;
  padding: 14px 0;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.marquee b {
  color: var(--gold);
  font-weight: 600;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Sections */
section {
  padding: 96px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head h2,
.page-hero h1,
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 16ch;
}

.eyebrow {
  color: var(--saffron-deep);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 10px;
}

.muted {
  color: var(--muted);
}

/* Quote split */
.founder-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.founder-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  gap: 36px;
  align-items: start;
}

.portrait-frame {
  margin: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}

.portrait-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.portrait-frame figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(11, 18, 32, 0.78);
  color: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  line-height: 1.3;
}

.portrait-frame figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.founder-inset {
  float: right;
  width: min(260px, 40%);
  margin: 4px 0 18px 28px;
  border-radius: 24px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
}

.founder-inset img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.founder-home-photo,
.avatar-photo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  border: 3px solid rgba(251, 191, 36, 0.7);
  margin-bottom: 16px;
}

.person .avatar-photo {
  width: 148px;
  height: 148px;
  border-radius: 24px;
  margin: 0 auto 14px;
  display: block;
  border: 0;
  box-shadow: var(--shadow);
}

.founder-work-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  margin-bottom: 22px;
  display: block;
}

.avatar-photo.large {
  width: 160px;
  height: 160px;
  border-radius: 28px;
  border: 0;
  box-shadow: var(--shadow);
}

.quote-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.quote-card::after {
  content: "“";
  position: absolute;
  right: 18px;
  top: -18px;
  font-family: var(--font-display);
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.sanskrit {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

.quote-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.2;
  margin: 18px 0 28px;
  font-weight: 500;
}

.quote-card cite {
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
}

.story-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-card p + p {
  margin-top: 16px;
}

/* Ethos bento */
.bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.bento-card {
  border-radius: var(--radius);
  padding: 36px;
  overflow: hidden;
  position: relative;
}

.bento-card.mission {
  background: linear-gradient(160deg, #fff 0%, var(--sand) 100%);
  border: 1px solid var(--line);
}

.bento-card.vision {
  background: linear-gradient(160deg, var(--teal-deep), #0f766e 60%, #14b8a6);
  color: #fff;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 8px 0 18px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.checklist li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  background: var(--saffron);
}

.vision .checklist li::before {
  background: var(--gold);
}

/* Work cards */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.work-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.work-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.work-card .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--saffron-soft);
  color: var(--saffron-deep);
}

.tag.teal {
  background: #ccfbf1;
  color: var(--teal-deep);
}

.tag.gold {
  background: var(--gold-soft);
  color: #92400e;
}

.tag.rose {
  background: #ffe4e6;
  color: var(--rose);
}

.work-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.link-arrow {
  margin-top: auto;
  font-weight: 600;
  color: var(--saffron-deep);
}

/* Timeline */
.timeline {
  display: grid;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(var(--saffron), var(--teal));
}

.tl-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 22px;
  padding: 18px 0;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--saffron);
  margin-top: 6px;
  z-index: 1;
}

.tl-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 24px;
  border: 1px solid var(--line);
}

.tl-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

/* People */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.person {
  background: #fff;
  border-radius: 22px;
  padding: 22px 18px 24px;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease);
}

.person:hover {
  transform: translateY(-6px);
}

.avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.person h3 {
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.role {
  color: var(--saffron-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bio {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Reach */
.reach {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: end;
}

.reach img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reach-panel {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(11, 18, 32, 0.88));
  color: #fff;
  padding: 48px 36px 36px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
}

/* Donors */
.donor-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.donor {
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.donor.featured {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}

.donor:hover {
  border-color: var(--saffron);
  color: var(--saffron-deep);
}

.donor.featured:hover {
  color: var(--gold);
}

/* Score snapshot */
.score-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 22px;
}

.stat-stack {
  display: grid;
  gap: 14px;
}

.stat-box {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
}

.stat-box b {
  font-family: var(--font-display);
  font-size: 2.4rem;
  display: block;
}

.bars {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
}

.bar-row {
  margin-bottom: 16px;
}

.bar-row span {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  margin-bottom: 6px;
}

.bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: inherit;
}

/* CTA */
.cta-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-radius: 36px;
  overflow: hidden;
  min-height: 380px;
}

.cta-copy {
  background: linear-gradient(145deg, var(--saffron), #e11d48 80%);
  color: #fff;
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 10px 0 16px;
}

.cta-copy .btn {
  align-self: flex-start;
  margin-top: 18px;
  background: #fff;
  color: var(--rose);
}

.cta-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Page hero */
.page-hero {
  padding: 72px 0 40px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 90, 31, 0.18), transparent 32%),
    radial-gradient(circle at 8% 80%, rgba(20, 184, 166, 0.16), transparent 30%),
    var(--cream);
}

.crumbs {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.crumbs a:hover {
  color: var(--saffron-deep);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  max-width: 16ch;
}

.page-hero .lead {
  max-width: 58ch;
  font-size: 1.15rem;
  margin-top: 16px;
  color: var(--muted);
}

/* Prose */
.prose p + p,
.prose ul {
  margin-top: 16px;
}

.prose {
  font-size: 1.05rem;
  max-width: 72ch;
}

.split-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
}

.panel h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 12px;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}

th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}

th.num,
td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

tr:last-child td {
  border-bottom: 0;
  font-weight: 700;
  background: var(--saffron-soft);
}

/* Forms */
.form {
  display: grid;
  gap: 14px;
}

label {
  font-size: 0.86rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.info-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.info-list b {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 42px;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer ul li {
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer p {
  margin-top: 10px;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

.policy-dates {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 20px;
}

.policy-toc ol {
  list-style: none;
  display: grid;
  gap: 8px;
}

.policy-toc a {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.policy-toc a:hover {
  color: var(--saffron-deep);
}

.policy-body {
  max-width: 72ch;
}

.policy-section {
  margin-top: 36px;
  padding-top: 8px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.policy-body h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 14px;
}

.policy-body ul {
  margin: 12px 0 16px 20px;
}

.policy-body li {
  margin-top: 8px;
}

.policy-contact {
  margin-top: 18px;
}

.policy-contact p + p {
  margin-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s var(--ease) forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Mobile */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats,
  .footer-grid,
  .founder-split,
  .bento,
  .score-grid,
  .cta-band,
  .split-2,
  .contact-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  body.nav-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
    box-shadow: var(--shadow);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    display: none;
    padding: 0 0 8px 12px;
  }

  .nav > li.open .dropdown {
    display: block;
  }

  .header-cta .btn-outline {
    display: none;
  }
}

@media (max-width: 720px) {
  .section-head,
  .people-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 0;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .quote-card,
  .story-card,
  .cta-copy {
    padding: 28px 22px;
  }

  .founder-hero-grid {
    grid-template-columns: 1fr;
  }

  .portrait-frame {
    max-width: 380px;
  }

  .founder-inset {
    float: none;
    width: min(280px, 100%);
    margin: 0 0 22px;
  }
}
