/* =====================================================================
   Y-CYCLE — Erasmus+ Youth Exchange
   Design system & styles
   Palette: navy / electric teal / fresh green / warm yellow
   Fonts: Space Grotesk (display) + Inter (body)
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Design tokens
--------------------------------------------------------------------- */
:root {
  /* Core palette */
  --navy: #102A43;
  --navy-900: #0b1e30;
  --teal: #00BFA6;
  --teal-600: #05a892;
  --green: #66D17A;
  --yellow: #FFC857;
  --off-white: #F7FAF9;
  --blue-grey: #EAF2F4;
  --ink: #15232E;
  --ink-soft: #3d5261;
  --ink-faint: #6a7d8a;

  /* Surfaces */
  --bg: var(--off-white);
  --surface: #ffffff;
  --surface-2: #f0f6f6;
  --line: #dbe7e9;

  /* Gradients */
  --grad-primary: linear-gradient(120deg, var(--teal) 0%, var(--green) 100%);
  --grad-navy: linear-gradient(135deg, var(--navy) 0%, #0d3b46 60%, var(--teal-600) 130%);
  --grad-accent: linear-gradient(120deg, var(--yellow) 0%, var(--green) 100%);
  --grad-mesh:
    radial-gradient(40% 40% at 15% 20%, rgba(0,191,166,.55) 0%, transparent 60%),
    radial-gradient(45% 45% at 85% 15%, rgba(102,209,122,.45) 0%, transparent 60%),
    radial-gradient(50% 50% at 75% 85%, rgba(255,200,87,.35) 0%, transparent 60%),
    radial-gradient(45% 45% at 20% 90%, rgba(0,191,166,.35) 0%, transparent 60%);

  /* Typography */
  --font-display: "Bricolage Grotesque", "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing / radius */
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 10px rgba(16,42,67,.06);
  --shadow: 0 18px 40px -20px rgba(16,42,67,.28);
  --shadow-lg: 0 40px 80px -30px rgba(16,42,67,.35);

  /* Layout */
  --maxw: 1200px;
  --nav-h: 76px;
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ---------------------------------------------------------------------
   2. Reset & base
--------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  color: var(--navy);
  text-wrap: balance;          /* keep headings from breaking into ragged, lonely words */
}

p { margin: 0 0 1rem; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--teal); color: #fff; }

/* ---------------------------------------------------------------------
   3. Layout helpers
--------------------------------------------------------------------- */
.container { width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

h2.title { font-size: clamp(2rem, 5vw, 3.4rem); }
h3.title { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); }

.text-grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------------------------------------------------------------------
   4. Buttons
--------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  padding: .95rem 1.6rem;
  border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--grad-primary);
  color: #06231f;
  box-shadow: 0 12px 28px -12px rgba(0,191,166,.7);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -14px rgba(0,191,166,.75); }
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }
.btn--dark {
  background: var(--navy);
  color: #fff;
}
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--outline {
  border: 1.5px solid var(--line);
  color: var(--navy);
  background: var(--surface);
}
.btn--outline:hover { border-color: var(--teal); color: var(--teal-600); transform: translateY(-3px); }

/* ---------------------------------------------------------------------
   5. Navigation
--------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: height .3s var(--ease), background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.scrolled {
  height: 62px;
  background: rgba(247,250,249,.82);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 rgba(16,42,67,.08);
}
.nav__inner {
  width: min(100% - 2.6rem, var(--maxw));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.02em;
  color: var(--navy);
}
.brand__mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--grad-primary);
  color: #06231f;
  font-weight: 700;
  box-shadow: 0 6px 16px -6px rgba(0,191,166,.7);
}
.nav.on-dark:not(.scrolled) .brand { color: #fff; }
.brand__img {
  display: block; height: 38px; width: auto;
  background: #fff; border-radius: 9px; padding: 4px 9px;
  border: 1px solid rgba(16,42,67,.08);
  box-shadow: 0 4px 14px -8px rgba(0,0,0,.4);
  transition: height .3s var(--ease);
}
.nav.scrolled .brand__img { height: 32px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .7rem;
  border-radius: 100px;
  color: var(--ink-soft);
  transition: color .25s, background .25s;
  position: relative;
}
.nav.on-dark:not(.scrolled) .nav__links a { color: rgba(255,255,255,.8); }
.nav__links a:hover { color: var(--teal-600); }
.nav.on-dark:not(.scrolled) .nav__links a:hover { color: #fff; }
.nav__links a.active { color: var(--navy); background: var(--surface-2); }
.nav.on-dark:not(.scrolled) .nav__links a.active { color: #fff; background: rgba(255,255,255,.14); }

.nav__cta { display: inline-flex; }
.nav__cta .btn { padding: .6rem 1.15rem; font-size: .9rem; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transform: translate(-50%,-50%);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle span::before { transform: translate(-50%,-7px); }
.nav__toggle span::after  { transform: translate(-50%, 5px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translate(-50%,-50%) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translate(-50%,-50%) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--grad-navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  gap: .2rem;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a span { color: var(--teal); font-size: .9rem; }

/* ---------------------------------------------------------------------
   6. Hero
--------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 3rem;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,30,48,.82) 0%, rgba(9,25,38,.74) 42%, rgba(6,35,42,.86) 100%),
    radial-gradient(120% 90% at 50% 15%, transparent 30%, rgba(11,30,48,.35) 100%);
}
.hero__mesh {
  position: absolute;
  inset: -20%;
  background: var(--grad-mesh);
  filter: blur(20px);
  opacity: .45;
  mix-blend-mode: screen;
  animation: meshFloat 22s var(--ease) infinite alternate;
  z-index: 2;
}
@keyframes meshFloat {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.15) translate(-4%, 3%); }
}
.hero__grain {
  position: absolute; inset: 0; z-index: 2;
  opacity: .4; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hero__rings { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .5; }
.hero__rings span {
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  left: 50%; top: 45%;
  translate: -50% -50%;
}
.hero__rings span:nth-child(1){ width: 620px; height: 620px; animation: spin 60s linear infinite; }
.hero__rings span:nth-child(2){ width: 900px; height: 900px; animation: spin 90s linear infinite reverse; border-style: dashed; }
.hero__rings span:nth-child(3){ width: 1200px; height: 1200px; animation: spin 120s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__inner {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 500;
  font-size: .82rem; letter-spacing: .04em;
  padding: .5rem 1rem; border-radius: 100px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  margin-bottom: 1.6rem;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(102,209,122,.3); }

.hero h1 {
  color: #fff;
  font-size: clamp(3.4rem, 11vw, 8rem);
  letter-spacing: -.03em;
  margin: 0 0 1rem;
  line-height: .92;
  white-space: nowrap;   /* Y-Cycle wordmark stays on one line */
}
.hero h1 .y {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.18;
  max-width: 22ch;
  margin-bottom: 1.2rem;
  color: #eafcf8;
  text-wrap: balance;
}
.hero__support { color: rgba(233,246,244,.8); max-width: 46ch; font-size: 1.05rem; margin-bottom: 1.8rem; text-wrap: pretty; }

.hero__facts {
  display: flex; flex-wrap: wrap; gap: .55rem;
  margin-bottom: 2rem;
}
.hero__facts li {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 500;
  padding: .5rem .95rem; border-radius: 100px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.hero__facts svg { width: 15px; height: 15px; color: var(--teal); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Hero orbit visual */
.orbit-wrap {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  display: grid;
  place-items: center;
}
.orbit-core {
  position: absolute;
  width: 42%; aspect-ratio: 1;
  border-radius: 50%;
  display: grid; place-items: center;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(0,191,166,.5);
  box-shadow: 0 0 70px rgba(0,191,166,.45), 0 20px 50px -20px rgba(0,0,0,.6);
  z-index: 4;
}
.orbit-core span {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 9vw, 5rem);
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.orbit-logo { width: 86%; height: auto; display: block; }
.orbit-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.18);
}
.orbit-ring--2 { inset: 16%; border-color: rgba(0,191,166,.25); }
.orbit {
  position: absolute; inset: 0;
  transform-origin: center;
}
.orbit-item {
  --r: clamp(118px, 33vw, 205px);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(var(--a)) translateY(calc(-1 * var(--r))) rotate(calc(-1 * var(--a)));
}
@keyframes spin-rev { to { transform: rotate(-360deg); } }
.orbit-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  white-space: nowrap;
  padding: .5rem .85rem; border-radius: 100px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: 0 8px 20px -12px rgba(0,0,0,.6);
}
.orbit-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.orbit-item:nth-child(even) .orbit-chip i { background: var(--yellow); }
.orbit-item:nth-child(3n) .orbit-chip i { background: var(--green); }

.scroll-hint {
  position: absolute; left: 50%; bottom: 1.6rem; z-index: 4;
  translate: -50% 0;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.scroll-hint .mouse {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.5);
  border-radius: 14px; position: relative;
}
.scroll-hint .mouse::before {
  content: ""; position: absolute; left: 50%; top: 7px;
  width: 3px; height: 7px; border-radius: 3px; background: #fff;
  translate: -50% 0; animation: wheel 1.6s infinite;
}
@keyframes wheel { 0%{opacity:1;top:7px} 70%{opacity:0;top:16px} 100%{opacity:0} }

/* ---------------------------------------------------------------------
   7. Quick facts
--------------------------------------------------------------------- */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.fact {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.fact:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.fact__icon {
  width: 46px; height: 46px; margin: 0 auto .8rem;
  display: grid; place-items: center; border-radius: 14px;
  background: var(--surface-2); color: var(--teal-600);
}
.fact__icon svg { width: 22px; height: 22px; }
.fact__num { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--navy); line-height: 1; }
.fact__label { font-size: .8rem; color: var(--ink-faint); margin-top: .35rem; }

/* ---------------------------------------------------------------------
   8. Generic cards & grids
--------------------------------------------------------------------- */
.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__ico {
  width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--grad-primary); color: #06231f;
}
.card__ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.card__num {
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  color: var(--teal-600); margin-bottom: .6rem; display: block;
}

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

/* ---------------------------------------------------------------------
   9. About — cycle diagram
--------------------------------------------------------------------- */
.cycle {
  position: relative; aspect-ratio: 1; width: 100%; max-width: 460px; margin-inline: auto;
  display: grid; place-items: center;
}
.cycle__center {
  position: absolute; width: 40%; aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: var(--grad-navy); color: #fff; padding: 1rem;
  box-shadow: var(--shadow-lg);
}
.cycle__center b { font-family: var(--font-display); font-size: 1.1rem; display:block; }
.cycle__center small { font-size: .72rem; opacity: .8; }
.cycle__node {
  --r: clamp(110px, 30vw, 185px);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(var(--a)) translateY(calc(-1 * var(--r))) rotate(calc(-1 * var(--a)));
}
.cycle__pill {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  padding: .55rem .9rem; border-radius: 100px; white-space: nowrap;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); color: var(--navy);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.cycle__pill:hover { transform: scale(1.08); box-shadow: var(--shadow); }
.cycle__pill b { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-primary); color:#06231f; font-size: .72rem; }
.cycle__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.cycle__svg circle.track { fill: none; stroke: var(--line); stroke-width: 2; stroke-dasharray: 6 8; }
.cycle__svg circle.prog { fill: none; stroke: url(#cgrad); stroke-width: 3; stroke-linecap: round;
  animation: dash 6s var(--ease) infinite; }
@keyframes dash {
  0% { stroke-dasharray: 0 999; }
  60%,100% { stroke-dasharray: 999 0; }
}

/* ---------------------------------------------------------------------
   10. Objectives — orbit layout
--------------------------------------------------------------------- */
.obj-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.obj {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.4rem;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.obj::before {
  content: ""; position: absolute; right: -30px; top: -30px;
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--grad-primary); opacity: .12; transition: transform .4s var(--ease);
}
.obj:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.obj:hover::before { transform: scale(1.6); }
.obj__n {
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  color: var(--teal-600); position: relative;
}
.obj__ico { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--teal-600); margin: .3rem 0 .9rem; position: relative; }
.obj__ico svg { width: 22px; height: 22px; }
.obj h3 { font-size: 1.08rem; margin-bottom: .45rem; position: relative; }
.obj p { font-size: .9rem; color: var(--ink-soft); margin: 0; position: relative; }

/* ---------------------------------------------------------------------
   11. Learning journey — pathway
--------------------------------------------------------------------- */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.step {
  position: relative;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.3rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.step__badge {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: .9rem;
  background: var(--grad-navy); color: #fff;
}
.step__badge svg { width: 20px; height: 20px; }
.step__n { font-family: var(--font-display); font-weight: 700; color: var(--teal-600); font-size: .8rem; letter-spacing: .1em; }
.step h3 { font-size: 1.05rem; margin: .2rem 0 .4rem; }
.step p { font-size: .88rem; color: var(--ink-soft); margin: 0; }

/* ---------------------------------------------------------------------
   12. Activities
--------------------------------------------------------------------- */
.act-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.act {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1.3rem;
  display: flex; flex-direction: column; gap: .7rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s, background .3s;
}
.act:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent;
  background: var(--grad-navy); }
.act:hover h3, .act:hover .act__ico { color: #fff; }
.act:hover .act__ico { background: rgba(255,255,255,.14); }
.act__ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--teal-600); transition: background .3s, color .3s; }
.act__ico svg { width: 20px; height: 20px; }
.act h3 { font-size: 1rem; margin: 0; transition: color .3s; }

/* ---------------------------------------------------------------------
   13. Dark sections (digital innovation)
--------------------------------------------------------------------- */
.section--dark {
  background: var(--grad-navy); color: #eaf6f4;
  position: relative; overflow: hidden;
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead { color: rgba(234,246,244,.78); }
.section--dark .eyebrow { color: var(--teal); }
.net-bg { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.tool-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; position: relative; z-index: 2; }
.tool {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: 1.4rem;
  backdrop-filter: blur(6px);
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.tool:hover { transform: translateY(-5px); background: rgba(255,255,255,.1); border-color: rgba(0,191,166,.5); }
.tool__ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(0,191,166,.16); color: var(--teal); margin-bottom: .9rem; }
.tool__ico svg { width: 22px; height: 22px; }
.tool h3 { font-size: 1.02rem; color: #fff; margin-bottom: .35rem; }
.tool p { font-size: .85rem; color: rgba(234,246,244,.65); margin: 0; }

.note {
  border-radius: var(--radius); padding: 1.4rem 1.6rem;
  background: rgba(255,200,87,.12); border: 1px solid rgba(255,200,87,.35);
  display: flex; gap: .9rem; align-items: flex-start;
}
.note svg { width: 22px; height: 22px; color: var(--yellow); flex: 0 0 auto; margin-top: 2px; }
.note p { margin: 0; font-size: .95rem; color: #f4faf8; }

/* ---------------------------------------------------------------------
   14. Circular economy comparison
--------------------------------------------------------------------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.flow {
  border-radius: var(--radius); padding: 1.8rem; border: 1px solid var(--line);
  background: var(--surface);
}
.flow--linear { border-color: #f0c9c0; background: linear-gradient(180deg,#fff6f3,#fff); }
.flow--circular { border-color: rgba(0,191,166,.35); background: linear-gradient(180deg,#effbf8,#fff); }
.flow__tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.2rem;
  padding: .35rem .8rem; border-radius: 100px;
}
.flow--linear .flow__tag { background: #fbe4dd; color: #b4472e; }
.flow--circular .flow__tag { background: #d5f4ee; color: var(--teal-600); }
.flow__steps { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.flow__step {
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  padding: .55rem .9rem; border-radius: 12px;
  background: var(--surface-2); color: var(--navy);
}
.flow--circular .flow__step { background: #d5f4ee; color: #06544a; }
.flow__arrow { color: var(--ink-faint); display: inline-flex; }
.flow--circular .flow__arrow { color: var(--teal); }
.flow p { margin: 1.2rem 0 0; font-size: .92rem; color: var(--ink-soft); }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  font-size: .88rem; font-weight: 500;
  padding: .55rem 1rem; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--line);
  transition: transform .25s var(--ease), border-color .25s, color .25s;
}
.chip:hover { transform: translateY(-3px); border-color: var(--teal); color: var(--teal-600); }

/* ---------------------------------------------------------------------
   15. Impact — ripple
--------------------------------------------------------------------- */
.impact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.ripple {
  position: relative; aspect-ratio: 1; width: 100%; max-width: 440px; margin-inline: auto;
  display: grid; place-items: center;
}
.ripple span {
  position: absolute; border-radius: 50%; border: 1.5px solid rgba(0,191,166,.35);
  left: 50%; top: 50%; translate: -50% -50%;
  display: grid; place-items: start center;
}
.ripple span b {
  font-family: var(--font-display); font-size: .72rem; font-weight: 600;
  color: var(--teal-600); background: var(--bg); padding: 0 .5rem; margin-top: -.6em;
}
.ripple span:nth-child(1){ width: 20%; background: var(--grad-primary); border: none; }
.ripple span:nth-child(1) b { color:#06231f; background: transparent; margin: 0; align-self: center; }
.ripple span:nth-child(2){ width: 42%; animation: pulse 4s var(--ease) infinite; }
.ripple span:nth-child(3){ width: 64%; animation: pulse 4s var(--ease) .6s infinite; }
.ripple span:nth-child(4){ width: 84%; animation: pulse 4s var(--ease) 1.2s infinite; }
.ripple span:nth-child(5){ width: 100%; animation: pulse 4s var(--ease) 1.8s infinite; }
@keyframes pulse { 0%,100%{ opacity:.5 } 50%{ opacity:1; border-color: var(--teal) } }

.impact-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.impact-list li:last-child { border-bottom: none; }
.impact-list .ic { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 12px;
  display: grid; place-items: center; background: var(--surface-2); color: var(--teal-600); }
.impact-list .ic svg { width: 20px; height: 20px; }
.impact-list h4 { margin: 0 0 .15rem; font-size: 1rem; }
.impact-list p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

/* ---------------------------------------------------------------------
   16. Programme timeline
--------------------------------------------------------------------- */
.timeline { position: relative; }
.timeline__track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 1rem .2rem 1.6rem; scrollbar-width: thin;
}
.timeline__track::-webkit-scrollbar { height: 8px; }
.timeline__track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 100px; }
.tl-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(240px, 26vw, 300px);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.tl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal); }
.tl-card::before {
  content: ""; position: absolute; left: 1.5rem; top: -1rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--grad-primary); box-shadow: 0 0 0 5px var(--bg);
}
.tl-card--edge::before { background: var(--yellow); }
.tl-card__day {
  font-family: var(--font-display); font-weight: 700; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--teal-600); margin-bottom: .3rem;
}
.tl-card--edge .tl-card__day { color: #d99a1c; }
.tl-card h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.tl-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.tl-hint { display: flex; align-items: center; gap: .5rem; color: var(--ink-faint); font-size: .82rem; margin-top: .4rem; }
.tl-hint svg { width: 16px; height: 16px; }

/* ---------------------------------------------------------------------
   17. Location
--------------------------------------------------------------------- */
.loc-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 1rem; }
.ph {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(135deg, #cfe9e6, #eaf2f4);
  display: grid; place-items: center; color: var(--teal-600);
  border: 1px dashed rgba(0,191,166,.4);
}
.ph::after {
  content: attr(data-label); position: absolute; left: 1rem; bottom: .9rem;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--navy);
  background: rgba(255,255,255,.75); padding: .3rem .7rem; border-radius: 100px; backdrop-filter: blur(4px);
}
.ph svg { width: 34px; height: 34px; opacity: .5; }
.ph--wide { grid-column: span 2; }
.ph--tall { grid-row: span 2; }

.loc-info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.4rem; }
.loc-info .card { padding: 1.4rem; }
.loc-info h4 { display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-size: 1rem; margin-bottom: .4rem; }
.loc-info h4 svg { width: 18px; height: 18px; color: var(--teal-600); }
.loc-info p { font-size: .88rem; color: var(--ink-soft); margin: 0; }

/* ---------------------------------------------------------------------
   18. Participants
--------------------------------------------------------------------- */
.people { display: grid; grid-template-columns: repeat(4, 1fr) 1.2fr; gap: 1.2rem; align-items: stretch; }
.pcard {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pcard__flag { height: 6px; border-radius: 100px; margin-bottom: 1rem; }
.pcard h3 { font-size: 1.15rem; margin-bottom: .8rem; }
.pcard ul li { display: flex; justify-content: space-between; padding: .4rem 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.pcard ul li:last-child { border: none; }
.pcard ul li b { font-family: var(--font-display); color: var(--navy); }
.pcard__total {
  background: var(--grad-navy); color: #fff; display: grid; place-items: center; text-align: center;
}
.pcard__total .big { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,3rem); line-height: 1; margin-bottom: .3rem; }
.pcard__total p { color: rgba(255,255,255,.82); font-size: .95rem; margin: 0; }

/* flag gradients */
.fl-gr { background: linear-gradient(90deg,#0d5eaf,#0d5eaf 50%,#fff 50%); }
.fl-pt { background: linear-gradient(90deg,#046a38 0 40%,#da291c 40%); }
.fl-hu { background: linear-gradient(90deg,#cd2a3e,#fff,#436f4d); }
.fl-ro { background: linear-gradient(90deg,#002b7f,#fcd116,#ce1126); }

/* ---------------------------------------------------------------------
   19. Partners
--------------------------------------------------------------------- */
.partners { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.partner {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: start;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.partner:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.partner--host { border-color: rgba(0,191,166,.5); box-shadow: 0 0 0 1px rgba(0,191,166,.2); }
.partner--nologo { grid-template-columns: 1fr; }
.partner__logo--dark { background: #0a1622; border: 1px solid rgba(255,255,255,.1); padding: .4rem; }
.partner__logo--dark img { border-radius: 14px; }
.partner__logo {
  width: 80px; height: 80px; border-radius: 18px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--ink-faint); font-family: var(--font-display);
  font-size: .7rem; text-align: center; border: 1px dashed var(--line);
}
.partner__head { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-bottom: .2rem; }
.partner h3 { font-size: 1.12rem; margin: 0; }
.badge-host { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: 100px; background: var(--grad-primary); color: #06231f; }
.partner__country { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--teal-600); font-weight: 600; margin-bottom: .6rem; }
.partner p { font-size: .9rem; color: var(--ink-soft); margin: 0 0 .9rem; }
.partner__links { display: flex; gap: .5rem; flex-wrap: wrap; }
.partner__links a {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 500; padding: .4rem .8rem; border-radius: 100px;
  background: var(--surface-2); color: var(--ink-soft); transition: background .25s, color .25s;
}
.partner__links a:hover { background: var(--teal); color: #06231f; }
.partner__links svg { width: 14px; height: 14px; }

/* ---------------------------------------------------------------------
   20. Practical info accordion
--------------------------------------------------------------------- */
.acc { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.acc__item + .acc__item { border-top: 1px solid var(--line); }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 1.6rem; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy);
  transition: background .25s;
}
.acc__btn:hover { background: var(--surface-2); }
.acc__btn .ic { display: inline-flex; align-items: center; gap: .7rem; }
.acc__btn .ic svg { width: 20px; height: 20px; color: var(--teal-600); }
.acc__sign { width: 26px; height: 26px; flex: 0 0 auto; position: relative; }
.acc__sign::before, .acc__sign::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--teal-600);
  border-radius: 2px; transition: transform .3s var(--ease); }
.acc__sign::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.acc__sign::after  { width: 2px; height: 14px; transform: translate(-50%,-50%); }
.acc__item.open .acc__sign::after { transform: translate(-50%,-50%) scaleY(0); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__inner { padding: 0 1.6rem 1.5rem; color: var(--ink-soft); font-size: .96rem; }
.acc__inner ul.bullet { display: grid; gap: .4rem; }
.acc__inner ul.bullet li { display: flex; gap: .6rem; }
.acc__inner ul.bullet li::before { content: ""; width: 7px; height: 7px; margin-top: .55rem; flex: 0 0 auto;
  border-radius: 50%; background: var(--teal); }
.placeholder-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #b07a12; background: rgba(255,200,87,.22); border: 1px solid rgba(255,200,87,.5);
  padding: .15rem .55rem; border-radius: 100px; margin-left: .4rem; vertical-align: middle;
}
.bring-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .5rem 1.4rem; margin-top: .5rem; }
.acc__q { font-family: var(--font-display); font-weight: 600; color: var(--navy); margin: 1.1rem 0 .3rem; }
.reimb__title { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1rem; margin: 1.3rem 0 .7rem; }
.reimb { display: grid; gap: .5rem; margin: 0 0 1rem; }
.reimb li { display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem .95rem; border-radius: 12px; background: var(--surface-2); }
.reimb__c { display: inline-flex; align-items: center; gap: .6rem; font-weight: 500; color: var(--navy); }
.reimb .fl { width: 24px; height: 16px; border-radius: 3px; flex: 0 0 auto; box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); }
.reimb b { font-family: var(--font-display); color: var(--teal-600); font-weight: 700; white-space: nowrap; }
.reimb__note { font-size: .85rem; color: var(--ink-faint); margin: 0; }
.acc__link { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1rem;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--teal-600);
  padding: .55rem .95rem; border-radius: 100px; background: #d5f4ee; transition: background .25s, transform .25s; }
.acc__link:hover { background: #c2efe6; transform: translateY(-2px); }
.acc__link svg { width: 15px; height: 15px; }
/* visible inline content links (cards, accordion answers) */
.acc__inner a:not(.acc__link),
.loc-info .card p a {
  color: var(--teal-600); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px;
  transition: color .2s;
}
.acc__inner a:not(.acc__link):hover,
.loc-info .card p a:hover { color: var(--teal); }

/* ---------------------------------------------------------------------
   21. Erasmus / Youthpass
--------------------------------------------------------------------- */
.eu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.eu-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.eu-logos { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.4rem; }
.logo-ph {
  height: 60px; min-width: 120px; padding: 0 1.2rem; border-radius: 12px;
  display: grid; place-items: center; text-align: center;
  background: var(--surface-2); border: 1px dashed var(--line);
  font-size: .72rem; color: var(--ink-faint); font-family: var(--font-display); font-weight: 600;
}

/* ---------------------------------------------------------------------
   22. FAQ
--------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }

/* ---------------------------------------------------------------------
   23. Contact
--------------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
.contact-cards { display: grid; gap: 1rem; }
.ccard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start;
}
.ccard .ic { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-primary); color: #06231f; }
.ccard .ic svg { width: 22px; height: 22px; }
.ccard h4 { margin: 0 0 .2rem; font-size: 1rem; }
.ccard p { margin: 0; font-size: .88rem; color: var(--ink-soft); }

form.cform { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,4vw,2.4rem); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .4rem; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .98rem; color: var(--ink);
  padding: .85rem 1rem; border-radius: 12px; border: 1.5px solid var(--line); background: var(--off-white);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,191,166,.14); }
.field textarea { min-height: 130px; resize: vertical; }
.field .err { display: none; color: #c0392b; font-size: .8rem; margin-top: .35rem; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e07a6a; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .82rem; color: var(--ink-faint); margin-top: .8rem; }
.form-success {
  display: none; margin-top: 1rem; padding: 1rem 1.2rem; border-radius: 12px;
  background: rgba(102,209,122,.16); border: 1px solid rgba(102,209,122,.5); color: #1a6b33; font-size: .92rem;
}
.form-success.show { display: block; }

/* ---------------------------------------------------------------------
   24. Final CTA
--------------------------------------------------------------------- */
.final {
  background: var(--grad-navy); color: #fff; text-align: center; position: relative; overflow: hidden;
  border-radius: var(--radius-xl); padding: clamp(3rem,7vw,5.5rem) clamp(1.5rem,5vw,4rem);
}
.final__rings { position: absolute; inset: 0; opacity: .35; pointer-events: none; }
.final h2 { color: #fff; font-size: clamp(2rem,5vw,3.4rem); position: relative; }
.final p { color: rgba(234,246,244,.85); max-width: 52ch; margin: 1rem auto 2rem; position: relative; font-size: 1.1rem; }
.final__cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------------------------------------------------------------------
   25. Footer
--------------------------------------------------------------------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding: 4rem 0 2rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; letter-spacing: .04em; }
.footer a { color: rgba(255,255,255,.72); transition: color .2s; font-size: .9rem; }
.footer a:hover { color: var(--teal); }
.footer li { margin-bottom: .5rem; font-size: .9rem; }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer__blurb { font-size: .9rem; max-width: 34ch; }
.footer__logos { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.2rem; }
.footer__logos .logo-ph { height: 48px; min-width: 92px; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.6); }
.social { display: flex; gap: .5rem; }
.social a { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); transition: background .25s, transform .25s; }
.social a:hover { background: var(--teal); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; }
.footer__meta { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }
.footer__meta a { text-decoration: underline; text-underline-offset: 3px; }
.disclaimer {
  margin-top: 1.5rem; padding: 1.2rem 1.4rem; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  font-size: .78rem; line-height: 1.6; color: rgba(255,255,255,.6);
  display: flex; gap: 1rem; align-items: flex-start;
}
.disclaimer .eu-flag { flex: 0 0 auto; width: 54px; height: 36px; border-radius: 6px;
  background: #003399; display: grid; place-items: center; }
.disclaimer .eu-flag span { color: #FFCC00; font-size: 1.2rem; letter-spacing: -2px; }

/* ---------------------------------------------------------------------
   25b. Language switcher
--------------------------------------------------------------------- */
.lang {
  position: relative;
  font-family: var(--font-display);
}
.lang__btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .85rem;
  padding: .5rem .8rem; border-radius: 100px;
  color: var(--navy);
  background: var(--surface); border: 1.5px solid var(--line);
  transition: border-color .25s, background .25s, color .25s;
}
.lang__btn:hover { border-color: var(--teal); }
.lang__btn svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.lang.open .lang__btn svg.chev { transform: rotate(180deg); }
.lang__flag { font-size: 1rem; line-height: 1; }
.nav.on-dark:not(.scrolled) .lang__btn {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); color: #fff;
}
.lang__menu {
  position: absolute; right: 0; top: calc(100% + .5rem);
  min-width: 180px; padding: .4rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow);
  display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 120;
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: none; }
.lang__menu button {
  display: flex; align-items: center; gap: .6rem;
  width: 100%; text-align: left;
  font-family: var(--font-body); font-size: .9rem; font-weight: 500; color: var(--ink);
  padding: .6rem .7rem; border-radius: 11px;
  transition: background .2s;
}
.lang__menu button:hover { background: var(--surface-2); }
.lang__menu button[aria-current="true"] { background: var(--surface-2); color: var(--teal-600); font-weight: 600; }
.lang__menu button[aria-current="true"]::after { content: "✓"; margin-left: auto; color: var(--teal-600); }
.lang__flag { display: inline-block; }

/* mobile language row inside the menu */
.mobile-lang { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; }
.mobile-lang button {
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  color: #fff; padding: .5rem .9rem; border-radius: 100px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  display: inline-flex; align-items: center; gap: .4rem;
}
.mobile-lang button[aria-current="true"] { background: var(--teal); color: #06231f; border-color: transparent; }

/* ---------------------------------------------------------------------
   25c. Real imagery — location, accommodation, logos
--------------------------------------------------------------------- */
.loc-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 21 / 9; margin-bottom: 1.6rem; box-shadow: var(--shadow);
}
.loc-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.loc-banner:hover img { transform: scale(1.05); }
.loc-banner__cap {
  position: absolute; inset: auto 0 0 0; padding: 2rem 1.8rem 1.5rem;
  background: linear-gradient(transparent, rgba(11,30,48,.85));
  color: #fff; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.loc-banner__cap h3 { color: #fff; margin: 0; font-size: clamp(1.3rem, 3vw, 1.9rem); }
.loc-banner__cap p { margin: .25rem 0 0; color: rgba(255,255,255,.85); font-size: .95rem; }
.loc-banner__pin {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  padding: .5rem .9rem; border-radius: 100px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(6px);
}
.loc-banner__pin svg { width: 15px; height: 15px; }

figure.media { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--surface-2); border: 1px solid var(--line); }
figure.media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform .8s var(--ease); }
figure.media:hover img { transform: scale(1.05); }
figure.media figcaption { padding: .8rem 1rem; font-size: .85rem; color: var(--ink-soft); font-weight: 500; }

.stay { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; margin-top: 2.4rem; }
.stay__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stay__note {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem;
  font-size: .82rem; font-weight: 600; color: var(--teal-600);
  background: #d5f4ee; padding: .45rem .9rem; border-radius: 100px;
}
.stay__note svg { width: 15px; height: 15px; }

.logo-img {
  height: 58px; width: auto; max-width: 160px; object-fit: contain;
  background: #fff; border-radius: 12px; padding: .55rem .9rem;
  border: 1px solid var(--line);
}
.footer__logos .logo-img { height: 50px; }
.partner__logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 16px; }
.partner__logo.has-img { background: #fff; border-style: solid; padding: .5rem; }

/* ---------------------------------------------------------------------
   26. Reveal-on-scroll
--------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .40s; }

/* progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 101;
  background: var(--grad-primary); transition: width .1s linear; }

/* skip link */
.skip { position: absolute; left: -999px; top: 8px; z-index: 200; background: var(--navy); color:#fff;
  padding: .6rem 1rem; border-radius: 8px; }
.skip:focus { left: 12px; }

/* ---------------------------------------------------------------------
   27. Responsive
--------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .facts-grid { grid-template-columns: repeat(3, 1fr); }
  .obj-grid, .journey, .act-grid, .tool-grid, .loc-gallery, .loc-info { grid-template-columns: repeat(2, 1fr); }
  .people { grid-template-columns: repeat(2, 1fr); }
  .partners, .eu-grid, .compare { grid-template-columns: 1fr; }
  .nav__links, .nav__cta, .nav .lang { display: none; }
  .nav__toggle { display: block; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero__badge, .hero__facts { justify-content: center; }
  .hero__tagline, .hero__support { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .orbit-wrap { max-width: 340px; }
  .split, .impact, .contact { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .obj-grid, .journey, .act-grid, .tool-grid, .loc-gallery, .loc-info, .people { grid-template-columns: 1fr; }
  .ph--wide, .ph--tall { grid-column: auto; grid-row: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .partner { grid-template-columns: 1fr; }
  .bring-grid { grid-template-columns: 1fr; }
  .compare .flow__steps { font-size: .85rem; }
  .stay { grid-template-columns: 1fr; }
  .loc-banner { aspect-ratio: 4 / 3; }
  .loc-banner__cap { padding: 1.4rem 1.2rem 1.1rem; }
}

/* ---------------------------------------------------------------------
   28. Reduced motion
--------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .orbit, .orbit-item, .hero__rings span, .hero__mesh, .cycle__svg circle.prog, .ripple span { animation: none !important; }
}
