/* ============================================
   ERLEBE WALBECK – STYLE SYSTEM (v2 Fixed)
   ============================================ */

:root {
  --navy: #0B1D3A;
  --navy-deep: #06132B;
  --navy-light: #132D52;
  --amber: #E8943A;
  --amber-light: #F5B56B;
  --amber-glow: rgba(232, 148, 58, 0.15);
  --magenta: #9B3675;
  --white: #FFFFFF;
  --grey-100: #F7F7F8;
  --grey-200: #E8E9EC;
  --grey-400: #9CA3AF;
  --text: #1A1A2E;
  --text-muted: #5A5A72;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(11,29,58,0.06);
  --shadow-md: 0 8px 30px rgba(11,29,58,0.10);
  --shadow-lg: 0 20px 60px rgba(11,29,58,0.15);
  --shadow-glow: 0 0 40px rgba(232,148,58,0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Sora', 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
.section-label {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem); color: var(--navy); margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--text-muted); max-width: 600px;
}
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Navigation ── */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: var(--transition); padding: 16px 0;
}
.nav-bar.scrolled {
  background: rgba(11, 29, 58, 0.95); backdrop-filter: blur(20px);
  padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text {
  font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--white);
}
.nav-logo-text span { color: var(--amber); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8);
  transition: var(--transition); position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--amber); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--amber) !important; color: var(--navy) !important;
  padding: 10px 22px; border-radius: 50px; font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--amber-light) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1010;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  position: fixed; inset: 0; background: rgba(6,19,43,0.97); z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: 0.4s ease;
}
.nav-overlay.active { opacity: 1; visibility: visible; }
.nav-mobile-links { text-align: center; display: flex; flex-direction: column; gap: 28px; }
.nav-mobile-links a {
  font-family: 'Sora', sans-serif; font-size: 1.8rem; font-weight: 600;
  color: var(--white); transition: var(--transition);
}
.nav-mobile-links a:hover { color: var(--amber); }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: var(--navy-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(232,148,58,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(155,54,117,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(6,19,43,0.75) 0%, rgba(6,19,43,0.9) 70%),
    url('../img/hero-bg.jpg') center/cover no-repeat;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-particle {
  position: absolute; width: 3px; height: 3px;
  background: rgba(255,255,255,0.3); border-radius: 50%;
  animation: floatParticle 8s infinite ease-in-out;
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-40px) scale(1.5); opacity: 0.8; }
}
.hero-content {
  position: relative; z-index: 2; padding: 120px 24px 80px; max-width: 800px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,148,58,0.15); border: 1px solid rgba(232,148,58,0.3);
  border-radius: 50px; padding: 8px 20px; font-size: 0.85rem; font-weight: 600;
  color: var(--amber-light); margin-bottom: 32px;
  animation: fadeInDown 0.8s ease-out 0.2s both;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 700; color: var(--white);
  line-height: 1.05; margin-bottom: 8px; animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-title .accent { color: var(--amber); }
.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 300;
  color: rgba(255,255,255,0.7); margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}
.hero-claim {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.hero-claim .dot {
  width: 6px; height: 6px; background: var(--amber); border-radius: 50%; flex-shrink: 0;
}
.hero-location {
  font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite; color: rgba(255,255,255,0.4); z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: 50px; font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: var(--transition); border: none; font-family: inherit;
}
.btn-primary { background: var(--amber); color: var(--navy); }
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Reveal: DEFAULT VISIBLE, JS adds .js-reveal to hide ── */
.reveal.js-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.js-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Stats ── */
.stats-section { background: var(--white); padding: 80px 0; border-bottom: 1px solid var(--grey-200); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item { padding: 24px; }
.stat-number {
  font-family: 'Sora', sans-serif; font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }

/* ── About ── */
.about-section { padding: 100px 0; background: var(--grey-100); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.05rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-feature {
  background: var(--white); padding: 28px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.about-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-feature-icon {
  width: 48px; height: 48px; background: var(--amber-glow); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 14px;
}
.about-feature h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.about-feature p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ── Programme ── */
.programme-section { padding: 100px 0; background: var(--white); }
.programme-tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.programme-tab {
  padding: 12px 24px; border-radius: 50px; border: 2px solid var(--grey-200);
  background: transparent; font-family: inherit; font-size: 0.9rem; font-weight: 600;
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.programme-tab:hover { border-color: var(--navy); color: var(--navy); }
.programme-tab.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.programme-content { display: none; }
.programme-content.active { display: block; }
.programme-timeline { position: relative; padding-left: 36px; }
.programme-timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: var(--grey-200);
}
.programme-item { position: relative; padding: 20px 0 20px 24px; border-bottom: 1px solid var(--grey-200); }
.programme-item:last-child { border-bottom: none; }
.programme-item::before {
  content: ''; position: absolute; left: -32px; top: 28px;
  width: 14px; height: 14px; border-radius: 50%; background: var(--white); border: 3px solid var(--amber);
}
.programme-time { font-size: 0.85rem; font-weight: 700; color: var(--amber); margin-bottom: 4px; }
.programme-item h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 4px; }
.programme-item p { font-size: 0.9rem; color: var(--text-muted); }
.location-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  background: var(--grey-100); color: var(--text-muted); padding: 3px 10px;
  border-radius: 20px; margin-top: 8px;
}

/* ── Map ── */
.map-section { padding: 100px 0; background: var(--grey-100); }
.map-wrapper { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-interactive {
  position: relative; width: 100%; aspect-ratio: 16/9; background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.map-svg-container { width: 100%; height: 100%; }
.map-legend {
  padding: 28px 32px; display: flex; flex-wrap: wrap; gap: 24px; border-top: 1px solid var(--grey-200);
}
.map-legend-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; }
.map-legend-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }

/* ── Parallax Divider ── */
.parallax-divider {
  position: relative; padding: 100px 0; background: var(--navy); overflow: hidden; text-align: center;
}
.parallax-divider::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,148,58,0.1) 0%, transparent 60%);
}
.parallax-divider-content { position: relative; z-index: 1; }
.parallax-quote {
  font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600; color: var(--white); line-height: 1.3; max-width: 700px; margin: 0 auto 16px;
}
.parallax-quote .accent { color: var(--amber); }
.parallax-author { font-size: 0.95rem; color: rgba(255,255,255,0.5); }

/* ── Contact ── */
.contact-section {
  padding: 100px 0; background: var(--navy-deep); position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 100%, rgba(232,148,58,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 20%, rgba(155,54,117,0.08) 0%, transparent 50%);
}
.contact-inner {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.contact-text .section-title { color: var(--white); }
.contact-text .section-subtitle { color: rgba(255,255,255,0.65); }
.contact-text p { color: rgba(255,255,255,0.7); margin-bottom: 16px; font-size: 1.05rem; }
.contact-form {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 40px; backdrop-filter: blur(10px);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); background: rgba(255,255,255,0.07); color: var(--white);
  font-family: inherit; font-size: 0.95rem; transition: var(--transition); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--amber); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 3px rgba(232,148,58,0.15);
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 16px; background: var(--amber); color: var(--navy); border: none;
  border-radius: var(--radius); font-family: inherit; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.form-submit:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.form-privacy { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 14px; line-height: 1.5; }
.form-privacy a { color: var(--amber-light); text-decoration: underline; }
.form-feedback {
  padding: 16px 20px; border-radius: var(--radius); font-size: 0.95rem; font-weight: 600;
  margin-bottom: 20px; animation: fadeInDown 0.4s ease-out;
}
.form-feedback-success { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #22c55e; }
.form-feedback-error { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }

/* ── Footer ── */
.footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.08); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .nav-logo { display: inline-flex; margin-bottom: 16px; }
.footer-brand .nav-logo img { height: 44px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  color: var(--white); font-size: 0.9rem; font-weight: 700;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.1em;
}
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 12px; transition: var(--transition); }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--amber); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: var(--amber); }

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -100%; left: 16px; background: var(--amber); color: var(--navy);
  padding: 12px 24px; border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700; font-size: 0.9rem; z-index: 10000; transition: top 0.2s;
}
.skip-link:focus { top: 0; outline: 3px solid var(--navy); outline-offset: 2px; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(6, 19, 43, 0.97); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(232, 148, 58, 0.2);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.cookie-banner.hidden {
  transform: translateY(100%); opacity: 0; pointer-events: none;
}
.cookie-inner { max-width: 1200px; margin: 0 auto; padding: 28px 24px; }
.cookie-title {
  font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.cookie-title i { color: var(--amber); margin-right: 8px; }
.cookie-text p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 6px; }
.cookie-text a { color: var(--amber-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.cookie-btn {
  padding: 11px 24px; border-radius: 50px; font-family: inherit; font-size: 0.88rem;
  font-weight: 700; cursor: pointer; border: none; transition: var(--transition);
}
.cookie-btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.cookie-btn-accept { background: var(--amber); color: var(--navy); }
.cookie-btn-accept:hover { background: var(--amber-light); }
.cookie-btn-necessary { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn-necessary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }
.cookie-btn-settings { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); }
.cookie-btn-settings:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.cookie-details { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.cookie-category { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cookie-category:last-of-type { border-bottom: none; }
.cookie-switch { display: flex; align-items: center; gap: 14px; cursor: pointer; }
.cookie-switch input { display: none; }
.cookie-slider {
  width: 44px; height: 24px; background: rgba(255,255,255,0.15); border-radius: 12px;
  position: relative; flex-shrink: 0; transition: var(--transition);
}
.cookie-slider::after {
  content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--white); transition: var(--transition);
}
.cookie-switch input:checked + .cookie-slider { background: var(--amber); }
.cookie-switch input:checked + .cookie-slider::after { transform: translateX(20px); }
.cookie-switch input:disabled + .cookie-slider { background: var(--amber); opacity: 0.6; }
.cookie-switch input:disabled + .cookie-slider::after { transform: translateX(20px); }
.cookie-switch-label { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.cookie-switch-label strong { color: var(--white); }
.cookie-desc { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 6px; padding-left: 58px; line-height: 1.5; }
.cookie-details-actions { margin-top: 16px; }

/* ── Accessibility Section ── */
.accessibility-section { padding: 100px 0; background: var(--white); }
.a11y-content { max-width: 900px; margin: 0 auto; }
.a11y-card { background: var(--grey-100); border-radius: var(--radius-lg); padding: 40px; margin-bottom: 32px; }
.a11y-card h2, .a11y-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; margin-top: 24px; }
.a11y-card h2:first-of-type, .a11y-card h3:first-of-type { margin-top: 0; }
.a11y-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 12px; }
.a11y-card a { color: var(--amber); text-decoration: underline; }
.a11y-icon {
  width: 64px; height: 64px; background: linear-gradient(135deg, var(--amber), var(--magenta));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white); margin-bottom: 20px;
}
.a11y-date { font-size: 0.85rem !important; color: var(--grey-400) !important; font-style: italic; margin-top: 16px; }
.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.a11y-feature { background: var(--grey-100); padding: 28px; border-radius: var(--radius); transition: var(--transition); }
.a11y-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.a11y-feature-icon {
  width: 44px; height: 44px; background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  color: var(--amber); margin-bottom: 14px;
}
.a11y-feature h3, .a11y-feature h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.a11y-feature p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.a11y-section-title { font-size: 1.5rem; color: var(--navy); margin: 40px 0 24px; }
.a11y-list { list-style: none; padding: 0; margin: 16px 0; }
.a11y-list li { position: relative; padding-left: 24px; margin-bottom: 12px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.a11y-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.a11y-card-highlight { border-left: 4px solid var(--amber); background: linear-gradient(135deg, var(--grey-100), rgba(232,148,58,0.05)) !important; }
.a11y-contact-box {
  background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius);
  padding: 20px 24px; margin: 20px 0;
}
.a11y-contact-box p { margin-bottom: 8px !important; font-size: 1rem !important; color: var(--text) !important; }
.a11y-contact-box p:last-child { margin-bottom: 0 !important; }
.a11y-contact-box i { color: var(--amber); width: 20px; margin-right: 4px; }

/* ── Subpage Hero ── */
.page-hero { background: var(--navy-deep); padding: 140px 0 60px; }
.breadcrumb { font-size: 0.85rem; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span[aria-hidden] { color: rgba(255,255,255,0.3); margin: 0 8px; }
.breadcrumb span[aria-current] { color: var(--amber); font-weight: 600; }
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; color: var(--white); margin-bottom: 12px;
}
.page-hero-title .accent { color: var(--amber); }
.page-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.6); max-width: 600px; }

/* ── Focus Visible (WCAG) ── */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--amber); outline-offset: 2px;
}

/* ── Accessibility helper ── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-claim { gap: 10px; font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-features, .a11y-grid { grid-template-columns: 1fr; }
  .programme-tab { padding: 10px 18px; font-size: 0.82rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .map-legend { padding: 20px; gap: 16px; }
  .cookie-inner { padding: 20px 16px; }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; }
  .cookie-desc { padding-left: 0; }
  .a11y-card { padding: 28px 20px; }
  .page-hero { padding: 110px 0 40px; }
  section { scroll-margin-top: 60px; }
}
@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }
  .hero-title { font-size: 2.6rem; }
  .section-title { font-size: 1.8rem; }
}
@media print {
  .nav-bar, .hero-particles, .hero-scroll, .nav-overlay, .cookie-banner { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  body { color: #000; background: #fff; }
}
