/* ==========================================================================
   Utility fallbacks
   This site has no build step, so only utility classes already compiled
   into assets/styles.css render. These few were used in the redesign but
   were never part of that precompiled set — defined explicitly here,
   matching the same --spacing:.25rem scale used throughout the site.
   ========================================================================== */
.h-1\.5 { height: 0.375rem; }
.w-1\.5 { width: 0.375rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.pe-4 { padding-inline-end: 1rem; }
.ps-5 { padding-inline-start: 1.25rem; }
.aspect-\[4\/5\] { aspect-ratio: 4/5; }
.mb-9 { margin-bottom: 2.25rem; }
.pb-24 { padding-bottom: 6rem; }
.p-7 { padding: 1.75rem; }
@media (min-width: 1024px) {
  .lg\:pb-32 { padding-bottom: 8rem; }
}

/* ==========================================================================
   Alforgan — Redesign Stylesheet
   Custom components layered on top of assets/styles.css (Tailwind tokens
   and CSS variables are reused via var(--token); these are hand-written
   classes, not Tailwind utilities, since there is no build step on this
   static site — see README.md).
   ========================================================================== */

/* ---- Pillar grid (4 building components) ---- */
.pillars {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pillars { grid-template-columns: repeat(4, 1fr); }
}
.pillar-card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  padding: 1.6rem 1.4rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.18);
}
.pillar-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-inline-end: auto;
  color: var(--sand);
}
.pillar-icon.revenue { background: var(--gradient-gold); color: var(--ink); }
.pillar-icon.impact { background: var(--emerald-deep); }
.pillar-tag {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .65rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .6rem; border-radius: 999px; margin-top: .9rem;
  font-weight: 600;
}
.pillar-tag.revenue { background: color-mix(in oklab, var(--gold) 18%, transparent); color: color-mix(in oklab, var(--gold) 65%, var(--ink)); }
.pillar-tag.impact { background: color-mix(in oklab, var(--emerald-deep) 12%, transparent); color: var(--emerald-deep); }
.pillar-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--emerald-deep); margin-top: .9rem; }
.pillar-desc { font-size: .875rem; color: var(--muted-foreground); margin-top: .5rem; line-height: 1.6; }

/* ---- Timeline stepper ---- */
.stepper {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}
@media (min-width: 900px) {
  .stepper { flex-direction: row; align-items: flex-start; }
}
.step {
  flex: 1;
  position: relative;
  padding: 0 0 0 1.75rem;
  padding-inline-start: 1.75rem;
  padding-inline-end: 0;
  padding-bottom: 2rem;
}
@media (min-width: 900px) {
  .step { padding-inline-start: 0; padding-bottom: 0; padding-top: 2.25rem; text-align: center; }
}
.step::before {
  /* connecting line */
  content: "";
  position: absolute;
  inset-inline-start: 0.6rem;
  top: 1.9rem;
  bottom: -0.5rem;
  width: 2px;
  background: var(--border);
}
@media (min-width: 900px) {
  .step::before {
    inset-inline-start: 0; inset-inline-end: 0; top: 1.1rem; bottom: auto;
    height: 2px; width: 100%;
  }
  .step:first-child::before { inset-inline-start: 50%; }
  .step:last-child::before { inset-inline-end: 50%; width: 50%; }
}
.step:last-child::before { display: none; }
@media (min-width: 900px) {
  .step:last-child::before { display: block; }
  .step:first-child::before, .step:last-child::before { background: var(--border); }
}
.step-dot {
  position: absolute; inset-inline-start: 0; top: 0;
  width: 2.25rem; height: 2.25rem; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .8rem; font-weight: 700;
  border: 2px solid var(--border); background: var(--card); color: var(--muted-foreground);
  z-index: 1;
}
@media (min-width: 900px) {
  .step-dot { position: static; margin: 0 auto; }
}
.step.done .step-dot { background: var(--emerald-deep); border-color: var(--emerald-deep); color: var(--sand); }
.step.active .step-dot { background: var(--gradient-gold); border-color: var(--gold); color: var(--ink); box-shadow: 0 0 0 5px color-mix(in oklab, var(--gold) 20%, transparent); }
.step-body { margin-top: 0; }
@media (min-width: 900px) { .step-body { margin-top: .9rem; } }
.step-status { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-foreground); }
.step.active .step-status { color: color-mix(in oklab, var(--gold) 70%, var(--ink)); }
.step-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--emerald-deep); margin-top: .2rem; }
.step-desc { font-size: .8rem; color: var(--muted-foreground); margin-top: .3rem; line-height: 1.6; max-width: 220px; }
@media (min-width: 900px) { .step-desc { margin-inline: auto; } }

/* ---- Before / After image comparison slider ---- */
.ba-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-elegant);
  user-select: none;
  background: var(--muted);
}
.ba-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.ba-after { z-index: 1; }
.ba-before-clip { position: absolute; inset: 0; overflow: hidden; z-index: 2; }
.ba-before-clip img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  width: 3px; background: var(--sand);
  z-index: 3; box-shadow: 0 0 0 1px rgba(0,0,0,.15);
  inset-inline-start: 50%;
  transform: translateX(-50%);
}
[dir="rtl"] .ba-handle { transform: translateX(50%); }
.ba-grip {
  position: absolute; top: 50%; inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  width: 2.75rem; height: 2.75rem; border-radius: 999px;
  background: var(--sand); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,.35);
  color: var(--emerald-deep);
  pointer-events: none;
}
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0; z-index: 4;
  -webkit-appearance: none; appearance: none;
}
.ba-label {
  position: absolute; top: .7rem; z-index: 5;
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px;
  background: rgba(0,0,0,.55); color: var(--sand);
}
.ba-label.before-lbl { inset-inline-start: .7rem; }
.ba-label.after-lbl { inset-inline-end: .7rem; }

/* ---- Finishing works: tabs + grid ---- */
.finish-tabs {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-top: 1.5rem;
}
.finish-tab {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.1rem; border-radius: 999px;
  border: 1px solid var(--border); background: var(--card);
  font-size: .82rem; font-weight: 600; color: var(--muted-foreground);
  cursor: pointer; transition: all .15s ease;
}
.finish-tab[aria-selected="true"] {
  border-color: var(--gold); background: var(--sand); color: var(--emerald-deep);
}
.finish-panel { display: none; margin-top: 1.25rem; }
.finish-panel.is-active { display: grid; gap: .75rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .finish-panel.is-active { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .finish-panel.is-active { grid-template-columns: repeat(3, 1fr); } }
.finish-card {
  display: flex; align-items: center; gap: .75rem;
  padding: .9rem 1rem; border-radius: .75rem;
  border: 1px solid var(--border); background: color-mix(in oklab, var(--card) 85%, var(--sand));
  transition: border-color .15s ease, transform .15s ease;
}
.finish-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.finish-card .fc-icon {
  flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--sand); color: var(--emerald-deep); border: 1px solid color-mix(in oklab, var(--emerald-deep) 15%, transparent);
}
.finish-card .fc-text { font-size: .85rem; color: color-mix(in oklab, var(--foreground) 90%, transparent); line-height: 1.5; }

/* ---- Donation module ---- */
.donate-tabs {
  display: flex; gap: .4rem; padding: .3rem;
  background: rgba(0,0,0,.18); border-radius: .75rem; margin-top: 1.5rem;
}
.donate-tab {
  flex: 1; padding: .65rem .5rem; border-radius: .5rem;
  font-size: .8rem; font-weight: 600; text-align: center;
  color: color-mix(in oklab, var(--sand) 70%, transparent);
  background: transparent; border: none; cursor: pointer;
  transition: all .15s ease;
}
.donate-tab[aria-selected="true"] { background: var(--sand); color: var(--emerald-deep); }
.donate-panel { display: none; }
.donate-panel.is-active { display: block; }
.iban-row {
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
}
.copy-btn {
  flex-shrink: 0;
  padding: .35rem .7rem; border-radius: .375rem; font-size: .625rem;
  letter-spacing: .05em; text-transform: uppercase; cursor: pointer;
  border: 1px solid color-mix(in oklab, var(--gold-soft) 40%, transparent);
  color: var(--gold-soft); background: transparent;
  transition: background .15s ease;
}
.copy-btn.copied { background: color-mix(in oklab, var(--emerald-deep) 40%, transparent); border-color: transparent; color: var(--sand); }
.pay-methods { display: flex; gap: .6rem; margin-top: 1.1rem; flex-wrap: wrap; }
.pay-method {
  position: relative;
  flex: 1; min-width: 90px;
  display: flex; align-items: center; justify-content: center;
  padding: .9rem .5rem; border-radius: .75rem;
  border: 1px dashed color-mix(in oklab, var(--gold-soft) 35%, transparent);
  background: rgba(255,255,255,.03);
  color: color-mix(in oklab, var(--sand) 55%, transparent);
  font-size: .75rem; font-weight: 600; cursor: not-allowed;
  opacity: .8;
}
.pay-soon-badge {
  display: inline-block; margin-top: .9rem;
  font-size: .68rem; color: color-mix(in oklab, var(--sand) 65%, transparent);
  background: rgba(0,0,0,.2); padding: .4rem .8rem; border-radius: .5rem;
  border: 1px solid rgba(255,255,255,.08);
}

/* ---- AI recite sandbox teaser ---- */
.ai-sandbox {
  border-radius: 1rem; padding: 1.6rem;
  background: linear-gradient(160deg, var(--emerald-deep), color-mix(in oklab, var(--emerald-deep) 75%, black));
  color: var(--sand); position: relative; overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--gold-soft) 20%, transparent);
}
.ai-sandbox__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.ai-mic-btn {
  flex-shrink: 0;
  width: 3.25rem; height: 3.25rem; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-gold); color: var(--ink);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--gold) 55%, transparent);
  animation: mic-pulse 2.4s ease-in-out infinite;
}
@keyframes mic-pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--gold) 45%, transparent); }
  50% { box-shadow: 0 0 0 10px color-mix(in oklab, var(--gold) 0%, transparent); }
}
.wave-bars { display: flex; align-items: flex-end; gap: 3px; height: 28px; margin-top: 1rem; }
.wave-bars span {
  width: 4px; border-radius: 2px;
  background: var(--gold-soft);
  animation: wave 1.1s ease-in-out infinite;
}
.wave-bars span:nth-child(1) { height: 30%; animation-delay: -1.1s; }
.wave-bars span:nth-child(2) { height: 60%; animation-delay: -0.9s; }
.wave-bars span:nth-child(3) { height: 100%; animation-delay: -0.7s; }
.wave-bars span:nth-child(4) { height: 50%; animation-delay: -0.5s; }
.wave-bars span:nth-child(5) { height: 80%; animation-delay: -0.3s; }
.wave-bars span:nth-child(6) { height: 40%; animation-delay: -0.1s; }
.wave-bars span:nth-child(7) { height: 65%; animation-delay: -0.2s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.4); opacity: .7; }
  50% { transform: scaleY(1); opacity: 1; }
}
.ai-sandbox__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.25rem; padding: .7rem 1.4rem; border-radius: .375rem;
  background: var(--sand); color: var(--emerald-deep); font-weight: 600; font-size: .85rem;
  text-decoration: none;
}

/* ---- FAQ (AEO) ---- */
.faq-item {
  border: 1px solid var(--border); border-radius: 1rem; overflow: hidden;
  background: var(--card); margin-bottom: .7rem;
}
.faq-item summary {
  padding: 1rem 1.2rem; cursor: pointer; font-weight: 600;
  color: var(--emerald-deep); list-style: none; display: flex;
  align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display); font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--gold); flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 1.2rem 1.1rem; color: var(--muted-foreground); font-size: .9rem; line-height: 1.75; margin: 0; }

/* ---- misc ---- */
.section-kicker {
  display: inline-flex; align-items: center; gap: .75rem;
}
.section-kicker .line { height: 1px; width: 2rem; background: color-mix(in oklab, var(--emerald-deep) 40%, transparent); }
.section-kicker span { font-size: .625rem; letter-spacing: .3em; text-transform: uppercase; color: var(--emerald-deep); }

/* ---- Hero split visual: architecture render + human-impact floating card ---- */
.hero-visual { position: relative; }
.hero-impact-card {
  position: absolute;
  bottom: -1.25rem;
  inset-inline-start: -1rem;
  width: 11.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: .6rem;
  box-shadow: 0 20px 40px -18px rgba(0,0,0,.45);
  z-index: 2;
}
.hero-impact-card img {
  width: 100%; height: 5.5rem; object-fit: cover; border-radius: .5rem; display: block;
}
.hero-impact-card p {
  font-size: .68rem; color: var(--emerald-deep); font-weight: 600; margin-top: .5rem; line-height: 1.4;
  font-family: var(--font-display);
}
@media (max-width: 480px) {
  .hero-impact-card { width: 9rem; inset-inline-start: -.5rem; bottom: -1rem; }
  .hero-impact-card img { height: 4.2rem; }
}

/* ==========================================================================
   DESIGN SYSTEM — shared primitives
   Every section is composed from these, so spacing, card styling, image
   framing and buttons are identical site-wide instead of ad-hoc per section.
   ========================================================================== */

/* ---- Section rhythm: one padding scale for the whole page ---- */
.sec { padding-block: 3.5rem; }
@media (min-width: 768px) { .sec { padding-block: 5rem; } }
@media (min-width: 1024px) { .sec { padding-block: 7rem; } }

/* Single tint value site-wide (replaces the sand / sand40 / sand30 mix) */
.sec--tint {
  background: color-mix(in oklab, var(--sand) 60%, var(--background));
  border-block: 1px solid var(--border);
}
.sec--sand { background: var(--sand); }
.sec--dark { position: relative; overflow: hidden; color: var(--sand); }

.sec-inner { max-width: 80rem; margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 1024px) { .sec-inner { padding-inline: 2.5rem; } }
.sec-inner--narrow { max-width: 48rem; }
.sec-inner--mid { max-width: 64rem; }

/* ---- Section header ---- */
.sec-head { max-width: 46rem; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .section-kicker { justify-content: center; }
.sec-head__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--emerald-deep);
  line-height: 1.15;
  margin-top: 1rem;
  font-size: clamp(1.75rem, 4.2vw, 3rem);
}
.sec-head__lead {
  margin-top: 1.15rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in oklab, var(--foreground) 78%, transparent);
}
.sec-head--light .sec-head__title { color: var(--sand); }
.sec-head--light .sec-head__lead { color: color-mix(in oklab, var(--sand) 80%, transparent); }
.sec-head--light .section-kicker span { color: var(--gold); }
.sec-head--light .section-kicker .line { background: var(--gold); }
.sec-body { margin-top: 2.5rem; }
@media (min-width: 768px) { .sec-body { margin-top: 3.25rem; } }

/* ---- Split layouts ---- */
.split { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) {
  .split { grid-template-columns: 5fr 7fr; gap: 4rem; }
  .split--even { grid-template-columns: 1fr 1fr; }
  .split--wide-first { grid-template-columns: 7fr 5fr; }
}
.split--top { align-items: start; }

/* ---- Unified media frame: every content image/map uses this ---- */
.media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elegant);
  background: var(--muted);
}
.media > img,
.media > iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block; border: 0;
}
.media__caption {
  position: absolute; inset-inline: 0; bottom: 0; z-index: 2;
  padding: 1.75rem 1rem .85rem;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  color: var(--sand); font-size: .78rem; line-height: 1.5;
}

/* ---- Unified card ---- */
.card {
  position: relative; overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
}
@media (min-width: 768px) { .card { padding: 1.75rem; } }
.card--lg { padding: 2rem; }
@media (min-width: 768px) { .card--lg { padding: 2.5rem; } }
.card--sand { background: var(--sand); border-color: color-mix(in oklab, var(--gold) 28%, transparent); }
.card--emerald { background: var(--emerald-deep); border-color: color-mix(in oklab, var(--gold-soft) 18%, transparent); color: var(--sand); }
.card--hero { background: var(--gradient-hero); color: var(--sand); border-color: color-mix(in oklab, var(--gold-soft) 20%, transparent); }
.card__pattern {
  position: absolute; inset: 0; opacity: .05;
  background-image: url(/assets/pattern.jpg); background-size: 260px;
  pointer-events: none;
}
.card__inner { position: relative; }
.card__title { font-family: var(--font-display); font-size: 1.15rem; margin-top: .75rem; color: var(--emerald-deep); line-height: 1.35; }
.card--emerald .card__title, .card--hero .card__title { color: var(--gold-soft); }
.card__text { margin-top: .55rem; font-size: .9rem; line-height: 1.7; color: var(--muted-foreground); }
.card--sand .card__text { color: color-mix(in oklab, var(--foreground) 78%, transparent); }
.card--emerald .card__text, .card--hero .card__text { color: color-mix(in oklab, var(--sand) 80%, transparent); }

/* ---- Unified buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: .375rem;
  font-size: .9rem; font-weight: 500; text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}
.btn--gold { background: var(--gradient-gold); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-1px); }
.btn--ghost-light { border: 1px solid color-mix(in oklab, var(--gold-soft) 40%, transparent); color: var(--sand); }
.btn--ghost-light:hover { background: rgba(255,255,255,.06); }
.btn--sm { padding: .6rem 1.15rem; font-size: .82rem; }

/* ---- Badges (hero status pills) ---- */
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .85rem; border-radius: 999px;
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(255,255,255,.08);
  border: 1px solid color-mix(in oklab, var(--gold-soft) 30%, transparent);
  line-height: 1.4;
}
.badge--light { color: var(--sand); }
.badge--gold { color: var(--gold-soft); }
.hero-caption {
  display: inline-block; padding: .45rem 1.1rem; border-radius: 999px;
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  background: var(--gradient-gold); color: var(--ink); font-weight: 500;
}

/* ---- Mission & activities (Ad Grants: mission + activities, stated plainly) ---- */
.mission { border-inline-start: 3px solid var(--gold); padding-inline-start: 1.4rem; }
.mission__label { font-size: .625rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.mission__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  line-height: 1.6;
  color: var(--emerald-deep);
  margin-top: .6rem;
}
.mission__status {
  margin-top: 1.15rem; font-size: .875rem; line-height: 1.8;
  color: color-mix(in oklab, var(--foreground) 75%, transparent);
}
.sub-label {
  display: block; margin-top: 2rem;
  font-size: .625rem; letter-spacing: .3em; text-transform: uppercase; color: var(--emerald-deep);
}
.activities { display: grid; gap: .8rem; grid-template-columns: 1fr; margin-top: 1rem; }
@media (min-width: 640px) { .activities { grid-template-columns: 1fr 1fr; } }
.activity {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: 1.1rem; border-radius: 1rem;
  border: 1px solid var(--border); background: var(--card);
}
.activity__icon {
  flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--sand); color: var(--emerald-deep);
  border: 1px solid color-mix(in oklab, var(--emerald-deep) 15%, transparent);
}
.activity__title { font-family: var(--font-display); font-size: 1rem; color: var(--emerald-deep); line-height: 1.35; }
.activity__text { margin-top: .3rem; font-size: .82rem; line-height: 1.65; color: var(--muted-foreground); }

/* ---- Stats row ---- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
@media (min-width: 768px) { .stats { gap: 2.5rem; } }
.stat__num { font-family: var(--font-display); font-size: clamp(2.25rem, 7vw, 3.75rem); color: var(--gold-soft); line-height: 1; }
.stat__label { margin-top: .6rem; font-size: .8rem; line-height: 1.5; color: color-mix(in oklab, var(--sand) 72%, transparent); }

/* ---- Prose ---- */
.prose-body { font-size: 1rem; line-height: 1.85; color: color-mix(in oklab, var(--foreground) 80%, transparent); }
.prose-body + .prose-body { margin-top: 1.15rem; }

/* ==========================================================================
   Utility fallbacks, part 2 — classes used in the rebuild that are not
   present in the precompiled styles.css (no build step on this site).
   ========================================================================== */
.gap-7 { gap: 1.75rem; }
.mb-7 { margin-bottom: 1.75rem; }
.pt-5 { padding-top: 1.25rem; }
.mt-auto { margin-top: auto; }
.opacity-25 { opacity: .25; }
.leading-\[1\.12\] { line-height: 1.12; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.drop-shadow-\[0_25px_45px_rgba\(0\,0\,0\,0\.5\)\] { filter: drop-shadow(0 25px 45px rgba(0,0,0,0.5)); }
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* ==========================================================================
   v3 additions
   ========================================================================== */

/* ---- Latin/numeric values inside an RTL page ----
   direction:ltr gives correct reading order for phone numbers, emails and
   URLs, but on a block element that also drags the text to the left edge.
   These keep LTR order while staying aligned with the surrounding text. */
.ltr-num { direction: ltr; }
[dir="rtl"] .ltr-num { text-align: right; }
.ltr-center { direction: ltr; text-align: center; }

/* ---- Media variants ---- */
.media--contain > img { object-fit: contain; padding: 1rem; }
.media--render { background: linear-gradient(165deg, color-mix(in oklab, var(--emerald-deep) 14%, var(--sand)), var(--sand)); }

/* ---- Now / after-completion comparison (replaces the wipe slider) ----
   The two source images are different framings and aspect ratios, so a
   wipe slider read as a broken collage. Two labelled frames side by side
   compare honestly and stay consistent with every other image on the site. */
.compare { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .compare { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.compare__item { margin: 0; }
.compare__tag {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-bottom: .75rem; padding: .4rem .9rem; border-radius: 999px;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
.compare__tag--now { background: color-mix(in oklab, var(--emerald-deep) 12%, transparent); color: var(--emerald-deep); }
.compare__tag--after { background: color-mix(in oklab, var(--gold) 20%, transparent); color: color-mix(in oklab, var(--gold) 68%, var(--ink)); }
.compare__caption { margin-top: .85rem; font-size: .85rem; line-height: 1.65; color: var(--muted-foreground); }
.compare__note { margin-top: 1.75rem; text-align: center; }

/* ---- Mission: full-width composition (no photo) ---- */
.mission-block { max-width: 68rem; margin-inline: auto; }
.mission-block--center { text-align: center; }
.mission-block--center .mission {
  border-inline-start: 0;
  border-top: 3px solid var(--gold);
  padding-inline-start: 0;
  padding-top: 1.4rem;
  display: block;
  max-width: 46rem;
  margin-inline: auto;
}
.mission-block--center .mission__status { max-width: 46rem; margin-inline: auto; }
.activities--four { grid-template-columns: 1fr; }
@media (min-width: 640px) { .activities--four { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .activities--four { grid-template-columns: repeat(4, 1fr); } }
.activities--four .activity { flex-direction: column; text-align: start; gap: .75rem; }

/* ---- Unified single footer ---- */
.site-footer { border-top: 1px solid var(--border); padding-block: 3rem; }
.footer-top { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .footer-top { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-brand { display: flex; align-items: center; gap: .85rem; }
.footer-brand img { height: 2.25rem; width: auto; }
.footer-brand__name { font-family: var(--font-display); font-size: 1rem; color: var(--emerald-deep); line-height: 1.35; }
.footer-brand__tag { font-size: .7rem; color: var(--muted-foreground); margin-top: .25rem; line-height: 1.5; }
.footer-meta { display: flex; gap: 2rem; flex-wrap: wrap; margin: 0; }
.footer-meta dt { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-foreground); }
.footer-meta dd { font-family: var(--font-display); font-size: .875rem; color: var(--emerald-deep); margin: .25rem 0 0; }
.footer-legal { margin-top: 2.25rem; }
.footer-legal p { font-size: .72rem; line-height: 1.75; color: var(--muted-foreground); text-align: center; margin: 0; }
.footer-legal p + p { margin-top: .4rem; }
.footer-copy { margin-top: 1.5rem; font-size: .7rem; color: var(--muted-foreground); text-align: center; }
