:root {
  --navy: #163B65;
  --navy-dark: #002957;
  --gold: #CD9E0C;
  --gold-light: #D0A41B;
  --cream: #f4eacd;
  --gray: #EBEBEB;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--white); }
body { font-family: 'Montserrat', sans-serif; color: var(--navy); overflow-x: hidden; }
a { color: var(--navy); text-decoration: none; transition: color .25s; }
img { max-width: 100%; }
/* safety net: no single long word (URL, e-mail, compound noun) may push the layout wider than its column */
p, h1, h2, h3, h4, li, td, a, figcaption { overflow-wrap: break-word; }
.container { max-width: 1240px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ---------- typography ---------- */
.overline { display: flex; align-items: center; gap: 14px; }
.overline .line { display: block; width: 44px; height: 1px; background: var(--gold); }
.overline span:last-child { font-size: 12px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
.display { font-family: 'Literata', serif; font-weight: 200; line-height: 1.05; margin: 0; }

/* ---------- buttons ---------- */
.btn { display: inline-block; font-weight: 700; font-size: 14px; letter-spacing: .03em; padding: 15px 30px; border-radius: 10px; transition: transform .25s, box-shadow .25s, background .25s; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy-dark); box-shadow: 0 10px 26px rgba(205,158,12,.35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); color: var(--white); box-shadow: 0 10px 26px rgba(0,41,87,.3); }
.btn-white { background: var(--white); color: var(--navy-dark); }
.btn-white:hover { background: var(--cream); color: var(--navy-dark); box-shadow: 0 10px 26px rgba(0,0,0,.25); }

/* ---------- header ---------- */
header.site { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--gray); transition: box-shadow .3s; }
header.site.scrolled { box-shadow: 0 6px 24px rgba(0,41,87,.1); }
.header-inner { display: flex; align-items: center; gap: 24px; padding-top: 12px; padding-bottom: 12px; }
.header-inner .logo img { height: 50px; display: block; transition: height .3s; }
header.site.scrolled .logo img { height: 42px; }
.main-nav { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.main-nav a { position: relative; font-size: 15px; font-weight: 600; letter-spacing: .02em; padding: 6px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .28s; }
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
/* language dropdown (scales to many languages) */
.lang { position: relative; flex-shrink: 0; }
.lang-btn { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--gray); background: var(--white); color: var(--navy); font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .04em; padding: 9px 12px; border-radius: 10px; cursor: pointer; transition: border-color .25s, color .25s; }
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn .globe { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.6; fill: none; flex-shrink: 0; }
.lang-btn .chev { width: 10px; height: 10px; transition: transform .28s; opacity: .7; fill: currentColor; }
.lang.open .lang-btn { border-color: var(--gold); color: var(--gold); }
.lang.open .lang-btn .chev { transform: rotate(180deg); }
.lang-list { position: absolute; top: calc(100% + 8px); right: 0; min-width: 178px; background: var(--white); border: 1px solid var(--gray); border-radius: 12px; box-shadow: 0 16px 40px rgba(0,41,87,.16); padding: 6px; margin: 0; list-style: none; max-height: 340px; overflow-y: auto; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity .22s, transform .22s; z-index: 60; }
.lang.open .lang-list { opacity: 1; transform: translateY(0); pointer-events: auto; }
.lang-list li { margin: 0; }
.lang-list button { display: flex; align-items: center; gap: 12px; width: 100%; border: none; background: transparent; color: var(--navy); font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 500; text-align: left; padding: 11px 12px; border-radius: 8px; cursor: pointer; transition: background .2s, color .2s; }
.lang-list button:hover { background: var(--cream); }
.lang-list button .code { font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--gold); min-width: 22px; }
.lang-list button.active { color: var(--gold); font-weight: 700; }
.lang-list button.active::after { content: "✓"; margin-left: auto; color: var(--gold); font-size: 13px; }
/* language built and deployed but not yet released — inert entry with a badge */
.lang-list button.soon { cursor: default; opacity: .5; }
.lang-list button.soon:hover { background: transparent; }
.lang-list button.soon .soon-tag { margin-left: auto; font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); background: var(--cream); border-radius: 999px; padding: 3px 8px; white-space: nowrap; }
.burger { display: none; margin-left: 0; width: 44px; height: 44px; border: 1px solid var(--gray); border-radius: 10px; background: var(--white); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { display: block; width: 20px; height: 2px; background: var(--navy); transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 10px 24px 22px; background: var(--white); border-bottom: 1px solid var(--gray); }
.mobile-nav a { font-size: 15px; font-weight: 600; padding: 12px 4px; border-bottom: 1px solid var(--gray); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }
@media (max-width: 980px) {
  .main-nav { display: none; }
  .burger { display: flex; }
}

/* ---------- hero (home) ---------- */
.hero { position: relative; background: linear-gradient(160deg, #163B65 0%, #002957 100%); overflow: hidden; }
/* background photo layer + navy overlay for legibility (all heroes) */
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; z-index: 0; transform-origin: center; animation: slowZoom 24s ease-in-out infinite alternate; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(115deg, rgba(0,41,87,.55) 0%, rgba(0,41,87,.3) 46%, rgba(22,59,101,0) 100%); pointer-events: none; }
/* homepage: a slideshow of real photos. On mobile = full-bleed with strong overlay; on desktop = split (text left / photo right) so faces never sit under text.
   The slow zoom sits on the wrapper, not on the individual slides: one continuous
   movement across the whole loop, instead of a scale that snaps back to 1 every
   time a new photo fades in. Each slide only cross-fades. */
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; transform-origin: 60% top; animation: slowZoom 24s ease-in-out infinite alternate; }
.hero-slides picture { display: contents; }
.hero .hero-photo { opacity: 0; transform: none; animation: none; transition: opacity 1.1s ease-in-out; }
.hero .hero-photo.is-active { opacity: 1; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(100deg, rgba(0,18,40,.96) 0%, rgba(0,26,58,.9) 30%, rgba(0,41,87,.65) 54%, rgba(0,41,87,.3) 80%, rgba(0,41,87,.18) 100%); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, rgba(0,16,38,.6) 0%, rgba(0,16,38,0) 34%); }
.hero .hero-art { display: none; }
@media (min-width: 981px) {
  .hero-slides { left: auto; right: 0; width: 64%; }
  .hero::before { background: linear-gradient(90deg, #002957 0%, #002957 32%, rgba(0,41,87,.9) 42%, rgba(0,41,87,.5) 55%, rgba(0,41,87,.2) 76%, rgba(0,41,87,.12) 100%); }
  .hero-content { max-width: 540px; }
}
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .3; z-index: 2; transform-origin: 75% 55%; animation: slowZoom 20s ease-in-out infinite alternate; }
/* no line-drawing sweep anywhere — static crest lines only */
.hero-art path, .hero-art circle { stroke-dasharray: none; stroke-dashoffset: 0; }
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
/* reduced motion: no zoom, no cross-fade. main.js additionally stops the slideshow
   on the first photo — an image swapping itself every 3 s is exactly the kind of
   movement this setting asks us not to make. */
@media (prefers-reduced-motion: reduce) { .hero-art, .page-hero .hero-art { animation: none; } .hero-art path, .hero-art circle { animation: none; stroke-dashoffset: 0; } .hero-slides { animation: none; } .hero .hero-photo { transition: none; } }
.hero-inner { position: relative; z-index: 3; padding-top: clamp(90px, 12vw, 160px); padding-bottom: clamp(100px, 13vw, 170px); }
.scroll-hint { z-index: 3; }
.hero-content { max-width: 760px; display: flex; flex-direction: column; gap: 26px; }
.hero h1 { font-family: 'Literata', serif; font-weight: 200; font-size: clamp(44px, 7vw, 92px); line-height: 1.06; color: var(--white); margin: 0; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { margin: 0; max-width: 540px; font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.82); }
.hero .overline span:last-child { color: var(--gold-light); font-size: 13px; }
.fade-up { opacity: 0; transform: translateY(26px); animation: fadeUp .9s cubic-bezier(.22,.75,.35,1) forwards; }
.fade-up.d1 { animation-delay: .15s; } .fade-up.d2 { animation-delay: .35s; } .fade-up.d3 { animation-delay: .55s; } .fade-up.d4 { animation-delay: .75s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.45); border-radius: 14px; }
.scroll-hint::after { content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 3px; background: var(--gold-light); animation: hint 1.8s ease-in-out infinite; }
@keyframes hint { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: .2; } }

/* ---------- page hero (subpages) ---------- */
.page-hero { position: relative; background: linear-gradient(160deg, #163B65 0%, #002957 100%); overflow: hidden; }
.page-hero .hero-art { opacity: .3; z-index: 2; transform-origin: 78% 50%; animation: slowZoom 18s ease-in-out infinite alternate; }
/* subpages: no line-drawing sweep — static crest that gently enlarges */
.page-hero .hero-art path, .page-hero .hero-art circle { stroke-dasharray: none; stroke-dashoffset: 0; animation: none; }
.page-hero-inner { position: relative; z-index: 3; padding-top: clamp(60px, 8vw, 100px); padding-bottom: clamp(60px, 8vw, 100px); display: flex; flex-direction: column; gap: 18px; }
.page-hero .crumb { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); }
.page-hero .crumb a { color: rgba(255,255,255,.7); }
.page-hero .crumb a:hover { color: var(--gold-light); }
.page-hero h1 { font-family: 'Literata', serif; font-weight: 200; font-size: clamp(40px, 5.5vw, 76px); line-height: 1.05; color: var(--white); margin: 0; }
.page-hero p.lead { margin: 0; max-width: 640px; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.82); }

/* ---------- latest post as a glass card inside the hero ---------- */
.hero-latest { position: absolute; right: clamp(20px, 4vw, 52px); bottom: clamp(26px, 4vw, 56px); z-index: 4; width: min(400px, calc(100% - 48px)); background: rgba(255,255,255,.07); border: 1px solid rgba(205,158,12,.45); backdrop-filter: blur(10px); border-radius: 14px; padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; color: var(--white); box-shadow: 0 18px 44px rgba(0,0,0,.28); transition: background .3s, transform .3s, border-color .3s; }
.hero-latest:hover { background: rgba(255,255,255,.12); border-color: var(--gold-light); transform: translateY(-4px); color: var(--white); }
.hero-latest .hl-tag { display: flex; align-items: center; gap: 10px; font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); }
.hero-latest .hl-tag .date { color: rgba(255,255,255,.65); letter-spacing: .06em; margin-left: auto; }
.hero-latest .hl-title { font-family: 'Literata', serif; font-weight: 400; font-size: 18px; line-height: 1.35; color: var(--white); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-latest .hl-go { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); }
.hero-latest .hl-go .arr { transition: transform .25s; }
.hero-latest:hover .hl-go .arr { transform: translateX(5px); }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); position: relative; flex-shrink: 0; }
.pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--gold); animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.8); opacity: 0; } }
@media (max-width: 1060px) { .hero-latest { position: relative; right: auto; bottom: auto; margin: 34px 24px 0; z-index: 3; } .hero .scroll-hint { display: none; } }

/* ---------- award / recognition (About us) ---------- */
.award { background: var(--cream); }
.award-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.award-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.award-photos figure { margin: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 18px 44px rgba(0,41,87,.18); background: var(--white); transition: transform .35s, box-shadow .35s; }
.award-photos figure:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: 0 26px 56px rgba(0,41,87,.24); }
.award-photos figure:nth-child(2) { margin-top: 34px; }
.award-photos img { display: block; width: 100%; height: auto; }
.award-quote { font-family: 'Literata', serif; font-style: italic; font-weight: 400; font-size: clamp(17px, 2vw, 21px); line-height: 1.6; color: var(--navy); border-left: 3px solid var(--gold); padding-left: 22px; margin: 8px 0 0; }
.award-src { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: rgba(22,59,101,.65); margin-top: 14px; }
@media (max-width: 860px) { .award-grid { grid-template-columns: 1fr; } }

/* ---------- Spirit of Ukraine tiles: always even (3x2 / 2x3 / 1col), interactive ---------- */
.sou-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1020px) { .sou-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .sou-grid { grid-template-columns: 1fr; } }
.sou-card { position: relative; background: var(--white); border: 1px solid var(--gray); border-radius: 12px; padding: 34px 28px 30px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; }
.sou-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.22,.75,.35,1); }
.sou-card:hover { transform: translateY(-8px); box-shadow: 0 22px 48px rgba(0,41,87,.14); border-color: transparent; }
.sou-card:hover::before { transform: scaleX(1); }
.sou-card .ghost { position: absolute; right: 12px; top: -6px; font-family: 'Literata', serif; font-weight: 400; font-size: 92px; line-height: 1.1; color: rgba(205,158,12,.13); transition: color .35s, transform .35s; pointer-events: none; }
.sou-card:hover .ghost { color: rgba(205,158,12,.28); transform: translateY(-4px); }
.sou-card h3 { margin: 0; font-family: 'Literata', serif; font-weight: 400; font-size: 21px; position: relative; }
.sou-card p { margin: 0; font-size: 14px; line-height: 1.7; color: rgba(22,59,101,.75); position: relative; flex: 1; }
.sou-card .sicon { width: 40px; height: 40px; stroke: var(--gold); fill: none; stroke-width: 1.8; position: relative; }

/* ---------- latest-post strip (recurring news, front and centre) ---------- */
.latest-strip { display: flex; align-items: center; gap: 18px; background: var(--cream); border-top: 1px solid rgba(205,158,12,.3); border-bottom: 1px solid rgba(205,158,12,.3); padding: 16px clamp(20px, 4vw, 40px); color: var(--navy); transition: background .3s; }
.latest-strip:hover { background: #f6eec9; color: var(--navy); }
.latest-strip .ls-tag { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); flex-shrink: 0; }
.latest-strip .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); position: relative; }
.latest-strip .pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--gold); animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.8); opacity: 0; } }
.latest-strip .ls-date { font-size: 12px; font-weight: 700; letter-spacing: .06em; color: rgba(22,59,101,.6); flex-shrink: 0; }
.latest-strip .ls-sep { width: 1px; height: 16px; background: rgba(205,158,12,.5); flex-shrink: 0; }
.latest-strip .ls-title { font-family: 'Literata', serif; font-weight: 400; font-size: clamp(15px, 2vw, 19px); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.latest-strip .ls-arrow { flex-shrink: 0; color: var(--gold); font-size: 18px; transition: transform .25s; }
.latest-strip:hover .ls-arrow { transform: translateX(5px); }
@media (max-width: 640px) { .latest-strip .ls-date, .latest-strip .ls-sep { display: none; } .latest-strip .ls-title { white-space: normal; } }

/* "newest" ribbon on featured / first card */
.newest-badge { position: absolute; top: 16px; right: 16px; z-index: 3; background: var(--gold); color: var(--navy-dark); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: 8px; display: inline-flex; align-items: center; gap: 6px; box-shadow: 0 6px 16px rgba(0,41,87,.2); }
.newest-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--navy-dark); }
.cadence-note { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--gold); margin-top: 6px; }
.cadence-note svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; }

/* ---------- cookie banner ---------- */
.cookie { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 200; max-width: 560px; margin: 0 auto; background: var(--navy-dark); color: rgba(255,255,255,.9); border: 1px solid rgba(205,158,12,.4); border-radius: 12px; padding: 18px 22px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; box-shadow: 0 18px 44px rgba(0,0,0,.35); transform: translateY(140%); transition: transform .5s cubic-bezier(.22,.75,.35,1); }
.cookie.show { transform: translateY(0); }
.cookie p { margin: 0; font-size: 13px; line-height: 1.6; flex: 1; min-width: 200px; }
.cookie a { color: var(--gold-light); text-decoration: underline; }
.cookie button { border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; padding: 11px 22px; border-radius: 9px; background: var(--gold); color: var(--navy-dark); transition: background .25s; }
.cookie button:hover { background: var(--gold-light); }
.cookie .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie button.secondary { background: transparent; border: 1px solid rgba(205,158,12,.55); color: rgba(255,255,255,.85); }
.cookie button.secondary:hover { background: rgba(205,158,12,.15); }

/* ---------- stats ---------- */
.stats { background: var(--navy-dark); border-top: 1px solid rgba(205,158,12,.35); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr)); gap: 20px; padding-top: 44px; padding-bottom: 44px; }
.stat { display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center; }
.stat .num { font-family: 'Literata', serif; font-weight: 300; font-size: clamp(38px, 4vw, 52px); color: var(--gold-light); line-height: 1; }
.stat .lbl { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.75); }

/* ---------- generic sections ---------- */
section .container { padding-top: clamp(60px, 8vw, 110px); padding-bottom: clamp(60px, 8vw, 110px); }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.22,.75,.35,1), transform .8s cubic-bezier(.22,.75,.35,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.section-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: clamp(32px, 4vw, 52px); max-width: 720px; }
.section-head h2 { font-size: clamp(38px, 5vw, 64px); }

/* mission */
.mission { background: var(--cream); }
.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(36px, 5vw, 80px); align-items: start; }
.mission h2 { font-size: clamp(42px, 5.5vw, 72px); color: var(--navy); }
.mission p { margin: 0; font-size: 16px; line-height: 1.75; }
.mission-col2 { padding-top: clamp(0px, 4vw, 64px); display: flex; flex-direction: column; gap: 22px; }
.mini-stat { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(205,158,12,.45); }
.mini-stat:last-child { border-bottom: 1px solid rgba(205,158,12,.45); }
/* the figure must never be squeezed by a long label — the label wraps instead */
.mini-stat .n { font-family: 'Literata', serif; font-weight: 300; font-size: 30px; color: var(--gold); min-width: 64px; flex-shrink: 0; }
.mini-stat .l { font-size: 13px; font-weight: 600; letter-spacing: .05em; }

/* news cards */
.news-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(36px, 4vw, 56px); }
.news-head h2 { font-size: clamp(42px, 5.5vw, 72px); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); gap: 28px; }
.card { display: flex; flex-direction: column; border: 1px solid var(--gray); border-radius: 10px; overflow: hidden; background: var(--white); transition: box-shadow .3s, transform .3s; }
.card:hover { box-shadow: 0 18px 46px rgba(0,41,87,.14); transform: translateY(-6px); }
.card-media { aspect-ratio: 3 / 2; position: relative; overflow: hidden; background: var(--navy-dark); }
.card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; display: block; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-media .cat { position: absolute; top: 14px; left: 14px; background: rgba(0,41,87,.85); color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 8px; backdrop-filter: blur(4px); }
.card-body { display: flex; flex-direction: column; gap: 12px; padding: 26px 26px 30px; flex: 1; }
.card-body time { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.card-body h3 { margin: 0; font-family: 'Literata', serif; font-weight: 400; font-size: 22px; line-height: 1.28; }
.card-body p { margin: 0; font-size: 14px; line-height: 1.65; color: rgba(22,59,101,.75); flex: 1; }
.read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border-bottom: 1px solid var(--gold); align-self: flex-start; padding-bottom: 3px; }
.read-more:hover { color: var(--gold); }
.read-more .arr { transition: transform .25s; display: inline-block; }
.read-more:hover .arr { transform: translateX(5px); }

/* featured article */
.featured { display: grid; grid-template-columns: 1.15fr 1fr; border: 1px solid var(--gray); border-radius: 10px; overflow: hidden; background: var(--white); margin-bottom: clamp(36px, 5vw, 56px); transition: box-shadow .3s; }
.featured:hover { box-shadow: 0 22px 56px rgba(0,41,87,.16); }
.featured .media { position: relative; min-height: 340px; overflow: hidden; background: var(--navy-dark); }
.featured .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform .6s ease; }
.featured:hover .media img { transform: scale(1.05); }
.featured .media .cat { position: absolute; top: 18px; left: 18px; background: var(--gold); color: var(--navy-dark); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 7px 14px; border-radius: 8px; }
.featured .body { padding: clamp(30px, 4vw, 56px); display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.featured .kicker { display: flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.featured .kicker .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.featured h2 { margin: 0; font-family: 'Literata', serif; font-weight: 300; font-size: clamp(26px, 3vw, 40px); line-height: 1.2; }
.featured p { margin: 0; font-size: 15px; line-height: 1.75; color: rgba(22,59,101,.78); }
@media (max-width: 860px) { .featured { grid-template-columns: 1fr; } .featured .media { min-height: 240px; } }

/* news toolbar: filters + count */
.news-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 36px); padding-bottom: 18px; border-bottom: 1px solid var(--gray); }
.news-count { font-size: 13px; color: rgba(22,59,101,.6); font-weight: 600; letter-spacing: .04em; white-space: nowrap; }
.news-count b { color: var(--gold); font-weight: 700; }

/* newsletter band */
.newsletter { position: relative; background: linear-gradient(160deg, #163B65 0%, #002957 100%); border-radius: 10px; padding: clamp(36px, 5vw, 60px); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; overflow: hidden; margin-top: clamp(44px, 6vw, 72px); }
.newsletter::before { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border: 1px solid rgba(205,158,12,.4); border-radius: 50%; }
.newsletter::after { content: ""; position: absolute; right: -20px; top: -20px; width: 160px; height: 160px; border: 1px solid rgba(205,158,12,.25); border-radius: 50%; }
.newsletter .nl-txt { display: flex; flex-direction: column; gap: 10px; max-width: 480px; }
.newsletter h2 { margin: 0; font-family: 'Literata', serif; font-weight: 300; font-size: clamp(26px, 3vw, 38px); color: var(--white); line-height: 1.2; }
.newsletter p { margin: 0; font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,.78); }
.nl-form { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.nl-form input { border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 14px; padding: 14px 18px; border-radius: 10px; min-width: 260px; outline: none; transition: border-color .25s; }
.nl-form input::placeholder { color: rgba(255,255,255,.55); }
.nl-form input:focus { border-color: var(--gold-light); }
.nl-form button { border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; }

/* article detail */
.article-wrap { max-width: 780px; margin: 0 auto; }
.article-cover { border-radius: 10px; overflow: hidden; margin-bottom: clamp(28px, 4vw, 44px); aspect-ratio: 16/9; background: var(--navy-dark); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body p { font-size: 16.5px; line-height: 1.85; color: var(--navy); margin: 0 0 22px; }
.article-body p:first-of-type { font-size: 19px; line-height: 1.7; color: rgba(22,59,101,.9); font-weight: 500; }
/* portrait gallery for photo-led articles (not cropped) */
.article-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: clamp(28px, 4vw, 44px); }
.article-gallery img { width: 100%; height: auto; display: block; border-radius: 12px; box-shadow: 0 16px 40px rgba(0,41,87,.16); cursor: zoom-in; transition: transform .35s; }
.article-gallery img:hover { transform: translateY(-4px); }
@media (max-width: 560px) { .article-gallery { grid-template-columns: 1fr; gap: 14px; } }
.article-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.article-meta .tag { background: var(--gold); color: var(--navy-dark); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 13px; border-radius: 8px; }
.article-meta time { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(22,59,101,.6); }
.article-share { margin-top: clamp(36px, 5vw, 56px); padding-top: 28px; border-top: 1px solid var(--gray); display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); }
.back-link:hover { color: var(--gold); }
.back-link .arr { transition: transform .25s; display: inline-block; }
.back-link:hover .arr { transform: translateX(-5px); }
.more-news { background: var(--gray); }
.more-news .section-head { margin-bottom: clamp(28px, 3vw, 40px); }

/* news filters */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: clamp(28px, 3vw, 40px); }
.filters button { border: 1px solid var(--gray); background: var(--white); color: var(--navy); font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 10px 18px; border-radius: 999px; cursor: pointer; transition: all .25s; }
.filters button:hover { border-color: var(--gold); color: var(--gold); }
.filters button.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.card.hidden-by-filter { display: none; }

/* initiatives */
.initiatives { background: var(--gray); }
.init-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr)); gap: 28px; }
.init-card { background: var(--white); border-radius: 10px; padding: 34px 30px; display: flex; flex-direction: column; gap: 16px; border-bottom: 3px solid transparent; transition: border-color .3s, transform .3s, box-shadow .3s; }
.init-card:hover { border-bottom-color: var(--gold); transform: translateY(-6px); box-shadow: 0 18px 46px rgba(0,41,87,.1); }
.init-card h3 { margin: 0; font-family: 'Literata', serif; font-weight: 400; font-size: 22px; }
.init-card p { margin: 0; font-size: 14px; line-height: 1.7; color: rgba(22,59,101,.75); }
.init-card .num { font-family: 'Literata', serif; font-weight: 300; font-size: 15px; color: var(--gold); letter-spacing: .1em; }

/* started / navy band */
.started { position: relative; background: linear-gradient(160deg, #002957 0%, #163B65 100%); overflow: hidden; }
.started-figure { position: absolute; left: clamp(20px, 5vw, 90px); top: 50%; transform: translateY(-50%); width: min(430px, 36%); z-index: 1; opacity: 0; animation: figIn 1.1s ease-out .3s forwards; pointer-events: none; }
@keyframes figIn { from { opacity: 0; transform: translateY(calc(-50% + 26px)); } to { opacity: 1; transform: translateY(-50%); } }
.started-figure .float { animation: floatY 5.5s ease-in-out infinite alternate; }
@keyframes floatY { from { transform: translateY(0); } to { transform: translateY(-10px); } }
@media (max-width: 900px) { .started-figure { display: none; } }
.started-art { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .25; }
.started-content { max-width: 680px; display: flex; flex-direction: column; gap: 22px; margin-left: auto; position: relative; }
.started h2 { font-size: clamp(42px, 5.5vw, 72px); color: var(--white); }
.started p { margin: 0; font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.82); }
.started .overline span:last-child { color: var(--gold-light); }

/* statute teaser + docs */
.statute-box { border: 1px solid var(--gray); border-top: 3px solid var(--gold); border-radius: 10px; padding: clamp(36px, 5vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.statute-box h2 { font-family: 'Literata', serif; font-weight: 300; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.15; margin: 0; }
.statute-box .txt { display: flex; flex-direction: column; gap: 14px; max-width: 620px; }
.statute-box .txt p { margin: 0; font-size: 15px; line-height: 1.7; color: rgba(22,59,101,.75); }
.doc-links { display: flex; flex-direction: column; gap: 12px; min-width: 240px; }
.doc-link { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; padding: 13px 16px; border: 1px solid var(--gray); border-radius: 10px; transition: border-color .25s, transform .25s; }
.doc-link:hover { border-color: var(--gold); transform: translateX(4px); }
.docs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 24px; }
.doc-card { border: 1px solid var(--gray); border-radius: 10px; padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow .3s, transform .3s, border-color .3s; position: relative; overflow: hidden; }
.doc-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.doc-card:hover { box-shadow: 0 16px 40px rgba(0,41,87,.12); transform: translateY(-4px); }
.doc-card:hover::before { transform: scaleX(1); }
.doc-card .year { font-family: 'Literata', serif; font-weight: 300; font-size: 34px; color: var(--gold); line-height: 1; }
.doc-card h3 { margin: 0; font-family: 'Literata', serif; font-weight: 400; font-size: 21px; }
.doc-card p { margin: 0; font-size: 13.5px; line-height: 1.65; color: rgba(22,59,101,.75); flex: 1; }
.doc-card .dl { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); }
.doc-card .dl:hover { color: var(--gold); }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 28px; }
.person { display: flex; flex-direction: column; border-radius: 10px; overflow: hidden; background: var(--white); border: 1px solid var(--gray); transition: box-shadow .3s, transform .3s; color: inherit; }
.person:hover { color: inherit; }
.person:hover { box-shadow: 0 18px 46px rgba(0,41,87,.14); transform: translateY(-6px); }
.person .photo { position: relative; aspect-ratio: 1 / 1.05; overflow: hidden; background: var(--navy-dark); }
.person .photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; filter: grayscale(12%); transition: transform .5s, filter .5s; }
.person:hover .photo img { transform: scale(1.05); filter: grayscale(0%); }
.person .photo::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(205,158,12,0); transition: border-color .35s; pointer-events: none; }
.person:hover .photo::after { border-color: rgba(205,158,12,.65); }
.person .meta { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 6px; }
.person .meta h3 { margin: 0; font-family: 'Literata', serif; font-weight: 400; font-size: 21px; }
.person .meta span { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.person .meta .view { margin-top: 4px; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; opacity: 0; transform: translateY(4px); transition: opacity .3s, transform .3s; }
.person:hover .meta .view { opacity: 1; transform: translateY(0); }
.person.mono .photo { display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #163B65, #002957); }
.person.mono .photo .initials { font-family: 'Literata', serif; font-weight: 300; font-size: 60px; color: var(--gold-light); }

/* person detail page */
.person-hero { display: grid; grid-template-columns: 300px 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.person-hero .portrait { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1/1.15; box-shadow: 0 24px 60px rgba(0,41,87,.2); background: linear-gradient(160deg, #163B65, #002957); }
.person-hero .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.person-hero .portrait .initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Literata', serif; font-weight: 300; font-size: 90px; color: var(--gold-light); }
.person-hero .role-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.person-hero h1 { font-family: 'Literata', serif; font-weight: 300; font-size: clamp(34px, 4.5vw, 56px); line-height: 1.1; margin: 0 0 20px; }
.person-hero .bio p { font-size: 16px; line-height: 1.8; color: var(--navy); margin: 0 0 18px; }
.person-hero .bio p:first-of-type { font-size: 18px; color: rgba(22,59,101,.9); font-weight: 500; }
@media (max-width: 720px) { .person-hero { grid-template-columns: 1fr; } .person-hero .portrait { max-width: 260px; } }

/* about page */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-grid p { margin: 0 0 16px; font-size: 15.5px; line-height: 1.8; }
/* editorial photo collage */
.photo-collage { position: relative; padding: 0 26px 46px 0; }
.photo-collage .main { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 24px 60px rgba(0,41,87,.22); }
.photo-collage .main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease; }
.photo-collage:hover .main img { transform: scale(1.04); }
.photo-collage .sub { position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; border: 5px solid var(--white); box-shadow: 0 18px 40px rgba(0,41,87,.24); }
.photo-collage .sub img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-collage .badge { position: absolute; left: -14px; top: 26px; background: var(--gold); color: var(--navy-dark); border-radius: 12px; padding: 14px 18px; box-shadow: 0 14px 30px rgba(205,158,12,.35); text-align: center; z-index: 2; }
.photo-collage .badge .big { display: block; font-family: 'Literata', serif; font-weight: 400; font-size: 26px; line-height: 1; }
.photo-collage .badge .small { display: block; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-top: 4px; }
.photo-collage .frame-line { position: absolute; right: 8px; top: 30px; bottom: 16px; width: 60%; border: 1px solid rgba(205,158,12,.5); border-radius: 12px; z-index: -1; }
@media (max-width: 560px) { .photo-collage { padding: 0 0 40px; } .photo-collage .sub { width: 60%; } }
.timeline { position: relative; display: flex; flex-direction: column; gap: 0; margin-top: 10px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--gold), rgba(205,158,12,.2)); }
.tl-item { position: relative; padding: 0 0 30px 38px; }
.tl-item::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--white); border: 3px solid var(--gold); }
.tl-item .when { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.tl-item h3 { margin: 6px 0 8px; font-family: 'Literata', serif; font-weight: 400; font-size: 22px; }
.tl-item p { margin: 0; font-size: 14.5px; line-height: 1.7; color: rgba(22,59,101,.8); }

/* contact */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 28px; }
.contact-card { border: 1px solid var(--gray); border-radius: 10px; padding: 32px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow .3s, transform .3s; }
.contact-card:hover { box-shadow: 0 16px 40px rgba(0,41,87,.12); transform: translateY(-4px); }
.contact-card h3 { margin: 0; font-family: 'Literata', serif; font-weight: 400; font-size: 22px; }
.contact-card p, .contact-card a.big { margin: 0; font-size: 15px; line-height: 1.75; }
/* long e-mail addresses are one unbreakable token — let them wrap on narrow screens */
.contact-card a.big { font-weight: 700; color: var(--navy); display: block; overflow-wrap: anywhere; }
.contact-card a.big:hover { color: var(--gold); }
/* ---------- Stock in Europe — interactive map ---------- */
.eu-wrap { margin-top: clamp(40px, 6vw, 72px); }
.eu-wrap .section-head { margin-bottom: clamp(24px, 3vw, 40px); }
.eu-lead { margin: 0; font-size: 15.5px; line-height: 1.7; color: rgba(22,59,101,.78); }
.eu-map-panel { position: relative; background: var(--navy-dark); border-radius: 16px; padding: clamp(16px, 2.6vw, 34px) clamp(16px, 2.6vw, 34px) clamp(18px, 2.4vw, 28px); overflow: hidden; box-shadow: 0 26px 60px rgba(0,41,87,.28); }
.eu-map-panel::before { content: ""; position: absolute; right: -70px; top: -70px; width: 280px; height: 280px; border: 1px solid rgba(205,158,12,.35); border-radius: 50%; pointer-events: none; }
.eu-map-panel::after { content: ""; position: absolute; right: -26px; top: -26px; width: 170px; height: 170px; border: 1px solid rgba(205,158,12,.2); border-radius: 50%; pointer-events: none; }
.eu-map-stage { position: relative; }
.eu-svg { display: block; width: 100%; height: auto; }
.eu-land { fill: rgba(244,234,205,.07); stroke: rgba(244,234,205,.28); stroke-width: .7; stroke-linejoin: round; }
.eu-land-active { fill: rgba(205,158,12,.16); stroke: rgba(205,158,12,.55); stroke-width: .9; stroke-linejoin: round; }
/* soft dissolve where land meets the panel edges */
.eu-map-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, var(--navy-dark), rgba(0,41,87,0) 9%),
              linear-gradient(to bottom, var(--navy-dark), rgba(0,41,87,0) 7%),
              linear-gradient(to left, var(--navy-dark), rgba(0,41,87,0) 6%),
              linear-gradient(to right, var(--navy-dark), rgba(0,41,87,0) 6%); }
/* cartographic decor */
.eu-glow { animation: euBreathe 9s ease-in-out infinite alternate; }
@keyframes euBreathe { from { opacity: .72; } to { opacity: 1; } }
.eu-grat path { stroke: rgba(244,234,205,.07); stroke-width: .6; fill: none; }
.eu-wave { stroke: rgba(244,234,205,.15); stroke-width: 1.2; stroke-linecap: round; fill: none; }
.eu-compass circle, .eu-compass path { stroke: rgba(205,158,12,.42); stroke-width: 1; fill: none; stroke-linejoin: round; }
.eu-compass text { fill: rgba(205,158,12,.6); font-family: 'Literata', serif; font-size: 11px; letter-spacing: .1em; }
/* city labels (atlas style) */
.eu-label { font-family: 'Montserrat', sans-serif; font-size: 10.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; fill: rgba(244,234,205,.68); paint-order: stroke; stroke: rgba(0,22,46,.8); stroke-width: 2.6px; stroke-linejoin: round; transition: fill .25s; pointer-events: none; }
.eu-marker:hover .eu-label, .eu-marker.active .eu-label, .eu-marker:focus-visible .eu-label { fill: var(--cream); }
@media (max-width: 639px) { .eu-label { display: none; } }
/* markers */
.eu-marker { cursor: pointer; outline: none; opacity: 0; }
.eu-wrap.visible .eu-marker { animation: euPop .6s ease var(--d, 0s) forwards; }
@keyframes euPop { from { opacity: 0; } to { opacity: 1; } }
.eu-marker .hit { fill: transparent; }
.eu-marker .dot { fill: var(--gold-light); stroke: #002957; stroke-width: 1.4; transform-box: fill-box; transform-origin: center; transition: transform .3s cubic-bezier(.2,1.2,.4,1), fill .25s; }
.eu-marker .halo { fill: none; stroke: rgba(208,164,27,.65); stroke-width: 1; transform-box: fill-box; transform-origin: center; animation: euPulse 2.6s ease-out var(--pd, 0s) infinite; }
.eu-marker.hq .halo { stroke: rgba(244,234,205,.8); animation-duration: 2s; }
.eu-marker .hq-ring { fill: none; stroke: rgba(205,158,12,.75); stroke-width: 1.2; stroke-dasharray: 3 4; transform-box: fill-box; transform-origin: center; animation: euSpin 22s linear infinite; }
.eu-marker .leader { stroke: rgba(244,234,205,.4); stroke-width: .8; stroke-dasharray: 2 3; }
@keyframes euPulse { 0% { transform: scale(.5); opacity: 1; } 75% { transform: scale(2.1); opacity: 0; } 100% { transform: scale(2.1); opacity: 0; } }
@keyframes euSpin { to { transform: rotate(360deg); } }
.eu-marker:hover .dot, .eu-marker.active .dot, .eu-marker:focus-visible .dot { transform: scale(1.65); fill: var(--cream); }
.eu-marker:focus-visible .halo { stroke: var(--cream); }
/* tooltip */
.eu-tip { position: absolute; z-index: 5; transform: translate(-50%, calc(-100% - 20px)); background: rgba(255,255,255,.97); backdrop-filter: blur(6px); border-radius: 12px; border-top: 3px solid var(--gold); padding: 13px 18px 12px; box-shadow: 0 18px 44px rgba(0,10,25,.45); display: flex; flex-direction: column; gap: 3px; min-width: 130px; text-align: center; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
.eu-tip.show { opacity: 1; }
.eu-tip.below { transform: translate(-50%, 22px); }
.eu-tip::after { content: ""; position: absolute; left: 50%; bottom: -6px; width: 12px; height: 12px; background: rgba(255,255,255,.97); transform: translateX(-50%) rotate(45deg); }
.eu-tip.below::after { bottom: auto; top: -6px; }
.eu-tip .tt-city { font-family: 'Literata', serif; font-weight: 400; font-size: 19px; color: var(--navy); line-height: 1.2; white-space: nowrap; }
.eu-tip .tt-country { font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.eu-tip .tt-hq { font-size: 11px; font-weight: 600; color: rgba(22,59,101,.75); border-top: 1px solid rgba(205,158,12,.35); padding-top: 5px; margin-top: 3px; white-space: nowrap; }
/* city chips under the map */
.eu-cities { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-top: clamp(14px, 2vw, 22px); }
.eu-chip { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(244,234,205,.22); background: rgba(255,255,255,.05); color: rgba(255,255,255,.88); font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 600; letter-spacing: .03em; padding: 8px 15px; border-radius: 999px; cursor: pointer; transition: border-color .25s, background .25s, color .25s, transform .25s; }
.eu-chip .cdot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); flex-shrink: 0; transition: transform .25s; }
.eu-chip:hover { border-color: rgba(205,158,12,.7); background: rgba(205,158,12,.12); transform: translateY(-2px); }
.eu-chip.active { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.eu-chip.active .cdot { background: var(--navy-dark); }
.eu-chip.hq .cdot { box-shadow: 0 0 0 3px rgba(208,164,27,.25); }
.eu-hint { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 8px; margin: 16px 0 0; font-size: 12px; font-weight: 600; letter-spacing: .06em; color: rgba(244,234,205,.55); }
.eu-hint svg { width: 15px; height: 15px; stroke: rgba(244,234,205,.55); fill: none; flex-shrink: 0; }
@media (max-width: 560px) { .eu-tip .tt-city { font-size: 16px; } .eu-chip { font-size: 11.5px; padding: 7px 12px; } }
@media (prefers-reduced-motion: reduce) {
  .eu-marker { opacity: 1; animation: none !important; }
  .eu-marker .halo, .eu-marker .hq-ring, .eu-glow { animation: none; }
}

/* footer */
footer.site { background: var(--navy-dark); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 44px; padding-top: clamp(60px, 8vw, 96px); padding-bottom: 52px; border-bottom: 1px solid rgba(205,158,12,.35); }
.footer-logo { display: inline-flex; align-self: flex-start; }
.footer-logo img { height: 58px; display: block; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col .head { font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); }
.footer-col a, .footer-col span.info { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.7; }
.footer-col a:hover { color: var(--gold-light); }
.footer-blurb { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.7); max-width: 280px; margin: 0; }
.li-badge { display: inline-flex; width: 38px; height: 38px; border: 1px solid rgba(205,158,12,.6); border-radius: 10px; align-items: center; justify-content: center; transition: border-color .25s, transform .25s; }
.li-badge:hover { border-color: var(--gold-light); transform: translateY(-3px); }
.socials { display: flex; gap: 10px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 24px; padding-bottom: 34px; }
.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a, .footer-bottom span { font-size: 12px; color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold-light); }
/* reopens the consent banner — styled as a footer link, but a real button
   because it performs an action rather than navigating */
.footer-bottom .cookie-settings { font-family: 'Montserrat', sans-serif; font-size: 12px; color: rgba(255,255,255,.6); background: none; border: 0; padding: 0; cursor: pointer; transition: color .25s; }
.footer-bottom .cookie-settings:hover { color: var(--gold-light); }
/* studio credit — deliberately quieter than the rest of the bar, warms up on hover */
.footer-meta { display: flex; align-items: center; gap: 10px 20px; flex-wrap: wrap; }
.footer-bottom .credit { display: inline-flex; align-items: baseline; gap: 5px; color: rgba(255,255,255,.34); transition: color .25s; }
.footer-bottom .credit .credit-name { font-weight: 600; letter-spacing: .015em; color: rgba(255,255,255,.5); transition: color .25s; }
.footer-bottom .credit:hover { color: rgba(255,255,255,.6); }
.footer-bottom .credit:hover .credit-name { color: var(--gold-light); }

/* back to top */
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 46px; height: 46px; border-radius: 10px; border: none; background: var(--gold); color: var(--navy-dark); font-size: 20px; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .3s, transform .3s, background .3s; box-shadow: 0 8px 22px rgba(0,41,87,.25); }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--gold-light); }

/* ---------- lightbox (click any content image to enlarge) ---------- */
.article-cover img, .article-body img, .photo-collage .main img, .photo-collage .sub img,
.award-photos img, .person-hero .portrait img { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(0,20,45,.9); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; padding: 4vh 4vw; opacity: 0; pointer-events: none; transition: opacity .3s ease; cursor: zoom-out; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); transform: scale(.94); transition: transform .3s cubic-bezier(.22,.75,.35,1); }
.lightbox.open img { transform: scale(1); }
.lightbox .lb-caption { color: rgba(255,255,255,.75); font-size: 13px; letter-spacing: .04em; text-align: center; max-width: 700px; }
.lightbox .lb-close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border: 1px solid rgba(205,158,12,.55); border-radius: 10px; background: rgba(255,255,255,.06); color: #D0A41B; font-size: 22px; line-height: 1; cursor: pointer; transition: background .25s, transform .25s; }
.lightbox .lb-close:hover { background: rgba(205,158,12,.2); transform: rotate(90deg); }

/* language fade */
.i18n-fade { transition: opacity .22s ease; }
body.lang-switching .i18n-fade { opacity: 0; }

/* ---------- touch devices ----------
   Fingers need bigger targets than a mouse pointer. Keyed on pointer type,
   not width, so a touchscreen laptop gets this too and a narrow desktop
   window does not. Apple/Android both recommend ~44px minimum. */
@media (pointer: coarse) {
  .lang-btn { min-height: 44px; }
  .lang-list button { min-height: 44px; }
  .filters button { min-height: 44px; padding-top: 12px; padding-bottom: 12px; }
  .eu-chip { min-height: 40px; padding-top: 10px; padding-bottom: 10px; }
  .doc-card .dl { min-height: 44px; }
  .mobile-nav a { padding-top: 14px; padding-bottom: 14px; }
}
