:root {
  --navy: #101d48;
  --navy-2: #17275e;
  --ink: #14203c;
  --gold: #f4c94f;
  --orange: #ef7d28;
  --green: #16865b;
  --sky: #dff4f4;
  --paper: #f7f8f4;
  --white: #ffffff;
  --muted: #677087;
  --line: rgba(16, 29, 72, 0.14);
  --shadow: 0 26px 70px rgba(16, 29, 72, 0.14);
  --radius: 1.5rem;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6.5rem; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: clamp(5rem, 9vw, 8rem) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .8rem 1rem; background: var(--white); color: var(--navy); border-radius: .5rem; }
.skip-link:focus { top: 1rem; }

.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 100; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--orange), var(--gold)); }

.site-header { position: absolute; inset: 0 0 auto; z-index: 30; color: var(--white); }
.header-inner { height: 6.5rem; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .8rem; min-width: 0; }
.brand img { padding: .28rem; object-fit: contain; background: var(--white); border-radius: .7rem; box-shadow: 0 6px 18px rgba(0,0,0,.16); }
.brand span { display: flex; flex-direction: column; line-height: 1.12; }
.brand strong { font: 800 1.22rem/1 "Manrope", sans-serif; letter-spacing: .16em; }
.brand small { margin-top: .34rem; color: rgba(255,255,255,.7); font-size: .69rem; letter-spacing: .055em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 1.7rem; font-weight: 600; font-size: .9rem; }
.main-nav > a:not(.nav-cta) { position: relative; color: rgba(255,255,255,.82); }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -.45rem; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.main-nav > a:hover::after, .main-nav > a:focus-visible::after, .main-nav > a.is-active::after { transform: scaleX(1); }
.nav-cta { padding: .7rem 1.05rem; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; transition: .25s ease; }
.nav-cta:hover { background: var(--white); color: var(--navy); }
.menu-toggle { display: none; border: 0; background: transparent; padding: .6rem; }
.menu-toggle span:not(.sr-only) { display: block; width: 1.55rem; height: 2px; margin: .3rem 0; background: var(--white); transition: .2s ease; }

.hero { position: relative; min-height: 780px; overflow: hidden; display: grid; align-items: center; color: var(--white); background: radial-gradient(circle at 83% 26%, rgba(58, 208, 184, .16), transparent 23rem), linear-gradient(135deg, #0d183e 0%, #152659 66%, #143f55 130%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 9rem; background: linear-gradient(174deg, transparent 49%, var(--paper) 50%); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; padding: 9rem 0 9rem; }
.eyebrow { display: flex; align-items: center; gap: .65rem; margin: 0 0 1.3rem; color: var(--orange); font-size: .77rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 2.3rem; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--gold); }
h1, h2, h3 { font-family: "Manrope", sans-serif; letter-spacing: -.04em; }
h1 { max-width: 760px; margin: 0; font-size: clamp(3.2rem, 6.5vw, 6.15rem); line-height: .98; font-weight: 800; }
h1 em { color: var(--gold); font-style: normal; }
.hero-lede { max-width: 620px; margin: 1.8rem 0 0; color: rgba(255,255,255,.77); font-size: clamp(1.05rem, 1.5vw, 1.23rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3.4rem; padding: .8rem 1.25rem; border-radius: 999px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { gap: .75rem; background: var(--gold); color: var(--navy); box-shadow: 0 14px 35px rgba(244, 201, 79, .23); }
.button-ghost { border: 1px solid rgba(255,255,255,.25); color: var(--white); }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.legal-line { display: flex; flex-wrap: wrap; gap: .6rem 1.1rem; margin-top: 2rem; color: rgba(255,255,255,.52); font-size: .75rem; letter-spacing: .04em; text-transform: uppercase; }
.legal-line span + span::before { content: "•"; margin-right: 1.1rem; color: var(--gold); }

.hero-visual { position: relative; min-height: 530px; }
.photo-frame { position: absolute; overflow: hidden; border-radius: 1.8rem; box-shadow: 0 28px 80px rgba(0,0,0,.3); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-main { top: 1.5rem; right: 0; width: 86%; height: 61%; transform: rotate(2deg); }
.photo-small { left: 0; bottom: 2.3rem; width: 53%; height: 39%; transform: rotate(-3.5deg); border: .5rem solid rgba(255,255,255,.96); }
.impact-stamp { position: absolute; right: -1rem; bottom: 3.5rem; width: 9rem; aspect-ratio: 1; display: grid; place-content: center; text-align: center; color: var(--navy); background: var(--gold); border-radius: 50%; box-shadow: var(--shadow); transform: rotate(7deg); }
.impact-stamp::before { content: ""; position: absolute; inset: .4rem; border: 1px dashed rgba(16,29,72,.35); border-radius: inherit; }
.impact-stamp strong { position: relative; font: 800 2.6rem/1 "Manrope", sans-serif; }
.impact-stamp span { position: relative; margin-top: .35rem; font-size: .68rem; font-weight: 800; line-height: 1.25; text-transform: uppercase; }
.image-caption { position: absolute; top: .15rem; left: 0; margin: 0; display: flex; gap: .7rem; align-items: center; color: rgba(255,255,255,.65); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; writing-mode: vertical-rl; transform: rotate(180deg); }
.image-caption span { color: var(--gold); }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.orbit-one { width: 42rem; height: 42rem; right: -11rem; top: 5rem; }
.orbit-two { width: 25rem; height: 25rem; right: -2rem; top: 13rem; }

.impact-strip { position: relative; z-index: 3; margin-top: -4.2rem; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-radius: 1.2rem; box-shadow: var(--shadow); overflow: hidden; }
.impact-item { padding: 1.7rem 1.9rem; border-right: 1px solid var(--line); }
.impact-item:last-child { border: 0; }
.impact-item strong { display: block; color: var(--navy); font: 800 clamp(2rem, 4vw, 3.35rem)/1 "Manrope", sans-serif; letter-spacing: -.06em; }
.impact-item p { margin: .6rem 0 0; color: var(--muted); font-size: .84rem; line-height: 1.35; }

.section-heading { margin-bottom: 3rem; }
.section-heading h2, .journey h2, .vision h2, .contact h2 { margin: 0; font-size: clamp(2.35rem, 4.8vw, 4.65rem); line-height: 1.05; color: var(--navy); }
.split-heading { display: grid; grid-template-columns: 1.05fr .75fr; gap: 4rem; align-items: end; }
.split-heading > p { margin: 0 0 .4rem; color: var(--muted); font-size: 1.06rem; }
.axis-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.axis-card { position: relative; min-height: 350px; padding: 1.5rem; background: var(--white); border-right: 1px solid var(--line); transition: background .3s ease, color .3s ease, transform .3s ease; }
.axis-card:last-child { border: 0; }
.axis-card:hover { z-index: 2; color: var(--white); background: var(--navy); transform: translateY(-8px); box-shadow: var(--shadow); }
.axis-card:hover p, .axis-card:hover .axis-number { color: rgba(255,255,255,.67); }
.axis-number { color: var(--muted); font-size: .75rem; font-weight: 700; }
.axis-symbol { display: grid; place-items: center; width: 3.4rem; height: 3.4rem; margin: 4.6rem 0 1.3rem; border-radius: 50%; background: var(--gold); color: var(--navy); font-size: 1.5rem; }
.axis-card h3 { margin: 0; font-size: 1.25rem; line-height: 1.18; letter-spacing: -.025em; }
.axis-card p { margin: .9rem 0 0; color: var(--muted); font-size: .89rem; line-height: 1.55; transition: color .3s ease; }

.actions { color: var(--white); background: var(--navy); }
.action-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.action-heading h2 { max-width: 770px; color: var(--white); }
.filter-bar { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .45rem; }
.filter-button { min-height: 2.7rem; padding: .55rem .9rem; color: rgba(255,255,255,.65); background: transparent; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; cursor: pointer; }
.filter-button:hover, .filter-button:focus-visible, .filter-button.active { color: var(--navy); background: var(--gold); border-color: var(--gold); }
.action-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.action-card { min-height: 590px; display: grid; grid-template-rows: 260px 1fr; overflow: hidden; color: var(--ink); background: var(--white); border-radius: 1.2rem; transition: opacity .25s ease, transform .25s ease; }
.action-card[hidden] { display: none; }
.action-card-wide { grid-column: 1 / -1; min-height: 410px; grid-template-columns: 1.08fr .92fr; grid-template-rows: 1fr; }
.action-card-wide.reverse { grid-template-columns: .92fr 1.08fr; }
.action-card-wide.reverse .image-button { order: 2; }
.image-button { position: relative; border: 0; padding: 0; min-height: 100%; overflow: hidden; cursor: zoom-in; background: #dfe4e7; }
.image-button img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.image-button:hover img { transform: scale(1.035); }
.image-button span { position: absolute; right: 1rem; bottom: 1rem; padding: .5rem .75rem; color: var(--white); background: rgba(16,29,72,.78); border-radius: 999px; font-size: .72rem; backdrop-filter: blur(8px); }
.action-content { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(1.6rem, 3vw, 2.6rem); }
.action-meta { width: 100%; display: flex; justify-content: space-between; gap: 1rem; color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.action-card h3 { margin: 1rem 0 .7rem; max-width: 620px; font-size: clamp(1.65rem, 3vw, 2.5rem); line-height: 1.08; }
.action-card p { margin: 0; color: var(--muted); }
.category-pill { margin-top: auto; padding: .42rem .72rem; color: var(--navy); background: var(--sky); border-radius: 999px; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.turkey-visual { position: relative; min-height: 260px; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; color: var(--white); background: radial-gradient(circle at 72% 25%, rgba(244,201,79,.22), transparent 10rem), linear-gradient(145deg, #cf4a39, #8f2331); }
.turkey-visual::before { content: ""; position: absolute; width: 23rem; height: 23rem; right: -9rem; top: -8rem; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 4rem rgba(255,255,255,.035), 0 0 0 8rem rgba(255,255,255,.025); }
.country-code { position: relative; z-index: 1; font: 800 5rem/1 "Manrope", sans-serif; letter-spacing: -.08em; opacity: .9; }
.turkey-visual strong { position: relative; z-index: 1; font: 700 1.3rem/1 "Manrope", sans-serif; }
.route-line { position: absolute; left: 2.2rem; right: 2.2rem; top: 56%; height: 1px; background: rgba(255,255,255,.45); }
.route-line i { position: absolute; top: -.32rem; width: .65rem; height: .65rem; border-radius: 50%; background: var(--gold); }
.route-line i:nth-child(1) { left: 0; }.route-line i:nth-child(2) { left: 48%; }.route-line i:nth-child(3) { right: 0; }
.filter-empty { text-align: center; color: rgba(255,255,255,.7); }

.field-gallery { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 245px; gap: .85rem; }
.gallery-item { min-width: 0; min-height: 0; padding: 0; border: 0; border-radius: 1rem; box-shadow: 0 8px 28px rgba(16,29,72,.1); }
.gallery-item::after { content: "Agrandir ↗"; position: absolute; left: .8rem; right: auto; bottom: .8rem; padding: .42rem .65rem; color: var(--white); background: rgba(16,29,72,.78); border-radius: 999px; font-size: .7rem; font-weight: 700; opacity: 0; transform: translateY(5px); transition: .25s ease; }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; transform: none; }
.gallery-item > span { display: none; }
.gallery-featured { grid-column: span 2; grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-hint { margin: 1rem 0 0; color: var(--muted); font-size: .88rem; text-align: right; }

.journey { background: #e8f4f3; }
.journey-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 8vw, 8rem); align-items: center; }
.journey-intro > p:not(.eyebrow) { max-width: 500px; color: var(--muted); }
.year-tabs { display: flex; gap: .5rem; margin-top: 2rem; }
.year-tabs button { min-width: 4.2rem; padding: .75rem .7rem; color: var(--navy); background: transparent; border: 1px solid rgba(16,29,72,.2); border-radius: 999px; font-weight: 700; cursor: pointer; }
.year-tabs button[aria-selected="true"] { color: var(--white); background: var(--navy); }
.journey-panel { position: relative; min-height: 440px; padding: clamp(2rem, 5vw, 4.3rem); color: var(--white); background: var(--navy); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.journey-panel::after { content: ""; position: absolute; width: 18rem; height: 18rem; right: -7rem; bottom: -9rem; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 3rem rgba(255,255,255,.025); }
.panel-year { display: block; margin-bottom: 2.6rem; color: var(--gold); font: 800 clamp(4.5rem, 9vw, 8rem)/.8 "Manrope", sans-serif; letter-spacing: -.08em; }
.panel-kicker { margin: 0; color: var(--orange); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.journey-panel h3 { margin: .6rem 0 .8rem; font-size: clamp(1.9rem, 3vw, 2.8rem); }
.journey-panel > p:not(.panel-kicker) { max-width: 690px; color: rgba(255,255,255,.7); }
.journey-panel ul { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.journey-panel li { margin-top: .45rem; color: rgba(255,255,255,.82); }
.journey-panel li::before { content: "—"; margin-right: .7rem; color: var(--gold); }

.vision { background: var(--paper); }
.vision-card { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; gap: 4rem; padding: clamp(2rem, 6vw, 5rem); color: var(--white); background: linear-gradient(135deg, #143e53, #127d62); border-radius: 2rem; overflow: hidden; }
.vision-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 55%, rgba(255,255,255,.07)); pointer-events: none; }
.vision h2 { color: var(--white); }
.vision-copy p:last-child { color: rgba(255,255,255,.72); }
.vision-goals { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: relative; z-index: 1; }
.vision-goals article { display: flex; min-height: 240px; padding: 1.4rem; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.2); border-radius: 1.2rem; background: rgba(255,255,255,.06); }
.vision-goals strong { color: var(--gold); font: 800 clamp(3.5rem, 7vw, 6.5rem)/1 "Manrope", sans-serif; letter-spacing: -.08em; }
.vision-goals span { max-width: 250px; font-weight: 600; line-height: 1.4; }

.governance { padding-top: 3rem; }
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.person-card { min-height: 220px; padding: 1.6rem; display: flex; flex-direction: column; justify-content: flex-end; background: var(--white); border: 1px solid var(--line); border-radius: 1.2rem; }
.person-card span { margin-bottom: auto; color: var(--orange); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.person-card h3 { margin: 2rem 0 .25rem; color: var(--navy); font-size: 1.35rem; }
.person-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.identity-bar { display: grid; grid-template-columns: 1.7fr 1fr 1fr; margin-top: 1rem; padding: 1.6rem; background: #eceee9; border-radius: 1.2rem; }
.identity-bar div { display: flex; flex-direction: column; padding: .3rem 1.2rem; border-right: 1px solid var(--line); }
.identity-bar div:last-child { border: 0; }
.identity-bar small { color: var(--muted); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.identity-bar strong { margin-top: .3rem; color: var(--navy); font-size: .96rem; }

.contact { padding: clamp(5rem, 10vw, 9rem) 0; color: var(--white); background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 8vw, 8rem); align-items: center; }
.contact h2 { color: var(--white); }
.contact-copy > p:last-child { max-width: 680px; color: rgba(255,255,255,.66); font-size: 1.06rem; }
.contact-card { border-top: 1px solid rgba(255,255,255,.18); }
.contact-card a, .contact-card > div { position: relative; display: flex; flex-direction: column; padding: 1.3rem 2.7rem 1.3rem 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-card span { color: var(--gold); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.contact-card strong { margin-top: .3rem; font-size: 1rem; overflow-wrap: anywhere; }
.contact-card i { position: absolute; right: .5rem; top: 50%; font-style: normal; font-size: 1.25rem; transform: translateY(-50%); }
.contact-card a:hover strong { color: var(--gold); }
.site-footer { color: rgba(255,255,255,.6); background: #0a1333; }
.footer-inner { min-height: 7.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; font-size: .75rem; }
.footer-brand small { color: rgba(255,255,255,.5); }

.lightbox { width: min(92vw, 960px); padding: 0; border: 0; border-radius: 1rem; background: #0a1333; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.lightbox::backdrop { background: rgba(5,10,25,.82); backdrop-filter: blur(6px); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; }
.lightbox p { margin: 0; padding: 1rem 1.2rem; color: rgba(255,255,255,.82); }
.lightbox-close { position: absolute; z-index: 2; right: .7rem; top: .7rem; width: 2.5rem; height: 2.5rem; border: 0; border-radius: 50%; color: var(--navy); background: rgba(255,255,255,.92); font-size: 1.7rem; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal-delay { transition-delay: .14s; }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
@media (max-width: 980px) {
  .main-nav { gap: 1rem; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 10rem; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 450px; width: min(100%, 700px); }
  .photo-main { width: 78%; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .impact-item:nth-child(2) { border-right: 0; }
  .impact-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split-heading, .journey-grid, .vision-card, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .axis-grid { grid-template-columns: 1fr 1fr; }
  .axis-card:nth-child(2) { border-right: 0; }
  .axis-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .action-heading { align-items: flex-start; flex-direction: column; }
  .filter-bar { justify-content: flex-start; }
  .identity-bar { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .identity-bar div { border-right: 0; border-bottom: 1px solid var(--line); padding: .8rem .4rem; }
  .vision-goals article { min-height: 200px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 5rem; }
  .header-inner { height: 5.2rem; }
  .brand img { width: 52px; height: 48px; }
  .brand small { font-size: .58rem; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .main-nav { position: absolute; top: .6rem; left: 1rem; right: 1rem; padding: 5.2rem 1.3rem 1.4rem; flex-direction: column; align-items: stretch; gap: .1rem; background: #17275e; border: 1px solid rgba(255,255,255,.12); border-radius: 1.1rem; box-shadow: 0 24px 60px rgba(0,0,0,.35); opacity: 0; transform: translateY(-10px); pointer-events: none; transition: .2s ease; }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { padding: .8rem; }
  .nav-cta { margin-top: .5rem; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-grid { padding: 8.7rem 0 10rem; gap: 2rem; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .legal-line span + span::before { display: none; }
  .hero-visual { min-height: 360px; }
  .photo-main { width: 88%; height: 60%; }
  .photo-small { width: 54%; height: 41%; }
  .impact-stamp { width: 7.2rem; right: 0; bottom: 1rem; }
  .impact-stamp strong { font-size: 2rem; }
  .impact-grid { margin-inline: 1rem; width: calc(100% - 2rem); }
  .impact-item { padding: 1.25rem; }
  .section { padding-block: 4.5rem; }
  .section-heading h2, .journey h2, .vision h2, .contact h2 { font-size: clamp(2.15rem, 10vw, 3.3rem); }
  .axis-grid { grid-template-columns: 1fr; }
  .axis-card { min-height: 280px; border-right: 0; border-bottom: 1px solid var(--line); }
  .axis-card:nth-child(3) { border-bottom: 1px solid var(--line); }
  .axis-symbol { margin-top: 2.6rem; }
  .action-grid { grid-template-columns: 1fr; }
  .action-card, .action-card-wide, .action-card-wide.reverse { grid-column: auto; min-height: auto; grid-template-columns: 1fr; grid-template-rows: 235px auto; }
  .action-card-wide.reverse .image-button { order: 0; }
  .action-content { min-height: 320px; }
  .year-tabs { flex-wrap: wrap; }
  .journey-panel { min-height: 500px; }
  .vision-goals { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .gallery-featured { grid-row: span 2; }
  .gallery-wide { grid-column: span 2; }
  .person-card { min-height: 190px; }
  .footer-inner { padding-block: 1.6rem; flex-direction: column; align-items: flex-start; gap: .6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
