/* SHARE-CHARITE FOUNDATION — site styles
   Brand drawn from the official logo: deep blue, teal, green, orange, purple. */

:root {
  --navy: #0d3b73;
  --navy-deep: #082445;
  --navy-ink: #0b2a52;
  --teal: #0c8a82;
  --teal-deep: #066861;
  --teal-soft: #e6f5f3;
  --green: #2a8a45;
  --green-soft: #e8f5eb;
  --orange: #e85a1f;
  --orange-deep: #c44614;
  --orange-soft: #fff1ea;
  --purple: #7a2d86;
  --purple-soft: #f5ebf6;
  --ink: #17202a;
  --ink-soft: #3d4a55;
  --muted: #5c6872;
  --line: #e3e8e5;
  --line-strong: #cfd7d3;
  --bg: #ffffff;
  --bg-soft: #f4f6f5;
  --bg-warm: #f7f4ee;
  --cream: #fbf8f3;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(8, 36, 69, 0.08);
  --shadow-sm: 0 4px 16px rgba(8, 36, 69, 0.06);
  --shadow-lg: 0 22px 50px rgba(8, 36, 69, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --header: 78px;
  --wrap: 1160px;
  --wrap-wide: 1280px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --serif: "Source Serif 4", "Georgia", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 450;
}

img, video, iframe, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

:focus-visible {
  outline: 3px solid rgba(12, 138, 130, 0.45);
  outline-offset: 3px;
}

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

body { overflow-x: clip; }
.wrap {
  max-width: 1160px;
  padding-left: max(22px, env(safe-area-inset-left, 0px));
  padding-right: max(22px, env(safe-area-inset-right, 0px));
  margin-inline: auto;
}
.wrap-wide {
  max-width: 1280px;
  padding-left: max(20px, env(safe-area-inset-left, 0px));
  padding-right: max(20px, env(safe-area-inset-right, 0px));
  margin-inline: auto;
}
h1, h2, h3, h4, p, li { overflow-wrap: break-word; }
.site-footer a,
.contact-card a,
.contact-card p { overflow-wrap: anywhere; }
.split, .form, .grid-2, .grid-3, .grid-4, .grid-8, .hero-panel,
.page-hero .hero-inner, .page-hero-copy, .home-hero-copy,
.footer-grid, .home-intro-grid, .work-block,
.home-intro-copy, .home-intro-media, .home-cta-copy,
.home-focus-head, .cta-band-inner, .home-statbar-inner,
.home-steps, .home-trust, .home-allies, .home-bento,
.home-impact-grid, .theme-grid, .init-grid { min-width: 0; }
.home-hero-copy > *,
.page-hero-copy > *,
.home-cta-copy > *,
.home-focus-head > *,
.cta-band-inner > *,
.split > *,
.grid-2 > *,
.grid-3 > *,
.home-intro-grid > *,
.home-statbar-inner > div,
.work-block > * {
  min-width: 0;
  max-width: 100%;
}

/* Photo crop hides generator watermarks without changing the scene */
.photo,
.photo-fill {
  overflow: hidden;
  position: relative;
  background: #d9e0dc;
}
.photo img,
.photo-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transform-origin: center 42%;
  transition: transform 0.7s var(--ease);
}
.card:hover .photo img,
.media-card:hover img,
.focus-card:hover .photo img,
.gallery-item:hover img {
  transform: scale(1.12);
}

/* ---------- Top bar + header ---------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.86);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
  gap: 16px;
}
.topbar span { display: inline-flex; align-items: center; gap: 8px; }
.brand-dots {
  display: inline-flex;
  gap: 5px;
}
.brand-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: block;
}
.brand-dots i:nth-child(1) { background: #0c8a82; }
.brand-dots i:nth-child(2) { background: #2a8a45; }
.brand-dots i:nth-child(3) { background: #e85a1f; }
.brand-dots i:nth-child(4) { background: #7a2d86; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 59, 115, 0.08);
  height: var(--header);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav > a,
.nav .has-sub > button {
  background: none;
  border: 0;
  color: var(--navy-ink);
  font-size: 13.5px;
  font-weight: 650;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}
.nav > a:hover,
.nav .has-sub > button:hover,
.nav > a.is-active {
  color: var(--teal-deep);
  background: var(--teal-soft);
}

.has-sub { position: relative; }
.has-sub > button { display: inline-flex; align-items: center; gap: 4px; }
.has-sub > button svg { width: 12px; height: 12px; }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .has-sub:hover .dropdown,
  .has-sub:focus-within .dropdown { display: block; }
}
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.dropdown a:hover { background: var(--bg-soft); color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
@media (max-width: 1040px) {
  .header-cta { order: 2; }
  .nav-toggle { order: 3; }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s var(--ease), opacity .2s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  font-weight: 750;
  font-size: 14.5px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn, .nav-toggle, .filters button, .amounts button,
.home-slider-nav button, .home-slider-thumbs button { touch-action: manipulation; }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 8px 18px rgba(232,90,31,0.22); }
.btn-orange:hover { background: var(--orange-deep); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-deep); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Typography ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
}

h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -0.025em; color: var(--navy-deep); margin: 0 0 14px; }
h1 { font-size: clamp(2rem, 4.4vw, 3.55rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.45rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 750; }
p { margin: 0 0 14px; color: var(--ink-soft); }
.lead { font-size: 1.12rem; max-width: 68ch; }
.serif { font-family: var(--serif); font-weight: 560; letter-spacing: -0.02em; }

/* ---------- Heroes ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: #fff;
}
.hero .hero-media { overflow: hidden; }
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transform-origin: center 38%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,20,38,0.88) 0%, rgba(7,20,38,0.62) 42%, rgba(7,20,38,0.22) 100%),
    linear-gradient(180deg, rgba(7,20,38,0.2) 0%, rgba(7,20,38,0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 90px 0 72px;
}
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.hero .lead { color: rgba(255,255,255,0.92); max-width: 58ch; }
.hero-panel {
  max-width: 720px;
  padding: 8px 0 10px;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  color: #fff;
}
.page-hero .hero-media { overflow: hidden; }
.page-hero .hero-media { position: absolute; inset: 0; }
.page-hero .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,20,38,0.86) 0%, rgba(7,20,38,0.45) 70%);
}
.page-hero .hero-inner { position: relative; z-index: 1; padding: 86px 0 56px; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .lead { color: rgba(255,255,255,0.9); }

.page-hero-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 460px;
  align-items: stretch;
}
.page-hero-copy {
  background:
    radial-gradient(420px 220px at 0% 100%, rgba(12,138,130,0.22), transparent 60%),
    var(--navy-deep);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 56px 44px 56px 6vw;
  overflow: hidden;
}
.page-hero-copy > div { width: 100%; min-width: 0; }
.page-hero-copy h1 { color: #fff; max-width: 16ch; }
.page-hero-copy .lead { color: rgba(255,255,255,0.86); max-width: 48ch; }
.page-hero-photo { position: relative; overflow: hidden; min-height: 320px; }
.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transform-origin: center 40%;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-warm { background: var(--bg-warm); }
.bg-navy { background: var(--navy-deep); color: #fff; }
.bg-navy h2, .bg-navy h3, .bg-navy p { color: #fff; }
.bg-navy p { color: rgba(255,255,255,0.82); }

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
  max-width: 760px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .split-media { order: -1; }

.framed {
  position: relative;
}
.framed::before {
  content: "";
  position: absolute;
  inset: 18px -16px -16px 18px;
  border-radius: 18px;
  background: var(--teal-soft);
  z-index: 0;
}
.framed.orange::before { background: var(--orange-soft); }
.framed.green::before { background: var(--green-soft); }
.framed .photo {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

/* ---------- Cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-8 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.focus-card,
.value-card,
.involve-card,
.init-card,
.story-card,
.news-card,
.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.focus-card:hover,
.value-card:hover,
.involve-card:hover,
.init-card:hover,
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.focus-card .photo { aspect-ratio: 4 / 3; }
.focus-card .body,
.value-card,
.involve-card,
.init-card .body,
.story-card,
.news-card .body { padding: 20px 20px 22px; }

.num {
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.08em;
  font-size: 13px;
}
.focus-card h3 { margin: 6px 0 8px; font-size: 1.12rem; }
.focus-card p { font-size: 14.5px; margin-bottom: 12px; }
.more {
  color: var(--navy);
  font-weight: 750;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.more::after { content: "→"; transition: transform .2s; }
.focus-card:hover .more::after,
.more:hover::after { transform: translateX(4px); }

.value-card { padding: 24px 22px; border-top: 4px solid var(--teal); }
.value-card:nth-child(2) { border-top-color: var(--green); }
.value-card:nth-child(3) { border-top-color: var(--orange); }
.value-card:nth-child(4) { border-top-color: var(--purple); }
.value-card:nth-child(5) { border-top-color: var(--navy); }
.value-card:nth-child(6) { border-top-color: var(--teal-deep); }
.value-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal-deep);
  margin-bottom: 12px;
}
.value-icon svg { width: 22px; height: 22px; }

/* ---------- Metrics ---------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.metric { padding: 22px 20px; text-align: left; }
.metric .num { display: block; margin-bottom: 10px; }
.metric b {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.metric span { color: var(--muted); font-size: 14px; font-weight: 650; }

/* ---------- Focus detail blocks ---------- */
.work-block {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
  padding: 28px 0;
}
.work-block:nth-child(even) { grid-template-columns: 1.08fr 0.92fr; }
.work-block:nth-child(even) .work-media { order: 2; }
.work-media .photo { aspect-ratio: 16 / 11; border-radius: 18px; }

.checklist { list-style: none; padding: 0; margin: 16px 0 0; }
.checklist li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal-soft);
  box-shadow: inset 0 0 0 4px var(--teal);
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(600px 240px at 10% 0%, rgba(12,138,130,0.22), transparent 60%),
    radial-gradient(500px 240px at 90% 100%, rgba(232,90,31,0.16), transparent 60%),
    var(--navy-deep);
  color: #fff;
  padding: 72px 0;
}
.cta-band h2 { color: #fff; max-width: 16ch; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 58ch; }
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.quote-strip {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  text-align: center;
}
.quote-strip blockquote {
  margin: 0 auto;
  max-width: 38ch;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  color: var(--navy-deep);
  line-height: 1.35;
}
.quote-strip cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--navy-ink); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(12,138,130,0.12);
}
.amounts { display: flex; flex-wrap: wrap; gap: 8px; }
.amounts button {
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 750;
  cursor: pointer;
  color: var(--navy);
}
.amounts button.is-on {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.note {
  font-size: 13.5px;
  color: var(--muted);
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 12px 14px;
}
.form-success {
  display: none;
  padding: 18px;
  border-radius: 12px;
  background: var(--green-soft);
  color: #14532d;
  font-weight: 650;
}
.form-success.is-on { display: block; }

.placeholder-tag,
.content-flag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-warm);
  color: #8a5a12;
  border: 1px solid #ead8b0;
  border-radius: 99px;
  padding: 3px 9px;
}

/* ---------- News / gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.filters button {
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  color: var(--navy-ink);
}
.filters button.is-on { background: var(--navy); color: #fff; border-color: var(--navy); }

.news-card .photo { aspect-ratio: 16 / 10; }
.news-meta { display: flex; gap: 10px; align-items: center; font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }

.masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--line);
}
.gallery-item img { width: 100%; height: auto; display: block; transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(transparent, rgba(8,24,45,0.78));
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,24,45,0.88);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 24px;
}
.lightbox.is-on { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: 12px; transform: none; }
.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #071a32;
  color: rgba(255,255,255,0.78);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  gap: 36px;
  padding-bottom: 40px;
}
.site-footer h4 { color: #fff; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer a { display: block; padding: 4px 0; font-size: 14.5px; color: #fff; }
.site-footer a:hover { color: #9ee4dd; }
.site-footer p { color: #fff; font-size: 14.5px; }
.footer-brand img { width: 72px; height: 72px; object-fit: contain; background: #fff; border-radius: 14px; padding: 4px; margin-bottom: 14px; }
.footer-brand p { color: #fff; font-size: 14.5px; }
.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: grid;
  place-items: center;
  padding: 0;
}
.socials svg { width: 18px; height: 18px; }
.socials .soc-facebook:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.socials .soc-instagram:hover { background: #e4405f; border-color: #e4405f; color: #fff; }
.socials .soc-twitter:hover { background: #1da1f2; border-color: #1da1f2; color: #fff; }
.socials .soc-linkedin:hover { background: #0a66c2; border-color: #0a66c2; color: #fff; }
.socials .soc-youtube:hover { background: #ff0000; border-color: #ff0000; color: #fff; }
.footer-base {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ---------- Article ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article p { font-size: 1.05rem; }
.article h2 { margin-top: 32px; }

/* ---------- 404 ---------- */
.not-found { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 80px 20px; }
.not-found strong { font-size: 5rem; color: var(--teal); display: block; line-height: 1; }

/* ---------- Reveal ---------- */
.reveal { opacity: 1; }

/* ---------- Misc ---------- */
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--teal-soft);
  color: var(--teal-deep);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 750;
}
.stat-note { font-size: 13.5px; color: var(--muted); margin-top: 18px; }
.contact-card {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--line);
}
.contact-card h3 { margin-bottom: 6px; }
.contact-card a { color: var(--teal-deep); font-weight: 750; }
.contact-card a:hover { color: var(--navy); }
.placeholder-line { color: var(--muted); font-style: italic; }

html.nav-open,
body.nav-open { overflow: hidden; height: 100%; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .grid-8, .grid-4, .metrics { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav > a, .nav .has-sub > button { padding: 8px 7px; font-size: 13px; }
  .header-cta .btn-outline { display: none; }
}

@media (max-width: 1040px) {
  :root { --header: 64px; }
  .wrap {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }
  .site-header,
  .header-inner { height: var(--header); }
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .header-inner { gap: 10px; }
  .brand img { width: 48px; height: 48px; }
  .nav-toggle { display: inline-flex; flex-shrink: 0; }
  .nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px calc(24px + env(safe-area-inset-bottom, 0px));
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    gap: 2px;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  body.nav-open .nav { display: flex; }
  .nav > a,
  .nav .has-sub > button {
    white-space: normal;
    text-align: left;
    padding: 14px 12px;
    font-size: 16px;
    min-height: 48px;
    border-radius: 10px;
  }
  .has-sub { width: 100%; }
  .has-sub > button { width: 100%; justify-content: space-between; }
  .has-sub .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 8px;
    min-width: 0;
    background: var(--bg-soft);
    border-radius: 10px;
    margin: 0 0 6px;
  }
  .has-sub.is-open .dropdown { display: block; }
  .has-sub:hover .dropdown,
  .has-sub:focus-within .dropdown { display: none; }
  .has-sub.is-open .dropdown { display: block; }
  .dropdown a { padding: 12px 14px; font-size: 15px; }
  .header-cta .btn-outline { display: none; }
  .header-cta .btn { min-height: 40px; padding: 0 14px; font-size: 13.5px; }
  .split, .split.reverse, .work-block, .work-block:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .split.reverse .split-media,
  .work-block:nth-child(even) .work-media { order: 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2, .form-row { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .hero { min-height: 72vh; }
  .hero-inner { padding: 56px 0 48px; }
  .hero h1,
  .page-hero h1,
  .page-hero-copy h1 { max-width: none; }
  .hero-panel { padding: 8px 0; }
  .topbar { font-size: 11.5px; }
  .topbar .hide-sm { display: none; }
  .topbar .wrap { min-height: 30px; }
  .framed::before { inset: 12px 8px -10px 0; }
  .section { padding: 64px 0; }
  .form { padding: 20px; }
  .cta-band { padding: 48px 0; }
  .cta-band h2 { max-width: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 48px 0; }
  .section-tight { padding: 40px 0; }
  .grid-8, .grid-4, .grid-3, .metrics, .footer-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .page-hero { min-height: 0; }
  h1 { font-size: clamp(1.55rem, 7.2vw, 2.05rem); }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.12rem; }
  .lead { font-size: 1.02rem; }
  .hero .lead,
  .page-hero .lead,
  .page-hero-copy .lead { max-width: none; }
  .hero { min-height: 0; }
  .hero-inner { padding: 40px 0 36px; }
  .footer-base { flex-direction: column; gap: 8px; }
  .footer-grid { gap: 28px; }
  .site-footer { padding: 48px 0 0; }
  main .btn-row { flex-direction: column; align-items: stretch; }
  main .btn-row .btn,
  .cta-band .btn-row .btn,
  .form .btn { width: 100%; }
  .header-cta .btn { width: auto; min-width: 0; padding: 0 12px; min-height: 38px; }
  .kicker { letter-spacing: 0.12em; font-size: 11px; }
  .form-row { grid-template-columns: 1fr; }
  .lightbox { padding: 12px; }
  .lightbox img { max-width: 100%; max-height: 78vh; }
  .lightbox button { top: 10px; right: 10px; }
  .not-found { padding: 56px 16px; min-height: 56vh; }
  .not-found strong { font-size: 3.4rem; }
  .work-visual { min-height: 240px; }
  .article { padding-inline: 0; }
  .amounts button { min-height: 44px; flex: 1 1 calc(50% - 8px); }
}

@media (max-width: 400px) {
  .brand img { width: 42px; height: 42px; }
  .header-cta .btn { padding: 0 10px; font-size: 13px; }
  .home-statbar-inner,
  .home-steps,
  .home-trust,
  .home-allies,
  .home-film { grid-template-columns: 1fr; }
  .home-statbar-inner > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .home-statbar-inner > div:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; opacity: 1; transform: none; }
  .photo img, .card:hover .photo img { transition: none; transform: scale(1.06); }
}

/* ---------- Homepage ---------- */
.kicker-light { color: #9ee4dd; }
.kicker-light::before { background: var(--orange); }

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: min(88vh, 740px);
}
.home-hero-copy {
  background:
    radial-gradient(480px 280px at 0% 100%, rgba(12,138,130,0.22), transparent 60%),
    var(--navy-deep);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 64px 48px 88px 6vw;
  overflow: hidden;
}
.home-hero-copy > div { width: 100%; min-width: 0; }
.home-hero-copy h1 {
  color: #fff;
  max-width: 14ch;
  margin-bottom: 18px;
}
.home-hero-copy .kicker {
  flex-wrap: wrap;
  white-space: normal;
  max-width: 100%;
}
.home-hero-copy .lead {
  color: rgba(255,255,255,0.86);
  max-width: 46ch;
  margin-bottom: 26px;
}
.home-hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.home-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transform-origin: center 40%;
}

.home-slider { background: #12324f; }
.home-slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(7,20,38,0.72));
  z-index: 2;
  pointer-events: none;
}
.home-slider-track,
.home-slide {
  position: absolute;
  inset: 0;
}
.home-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s var(--ease), transform 1s var(--ease);
}
.home-slide.is-on {
  opacity: 1;
  transform: none;
  z-index: 1;
}
.home-slide figcaption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.home-slider-meta {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 4;
  color: #fff;
  max-width: 58%;
}
.home-slider-meta b {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #9ee4dd;
  margin-bottom: 6px;
}
.home-slider-meta span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.2;
  margin-bottom: 12px;
}
.home-slider-nav { display: flex; gap: 18px; }
.home-slider-nav button {
  background: none;
  border: 0;
  padding: 0;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.home-slider-nav button:hover { color: #fff; }
.home-slider-thumbs {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: grid;
  gap: 8px;
}
.home-slider-thumbs button {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.62;
  background: #0b2438;
}
.home-slider-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}
.home-slider-thumbs button.is-on {
  opacity: 1;
  border-color: #fff;
  box-shadow: 0 0 0 2px var(--orange);
}

.home-statbar { position: relative; z-index: 3; margin-top: -42px; }
.home-statbar-inner {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.home-statbar-inner > div {
  padding: 22px 20px 24px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.home-statbar-inner span { display: block; }
.home-statbar-inner > div:last-child { border-right: 0; }
.home-statbar-inner b {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.home-statbar-inner span {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 700;
}

.home-intro { padding-top: 80px; }
.home-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.home-intro-media { position: relative; }
.home-intro-frame {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.home-intro-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.home-intro-note {
  position: absolute;
  left: -28px;
  bottom: 28px;
  background: var(--navy-deep);
  color: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  max-width: 230px;
  box-shadow: var(--shadow);
}
.home-intro-note strong { display: block; font-size: 1.05rem; }
.home-intro-note span { color: rgba(255,255,255,0.75); font-size: 14px; }

.home-focus { background: var(--bg-soft); }
.home-focus-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
}
.home-focus-head p:last-child { max-width: 36ch; margin: 0; }
.home-focus-cta { margin-top: 28px; }

.home-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.home-bento-lg,
.home-bento-sm {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  min-height: 240px;
}
.home-bento-lg { grid-column: span 3; min-height: 400px; }
.home-bento-sm { grid-column: span 2; }
.home-bento-lg img,
.home-bento-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform .7s var(--ease);
}
.home-bento-lg:hover img,
.home-bento-sm:hover img { transform: scale(1.12); }
.home-bento-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 48px 20px 20px;
  background: linear-gradient(transparent, rgba(7,20,38,0.88));
}
.home-bento-cap span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #9ee4dd;
  margin-bottom: 6px;
}
.home-bento-cap h3 { color: #fff; margin: 0 0 6px; font-size: 1.2rem; }
.home-bento-cap p {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  margin: 0;
  max-width: 46ch;
}

.home-impact {
  background:
    radial-gradient(500px 240px at 90% 0%, rgba(12,138,130,0.2), transparent 60%),
    var(--navy-deep);
  color: #fff;
  padding: 84px 0;
}
.home-impact-head { margin-bottom: 32px; max-width: 640px; }
.home-impact h2 { color: #fff; }
.home-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.home-impact .metric {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
}
.home-impact .metric .num { color: #9ee4dd; }
.home-impact .metric b { color: #fff; }
.home-impact .metric span { color: rgba(255,255,255,0.72); }

.home-quote {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.home-quote img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.home-quote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7,20,38,0.62);
}
.home-quote-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px;
  max-width: 760px;
}
.home-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  color: #fff;
  line-height: 1.3;
}
.home-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12.5px;
  font-weight: 800;
  color: #9ee4dd;
}

.home-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.home-tile {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.home-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform .7s var(--ease);
}
.home-tile:hover img { transform: scale(1.12); }
.home-tile span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 16px 16px;
  color: #fff;
  font-weight: 750;
  background: linear-gradient(transparent, rgba(7,20,38,0.86));
}

.home-cta {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 460px;
}
.home-cta-photo { overflow: hidden; }
.home-cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.home-cta-copy {
  background: var(--navy-deep);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px;
  min-width: 0;
}
.home-cta-copy > * { max-width: 100%; }
.home-cta-copy h2 { color: #fff; max-width: 14ch; }
.home-cta-copy p { color: rgba(255,255,255,0.82); max-width: 46ch; }

@media (max-width: 1040px) {
  .home-hero,
  .home-intro-grid,
  .home-cta { grid-template-columns: 1fr; }
  .home-hero { min-height: 0; }
  .home-hero-copy { padding: 40px 20px 48px; }
  .home-hero-copy h1 { max-width: none; }
  .home-hero-copy .lead { max-width: none; }
  .home-hero-photo { min-height: 320px; }
  .home-bento { grid-template-columns: 1fr 1fr; }
  .home-bento-lg,
  .home-bento-sm { grid-column: auto; min-height: 240px; }
  .home-bento-lg { min-height: 300px; }
  .home-tiles { grid-template-columns: 1fr 1fr; }
  .home-impact-grid { grid-template-columns: 1fr 1fr; }
  .home-intro-note { left: 12px; right: auto; max-width: min(230px, calc(100% - 24px)); }
  .home-statbar { margin-top: 0; padding: 16px 0 8px; }
  .home-statbar-inner { grid-template-columns: 1fr 1fr; }
  .home-statbar-inner > div:nth-child(2) { border-right: 0; }
  .home-cta-photo { min-height: 240px; }
  .home-cta-copy { padding: 36px 20px; }
  .home-cta-copy h2 { max-width: none; }
  .home-intro { padding-top: 48px; }
  .home-slider-thumbs {
    top: auto;
    bottom: 14px;
    right: 12px;
    left: auto;
    transform: none;
    grid-auto-flow: column;
  }
  .home-slider-thumbs button { width: 40px; height: 40px; }
  .home-slider-meta {
    max-width: calc(100% - 28px);
    left: 14px;
    right: 14px;
    bottom: 64px;
  }
}

@media (max-width: 640px) {
  .home-tiles,
  .home-bento,
  .home-impact-grid { grid-template-columns: 1fr; }
  .home-bento-lg,
  .home-bento-sm { grid-column: auto; }
  .home-bento-lg { min-height: 260px; }
  .home-bento-sm { min-height: 220px; }
  .home-statbar-inner > div { border-right: 1px solid var(--line); }
  .home-statbar-inner > div:nth-child(odd) { border-right: 1px solid var(--line); }
  .home-statbar-inner > div:nth-child(2n) { border-right: 0; }
  .home-statbar-inner > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .home-focus-head { flex-direction: column; align-items: stretch; }
  .home-focus-head p:last-child { max-width: none; }
  .home-intro-frame { aspect-ratio: 4 / 3; }
  .home-intro-grid { gap: 28px; }
  .home-hero-photo { min-height: 280px; }
  .home-hero-copy { padding: 32px 16px 36px; }
  .home-slider-thumbs button { width: 34px; height: 34px; }
  .home-slider-meta { bottom: 56px; }
  .home-slider-meta span { font-size: 1.15rem; }
  .home-impact { padding: 48px 0; }
  .home-quote { min-height: 320px; }
  .home-quote-inner { padding: 32px 16px; }
  .home-cta-copy { padding: 32px 16px; }
}

.home-approach { padding-top: 20px; }
.home-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}
.home-steps article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px 24px;
  box-shadow: var(--shadow-sm);
}
.home-steps span {
  display: block;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin-bottom: 10px;
}
.home-steps h3 { margin-bottom: 8px; font-size: 1.08rem; }
.home-steps p { margin: 0; font-size: 14.5px; }

.home-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.home-trust > div {
  background: var(--bg-soft);
  padding: 18px 20px;
}
.home-trust strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 4px;
}
.home-trust span { color: var(--navy); font-weight: 750; }

.home-field { background: var(--cream); }
.home-film {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.home-film a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
}
.home-film img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform .6s var(--ease);
}
.home-film a:hover img { transform: scale(1.12); }

.home-allies {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.home-allies article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 18px 22px;
}
.home-allies h3 { font-size: 1.05rem; margin-bottom: 6px; }
.home-allies p { margin: 0; font-size: 14.5px; }

@media (max-width: 1040px) {
  .home-steps,
  .home-trust,
  .home-allies { grid-template-columns: 1fr 1fr; }
  .home-film { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .home-steps,
  .home-trust,
  .home-allies { grid-template-columns: 1fr; }
  .home-film { grid-template-columns: 1fr 1fr; }
}

/* ---------- Inner pages, matching homepage ---------- */
.page-inner .section-head { max-width: none; }
.page-inner .framed .photo { aspect-ratio: 4 / 5; }

.work-visual {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}
.work-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform .7s var(--ease);
}
.work-visual:hover img { transform: scale(1.12); }
.work-visual span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 13px;
  border-radius: 999px;
  padding: 6px 12px;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.theme-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px 24px;
  box-shadow: var(--shadow-sm);
}
.theme-card span {
  display: block;
  color: var(--teal);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin-bottom: 10px;
}
.theme-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.theme-card p { margin: 0; font-size: 14.5px; }

.init-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.init-visual-photo {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 12px;
  color: #fff;
}
.init-visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform .7s var(--ease);
}
.init-visual-photo:hover img { transform: scale(1.12); }
.init-visual-photo span,
.init-visual-photo h3 {
  position: absolute;
  left: 16px;
  right: 16px;
  z-index: 1;
}
.init-visual-photo span {
  top: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ee4dd;
}
.init-visual-photo h3 {
  bottom: 14px;
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
}
.init-visual-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(7,20,38,0.78));
}
.init-visual p { font-size: 14.5px; }

.involve-visual {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.involve-visual-photo { aspect-ratio: 16 / 10; overflow: hidden; }
.involve-visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform .7s var(--ease);
}
.involve-visual:hover .involve-visual-photo img { transform: scale(1.12); }
.involve-visual-copy { padding: 22px; }
.page-inner .form { box-shadow: var(--shadow); }
.page-inner .news-card .photo,
.page-inner .gallery-item { border-radius: 16px; }

@media (max-width: 1040px) {
  .page-hero-split { grid-template-columns: 1fr; min-height: 0; }
  .page-hero-copy { padding: 36px 20px 32px; }
  .page-hero-copy h1 { max-width: none; }
  .page-hero-photo { min-height: 240px; }
  .theme-grid,
  .init-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; align-items: stretch; gap: 20px; }
  .page-inner .framed .photo { aspect-ratio: 4 / 3; }
}

@media (max-width: 640px) {
  .theme-grid,
  .init-grid { grid-template-columns: 1fr; }
  .page-hero-copy { padding: 32px 16px 28px; }
  .page-hero-photo { min-height: 200px; }
  .involve-visual-copy { padding: 18px; }
  .involve-visual-copy .btn { width: 100%; }
}

@media (hover: none) {
  .focus-card:hover,
  .value-card:hover,
  .involve-card:hover,
  .init-card:hover,
  .news-card:hover,
  .involve-visual:hover { transform: none; }
  .btn:hover { transform: none; }
}
