:root {
  --navy: #243c93;
  --navy-dark: #181b2a;
  --yellow: #fbcc06;
  --grey: #6b6b6b;
  --line: #e7e7ea;
  --line-strong: #9094a2;
  --white: #ffffff;
  --ink: #14161f;

  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--yellow);
  color: var(--navy-dark);
}

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

.hero :focus-visible,
.contact-info :focus-visible,
.site-footer :focus-visible,
.lightbox :focus-visible,
.cookie-notice :focus-visible,
.skip-link:focus-visible {
  outline-color: var(--yellow);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 1rem;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--delay, 0) * 90ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Type */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin: 0;
}
.eyebrow-light { color: var(--yellow); }
.eyebrow::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow);
  margin-top: 0.6rem;
}
.eyebrow-light::after { background: rgba(255, 255, 255, 0.5); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0.6rem 0 0;
  max-width: 32rem;
  color: var(--navy-dark);
}
.section-title.light { color: var(--white); }
@media (min-width: 768px) {
  .section-title { font-size: 2.6rem; }
}

.body-text {
  max-width: 36rem;
  color: var(--grey);
  line-height: 1.75;
  margin-top: 1.25rem;
}
.body-text.small {
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  cursor: pointer;
}
.btn-primary { background: var(--yellow); color: var(--navy-dark); }
.btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 12px 28px rgba(251, 204, 6, 0.4); }
.btn-primary:active { transform: translateY(0) scale(0.97); box-shadow: 0 4px 12px rgba(251, 204, 6, 0.3); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.5); color: var(--white); background: none; }
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); transform: translateY(-2px) scale(1.03); }
.btn-ghost:active { transform: translateY(0) scale(0.97); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(20, 22, 31, 0.06);
  border-color: var(--line);
}
.header-row {
  height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s var(--ease);
}
.site-header.is-scrolled .header-row { height: 3.5rem; }
.logo-link { display: flex; align-items: center; gap: 0.65rem; }
.logo { height: 2.75rem; width: auto; border-radius: 6px; transition: height 0.3s var(--ease); }
.site-header.is-scrolled .logo { height: 2.2rem; }

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0%;
  background: var(--yellow);
}
.nav-desktop { display: none; align-items: center; gap: 2.25rem; }
.nav-desktop a:not(.btn) {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-dark);
}
.nav-desktop a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.25s var(--ease);
}
.nav-desktop a:not(.btn):hover::after,
.nav-desktop a:not(.btn).active::after { width: 100%; }
.nav-desktop a:not(.btn).active { color: var(--navy); }

.nav-toggle {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: none;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 1.3rem;
  height: 2px;
  background: var(--navy-dark);
  position: relative;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.nav-mobile {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 1rem 1.5rem;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-dark);
}
.nav-mobile a:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.hero-graphic {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.hero-star {
  position: absolute;
  display: block;
  background: var(--yellow);
  clip-path: polygon(50% 5%, 61% 35%, 95% 35%, 68% 55%, 78% 90%, 50% 70%, 22% 90%, 32% 55%, 5% 35%, 39% 35%);
}
.hero-star-main {
  top: -14%;
  right: -12%;
  width: 34rem;
  height: 34rem;
  opacity: 0.1;
  animation: hero-star-drift 30s ease-in-out infinite alternate;
}
@keyframes hero-star-drift {
  from { transform: rotate(-10deg) scale(1); }
  to { transform: rotate(-2deg) scale(1.05); }
}
@media (max-width: 640px) {
  .hero-star-main { width: 20rem; height: 20rem; top: -10%; right: -18%; }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 5.5rem 1.5rem 4.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 40rem;
  margin: 0;
}
.hero-sub {
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; padding-top: 0.5rem; }
@media (min-width: 768px) {
  .hero-inner { padding: 6.5rem 1.5rem 5.5rem; }
}
@media (min-width: 1024px) {
  .hero-title { max-width: none; white-space: nowrap; }
}

.hero-content { display: flex; flex-direction: column; gap: 1.75rem; }
.hero-eu-ring {
  --ring-radius: 2.15rem;
  --star-size: 1rem;
  display: block;
  position: relative;
  width: 6rem;
  height: 6rem;
  margin: 1rem auto 0;
  animation: hero-ring-spin 40s linear infinite;
}
@keyframes hero-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.eu-star {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--star-size);
  height: var(--star-size);
  margin: calc(var(--star-size) / -2);
  background: var(--yellow);
  clip-path: polygon(50% 5%, 61% 35%, 95% 35%, 68% 55%, 78% 90%, 50% 70%, 22% 90%, 32% 55%, 5% 35%, 39% 35%);
  transform: rotate(calc(var(--i) * 30deg)) translate(var(--ring-radius)) rotate(calc(var(--i) * -30deg));
}
@media (min-width: 1024px) {
  .hero-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem; }
  .hero-content { flex: 1 1 auto; }
  .hero-eu-ring {
    --ring-radius: 4.5rem;
    --star-size: 1.3rem;
    flex: 0 0 auto;
    width: 11.5rem;
    height: 11.5rem;
    margin: 0;
  }
}

/* Sections */
.section .wrap { padding: 6rem 1.5rem; }

/* About */
.about { position: relative; overflow: hidden; }
.about::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 22rem;
  height: 22rem;
  z-index: 0;
  opacity: 0.05;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 5 61 35 95 35 68 55 78 90 50 70 22 90 32 55 5 35 39 35Z' fill='none' stroke='%23243c93' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
  pointer-events: none;
  display: none;
}
.about > .wrap { position: relative; z-index: 1; padding-top: 3.5rem; }
@media (min-width: 768px) {
  .about::before { display: block; }
}
.about-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1.3fr 1fr; }
}
.about-lead {
  border-left: 3px solid var(--yellow);
  padding-left: 1.25rem;
  margin-top: 1.5rem;
}
.about-lead .body-text { margin-top: 1rem; }
.about-lead .body-text:first-child { margin-top: 0; }

.stat-card {
  height: fit-content;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 24px 50px rgba(24, 27, 42, 0.07);
}
.stat-hero {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding-bottom: 1.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.stat-hero-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--navy);
}
.stat-hero-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(36, 60, 147, 0.08);
  color: var(--navy);
}
.stat-icon svg { width: 1.15rem; height: 1.15rem; }
.stat-row > div { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.stat-value { font-size: 1rem; color: var(--ink); }

/* Services */
.services { position: relative; overflow: hidden; background: #f7f8fc; }
.services::before {
  content: "";
  position: absolute;
  bottom: -5rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  z-index: 0;
  opacity: 0.05;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 5 61 35 95 35 68 55 78 90 50 70 22 90 32 55 5 35 39 35Z' fill='none' stroke='%23243c93' stroke-width='2'/%3E%3C/svg%3E");
  background-size: contain;
  pointer-events: none;
  display: none;
}
.services > .wrap { position: relative; z-index: 1; }
@media (min-width: 768px) {
  .services::before { display: block; }
}
.services-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(24, 27, 42, 0.08);
  border-color: transparent;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: rgba(36, 60, 147, 0.08);
  color: var(--navy);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.service-icon svg { width: 1.5rem; height: 1.5rem; }
.service-card:hover .service-icon {
  background: var(--yellow);
  color: var(--navy-dark);
  transform: translateX(4px) rotate(-4deg);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 0;
  color: var(--navy-dark);
}
.service-card p { margin: 0; font-size: 0.92rem; color: var(--grey); line-height: 1.6; }

/* Events */
.events-grid {
  display: grid;
  align-items: start;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}
.event-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.event-card:hover { box-shadow: 0 20px 40px rgba(24, 27, 42, 0.08); transform: translateY(-4px); }
.event-image {
  display: block;
  width: 100%;
  height: 14rem;
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  font: inherit;
}
.event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.event-card:hover .event-image img { transform: scale(1.06); }
.event-body { padding: 1.5rem; }
.event-dates {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  background: rgba(36, 60, 147, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin: 0;
}
.event-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0.6rem 0 0;
  color: var(--navy-dark);
}
.event-body p:not(.event-dates) { margin-top: 0.75rem; font-size: 0.92rem; color: var(--grey); line-height: 1.6; }

.gallery-intro {
  max-width: 34rem;
  margin-top: 3.5rem;
}
.gallery-intro .body-text.small { margin-top: 0.5rem; }

.gallery-track-wrap {
  margin-top: 1.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 3rem, #000 calc(100% - 3rem), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 3rem, #000 calc(100% - 3rem), transparent 100%);
}
.gallery-track {
  --tile: 8rem;
  --gap: 0.75rem;
  display: flex;
  width: max-content;
  gap: var(--gap);
  animation: gallery-scroll 36s linear infinite;
}
.gallery-track-wrap:hover .gallery-track,
.gallery-track:focus-within,
.gallery-track.is-touched {
  animation-play-state: paused;
}
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-7 * (var(--tile) + var(--gap)))); }
}
.gallery-item {
  display: block;
  flex: 0 0 auto;
  width: var(--tile);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  font: inherit;
}
div.gallery-item { cursor: default; }
@media (min-width: 640px) {
  .gallery-track { --tile: 10rem; }
}
@media (min-width: 1024px) {
  .gallery-track { --tile: 12rem; }
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }

.lightbox-trigger { position: relative; }
.lightbox-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 27, 42, 0);
  transition: background 0.25s var(--ease);
}
.lightbox-trigger:hover::after { background: rgba(24, 27, 42, 0.15); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 22, 31, 0.92);
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  transform: scale(0.96);
  transition: transform 0.25s var(--ease);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.15); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.15); }
.lightbox-nav svg { width: 1.4rem; height: 1.4rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
@media (min-width: 768px) {
  .lightbox-prev { left: 1.5rem; }
  .lightbox-next { right: 1.5rem; }
}

/* Contact */
.contact .wrap { padding: 0; display: grid; }
@media (min-width: 768px) {
  .contact .wrap { grid-template-columns: repeat(2, 1fr); }
}
.contact-info { background: var(--navy-dark); color: var(--white); padding: 3.5rem 1.5rem; }
@media (min-width: 768px) { .contact-info { padding: 6rem 3rem; } }
.contact-list { margin-top: 2.5rem; }
.contact-row { border-bottom: 1px solid rgba(255, 255, 255, 0.12); padding-bottom: 1rem; margin-bottom: 1.5rem; }
.contact-row dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}
.contact-row dd { margin: 0.3rem 0 0; font-size: 1.15rem; }
.contact-row a { transition: color 0.2s; }
.contact-row a:hover { color: var(--yellow); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--white);
  padding: 3.5rem 1.5rem;
}
@media (min-width: 768px) { .contact-form { padding: 6rem 3rem; } }
.contact-form label { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey);
}
.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(36, 60, 147, 0.12);
}
.required-mark { color: var(--navy); }
.form-required-note { margin: -0.5rem 0 0; font-size: 0.8rem; color: var(--grey); }
.contact-form button { margin-top: 0.5rem; width: fit-content; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-status[hidden] { display: none; }
.form-status.is-success { background: rgba(36, 60, 147, 0.08); color: var(--navy); }
.form-status.is-error { background: rgba(220, 38, 38, 0.08); color: #b91c1c; }

/* Legal page */
.legal-wrap { padding: 6rem 1.5rem; max-width: 42rem; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2rem;
  transition: gap 0.2s var(--ease);
}
.legal-back:hover { gap: 0.6rem; }

.legal-updated {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--navy);
  background: rgba(36, 60, 147, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin: 1rem 0 0;
}

.legal-lead {
  border-left: 3px solid var(--yellow);
  padding-left: 1.25rem;
}

.legal-body { margin-top: 2.5rem; }
.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy-dark);
  margin: 2.75rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  scroll-margin-top: 6rem;
}
.legal-body .body-text { max-width: none; }

/* Footer */
.site-footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.65); }
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 1.75rem 1.5rem;
}
.footer-brand { display: flex; }
.footer-logo { height: 1.9rem; width: auto; }

.footer-links-row { display: flex; flex-wrap: wrap; gap: 1.1rem 1.5rem; }
.footer-links-row a { font-size: 0.85rem; transition: color 0.2s; }
.footer-links-row a:hover { color: var(--yellow); }

.footer-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem 1.5rem; }
.footer-contact-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; transition: color 0.2s; }
.footer-contact-link:hover { color: var(--yellow); }
.footer-contact-link svg { width: 0.95rem; height: 0.95rem; flex-shrink: 0; color: rgba(255, 255, 255, 0.45); transition: color 0.2s; }
.footer-contact-link:hover svg { color: var(--yellow); }

.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--yellow); }
.footer-social svg { width: 1.3rem; height: 1.3rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Cookie notice */
.cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding: 0.9rem 1.5rem;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.cookie-notice[hidden] { display: none; }
.cookie-notice.is-visible { opacity: 1; transform: translateY(0); }
.cookie-notice p { flex: 1 1 20rem; margin: 0; font-size: 0.85rem; line-height: 1.5; color: rgba(255, 255, 255, 0.8); }
.cookie-notice a { color: var(--yellow); text-decoration: underline; }
.cookie-notice .btn { flex-shrink: 0; padding: 0.55rem 1.3rem; font-size: 0.82rem; }
