/* ══════════════════════════════════════════════════════════════
   OUR CULTURE — style.css  (v2 — visual, image-driven)
═══════════════════════════════════════════════════════════════ */

:root {
  /* Brand palette — from the Our Culture logo */
  --color-navy:       #1B3A6B;
  --color-navy-deep:  #0F2544;
  --color-teal:       #1F8A8A;
  --color-teal-dark:  #146a6a;
  --color-orange:     #E37625;
  --color-orange-dk:  #C85F13;
  --color-terracotta: #D94A2E;

  --color-text:    #1A2332;
  --color-muted:   #5A6879;
  --color-soft:    #7F8A99;
  --color-bg:      #FFFFFF;
  --color-bg-alt:  #F7F4EE;
  --color-bg-warm: #FFF8EE;
  --color-border:  #E6E2D8;
  --color-accent:  var(--color-orange);

  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --container-max: 1240px;
  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(15, 37, 68, 0.06);
  --shadow:    0 10px 32px rgba(15, 37, 68, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 37, 68, 0.16);
  --shadow-xl: 0 40px 80px rgba(15, 37, 68, 0.22);

  --ease:  cubic-bezier(.22, .61, .36, 1);
  --dur:   .35s;
  --dur-l: .6s;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--color-accent); }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.01em;
  margin: 0 0 .6rem;
  color: var(--color-text);
}
p { margin: 0 0 1rem; }
ul { padding: 0; margin: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  padding: .6rem 1rem;
  background: var(--color-navy); color: #fff; z-index: 9999;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus { left: 0; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--dur) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.btn-primary {
  background: var(--color-navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn-ghost:hover { background: var(--color-navy); color: #fff; transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--color-navy);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Primary CTA used for Digital Exhibition Platform */
.btn-cta {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-terracotta) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(227, 118, 37, .35);
  position: relative;
  overflow: hidden;
}
.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-orange-dk) 0%, #A82F14 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.btn-cta:hover::before { opacity: 1; }
.btn-cta > * { position: relative; z-index: 1; }
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(227, 118, 37, .45);
  color: #fff;
}
.btn-cta-large {
  padding: 1.15rem 2rem;
  font-size: 1.05rem;
}

.btn-block { width: 100%; }

/* ═══════════════════════════════════════════════════════════
   SHARED SVG SPRITE (off-screen)
═══════════════════════════════════════════════════════════ */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   TOP DISCLAIMER BAR — slim EU funding notice
═══════════════════════════════════════════════════════════ */
.topbar {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, .85);
  font-size: .74rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.topbar-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: .6rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: .85rem;
}
.topbar-flag {
  flex-shrink: 0;
  display: inline-block;
  width: 28px;
  height: 18.67px;          /* 3:2 aspect ratio */
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  background: #003399;       /* fallback if SVG fails */
}
.topbar-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}
.topbar-text {
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, .82);
  font-size: inherit;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container-max);
  padding: .9rem clamp(1rem, 4vw, 2.5rem);
  margin-inline: auto;
}

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand-logo {
  height: 52px;
  width: auto;
  transition: transform var(--dur) var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.04); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav-link {
  position: relative;
  font-size: .92rem;
  font-weight: 500;
  color: var(--color-text);
  padding: .35rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--dur) var(--ease);
}
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }
.nav-link:hover, .nav-link.is-active { color: var(--color-accent); }

.nav-link-accent {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-terracotta) 100%);
  color: #fff !important;
  padding: .55rem 1rem !important;
  border-radius: 999px;
  font-weight: 600;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav-link-accent::after { display: none; }
.nav-link-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(227, 118, 37, .35);
}

/* Nav toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--color-bg-alt);
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease),
              opacity var(--dur) var(--ease),
              top var(--dur) var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ─── Language switcher ─────────────────────────────────────── */
.lang-switcher { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .9rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text);
}
.lang-btn:hover { background: #fff; border-color: var(--color-navy); }
.lang-flag { font-size: 1rem; line-height: 1; }
.lang-caret { transition: transform var(--dur) var(--ease); }
.lang-btn[aria-expanded="true"] .lang-caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .4rem;
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  z-index: 200;
}
.lang-menu.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
.lang-menu li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .75rem;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.lang-menu li:hover,
.lang-menu li[aria-selected="true"] { background: var(--color-bg-alt); color: var(--color-accent); }

/* ═══════════════════════════════════════════════════════════
   HERO — rich, image-driven
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 860px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  animation: slowzoom 18s var(--ease) infinite alternate;
}
@keyframes slowzoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 20% 20%, rgba(31, 138, 138, .35), transparent 60%),
    linear-gradient(135deg, rgba(15, 37, 68, .90) 0%, rgba(27, 58, 107, .78) 45%, rgba(217, 74, 46, .55) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
  opacity: .6;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
}
.hero-blob-a {
  width: 420px; height: 420px;
  background: var(--color-orange);
  top: -120px; right: -100px;
  animation: float 16s ease-in-out infinite;
}
.hero-blob-b {
  width: 360px; height: 360px;
  background: var(--color-teal);
  bottom: -140px; left: -80px;
  animation: float 20s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(30px, -20px); }
}

.hero-inner {
  position: relative;
  padding: clamp(6rem, 14vh, 9rem) 0 clamp(5rem, 10vh, 7rem);
  max-width: 900px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(227, 118, 37, .12);
  padding: .45rem .95rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.eyebrow-on-dark {
  color: #fff;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(6px);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  line-height: .98;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 1.2rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .2);
}
.hero-title::after {
  content: ".";
  color: var(--color-orange);
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  color: rgba(255, 255, 255, .92);
  margin-bottom: 1.4rem;
  max-width: 620px;
}

.hero-desc {
  max-width: 640px;
  margin: 0 0 2rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: clamp(1.6rem, 4vw, 3rem);
  margin: 0;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, .25);
  max-width: 520px;
}
.hero-stat dt {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .65);
  margin-bottom: .25rem;
}
.hero-stat dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
}
.hero-stat dd span { display: inline-block; }

/* ═══════════════════════════════════════════════════════════
   SHARED SECTION
═══════════════════════════════════════════════════════════ */
.section { padding: clamp(4.5rem, 10vh, 7.5rem) 0; }
.section-head {
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 6vh, 4rem);
  text-align: center;
}
.section-head-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  max-width: none;
  text-align: left;
  align-items: end;
}
.section-head-split .section-title { margin-bottom: 0; }
.section-head-split .section-lead { margin: 0; }

.section-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 1rem;
}
.section-tag-light { color: var(--color-orange); }
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-title-light { color: #fff; }
.section-lead {
  font-size: 1.06rem;
  color: var(--color-muted);
}
.section-lead-light { color: rgba(255, 255, 255, .85); }

/* ═══════════════════════════════════════════════════════════
   INTRO / ABOUT
═══════════════════════════════════════════════════════════ */
.section-intro { background: var(--color-bg); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.intro-media {
  position: relative;
  min-height: 540px;
}
.intro-img-frame {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 72%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-bg-alt);
}
.intro-img-frame-2 {
  top: auto; left: auto;
  bottom: 0; right: 0;
  width: 58%;
  height: 52%;
  border: 6px solid #fff;
  z-index: 1;
}
.intro-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.intro-sticker {
  position: absolute;
  bottom: 24px; left: 12%;
  width: 110px; height: 110px;
  z-index: 2;
  animation: wobble 10s ease-in-out infinite;
}
.intro-sticker svg { width: 100%; height: 100%; }
@keyframes wobble {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(6deg); }
}

.intro-text { padding: 1rem 0; }
.intro-text .section-tag { margin-top: 0; }
.intro-text .section-title,
.intro-text .section-lead { text-align: left; }

.intro-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 1.8rem 0 2rem;
}
.intro-bullets li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: flex-start;
}
.intro-bullets h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.08rem;
  margin: .2rem 0 .3rem;
}
.intro-bullets p {
  color: var(--color-muted);
  margin: 0;
  font-size: .95rem;
}
.bullet-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-bg-alt);
  color: var(--color-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bullet-icon svg { width: 22px; height: 22px; }
.intro-bullets li:nth-child(1) .bullet-icon { color: var(--color-navy); }
.intro-bullets li:nth-child(2) .bullet-icon { color: var(--color-orange); }
.intro-bullets li:nth-child(3) .bullet-icon { color: var(--color-terracotta); }

/* ═══════════════════════════════════════════════════════════
   HIGHLIGHTS BAND
═══════════════════════════════════════════════════════════ */
.highlights {
  background: var(--color-navy);
  color: #fff;
  padding: clamp(2.2rem, 5vh, 3.2rem) 0;
  position: relative;
  overflow: hidden;
}
.highlights::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(400px 300px at 15% 50%, rgba(31, 138, 138, .35), transparent 60%),
    radial-gradient(400px 300px at 85% 50%, rgba(227, 118, 37, .3), transparent 60%);
  pointer-events: none;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
  position: relative;
}
.highlight { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.highlight-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
}
.highlight-label {
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

/* ═══════════════════════════════════════════════════════════
   NEWS
═══════════════════════════════════════════════════════════ */
.section-news {
  background: var(--color-bg);
  position: relative;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.6rem;
}
.news-grid-single {
  grid-template-columns: 1fr;
  max-width: 960px;
  margin-inline: auto;
}
.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.news-card-horizontal {
  flex-direction: row;
}
.news-card-horizontal .news-media {
  width: 50%;
  flex-shrink: 0;
  aspect-ratio: auto;
}
.news-card-horizontal .news-body {
  width: 50%;
  padding: 2rem 2.2rem;
}
.news-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.news-card-feature .news-media { aspect-ratio: 4 / 5; }
.news-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.news-card:hover .news-media img { transform: scale(1.06); }
.news-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--color-navy);
  color: #fff;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: .38rem .8rem;
  border-radius: 999px;
  font-weight: 700;
  z-index: 2;
}
.news-tag-2 { background: var(--color-teal); }
.news-tag-3 { background: var(--color-orange); }

.news-body {
  padding: 1.5rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.news-meta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--color-soft);
  letter-spacing: .04em;
  margin: 0;
}
.news-dot { color: var(--color-orange); }
.news-title {
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
.news-card-feature .news-title { font-size: 1.45rem; font-family: var(--font-display); font-weight: 700; }
.news-excerpt {
  color: var(--color-muted);
  margin: 0;
  font-size: .95rem;
}
.news-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: .02em;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  color: var(--color-navy);
}
.news-link:hover { color: var(--color-orange); }

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem 1.4rem;
  background: var(--color-navy);
  color: #fff;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  align-self: flex-start;
  margin-top: .6rem;
}
.news-read-more:hover {
  background: var(--color-orange);
  transform: translateY(-2px);
  color: #fff;
}

/* ─── News highlights ───────────────────────────────────── */
.news-highlights {
  list-style: none;
  padding: 0;
  margin: .4rem 0 .6rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.news-highlights li {
  font-size: .9rem;
  color: var(--color-text);
  line-height: 1.5;
}

/* ─── News Slider ───────────────────────────────────────── */
.news-slider {
  position: relative;
  overflow: hidden;
}
.news-card-horizontal .news-slider {
  aspect-ratio: auto;
  height: 100%;
  min-height: 380px;
}
.news-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}
.news-slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(6px);
  color: var(--color-navy);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
  z-index: 3;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  cursor: pointer;
  border: none;
  line-height: 1;
}
.slider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 12px; }
.slider-next { right: 12px; }

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: 2px solid rgba(255, 255, 255, .8);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  cursor: pointer;
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* ─── News Detail Modal ─────────────────────────────────── */
.news-detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 37, 68, .6);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
  padding: 2rem;
}
.news-detail-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.news-detail-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(30px) scale(.97);
  transition: transform .4s var(--ease);
}
.news-detail-overlay.is-open .news-detail-modal {
  transform: translateY(0) scale(1);
}
.news-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(6px);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .15);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.news-detail-close:hover {
  background: var(--color-terracotta);
  color: #fff;
  transform: scale(1.08);
}
.news-detail-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  aspect-ratio: 16 / 9;
}
.news-detail-slider .news-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}
.news-detail-slider .news-slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.news-detail-content {
  padding: 2rem 2.5rem 2.5rem;
}
.news-detail-content .news-meta {
  margin-bottom: .6rem;
}
.news-detail-title {
  font-size: 1.8rem;
  margin: 0 0 1.2rem;
  color: var(--color-navy);
}
.news-detail-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0 0 1rem;
}
.news-detail-content .news-highlights {
  margin: 1rem 0 1.2rem;
  padding: 1rem 1.2rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}
.news-detail-content .news-highlights li {
  font-size: .95rem;
  padding: .25rem 0;
}

/* ─── Contact person cards ──────────────────────────────── */
.contact-org {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 1rem;
}
.contact-person-card {
  padding: 1rem 1.2rem !important;
  gap: .4rem !important;
}
.contact-person {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: .15rem;
}
.contact-person-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-navy);
}
.contact-person-role {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--color-orange);
  background: rgba(227, 118, 37, .1);
  padding: .2rem .65rem;
  border-radius: 999px;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   DIGITAL EXHIBITION PLATFORM
═══════════════════════════════════════════════════════════ */
.section-exhibition {
  position: relative;
  color: #fff;
  padding: clamp(5rem, 11vh, 8rem) 0;
  overflow: hidden;
  isolation: isolate;
}
.exhibition-bg { position: absolute; inset: 0; z-index: -1; }
.exhibition-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.9);
}
.exhibition-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 85% 20%, rgba(227, 118, 37, .35), transparent 60%),
    linear-gradient(135deg, rgba(15, 37, 68, .94) 0%, rgba(15, 37, 68, .88) 55%, rgba(31, 138, 138, .7) 100%);
}

.exhibition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.exhibition-text .section-title { font-size: clamp(2rem, 4.2vw, 3.2rem); }

.exhibition-bullets {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin: 1.6rem 0 2rem;
}
.exhibition-bullets li {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, .9);
}
.check {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-orange);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}

.exhibition-cta {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  align-items: flex-start;
}
.exhibition-note {
  margin: 0;
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  font-style: italic;
}

.exhibition-preview {
  position: relative;
  perspective: 1000px;
}
.exhibition-preview-frame {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotateY(-6deg) rotateX(4deg);
  transition: transform .6s var(--ease);
  border: 1px solid rgba(255, 255, 255, .3);
}
.exhibition-preview:hover .exhibition-preview-frame {
  transform: rotateY(-3deg) rotateX(2deg);
}
.exhibition-preview-head {
  background: #f0ece4;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
}
.exhibition-preview-head span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #cfcabf;
}
.exhibition-preview-head span:nth-child(1) { background: #ed6a5e; }
.exhibition-preview-head span:nth-child(2) { background: #f5bf4f; }
.exhibition-preview-head span:nth-child(3) { background: #61c554; }
.exhibition-preview-url {
  margin: 0 0 0 12px;
  font-size: .72rem;
  color: var(--color-soft);
  font-family: 'Inter', monospace;
}
.exhibition-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  aspect-ratio: 16 / 10;
  background: #fff;
}
.tile {
  background-size: cover;
  background-position: center;
  transition: transform var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.tile:hover { filter: brightness(1.08); transform: scale(.98); }

/* ═══════════════════════════════════════════════════════════
   PARTNERS
═══════════════════════════════════════════════════════════ */
.section-partnership {
  background: var(--color-bg-alt);
  position: relative;
}
.section-partnership::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(227, 118, 37, .05) 0, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(31, 138, 138, .05) 0, transparent 40%);
  pointer-events: none;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  position: relative;
}
.partner-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 0 0 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  overflow: hidden;
  position: relative;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.partner-banner {
  height: 70px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-terracotta));
  position: relative;
  margin-bottom: -40px;
}
.partner-banner::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(255, 255, 255, .14) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 80%, rgba(255, 255, 255, .14) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .14) 0 2px, transparent 3px);
  background-size: 40px 40px;
}
.partner-banner-fr { background: linear-gradient(135deg, var(--color-terracotta), #E85A40); }
.partner-banner-tr { background: linear-gradient(135deg, var(--color-teal), #23a3a3); }
.partner-banner-hu { background: linear-gradient(135deg, var(--color-navy), #2F5490); }

.partner-logo {
  position: relative;
  width: 130px; height: 130px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* TR & HU logos have opaque white square backgrounds in the PNG —
   remove the container's white circle so the square isn't visible */
.partner-banner-tr + .partner-logo,
.partner-banner-hu + .partner-logo {
  background: transparent;
  box-shadow: none;
}
.partner-banner-tr + .partner-logo img,
.partner-banner-hu + .partner-logo img {
  border-radius: 50%;
}
.partner-country {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-soft);
  margin: 0 0 .3rem;
}
.partner-name {
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: .8rem;
  padding: 0 1.4rem;
}
.partner-desc {
  font-size: .94rem;
  color: var(--color-muted);
  margin: 0 0 1.2rem;
  padding: 0 1.6rem;
}
.partner-chip {
  display: inline-block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: var(--color-bg-alt);
  color: var(--color-navy);
  font-weight: 700;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-navy);
  background: transparent;
  border: 1.5px solid var(--color-border);
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.partner-link:hover {
  background: var(--color-orange);
  color: #fff;
  border-color: var(--color-orange);
  transform: translateY(-2px);
}
.partner-link svg {
  transition: transform var(--dur) var(--ease);
}
.partner-link:hover svg {
  transform: translate(2px, -2px);
}

/* ═══════════════════════════════════════════════════════════
   RESOURCES
═══════════════════════════════════════════════════════════ */
.section-resources {
  background: var(--color-bg-warm);
  background-image:
    linear-gradient(180deg, var(--color-bg-warm) 0%, #FFFDF8 100%);
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}
.resource-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.resource-media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.resource-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .25));
}
.resource-body {
  padding: 1.5rem 1.4rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.resource-icon {
  font-size: 1.8rem;
  margin-top: -44px;
  margin-bottom: .3rem;
  background: #fff;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  align-self: center;
  position: relative;
  z-index: 1;
}
.resource-title {
  font-size: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin: .2rem 0 .3rem;
}
.resource-text {
  font-size: .92rem;
  color: var(--color-muted);
  margin: 0 0 .8rem;
}
.resource-status {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-orange);
  background: rgba(227, 118, 37, .1);
  padding: .32rem .8rem;
  border-radius: 999px;
  margin-top: auto;
  align-self: center;
}

/* ═══════════════════════════════════════════════════════════
   JOIN / NEWSLETTER BAND
═══════════════════════════════════════════════════════════ */
.join-band {
  background: linear-gradient(120deg, var(--color-navy) 0%, var(--color-teal) 100%);
  color: #fff;
  padding: clamp(3rem, 7vh, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.join-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, .1) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, .1) 0 1px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, .1) 0 1px, transparent 2px);
  background-size: 60px 60px;
  pointer-events: none;
}
.join-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}
.join-text h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 .4rem;
}
.join-text p {
  color: rgba(255, 255, 255, .82);
  margin: 0;
}
.join-form {
  display: flex;
  gap: .7rem;
  background: #fff;
  padding: .5rem;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
}
.join-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: .7rem 1.2rem;
  font: inherit;
  font-size: .95rem;
  color: var(--color-text);
}
.join-form input:focus { outline: none; }
.join-form .btn { padding: .85rem 1.6rem; }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.section-contact { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 680px;
  margin-inline: auto;
}
.contact-intro .section-tag { margin-top: 0; }
.contact-intro .section-title,
.contact-intro .section-lead { text-align: left; }
.contact-intro .section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }

.contact-list {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .85rem 1rem;
  border-left: 3px solid var(--color-teal);
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.contact-key {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--color-soft);
}
.contact-list a {
  color: var(--color-navy);
  font-weight: 600;
}

.social-row {
  display: flex;
  gap: .5rem;
  margin-top: .3rem;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.social-link:hover { background: var(--color-accent); transform: translateY(-2px); }

.contact-form {
  background: var(--color-bg-alt);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--color-border);
}
.form-row { display: flex; flex-direction: column; gap: .35rem; }
.form-row label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-text);
}
.form-row input,
.form-row textarea {
  font: inherit;
  padding: .9rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(31, 138, 138, .15);
}
.form-row textarea { resize: vertical; min-height: 120px; }

.form-feedback {
  margin: .3rem 0 0;
  font-size: .9rem;
  min-height: 1.2em;
  color: var(--color-teal);
  font-weight: 600;
}
.form-feedback.is-error { color: var(--color-terracotta); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255, 255, 255, .82);
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding: clamp(3rem, 6vh, 4.5rem) clamp(1rem, 4vw, 2.5rem);
  max-width: var(--container-max);
  margin-inline: auto;
}
.footer-logo {
  height: 60px;
  background: #fff;
  padding: .5rem .75rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  width: auto;
}
.footer-desc {
  color: rgba(255, 255, 255, .7);
  font-size: .92rem;
  max-width: 28ch;
}
.footer-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a {
  color: rgba(255, 255, 255, .75);
  font-size: .92rem;
  transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--color-orange); }

.footer-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  background: #fff;
  border-radius: var(--radius);
  padding: .8rem;
}
.footer-partners img {
  max-height: 60px;
  width: 100%;
  object-fit: contain;
}

.footer-eu {
  background: rgba(255, 255, 255, .04);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 1.6rem 0;
}
.footer-eu-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.eu-flag {
  flex-shrink: 0;
  width: 60px; height: 40px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}
.eu-flag svg { width: 100%; height: 100%; display: block; }
.eu-disclaimer {
  margin: 0;
  font-size: .8rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .72);
}

.footer-bottom { padding: 1rem 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.copyright,
.made-with {
  margin: 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
}

/* ═══════════════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
  z-index: 90;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--color-orange); }

/* ═══════════════════════════════════════════════════════════
   LANG LOADING
═══════════════════════════════════════════════════════════ */
.lang-loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur);
}
.lang-loader.is-active { opacity: 1; visibility: visible; }
.lang-loader-ring {
  width: 48px; height: 48px;
  border: 3px solid rgba(27, 58, 107, .15);
  border-top-color: var(--color-orange);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

[data-i18n] { transition: opacity var(--dur) var(--ease); }
body.lang-swapping [data-i18n] { opacity: .35; }

/* ═══════════════════════════════════════════════════════════
   REVEAL ON SCROLL
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-l) var(--ease), transform var(--dur-l) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card-feature { grid-column: 1 / -1; }
  .exhibition-grid { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-media { min-height: 420px; max-width: 560px; }
  .join-band-inner { grid-template-columns: 1fr; text-align: center; }
  .section-head-split { grid-template-columns: 1fr; gap: .6rem; }
}

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }

  .primary-nav {
    position: fixed;
    top: 108px;
    right: 0;
    width: min(330px, 88%);
    height: calc(100vh - 108px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1.2rem;
    padding: 2rem 1.5rem;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .1);
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateX(0); }

  .primary-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: .3rem;
  }
  .primary-nav > ul li { border-bottom: 1px solid var(--color-border); }
  .primary-nav > ul li:last-child { border-bottom: none; }
  .primary-nav > ul a {
    display: block;
    padding: .95rem 0;
    font-size: 1rem;
  }
  .nav-link-accent {
    margin-top: .5rem;
    text-align: center;
  }

  .news-grid { grid-template-columns: 1fr; }
  .news-card-horizontal { flex-direction: column; }
  .news-card-horizontal .news-media { width: 100%; aspect-ratio: 16 / 10; height: auto; min-height: auto; }
  .news-card-horizontal .news-slider { height: auto; min-height: auto; aspect-ratio: 16 / 10; }
  .news-card-horizontal .news-body { width: 100%; padding: 1.5rem; }

  .news-detail-overlay { padding: 1rem; }
  .news-detail-content { padding: 1.5rem 1.5rem 2rem; }
  .news-detail-title { font-size: 1.4rem; }

  .lang-switcher { margin-top: auto; align-self: flex-start; }
  .lang-menu { left: 0; right: auto; }

  .footer-eu-inner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 1.2rem; }
  .join-form { flex-direction: column; border-radius: var(--radius); }
  .join-form input { text-align: center; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero { min-height: auto; padding: 1rem 0; }
  .hero-inner { padding: 5rem 0 4rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .intro-media { min-height: 380px; }
  .intro-sticker { width: 80px; height: 80px; }
}

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