:root {
  --ink: #12355b;
  --ink-deep: #0a243f;
  --sky: #dff2fa;
  --sky-bright: #9bdcf0;
  --sun: #ffca3a;
  --coral: #f06449;
  --paper: #f8fbfd;
  --white: #ffffff;
  --muted: #62768a;
  --line: #d8e3e9;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; color: var(--ink-deep); background: #edf4f5; font-family: var(--sans); font-size: 16px; line-height: 1.6; }
section[id] { scroll-margin-top: 112px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: .7rem 1rem; color: white; background: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 100; padding: 12px 0; background: rgba(237,244,245,.72); backdrop-filter: blur(20px) saturate(1.25); transition: padding .2s; }
.site-header.scrolled { padding: 8px 0; }
.nav-shell { width: min(var(--max), calc(100% - 32px)); min-height: 72px; margin: auto; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.92); border-radius: 24px; box-shadow: 0 8px 30px rgba(10,36,63,.08); }
.brand img { width: 220px; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(14px, 1.5vw, 24px); font-size: .82rem; font-weight: 700; }
.main-nav > a:not(.nav-cta), .nav-dropdown > summary { position: relative; padding: 10px 0; }
.main-nav > a:not(.nav-cta)::after, .nav-dropdown > summary::before { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 2px; background: var(--coral); transition: right .2s; }
.main-nav > a:hover::after, .nav-dropdown:hover > summary::before, .nav-dropdown[open] > summary::before { right: 0; }
.nav-dropdown { position: relative; }
.nav-dropdown > summary { display: flex; align-items: center; gap: 5px; cursor: pointer; list-style: none; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::after { content: "⌄"; color: var(--coral); font-size: .85em; transform: translateY(-1px); }
.nav-dropdown[open] > summary::after { transform: rotate(180deg) translateY(-1px); }
.nav-dropdown-menu { position: absolute; z-index: 20; top: calc(100% + 8px); left: -18px; width: 230px; padding: 10px; display: grid; gap: 2px; color: var(--ink-deep); background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 42px rgba(10,36,63,.16); }
.nav-dropdown-menu a { padding: 9px 11px; border-radius: 10px; font-size: .8rem; line-height: 1.3; }
.nav-dropdown-menu a:hover { color: white; background: #0f7773; }
.nav-cta { padding: 12px 18px; color: white; background: var(--ink); border-radius: 999px; box-shadow: 0 8px 20px rgba(10,36,63,.16); }
.header-tools { display: flex; align-items: center; gap: 8px; flex: none; }
.language-picker { position: relative; }
.language-picker > summary { min-height: 44px; padding: 6px 12px 6px 7px; display: flex; align-items: center; gap: 5px; color: var(--ink-deep); background: #fff7d9; border: 2px solid var(--sun); border-radius: 999px; box-shadow: 0 8px 20px rgba(18,53,91,.12); cursor: pointer; list-style: none; font-size: .75rem; font-weight: 900; letter-spacing: .04em; transition: transform .2s, box-shadow .2s, background .2s; }
.language-picker > summary::-webkit-details-marker { display: none; }
.language-picker > summary:hover, .language-picker[open] > summary { color: white; background: #0f7773; border-color: #0f7773; box-shadow: 0 12px 24px rgba(15,119,115,.24); transform: translateY(-2px); }
.language-picker > summary i { color: var(--coral); font-style: normal; }
.language-picker > summary:hover i, .language-picker[open] > summary i { color: var(--sun); }
.language-icon { width: 27px; height: 27px; display: grid; place-items: center; color: white; background: var(--coral); border-radius: 50%; line-height: 1; }
.language-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.language-menu { position: absolute; z-index: 30; top: calc(100% + 10px); right: 0; width: 180px; padding: 8px; display: grid; gap: 4px; color: var(--ink-deep); background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 42px rgba(10,36,63,.16); }
.language-menu a { padding: 10px 12px; display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 8px; border-radius: 12px; font-size: .82rem; }
.language-menu a:hover { background: #e6f5f3; }
.language-menu a.is-current { color: #b53f32; background: #fff0eb; }
.language-menu strong { font-size: .75rem; letter-spacing: .08em; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--ink); }

@media (max-width: 1180px) {
  .nav-shell { min-height: 76px; }
  .brand img { width: 190px; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .main-nav { position: fixed; inset: 0; padding: 110px 32px 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 15px; overflow-y: auto; background: var(--paper); transform: translateX(100%); visibility: hidden; pointer-events: none; transition: transform .25s, visibility 0s .25s; }
  .main-nav.open { transform: translateX(0); visibility: visible; pointer-events: auto; transition: transform .25s; }
  .main-nav > a, .nav-dropdown > summary { font-size: 1.22rem; }
  .nav-dropdown { width: min(100%, 330px); }
  .nav-dropdown-menu { position: static; width: 100%; margin-top: 4px; padding: 6px 0 4px 14px; gap: 0; background: transparent; border: 0; border-left: 2px solid var(--coral); border-radius: 0; box-shadow: none; }
  .nav-dropdown-menu a { padding: 6px 12px; font-size: .94rem; }
}

.hero { width: min(1500px, calc(100% - 32px)); min-height: calc(100vh - 120px); margin: 4px auto 0; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(500px, .94fr); overflow: hidden; background: radial-gradient(circle at 7% 16%, rgba(240,100,73,.14), transparent 24%), radial-gradient(circle at 63% 86%, rgba(255,202,58,.17), transparent 25%), #f3faf9; border: 1px solid rgba(255,255,255,.9); border-radius: 42px; box-shadow: 0 24px 70px rgba(17,65,72,.12); }
.hero-copy { position: relative; z-index: 2; padding: clamp(76px, 8vw, 122px) clamp(36px, 6vw, 90px) 58px max(34px, calc((100vw - var(--max)) / 2)); display: flex; flex-direction: column; align-items: flex-start; }
.hero-copy::before { content: ""; position: absolute; z-index: -1; width: 430px; height: 430px; left: -245px; top: 16%; border: 1px solid rgba(18, 112, 108, .13); border-radius: 50%; }
.eyebrow { margin: 0 0 24px; color: var(--coral); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 32px; height: 2px; background: currentColor; }
.eyebrow.light { color: var(--sun); }
h1, h2, blockquote { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
.hero h1 { max-width: 820px; margin: 0 0 30px; font-size: clamp(3.55rem, 5.7vw, 6.2rem); line-height: .93; color: var(--ink-deep); }
.hero h1 em { color: #e45848; font-weight: 400; }
.hero h1 strong { position: relative; color: #0f7773; font-weight: 400; }
.hero h1 strong::after { content: ""; position: absolute; left: 0; right: 0; bottom: -.08em; height: 7px; border-radius: 99px; background: linear-gradient(90deg, var(--sun), var(--coral)); transform: rotate(-1.3deg); opacity: .9; }
.donate h2 em { color: var(--coral); font-weight: 400; }
.hero-lede { max-width: 630px; margin: 0; color: #385b64; font-size: clamp(1.08rem, 1.45vw, 1.26rem); line-height: 1.7; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; flex-wrap: wrap; gap: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 54px; padding: 0 24px; border-radius: 999px; font-weight: 800; font-size: .92rem; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.hero .button-primary { color: white; background: #0f7773; border-radius: 999px; box-shadow: 0 14px 32px rgba(15,119,115,.2); }
.hero .button-primary:hover { background: var(--coral); box-shadow: 0 16px 34px rgba(240,100,73,.24); }
.button-primary { color: white; background: var(--ink); box-shadow: 0 12px 28px rgba(18,53,91,.16); }
.button-primary:hover { background: var(--coral); box-shadow: 0 14px 30px rgba(240,100,73,.22); }
.text-link { font-weight: 800; font-size: .92rem; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.hero-values { margin: 34px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; list-style: none; }
.hero-values li { padding: 8px 12px; display: flex; align-items: center; gap: 8px; color: #315b61; background: rgba(255,255,255,.74); border: 1px solid rgba(15,119,115,.16); border-radius: 999px; font-size: .76rem; font-weight: 800; }
.hero-values li span { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.hero-values li:nth-child(2) span { background: #f2ad31; }
.hero-values li:nth-child(3) span { background: #58b7ca; }
.hero-values li:nth-child(4) span { background: #0f7773; }
.hero-values li:nth-child(5) span { background: #935fa3; }
.hero-note { margin-top: auto; padding: 14px 18px; display: flex; align-items: center; gap: 18px; background: rgba(255,255,255,.7); border: 1px solid rgba(15,119,115,.12); border-radius: 22px; box-shadow: 0 10px 28px rgba(17,65,72,.06); }
.hero-note strong { color: var(--ink); font-family: var(--serif); font-size: 1.5rem; white-space: nowrap; }
.hero-note span { max-width: 260px; padding-left: 18px; border-left: 1px solid var(--line); color: var(--muted); font-size: .82rem; line-height: 1.45; }
.hero-visual { position: relative; min-height: 690px; background: #0d706d; isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 82% 13%, rgba(255,204,58,.98) 0 12%, transparent 12.4%), radial-gradient(circle at 7% 88%, rgba(240,100,73,.92), transparent 25%), linear-gradient(145deg, transparent 0 72%, rgba(255,255,255,.08) 72%); }
.hero-visual::after { content: ""; position: absolute; width: 260px; height: 260px; right: -90px; bottom: -90px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.hero-sun { position: absolute; width: 115px; height: 115px; left: -32px; top: 72px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 18px rgba(255,202,58,.18); }
.hero-photo-wrap { position: absolute; z-index: 1; inset: 7% 9% 9% 13%; margin: 0; overflow: hidden; border-radius: 56px; box-shadow: 22px 24px 0 rgba(6,55,53,.28); }
.hero-photo-wrap::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -120px 110px rgba(7,47,48,.16); pointer-events: none; }
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 27%; filter: saturate(.92) contrast(1.03); }
.hero-photo-secondary { position: absolute; z-index: 3; width: 31%; aspect-ratio: 1 / 1.18; left: 3%; bottom: 5%; margin: 0; overflow: hidden; border: 7px solid #fff; border-radius: 34px; box-shadow: 0 18px 42px rgba(5,42,43,.25); transform: rotate(-3deg); }
.hero-photo-secondary img { width: 100%; height: 100%; object-fit: cover; object-position: 56% 40%; }
.hero-message { position: absolute; z-index: 4; right: 3%; top: 11%; max-width: 285px; padding: 16px 20px 16px 15px; display: flex; align-items: center; gap: 13px; color: var(--ink-deep); background: white; border-radius: 22px; box-shadow: 0 16px 38px rgba(5,42,43,.2); transform: rotate(2deg); }
.hero-message > span { width: 44px; height: 44px; flex: none; display: grid; place-items: center; color: white; background: var(--coral); border-radius: 50%; font-family: var(--serif); font-size: 1rem; line-height: 1; }
.hero-message p { margin: 0; font-family: var(--serif); font-size: 1.02rem; line-height: 1.14; }
.hero-message small { display: block; margin-bottom: 4px; color: var(--coral); font-family: var(--sans); font-size: .75rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.hero-message strong { display: block; color: #0f7773; font-weight: 600; }
.hero-message p > span { display: block; }
.photo-label { position: absolute; z-index: 4; right: 5%; bottom: 6%; padding: 10px 15px; color: white; background: rgba(8,46,52,.86); border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: .75rem; font-weight: 800; letter-spacing: .04em; backdrop-filter: blur(8px); }
.photo-label span { margin-right: 7px; color: var(--sun); font-size: .75rem; }

.intro-band { width: min(1500px, calc(100% - 32px)); margin: 18px auto 0; overflow: hidden; background: #083e47; color: white; display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 32px; box-shadow: 0 16px 40px rgba(8,62,71,.12); }
.intro-band p { min-height: 128px; margin: 0; padding: 28px 30px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-right: 1px solid rgba(255,255,255,.16); font-family: var(--serif); font-size: clamp(1.08rem, 1.5vw, 1.34rem); }
.intro-band p:nth-child(2) { background: rgba(15,119,115,.48); }
.intro-band p:nth-child(3) { background: linear-gradient(135deg, rgba(240,100,73,.92), rgba(221,75,59,.92)); }
.intro-band p span { margin-bottom: 6px; color: var(--sun); font-family: var(--sans); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.intro-band p:nth-child(3) span { color: white; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gentle-float {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-7px); }
}

.hero-copy > * { animation: hero-rise .65s ease both; }
.hero-copy > *:nth-child(2) { animation-delay: .06s; }
.hero-copy > *:nth-child(3) { animation-delay: .12s; }
.hero-copy > *:nth-child(4) { animation-delay: .18s; }
.hero-copy > *:nth-child(5) { animation-delay: .24s; }
.hero-copy > *:nth-child(6) { animation-delay: .3s; }
.hero-message { animation: gentle-float 4.6s ease-in-out infinite; }

.section { width: min(var(--max), calc(100% - 48px)); margin: auto; padding: 130px 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 58px; }
.section-heading h2, .project-copy h2, .donate h2, .newsletter h2 { margin: 0; color: var(--ink); font-size: clamp(3rem, 5vw, 5.4rem); line-height: 1; }
.section-intro { max-width: 450px; margin: 0; color: var(--muted); font-size: 1.05rem; }

.explore { padding-bottom: 50px; }
.explore-heading { align-items: center; }
.explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(245px, auto); gap: 14px; }
.explore-card { position: relative; min-width: 0; padding: 28px; display: flex; flex-direction: column; align-items: flex-start; color: var(--ink); background: white; border: 1px solid rgba(18,53,91,.1); border-radius: 28px; overflow: hidden; box-shadow: 0 8px 26px rgba(18,53,91,.055); transition: transform .25s, box-shadow .25s; }
.explore-card:hover { z-index: 2; transform: translateY(-6px); box-shadow: 0 20px 42px rgba(18,53,91,.13); }
.explore-card::after { content: ""; position: absolute; width: 110px; height: 110px; right: -75px; bottom: -75px; border: 18px solid currentColor; border-radius: 50%; opacity: .08; transition: right .35s, bottom .35s; }
.explore-card:hover::after { right: -55px; bottom: -55px; }
.explore-number { margin-bottom: auto; font-size: .75rem; font-weight: 900; letter-spacing: .12em; opacity: .68; }
.explore-card strong { margin-top: 30px; font-family: var(--serif); font-size: clamp(1.55rem, 2.2vw, 2.15rem); font-weight: 400; line-height: 1.05; }
.explore-card small { max-width: 230px; margin-top: 12px; font-size: .77rem; line-height: 1.45; opacity: .72; }
.explore-card b { position: absolute; top: 24px; right: 26px; font-size: 1.1rem; }
.explore-primary { color: white; background: var(--ink); border-color: var(--ink); }
.explore-sun { background: var(--sun); border-color: var(--sun); }
.explore-coral { color: white; background: var(--coral); border-color: var(--coral); }
.explore-sky { background: var(--sky); border-color: var(--sky); }
.explore-wide { grid-column: span 2; }

.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.story-card { min-width: 0; overflow: hidden; background: white; border: 1px solid rgba(18,53,91,.1); border-radius: 28px; box-shadow: 0 8px 28px rgba(18,53,91,.05); transition: transform .25s, box-shadow .25s; }
.story-card:hover { transform: translateY(-7px); box-shadow: 0 22px 48px rgba(18,53,91,.11); }
.story-image { display: block; aspect-ratio: 1.16; overflow: hidden; background: var(--sky); }
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.story-card:hover .story-image img { transform: scale(1.04); }
.story-card-featured .story-image { aspect-ratio: 1.28; }
.story-body { padding: 27px 28px 30px; }
.story-meta { margin: 0 0 14px; color: var(--coral); font-size: .75rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.story-card h3 { margin: 0 0 25px; color: var(--ink); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.22; letter-spacing: -.025em; }
.story-card-featured h3 { font-size: clamp(1.7rem, 2.5vw, 2.35rem); }
.card-link { display: inline-flex; gap: 10px; align-items: center; font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.card-link span { color: var(--coral); }
.stories-more { margin-top: 42px; display: flex; justify-content: center; }
.stories-more .button { min-width: 225px; box-shadow: 0 12px 28px rgba(15,119,115,.18); }

.most-read-cards { padding-top: 40px; }

.featured-stories { color: white; background: var(--ink-deep); }
.featured-inner { width: min(var(--max), calc(100% - 48px)); margin: auto; padding: 125px 0; }
.featured-heading h2 { color: white; }
.featured-heading .section-intro { color: #b9cbd8; }
.featured-showcase { display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: repeat(2, 310px); gap: 16px; }
.feature-tile { position: relative; min-width: 0; overflow: hidden; background: var(--ink); border-radius: 28px; }
.feature-tile-main { grid-row: 1 / 3; }
.feature-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,25,43,.03) 25%, rgba(6,25,43,.92) 100%); }
.feature-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s, filter .55s; }
.feature-tile:hover img { transform: scale(1.045); filter: saturate(1.12); }
.feature-index { position: absolute; z-index: 2; top: 22px; left: 22px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: .75rem; font-weight: 900; }
.feature-tile > div { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; }
.feature-tile small { display: block; margin-bottom: 7px; color: var(--sun); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.feature-tile strong { display: block; max-width: 520px; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 2rem); font-weight: 400; line-height: 1.15; }
.feature-tile-main strong { font-size: clamp(2rem, 3.2vw, 3.2rem); }
.feature-tile > b { position: absolute; z-index: 2; top: 27px; right: 25px; font-size: 1rem; }
.featured-list { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; border-top: 1px solid rgba(255,255,255,.18); }
.featured-list a { min-height: 92px; padding: 20px 2px; display: grid; grid-template-columns: 34px 1fr 20px; gap: 15px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.18); transition: color .2s, padding .2s; }
.featured-list a:hover { padding-left: 10px; color: var(--sun); }
.featured-list span { color: var(--sky-bright); font-size: .67rem; font-weight: 900; }
.featured-list strong { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; line-height: 1.25; }
.featured-list b { font-size: .9rem; }
.featured-all { margin-top: 45px; }

.project-section { background: var(--ink); color: white; }
.project-inner { width: min(var(--max), calc(100% - 48px)); margin: auto; min-height: 720px; padding: 110px 0; display: grid; grid-template-columns: 90px minmax(300px, 1fr) minmax(320px, .75fr); gap: clamp(40px, 7vw, 100px); align-items: center; }
.project-kicker { align-self: stretch; border-right: 1px solid rgba(255,255,255,.18); color: var(--sky-bright); font-size: .75rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); text-align: right; }
.project-copy h2 { color: white; }
.project-copy > p:not(.eyebrow) { max-width: 580px; margin: 30px 0 36px; color: #c3d3df; font-size: 1.08rem; }
.button-light { background: var(--sun); color: var(--ink-deep); }
.button-light:hover { background: white; }
.project-values { border-top: 1px solid rgba(255,255,255,.18); }
.project-values > div { display: grid; grid-template-columns: 38px 100px 1fr; gap: 18px; align-items: baseline; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.project-values strong { color: var(--sun); font-size: .75rem; }
.project-values span { font-family: var(--serif); font-size: 1.4rem; }
.project-values p { margin: 0; color: #aebfcd; font-size: .84rem; line-height: 1.5; }

.video-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 24px; }
.video-card { position: relative; min-height: 470px; overflow: hidden; background: var(--ink); border-radius: 28px; }
.video-card-main { min-height: 560px; }
.video-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(7,29,52,.88) 100%); }
.video-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); transition: transform .5s, filter .5s; }
.video-card:hover img { transform: scale(1.04); filter: saturate(1.1); }
.play { position: absolute; z-index: 2; top: 30px; right: 30px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--sun); color: var(--ink); font-size: .9rem; transition: transform .2s; }
.video-card:hover .play { transform: scale(1.08); }
.video-caption { position: absolute; z-index: 2; left: 34px; right: 30px; bottom: 30px; color: white; }
.video-caption span { display: block; margin-bottom: 7px; color: var(--sun); font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.video-caption strong { display: block; max-width: 620px; font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.45rem); font-weight: 400; line-height: 1.15; }
.interview-heading { margin: 78px 0 30px; padding-top: 35px; border-top: 1px solid var(--line); display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.interview-heading span { color: var(--coral); font-size: .75rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.interview-heading h3 { margin: 5px 0 0; color: var(--ink); font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 400; letter-spacing: -.035em; }
.interview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px 22px; }
.interview-card { min-width: 0; }
.interview-image { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink); border-radius: 24px; }
.interview-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,36,63,.35)); }
.interview-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s, filter .45s; }
.interview-card:hover img { transform: scale(1.045); filter: saturate(1.12); }
.mini-play { position: absolute; z-index: 2; right: 16px; bottom: 16px; width: 42px; height: 42px; display: grid; place-items: center; color: var(--ink); background: var(--sun); border-radius: 50%; font-size: .67rem; transition: transform .2s; }
.interview-card:hover .mini-play { transform: scale(1.1); }
.interview-card p { margin: 17px 2px 0; }
.interview-card p span, .interview-card p strong { display: block; }
.interview-card p span { margin-bottom: 6px; color: var(--coral); font-size: .75rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.interview-card p strong { color: var(--ink); font-family: var(--serif); font-size: 1.35rem; font-weight: 400; line-height: 1.22; }

.inaki-view { min-height: 800px; display: grid; grid-template-columns: minmax(380px, .82fr) minmax(500px, 1.18fr); color: white; background: var(--ink); }
.inaki-view-photo { position: relative; min-height: 800px; overflow: hidden; }
.inaki-view-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,29,52,.74)); }
.inaki-view-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 34%; filter: saturate(.82) contrast(1.04); }
.inaki-view-photo > span { position: absolute; z-index: 2; left: 34px; bottom: 30px; padding: 9px 14px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.inaki-view-copy { padding: 110px max(34px, calc((100vw - var(--max)) / 2)) 100px clamp(55px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.inaki-view-copy h2 { margin: 0; color: white; font-family: var(--serif); font-size: clamp(3.2rem, 5vw, 5.7rem); font-weight: 400; line-height: .98; letter-spacing: -.04em; }
.inaki-view-copy h2 em { color: var(--sun); font-weight: 400; }
.inaki-quotes { margin: 50px 0 42px; border-top: 1px solid rgba(255,255,255,.2); }
.inaki-quotes blockquote { margin: 0; padding: 24px 0; display: grid; grid-template-columns: 38px 1fr; gap: 18px; align-items: start; border-bottom: 1px solid rgba(255,255,255,.2); }
.inaki-quotes blockquote > span { padding-top: 6px; color: var(--sky-bright); font-family: var(--sans); font-size: .75rem; font-weight: 900; letter-spacing: .1em; }
.inaki-quotes p { margin: 0; max-width: 700px; font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.28; }
.inaki-view-copy .button { align-self: flex-start; }

.about { width: min(980px, calc(100% - 48px)); margin: 0 auto; padding: 40px 0 140px; text-align: center; }
.about-mark { height: 72px; color: var(--coral); font-family: var(--serif); font-size: 7rem; line-height: 1; }
.about blockquote { margin: 20px 0 45px; color: var(--ink); font-size: clamp(2.25rem, 4vw, 4rem); line-height: 1.14; }
.about-person { max-width: 590px; margin: auto; padding-top: 30px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 30px; text-align: left; }
.about-person strong, .about-person span { display: block; }
.about-person strong { color: var(--ink); }
.about-person span { color: var(--muted); font-size: .84rem; }

.donate { min-height: 610px; padding: 100px max(30px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1fr .9fr; gap: clamp(60px, 10vw, 140px); align-items: center; color: white; background: var(--coral); }
.donate h2 { color: white; }
.donate h2 em { color: var(--sun); }
.donate-copy > p:not(.eyebrow) { max-width: 560px; margin-top: 28px; color: #fff1ed; font-size: 1.05rem; }
.donate-actions { border-top: 1px solid rgba(255,255,255,.35); }
.donate-option { min-height: 132px; padding: 28px 2px; border-bottom: 1px solid rgba(255,255,255,.35); display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: padding .2s, background .2s; }
.donate-option:hover { padding-left: 20px; padding-right: 20px; background: rgba(255,255,255,.09); }
.donate-option small, .donate-option strong { display: block; }
.donate-option small { margin-bottom: 5px; color: #ffe5dc; font-size: .77rem; }
.donate-option strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.donate-option b { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 1.2rem; }

.newsletter { width: min(var(--max), calc(100% - 48px)); margin: auto; padding: 110px 0; display: grid; grid-template-columns: 1fr .8fr; gap: 100px; align-items: end; }
.newsletter h2 { font-size: clamp(2.7rem, 4vw, 4.4rem); }
.newsletter-form label { display: block; margin-bottom: 12px; color: var(--ink); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.newsletter-form > div { display: flex; border-bottom: 2px solid var(--ink); }
.newsletter-form input { width: 100%; min-height: 58px; border: 0; outline: none; background: transparent; color: var(--ink); font-size: 1.1rem; }
.newsletter-form button { width: 58px; border: 0; border-radius: 50% 50% 0 0; color: white; background: var(--ink); cursor: pointer; transition: background .2s; }
.newsletter-form button:hover { background: var(--coral); }
.newsletter-form p { margin: 12px 0 0; color: var(--muted); font-size: .78rem; }
.newsletter-cta { display: flex; flex-direction: column; align-items: flex-start; }
.newsletter-label { margin-bottom: 12px; color: var(--ink); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.newsletter-cta .button { min-width: 210px; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.site-footer { --footer-green: #08aaa8; --footer-red: #f06449; --footer-yellow: #ffca3a; position: relative; padding: 72px max(30px, calc((100vw - var(--max)) / 2)) 28px; color: #385b64; background: #edf4f5; }
.site-footer::before, .site-footer::after { display: none; }
.footer-directory { padding: 18px; overflow: hidden; background: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.9); border-radius: 42px; box-shadow: 0 20px 54px rgba(17,65,72,.09); }
.footer-projects-row { padding: 24px; display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: stretch; background: #dcefed; border: 1px solid rgba(15,119,115,.12); border-radius: 30px; }
.footer-projects-row > h2, .footer-spaces-row > h2, .social-panel > h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: 1.02; }
.footer-projects-row > h2 { color: #0f7773; }
.footer-spaces-row > h2 { color: #d85745; }
.footer-projects-row > h2 { padding: 32px 14px; font-size: clamp(2rem, 3vw, 3rem); }
.footer-project-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.footer-project-cards a, .footer-space-cards a { min-width: 0; padding: 16px 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; color: var(--ink-deep); text-align: center; background: white; border-radius: 19px; box-shadow: 0 8px 20px rgba(1,31,37,.1); transition: transform .2s, box-shadow .2s; }
.footer-project-cards a:hover, .footer-space-cards a:hover { transform: translateY(-3px); box-shadow: 0 13px 26px rgba(1,31,37,.2); }
.footer-project-cards strong, .footer-space-cards strong { font-size: .86rem; line-height: 1.25; }
.footer-project-mark, .footer-space-mark { width: 78px; height: 52px; display: block; overflow: hidden; background-color: white; background-image: url("assets/footer-project-logos.png"); background-repeat: no-repeat; background-size: 1300px 648px; border-radius: 10px; }
.logo-gambo { background-position: -457px -57px; }
.logo-mcs { background-position: -744px -59px; }
.logo-medbrain { background-position: -1031px -56px; }
.logo-zmd { background-position: -482px -176px; }
.logo-asf { background-position: -745px -178px; }
.logo-sgl { background-position: -1032px -179px; }
.logo-mirada { background-position: -1033px -312px; }
.footer-space-logo { width: 68px; height: 68px; display: block; object-fit: contain; }
.footer-space-logo-portrait { width: 66px; height: 66px; object-fit: cover; object-position: 50% 22%; border: 3px solid #dcefed; border-radius: 50%; box-shadow: 0 6px 14px rgba(1,31,37,.14); }
.footer-space-logo-heart { padding: 3px; }
.footer-spaces-row { margin-top: 14px; padding: 24px; display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: center; background: #fff0eb; border: 1px solid rgba(240,100,73,.16); border-radius: 30px; }
.footer-spaces-row > h2 { padding: 0 16px; text-align: center; font-size: clamp(1.8rem, 2.6vw, 2.65rem); }
.footer-space-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.social-panel { width: min(860px, 86%); margin: 28px auto 42px; padding: 30px 34px; border: 1px solid rgba(255,202,58,.28); display: flex; flex-direction: column; align-items: center; gap: 18px; background: #fff8df; border-radius: 30px; box-shadow: 0 16px 38px rgba(17,65,72,.07); }
.social-panel > h2 { color: var(--ink); font-size: clamp(1.7rem, 2.4vw, 2.35rem); }
.social-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 11px; }
.social-links a { width: 48px; min-width: 48px; height: 48px; padding: 0; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,.78); border-radius: 50%; color: white; background: var(--footer-green); box-shadow: 0 8px 18px rgba(1,31,37,.28); transition: transform .2s, box-shadow .2s; }
.social-links a:nth-child(1) { background: radial-gradient(circle at 30% 107%, #fdf497 0 5%, #fdf497 5% 9%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-links a:nth-child(2) { background: #1877f2; }
.social-links a:nth-child(3) { background: #000; }
.social-links a:nth-child(4) { background: #ff0000; }
.social-links a:nth-child(5) { background: #000; }
.social-links a:nth-child(6) { background: #0a66c2; }
.social-links a:nth-child(7) { color: #07130a; background: #43e660; }
.social-links a:hover { transform: translateY(-3px); box-shadow: 0 12px 23px rgba(1,31,37,.34); }
.social-links svg { width: 19px; height: 19px; fill: currentColor; flex: none; }
.social-links a > span:not(.social-mark) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.social-links .social-mark { font-size: 1.05rem; font-weight: 900; line-height: 1; }
.footer-bottom { padding-top: 25px; border-top: 1px solid rgba(18,53,91,.14); display: flex; justify-content: space-between; gap: 30px; color: var(--ink); font-size: .75rem; }
.footer-bottom div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 26px; }
.footer-legal > span { color: var(--muted); }
.footer-bottom a:hover { color: var(--coral); }

@media (max-width: 980px) {
  .hero { min-height: 760px; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); }
  .hero-copy { padding: 72px 36px 54px 40px; }
  .hero h1 { font-size: clamp(3.35rem, 7vw, 4.8rem); }
  .hero-lede { font-size: 1.02rem; }
  .hero-actions { gap: 20px; }
  .hero-note { margin-top: 46px; padding-top: 0; }
  .hero-visual { min-height: 680px; }
  .hero-photo-wrap { inset: 9% 7% 9% 11%; }
  .hero-photo-secondary { width: 36%; left: -2%; }
  .hero-message { right: 1%; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .story-card-featured { grid-column: 1 / -1; }
  .story-card-featured { display: grid; grid-template-columns: 1.25fr 1fr; }
  .story-card-featured .story-image { aspect-ratio: auto; }
  .featured-showcase { grid-template-columns: 1fr 1fr; grid-template-rows: 480px repeat(2, 280px); }
  .feature-tile-main { grid-column: 1 / -1; grid-row: auto; }
  .featured-list { grid-template-columns: 1fr; }
  .project-inner { grid-template-columns: 60px 1fr; }
  .project-values { grid-column: 2; }
  .video-grid { grid-template-columns: 1fr; }
  .interview-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card, .video-card-main { min-height: 480px; }
  .donate, .newsletter { grid-template-columns: 1fr; gap: 58px; }
  .inaki-view { grid-template-columns: .8fr 1.2fr; }
  .inaki-view-copy { padding: 90px 42px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; }
  .social-panel { align-items: flex-start; flex-direction: column; }
  .footer-projects-row, .footer-spaces-row { grid-template-columns: 1fr; }
  .footer-projects-row > h2, .footer-spaces-row > h2 { padding: 8px 4px 12px; text-align: left; }
  .footer-projects-row > h2 br, .footer-spaces-row > h2 br { display: none; }
  .social-panel { align-items: center; }
}

@media (max-width: 760px) {
  .hero { min-height: auto; grid-template-columns: 1fr; border-radius: 32px; }
  .hero-copy { padding: 66px 28px 58px; }
  .hero-copy::before { display: none; }
  .hero h1 { font-size: clamp(3.25rem, 12vw, 5.2rem); }
  .hero-note { margin-top: 46px; }
  .hero-visual { min-height: 620px; }
  .hero-photo-wrap { inset: 7% 8% 9% 11%; }
  .hero-photo-secondary { width: 32%; left: 3%; }
}

@media (max-width: 650px) {
  .nav-shell, .section, .project-inner, .newsletter { width: min(100% - 32px, var(--max)); }
  .nav-shell { padding: 0 14px; gap: 8px; }
  .brand img { width: 150px; }
  .language-picker > summary { min-height: 40px; padding: 5px 9px 5px 5px; }
  .language-icon { width: 25px; height: 25px; }
  .hero-copy { padding: 58px 24px 52px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.7rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-values { gap: 7px; }
  .hero-values li { padding: 7px 10px; font-size: .75rem; }
  .hero-note { align-items: flex-start; }
  .hero-visual { min-height: 520px; }
  .hero-sun { width: 82px; height: 82px; left: -20px; top: 45px; }
  .hero-photo-wrap { inset: 7% 5% 8% 9%; border-radius: 34px; box-shadow: 14px 14px 0 rgba(5,45,44,.28); }
  .hero-photo-secondary { width: 36%; left: 1%; bottom: 4%; border-width: 5px; border-radius: 24px; }
  .hero-message { top: 8%; right: 2%; padding: 10px 12px 10px 9px; border-radius: 13px; }
  .hero-message > span { width: 34px; height: 34px; }
  .hero-message p { font-size: .88rem; }
  .photo-label { right: 3%; bottom: 4%; font-size: .75rem; }
  .intro-band { grid-template-columns: 1fr; padding: 10px 24px; border-radius: 26px; }
  .intro-band p { min-height: 76px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .section { padding: 90px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 38px; }
  .section-heading h2, .project-copy h2, .donate h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .story-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr; grid-auto-rows: minmax(215px, auto); }
  .explore-wide { grid-column: auto; }
  .story-card-featured { grid-column: auto; display: block; }
  .story-card-featured .story-image { aspect-ratio: 1.2; }
  .featured-inner { width: min(100% - 32px, var(--max)); padding: 88px 0; }
  .featured-showcase { grid-template-columns: 1fr; grid-template-rows: 440px repeat(4, 300px); }
  .feature-tile-main { grid-column: auto; }
  .featured-list { margin-top: 28px; }
  .project-inner { min-height: 0; padding: 84px 0; display: block; }
  .project-kicker { display: none; }
  .project-values { margin-top: 65px; }
  .project-values > div { grid-template-columns: 30px 1fr; }
  .project-values p { grid-column: 2; }
  .video-card, .video-card-main { min-height: 390px; }
  .interview-heading { align-items: flex-start; }
  .interview-grid { grid-template-columns: 1fr; }
  .about { padding-bottom: 90px; }
  .inaki-view { grid-template-columns: 1fr; }
  .inaki-view-photo { min-height: 560px; }
  .inaki-view-copy { padding: 84px 24px; }
  .about-person { align-items: flex-start; flex-direction: column; }
  .donate { padding: 84px 24px; }
  .newsletter { padding: 84px 0; }
  .site-footer { padding-left: 24px; padding-right: 24px; }
  .footer-directory { padding: 12px; border-radius: 32px; }
  .footer-project-cards, .footer-space-cards { grid-template-columns: 1fr 1fr; }
  .footer-projects-row { padding: 20px 14px; }
  .footer-spaces-row { padding: 22px 0 0; background: #fff0eb; }
  .footer-spaces-row > h2 { padding: 0 18px; }
  .footer-space-cards { padding: 0 14px 14px; }
  .social-panel { width: 100%; }
  .footer-bottom { flex-direction: column; }
  .social-links a { width: 46px; min-width: 46px; height: 46px; }
}

@media (max-width: 520px) {
  .site-footer { padding-left: 16px; padding-right: 16px; }
  .footer-project-cards, .footer-space-cards { grid-template-columns: 1fr; }
  .footer-project-cards a, .footer-space-cards a { min-height: 108px; }
  .social-panel { padding-left: 18px; padding-right: 18px; }
  .footer-bottom div { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Ajustes visuales: navegación móvil */
@media (max-width: 1180px) {
  .site-header { background: #edf4f5; backdrop-filter: none; }
}
@media (max-width: 520px) {
  .nav-shell { min-height: 70px; }
  .brand { min-width: 0; }
  .brand img { width: clamp(100px, 38vw, 145px); }
  .header-tools { gap: 4px; }
  .language-picker > summary { padding-right: 7px; }
}

/* Layout bounds and first-paint performance, September 2026. */
.hero-copy, .hero-visual, .hero-copy > *, .section-heading > *, .inaki-view-copy { min-width: 0; max-width: 100%; }
.hero-copy { padding-left: clamp(28px, 4vw, 72px); }
.hero-copy > * { animation: none; }
.hero h1 { overflow-wrap: anywhere; }
.hero-note { flex-wrap: wrap; }
.hero-note span { min-width: 0; }
.video-card img { position: absolute; inset: 0; }
.site-header .brand { flex-shrink: 1; }
@media (min-width: 651px) {
  .section-heading { gap: clamp(24px, 4vw, 50px); }
  .section-heading > div { flex: 1 1 55%; }
  .section-heading > .section-intro { flex: 0 1 40%; }
}
@media (max-width: 760px) {
  .hero { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { padding: 48px 24px; }
}
@media (max-width: 520px) {
  .hero h1 { font-size: clamp(2.3rem, 10vw, 3.25rem); line-height: 1.04; }
  .hero-note { gap: 10px; padding: 14px; }
  .hero-note span { padding-left: 0; border-left: 0; }
  .section-heading h2, .project-copy h2, .donate h2, .newsletter h2 { font-size: clamp(2.1rem, 10vw, 3rem); overflow-wrap: anywhere; }
  .interview-heading { flex-wrap: wrap; }
}
