/* ============================================================
   GenKharis Foundation - warm editorial design system
   Palette from brand logo: royal blue + teal on ivory.
   Type: Bricolage Grotesque (display) + Figtree (body sans).
   Theme: intentionally light-only (print-like editorial).
   Radius rule: interactive = pill, panels/tiles = 16px.
   ============================================================ */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../assets/fonts/BricolageGrotesque.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../assets/fonts/Figtree-normal.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../assets/fonts/Figtree-italic.woff2") format("woff2");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

:root {
  color-scheme: light;

  --ivory: #faf9f5;
  --paper: #ffffff;
  --ink: #171b30;
  --ink-soft: #4b506a;
  --royal: #2733c0;
  --royal-deep: #1e2796;
  --teal: #45b3c2;
  --teal-text: #1e727e;
  --teal-wash: #eef7f8;
  --line: #e4e2d9;
  --line-on-ink: rgba(255, 255, 255, 0.18);

  --display: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  --sans: "Figtree", "Avenir Next", "Segoe UI", sans-serif;

  --radius-panel: 16px;
  --measure: 65ch;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* z-scale: 10 nav, 20 mobile menu */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

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

::selection { background: var(--royal); color: #fff; }

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

h1, h2, h3 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

/* Bricolage carries no italic; accent words use color instead */
h1 em, h2 em {
  font-style: normal;
  color: var(--royal);
}

p { margin: 0 0 1em; max-width: var(--measure); text-wrap: pretty; }
p.lede { font-size: 1.2rem; color: var(--ink-soft); }

a { color: var(--royal); text-underline-offset: 3px; }
a:hover { color: var(--royal-deep); }

:focus-visible {
  outline: 2px solid var(--royal);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 30;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.wrap {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand img { width: 44px; height: auto; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.1;
}
.brand-name span { color: var(--royal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.98rem;
}
.nav-links a:hover { color: var(--ink); }

@media (min-width: 821px) {
  .nav-links a:not(.nav-cta) {
    position: relative;
    padding-bottom: 4px;
  }
  .nav-links a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
  }
  .nav-links a:not(.nav-cta):hover::after,
  .nav-links a[aria-current="page"]:not(.nav-cta)::after { transform: scaleX(1); }
}
.nav-links a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}
.nav-cta {
  background: var(--royal);
  color: #fff !important;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--royal-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 20;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1.25rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-cta {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.65rem 1.4rem;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.8rem 1.7rem;
  transition: transform 0.15s var(--ease-out), background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--royal); color: #fff; }
.btn-primary:hover { background: var(--royal-deep); color: #fff; }
.btn-outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); }
.btn-on-dark { background: #fff; color: var(--ink); }
.btn-on-dark:hover { background: var(--teal-wash); color: var(--ink); }

.arrow-link {
  font-weight: 600;
  text-decoration: none;
}
.arrow-link::after {
  content: " \2192";
  display: inline-block;
  transition: transform 0.2s var(--ease-out);
}
.arrow-link:hover::after { transform: translateX(4px); }

/* ---------- Sections & shared blocks ---------- */

section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

.eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-text);
  margin-bottom: 0.9rem;
}

.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head p { color: var(--ink-soft); }

.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; }
  .js .reveal.is-visible {
    opacity: 1;
    animation: rise 0.7s var(--ease-out) backwards;
    animation-delay: calc(var(--d, 0) * 90ms);
  }
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

/* ---------- Page header (interior pages) ---------- */

.page-head {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 420px;
  height: 420px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke-linecap='round' stroke-width='44'%3E%3Cpath d='M118 28 C 58 168 132 282 306 386' stroke='%2345b3c2' stroke-opacity='0.14'/%3E%3Cpath d='M282 28 C 342 168 268 282 94 386' stroke='%232733c0' stroke-opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.page-head h1 { max-width: 16ch; position: relative; z-index: 1; }
.page-head .lede { max-width: 52ch; position: relative; z-index: 1; }

@media (max-width: 640px) {
  .page-head::after { width: 260px; height: 260px; right: -80px; }
}

/* ---------- Hero (home): full-bleed interactive canvas ---------- */

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: min(calc(100dvh - 72px), 840px);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    var(--ivory) 8%,
    rgba(250, 249, 245, 0.88) 32%,
    rgba(250, 249, 245, 0.3) 56%,
    transparent 74%
  );
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  max-width: 12ch;
  margin-bottom: 0.45em;
}
.hero h1 .hl {
  display: block;
  transition: color 0.35s var(--ease-out);
}
.hero h1 em {
  font-style: normal;
  color: var(--royal);
}
@media (hover: hover) {
  .hero h1 .hl:hover { color: var(--royal-deep); }
  .hero h1 .hl[data-mood="teal"]:hover { color: var(--teal-text); }
}
.hero .lede { margin-bottom: 2rem; max-width: 40ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; }

@media (max-width: 820px) {
  .hero { min-height: min(calc(100dvh - 72px), 720px); }
  .hero-veil {
    background: linear-gradient(
      180deg,
      rgba(250, 249, 245, 0.9) 0%,
      rgba(250, 249, 245, 0.72) 55%,
      rgba(250, 249, 245, 0.35) 100%
    );
  }
}

/* ---------- Impact targets band ---------- */

.targets { border-top: 1px solid var(--line); }
.targets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.target { border-left: 1px solid var(--line); padding-left: 1.5rem; }
.target .num {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--royal);
  line-height: 1;
  display: block;
  margin-bottom: 0.65rem;
  font-variant-numeric: tabular-nums;
}
.target .num::after {
  content: "";
  display: block;
  width: 2rem;
  height: 3px;
  border-radius: 3px;
  background: var(--teal);
  margin-top: 0.55rem;
}
.target .label { color: var(--ink-soft); font-size: 0.98rem; max-width: 18ch; }
.targets-note { color: var(--ink-soft); font-size: 0.95rem; margin-top: 2.5rem; }

@media (max-width: 820px) {
  .targets-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.25rem; }
  .target { padding-left: 1rem; }
}
@media (max-width: 480px) {
  .targets-grid { grid-template-columns: 1fr; }
}

/* ---------- Thematic areas grid ---------- */

.themes-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.25rem;
}
.theme-tile {
  border-radius: var(--radius-panel);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
@media (prefers-reduced-motion: no-preference) {
  .theme-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(23, 27, 48, 0.09);
  }
}
.icon-chip {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.icon-chip svg { width: 26px; height: 26px; }
.theme-tile.t-royal .icon-chip { background: rgba(255, 255, 255, 0.16); color: #fff; }
.theme-tile.t-paper .icon-chip { background: var(--teal-wash); color: var(--royal); }
.theme-tile.t-teal .icon-chip { background: #fff; color: var(--teal-text); }
.theme-tile p { color: var(--ink-soft); margin-bottom: 1.25rem; }
.theme-tile .arrow-link { margin-top: auto; }

.theme-tile.t-royal { background: var(--royal-deep); color: #fff; }
.theme-tile.t-royal h3 { color: #fff; }
.theme-tile.t-royal p { color: rgba(255, 255, 255, 0.82); }
.theme-tile.t-royal .arrow-link { color: #fff; }

.theme-tile.t-paper { background: var(--paper); border: 1px solid var(--line); }
.theme-tile.t-teal { background: var(--teal-wash); border: 1px solid #d6ebee; }
.theme-tile.t-teal .arrow-link { color: var(--teal-text); }

@media (max-width: 820px) {
  .themes-grid { grid-template-columns: 1fr; }
}

/* ---------- Ink feature section (She Matters spotlight) ---------- */

.ink-block {
  background: var(--ink);
  color: #fff;
}
.ink-block h2 { color: #fff; }
.ink-block p { color: rgba(255, 255, 255, 0.8); }
.ink-block .eyebrow { color: var(--teal); }
.ink-block .rows > li { border-color: var(--line-on-ink); }
.ink-block .rows p { color: rgba(255, 255, 255, 0.78); }
.ink-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.fact-list { list-style: none; margin: 0; padding: 0; }
.fact-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line-on-ink);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.fact-list li:first-child { border-top: 1px solid var(--line-on-ink); }
.fact-list .fact-k { font-size: 0.85rem; color: var(--teal); font-weight: 600; }
.fact-list .fact-v { font-family: var(--display); font-size: 1.25rem; }

@media (max-width: 820px) {
  .ink-grid { grid-template-columns: 1fr; }
}

/* ---------- Manifesto (Grace's legacy) ---------- */

.manifesto { text-align: center; }
.manifesto .ribbon-mark {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.5rem;
  display: block;
}
.manifesto blockquote {
  margin: 0 auto;
  max-width: 34ch;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.manifesto blockquote em { font-style: normal; color: var(--teal-text); }
.manifesto .attribution {
  margin: 1.75rem auto 0;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 48ch;
}

/* ---------- CTA band ---------- */

.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 { margin: 0; max-width: 22ch; }

/* ---------- Editorial split (generic 2-col) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- Stacked rows (values, paths, objectives) ---------- */

.rows { list-style: none; margin: 0; padding: 0; }
.rows > li {
  display: grid;
  grid-template-columns: minmax(6rem, 16rem) 1fr;
  gap: 1rem 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}
.rows > li:last-child { border-bottom: 1px solid var(--line); }
.rows .row-title {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
}
.rows .row-title .icon-chip {
  background: var(--teal-wash);
  color: var(--royal);
  margin-bottom: 0.8rem;
}

/* Editorial drop cap for story openings */
.dropcap::first-letter {
  font-family: var(--display);
  font-weight: 700;
  font-size: 3.4em;
  line-height: 0.85;
  float: left;
  padding: 0.08em 0.12em 0 0;
  color: var(--royal);
}
.rows p { color: var(--ink-soft); margin: 0; }
.rows .btn { margin-top: 1rem; }

@media (max-width: 640px) {
  .rows > li { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* ---------- Numbered objectives ---------- */

.objectives { counter-reset: obj; list-style: none; margin: 0; padding: 0; }
.objectives > li {
  counter-increment: obj;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}
.objectives > li::before {
  content: counter(obj, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--teal-text);
  line-height: 1.3;
}
.objectives h3 { margin-bottom: 0.3rem; font-size: 1.2rem; }
.objectives p { color: var(--ink-soft); margin: 0; }

/* ---------- People (board & team) ---------- */

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.person {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 1.5rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
@media (prefers-reduced-motion: no-preference) {
  .person:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(23, 27, 48, 0.07);
    border-color: #d3d9f2;
  }
}
.person .monogram {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  background: var(--royal);
  margin-bottom: 1rem;
}
.person:nth-child(3n + 2) .monogram { background: var(--teal-text); }
.person:nth-child(3n) .monogram { background: var(--ink); }
.person h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.person .role { color: var(--teal-text); font-weight: 600; font-size: 0.92rem; }
.person p { color: var(--ink-soft); font-size: 0.95rem; margin: 0.6rem 0 0; }

@media (max-width: 900px) { .people-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .people-grid { grid-template-columns: 1fr; } }

/* ---------- Timeline (She Matters phases) ---------- */

.timeline { list-style: none; margin: 0; padding: 0; }
.timeline > li {
  position: relative;
  padding: 0 0 2.25rem 2.25rem;
  border-left: 2px solid var(--line);
  margin-left: 0.5rem;
}
.timeline > li:last-child { padding-bottom: 0.5rem; }
.timeline > li::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--teal);
  border: 3px solid var(--ivory);
}
.timeline .when {
  font-weight: 700;
  color: var(--teal-text);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.timeline h3 { margin: 0.2rem 0 0.3rem; font-size: 1.25rem; }
.timeline p { color: var(--ink-soft); margin: 0; }

/* ---------- Pillars (SDG alignment) ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pillar {
  border-top: 3px solid var(--teal);
  padding-top: 1.25rem;
}
.pillar:nth-child(2) { border-top-color: var(--royal); }
.pillar:nth-child(3) { border-top-color: var(--ink); }
.pillar h3 { font-size: 1.15rem; }
.pillar p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }

@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- Safeguards list ---------- */

.safeguards {
  columns: 2;
  column-gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.safeguards li {
  break-inside: avoid;
  padding: 0.55rem 0 0.55rem 1.6rem;
  position: relative;
  color: var(--ink-soft);
}
.safeguards li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--teal-text);
  font-weight: 700;
}
@media (max-width: 720px) { .safeguards { columns: 1; } }

/* ---------- Contact block ---------- */

.contact-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .k { font-weight: 700; font-size: 0.95rem; }
.contact-list a { font-weight: 600; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  margin-top: clamp(3rem, 7vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-on-ink);
}
.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  font-family: var(--sans);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-brand img { width: 42px; background: #fff; border-radius: 10px; padding: 4px; }
.footer-brand .brand-name { color: #fff; }
.site-footer p { color: rgba(255, 255, 255, 0.7); font-size: 0.98rem; max-width: 36ch; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { padding: 0.3rem 0; }
.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  padding-top: 1.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
