/* Design tokens used throughout the site. */
:root {
  --primary: #352e61;
  --primary-soft: #51487d;
  --lavender: #cebddd;
  --green: #cce3c6;
  --pink: #f6deec;
  --grey: #878684;
  --background: #faf9fc;
  --surface: #fff;
  --text: #272433;
  --text-muted: #6f6b78;
  --border: #e7e2ec;
  --shadow: 0 18px 55px rgba(53, 46, 97, 0.1);
  --radius: 24px;
}
/* Base reset and document defaults. */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  font:
    16px/1.65 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--background);
  overflow-x: hidden;
}
/* Soft, fixed background accents. */
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}
body::before {
  width: 42rem;
  height: 42rem;
  top: -19rem;
  right: -14rem;
  background: radial-gradient(
    circle,
    rgba(206, 189, 221, 0.62),
    rgba(206, 189, 221, 0) 68%
  );
}
body::after {
  width: 35rem;
  height: 35rem;
  bottom: -16rem;
  left: -13rem;
  background: radial-gradient(
    circle,
    rgba(204, 227, 198, 0.62),
    rgba(204, 227, 198, 0) 68%
  );
}
a {
  color: inherit;
}
img {
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: #fff;
  color: var(--primary);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.skip-link:focus {
  top: 1rem;
}
.container {
  width: min(1140px, calc(100% - 3rem));
  margin: auto;
}
/* Shared header and primary navigation. */
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  padding: 0.25rem 0;
  background: rgba(250, 249, 252, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 226, 236, 0.7);
}
.nav {
  width: min(1200px, calc(100% - 3rem));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-height: 72px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--primary);
  font-weight: 800;
  line-height: 0;
  min-width: max-content;
  height: 72px;
  overflow: visible;
  z-index: 1;
}
.brand > div {
  display: none;
}
.brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin: -5px 0;
  display: block;
}
.brand span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  color: var(--text-muted);
  margin-top: 0.22rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  width: 100%;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.92);
}
.nav-links .support-link {
  color: #fff;
  background: var(--primary);
  padding: 0.55rem 0.9rem;
  margin-left: 0.15rem;
}
.nav-links .support-link:hover,
.nav-links .support-link.active {
  color: #fff;
  background: var(--primary-soft);
}
.menu-toggle {
  display: none;
}
/* Home-page hero and calls to action. */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 7rem) 0 4.5rem;
}
.hero::after {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  right: 2%;
  bottom: -18rem;
  border-radius: 50%;
  background: rgba(246, 222, 236, 0.52);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.eyebrow,
.tag {
  display: inline-flex;
  width: max-content;
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(53, 46, 97, 0.13);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  color: var(--primary);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h1 {
  max-width: 760px;
  margin: 0.9rem 0 1.25rem;
  font-size: clamp(2.6rem, 6vw, 5.25rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}
.lead {
  max-width: 650px;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.hero-panel {
  padding: 1.5rem;
}
.hero-panel p {
  color: var(--text-muted);
  margin-bottom: 0;
}
.glass,
.card,
.step,
.metric,
.notice,
.image-placeholder,
.form-card {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
}
.hero-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.hero-pills span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(53, 46, 97, 0.1);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.75rem 1.05rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(53, 46, 97, 0.16);
}
.btn-primary {
  color: #fff;
  background: var(--primary);
}
.btn-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(53, 46, 97, 0.17);
}
/* Reusable content layouts and cards. */
.section {
  padding: 5.5rem 0;
}
.section-alt {
  background: rgba(255, 255, 255, 0.32);
  border-block: 1px solid rgba(255, 255, 255, 0.54);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
}
.section-heading p {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.grid {
  display: grid;
  gap: 1.25rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  border-radius: var(--radius);
  padding: 1.5rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(53, 46, 97, 0.14);
}
.card p,
.step p {
  color: var(--text-muted);
}
.card-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--primary);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.card.care {
  border-top: 4px solid var(--pink);
}
.card.learn {
  border-top: 4px solid var(--lavender);
}
.card.planet {
  border-top: 4px solid var(--green);
}
.card.innovate {
  border-top: 4px solid #d9d5e8;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.image-placeholder {
  min-height: 275px;
  padding: 2rem;
  border: 1.5px dashed rgba(53, 46, 97, 0.27);
  border-radius: var(--radius);
  color: var(--text-muted);
  text-align: center;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(206, 189, 221, 0.35),
    rgba(204, 227, 198, 0.3)
  );
}
.quote {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.45;
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.35rem 1.25rem 1.25rem 4.5rem;
  border-radius: 18px;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 1.15rem;
  top: 1.25rem;
  color: var(--primary);
  font-weight: 900;
  font-size: 1.3rem;
}
.step h3 {
  margin: 0 0 0.3rem;
}
.step p {
  margin: 0;
  font-size: 0.93rem;
}
.metric {
  padding: 1.5rem;
  border-radius: 18px;
  text-align: center;
}
.metric strong {
  display: block;
  color: var(--primary);
  font-size: 2.3rem;
  line-height: 1;
}
.metric span {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.notice {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  color: var(--text-muted);
}
.notice strong {
  color: var(--primary);
}
/* Secondary-page content and form styles. */
.page-hero {
  padding: 4.8rem 0 3rem;
}
.page-hero .lead {
  max-width: 720px;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  max-width: 900px;
}
.content-section {
  padding: 3rem 0 5rem;
}
.content-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}
.prose {
  max-width: 840px;
}
.prose p,
.prose li {
  color: var(--text-muted);
}
.prose ul {
  padding-left: 1.2rem;
}
.prose li {
  margin: 0.4rem 0;
}
.program-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.program-card .tag {
  margin-bottom: auto;
}
.cycle {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  color: var(--primary);
  font-weight: 800;
  background: rgba(206, 189, 221, 0.35);
  border: 1px solid rgba(53, 46, 97, 0.1);
}
.form-card {
  padding: 1.5rem;
  border-radius: var(--radius);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: grid;
  gap: 0.35rem;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-weight: 800;
  color: var(--primary);
  font-size: 0.9rem;
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  padding: 0.72rem;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.form-status {
  min-height: 1.6rem;
  margin: 1rem 0 0;
  color: var(--primary);
  font-weight: 700;
}
/* Shared footer. */
.site-footer {
  padding: 4rem 0 1.4rem;
  background: var(--primary);
  color: #eeecf6;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}
.site-footer h2 {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.site-footer p {
  color: #d8d4e7;
  max-width: 360px;
}
.site-footer a {
  display: block;
  color: #e8e5f1;
  text-decoration: none;
  margin: 0.35rem 0;
  font-size: 0.92rem;
}
.site-footer a:hover {
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  font-size: 0.86rem;
  color: #d8d4e7;
}
:focus-visible {
  outline: 3px solid rgba(53, 46, 97, 0.38);
  outline-offset: 3px;
}
/* Responsive navigation and grid adjustments. */
@media (max-width: 920px) {
  .nav {
    position: relative;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    padding: 0.6rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(53, 46, 97, 0.08);
    cursor: pointer;
  }
  .menu-toggle:hover {
    background: #fff;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    padding: 0.8rem;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 0.7rem 0.85rem;
  }
  .nav-links .support-link {
    margin: 0.25rem 0 0;
    text-align: center;
  }
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .container,
  .nav {
    width: min(100% - 2rem, 1140px);
  }
  .site-header {
    padding: 0.15rem 0;
  }
  .brand img {
    width: 64px;
    height: 64px;
  }
  .menu-toggle {
    top: 0.9rem;
    right: 1rem;
  }
  .nav-links {
    top: 4rem;
    right: 1rem;
    left: 1rem;
    min-width: 0;
  }
  .section {
    padding: 3.7rem 0;
  }
  .hero {
    padding: 3.5rem 0;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .card {
    padding: 1.25rem;
  }
  .page-hero {
    padding: 3.25rem 0 1.5rem;
  }
  .content-section {
    padding: 2.2rem 0 3.7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Enlarged brand mark, with a matching header height to preserve alignment. */
.nav {
  min-height: 96px;
}
.brand {
  height: 96px;
}
.brand img {
  width: 123px;
  height: 123px;
  margin: -13.5px 0;
}
@media (max-width: 640px) {
  .site-header {
    padding: 0.15rem 0;
  }
  .nav {
    min-height: 76px;
  }
  .brand {
    height: 76px;
  }
  .brand img {
    width: 96px;
    height: 96px;
    margin: -10px 0;
  }
}
