/* ╔══════════════════════════════════════════════════════════════╗
   ║  ZUD CEITI 2025 — Style System                               ║
   ║  Aesthetic: Dark editorial luxury · Gold accents             ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ─── TOKENS ──────────────────────────────────────────────────── */
:root {
  --bg:        #FAFAF8;
  --bg-2:      #F3F1EC;
  --bg-3:      #EAE7E0;
  --surface:   #FFFFFF;
  --surface-2: #F7F5F0;
  --border:    rgba(26,41,58,.12);
  --border-2:  rgba(26,41,58,.08);

  --navy:   #1A293A;
  --blue:   #1A293A;
  --red:    #DF163C;
  --teal:   #20A4A2;
  --gold:   #DF163C;
  --gold-2: #20A4A2;

  --text:        #1A293A;
  --text-2:      rgba(26,41,58,.65);
  --text-3:      rgba(26,41,58,.38);
  --text-accent: var(--gold);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;

  --radius:   12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --ease-smooth: cubic-bezier(.25,.46,.45,.94);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --ease-out:    cubic-bezier(.16,1,.3,1);

  --nav-h: 72px;
  --section-pad: clamp(5rem, 10vw, 9rem);

  --shadow-card: 0 4px 24px rgba(0,0,0,.45), 0 1px 3px rgba(0,0,0,.3);
  --shadow-gold: 0 0 40px rgba(240,165,0,.15);
}

/* ─── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; }
.mono { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }

/* ─── CUSTOM CURSOR ───────────────────────────────────────────── */
.cursor, .cursor-follower { position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); }
.cursor { width: 8px; height: 8px; background: var(--navy); transition: transform .1s; }
.cursor-follower { width: 36px; height: 36px; border: 1.5px solid rgba(26,41,58,.35); transition: transform .35s var(--ease-smooth), opacity .3s; }
body:hover .cursor-follower { opacity: 1; }
a:hover ~ #cursorFollower, button:hover ~ #cursorFollower { transform: translate(-50%,-50%) scale(1.6); }

/* ─── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

/* ─── REVEAL ANIMATIONS ───────────────────────────────────────── */
/* Implicit: toate elementele sunt VIZIBILE                         */
/* Clasa .js-reveal pe body (adăugată de JS) activează animațiile  */

.js-reveal .reveal-up,
.js-reveal .reveal-left,
.js-reveal .reveal-right {
  opacity: 0;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.js-reveal .reveal-up    { transform: translateY(30px); }
.js-reveal .reveal-left  { transform: translateX(-40px); }
.js-reveal .reveal-right { transform: translateX(40px); }
.revealed                { opacity: 1 !important; transform: none !important; }

/* Hero: animație CSS pură — nu depinde de JS */
@keyframes fadeUp    { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: none; } }
@keyframes fadeRight { from { opacity:0; transform: translateX(40px); } to { opacity:1; transform: none; } }

.hero .reveal-up,
.hero .reveal-left  { animation: fadeUp    .75s var(--ease-out) both; animation-delay: var(--d, 0s); }
.hero .reveal-right { animation: fadeRight .75s var(--ease-out) both; animation-delay: var(--d, 0s); }

/* ─── UTILS ───────────────────────────────────────────────────── */
.mt-4 { margin-top: 1.5rem; }
.br-desktop { display: block; }

/* ═══════════════════════════════════════════════════════════════ */
/* NAVIGATION                                                       */
/* ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(250,250,248,.6);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-2);
  transition: background .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(250,250,248,.95);
  box-shadow: 0 1px 0 var(--border-2), 0 4px 24px rgba(26,41,58,.06);
}
.nav__inner {
  max-width: 1280px; margin: 0 auto;
  height: 100%; padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav__logo {
  flex-shrink: 0;
  color: var(--text);
  transition: color .2s;
}
.nav__logo:hover { color: var(--gold); }
.nav__logo-svg { height: 28px; width: auto; }
.nav__links {
  display: flex; gap: .25rem; margin-left: auto;
}
.nav__link {
  padding: .45rem .9rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--text); background: rgba(26,41,58,.06); }
.nav__cta {
  flex-shrink: 0;
  padding: .5rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  border-radius: 7px;
  transition: background .2s, transform .15s var(--ease-bounce);
}
.nav__cta:hover { background: var(--blue); transform: scale(1.04); }
.nav__burger {
  display: none; flex-direction: column; gap: 6px;
  width: 32px; padding: 4px 0; cursor: pointer;
}
.nav__burger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--text);
  transition: transform .3s var(--ease-smooth), opacity .2s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-8px) rotate(-45deg); }

.nav__drawer {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  background: rgba(250,250,248,.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-2);
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease-out), padding .35s var(--ease-out);
}
.nav__drawer.open {
  max-height: 480px;
  padding: 1.5rem 2rem 2.5rem;
}
.nav__drawer-link {
  padding: .9rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-2);
  transition: color .2s;
}
.nav__drawer-link:last-of-type { border-bottom: none; }
.nav__drawer-link:hover { color: var(--red); }

/* ─── NAV LOGO IMG ────────────────────────────────── */
.nav__logo-img { height: 36px; width: auto; display: block; }

/* ═══════════════════════════════════════════════════════════════ */
/* HERO — Split layout                                             */
/* ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 0 7rem;
  background: var(--bg);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,41,58,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,41,58,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Split wrapper */
.hero__split {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  flex: 1;
}

/* Left: text */
.hero__content {
  display: flex; flex-direction: column; gap: 1.5rem;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  color: var(--red);
  font-size: .7rem;
  letter-spacing: .18em;
}
.hero__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}
.hero__dot:last-child { animation-delay: .5s; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.02em;
  display: flex; flex-direction: column;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  font-style: italic;
  color: var(--red);
  position: relative;
}

.hero__sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: var(--text-2);
  max-width: 460px;
  line-height: 1.75;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__meta {
  display: inline-flex; align-items: center; gap: 1.25rem;
  padding: .75rem 1.5rem;
  background: rgba(26,41,58,.05);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-size: .82rem;
  color: var(--text-2);
  width: fit-content;
}
.hero__meta-item { display: flex; align-items: center; gap: .4rem; }
.hero__meta-icon { width: 15px; height: 15px; opacity: .45; flex-shrink: 0; }
.hero__meta-sep { width: 1px; height: 14px; background: var(--border); }

/* Right: photo */
.hero__photo-wrap {
  position: relative;
}
.hero__photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,41,58,.18), 0 4px 12px rgba(26,41,58,.1);
  aspect-ratio: 4/3;
}
.hero__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s var(--ease-smooth);
}
.hero__photo-frame:hover .hero__photo { transform: scale(1.03); }

/* Red accent border top */
.hero__photo-frame::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--teal));
  z-index: 2;
}

/* Badge over photo */
.hero__photo-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: rgba(26,41,58,.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .65rem 1rem;
  display: flex; flex-direction: column; gap: .15rem;
  z-index: 2;
}
.hero__photo-badge .mono {
  color: var(--teal);
  font-size: .6rem;
  letter-spacing: .14em;
}
.hero__photo-badge span:last-child {
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
}

/* Decorative element behind photo */
.hero__photo-deco {
  position: absolute;
  top: 1.5rem; right: -1.5rem;
  width: 100%; height: 100%;
  border: 2px solid rgba(223,22,60,.15);
  border-radius: var(--radius-xl);
  z-index: -1;
}

/* Counter strip */
.hero__counter-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex; justify-content: center;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-2);
  padding: 1.25rem 2rem;
  gap: 0;
}
.counter-item {
  flex: 1; max-width: 200px;
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  padding: 0 1.5rem;
}
.counter__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.counter__label {
  font-size: .68rem;
  color: var(--text-3);
  text-align: center;
  letter-spacing: .03em;
}
.counter-sep { width: 1px; background: var(--border-2); align-self: stretch; margin: .25rem 0; }

/* ─── FOOTER LOGO IMG ─────────────────────────────── */
.footer__logo-img {
  height: 40px; width: auto;
  /*filter: brightness(0) invert(1);
  opacity: .9;*/
  margin-bottom: .75rem;
  display: block;
}


/* ═══════════════════════════════════════════════════════════════ */
/* BUTTONS                                                          */
/* ═══════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  border-radius: 9px;
  transition: background .2s, transform .2s var(--ease-bounce), box-shadow .2s;
  box-shadow: 0 4px 20px rgba(26,41,58,.2);
}
.btn-primary:hover {
  background: var(--red);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(223,22,60,.25);
}
.btn-primary svg { transition: transform .2s; }
.btn-primary:hover svg { transform: translateY(3px); }
.btn--large { padding: 1rem 2.25rem; font-size: 1rem; }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: .75rem 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: 9px;
  transition: color .2s, border-color .2s, transform .2s;
}
.btn-ghost:hover { color: var(--navy); border-color: var(--navy); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center;
  padding: .75rem 1.75rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 9px;
  transition: background .2s, color .2s, transform .2s var(--ease-bounce);
}
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════ */
/* SECTIONS (shared)                                               */
/* ═══════════════════════════════════════════════════════════════ */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--bg-2); }
.section__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
}
.section__inner--wide { max-width: 1320px; }
.section__header {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section__tag { color: var(--red); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.section__title em {
  font-style: italic;
  color: var(--teal);
  -webkit-text-fill-color: var(--teal);
}

/* ═══════════════════════════════════════════════════════════════ */
/* PROGRAM                                                          */
/* ═══════════════════════════════════════════════════════════════ */
.program__timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.program__card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
  cursor: default;
}
.program__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.program__card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(26,41,58,.1); border-color: var(--border); }
.program__card:hover::before { transform: scaleX(1); }

.program__card-num {
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: .15em;
  margin-bottom: 1.25rem;
}
.program__card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .65rem;
  color: var(--teal);
  background: rgba(0,130,155,.12);
  border: 1px solid rgba(0,130,155,.25);
  border-radius: 4px;
  padding: .2rem .6rem;
  margin-bottom: .75rem;
  letter-spacing: .08em;
}
.program__card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.program__card-desc { font-size: .9rem; color: var(--text-2); line-height: 1.7; }
.program__card-icon {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px;
  color: var(--border);
}

/* ═══════════════════════════════════════════════════════════════ */
/* WHY US — dark editorial                                          */
/* ═══════════════════════════════════════════════════════════════ */
.why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
/* Subtle background texture */
.why::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(32,164,162,.08), transparent),
    radial-gradient(ellipse 40% 60% at 85% 20%, rgba(223,22,60,.05), transparent);
  pointer-events: none;
}
/* Overwrite section title/tag colors for dark bg */
.why .section__tag  { color: var(--teal); }
.why .section__title { color: #fff; }
.why .section__title em { color: var(--teal); -webkit-text-fill-color: var(--teal); }

/* ── Header row ─────────────────────────────────── */
.why__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.why__header-left {
  display: flex; flex-direction: column; gap: 1.25rem;
  max-width: 560px;
}
.why__desc { color: rgba(255,255,255,.55); line-height: 1.75; font-size: .95rem; }

/* Redefine btn-outline on dark bg */
.why .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.25);
  width: fit-content;
}
.why .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
  color: #fff;
  transform: translateY(-2px);
}

.why__header-right { flex-shrink: 0; }
.why__big-stat {
  display: flex; align-items: baseline; gap: 1rem;
}
.why__big-num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.2);
  letter-spacing: -.04em;
}
.why__big-label {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  line-height: 1.4;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

/* ── Features grid ──────────────────────────────── */
.why__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.why__feature {
  display: grid;
  grid-template-columns: 2.5rem 2.75rem 1fr;
  align-items: start;
  gap: 1rem;
  padding: 2rem 1.5rem 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .3s;
  cursor: default;
}
/* Remove right border on every 3rd item */
.why__feature:nth-child(3n) { border-right: none; padding-right: 0; }
/* Remove bottom border on last row */
.why__feature:nth-child(n+4) { border-bottom: none; }

.why__feature:hover {
  background: rgba(255,255,255,.03);
}

.why__feature-num {
  font-size: .65rem;
  color: var(--red);
  letter-spacing: .12em;
  padding-top: .15rem;
  opacity: .8;
}
.why__feature-icon {
  width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: rgba(255,255,255,.6);
  flex-shrink: 0;
  transition: background .3s, color .3s, border-color .3s;
}
.why__feature-icon svg { width: 18px; height: 18px; }
.why__feature:hover .why__feature-icon {
  background: rgba(32,164,162,.15);
  border-color: rgba(32,164,162,.4);
  color: var(--teal);
}
.why__feature-body { display: flex; flex-direction: column; gap: .35rem; }
.why__feature-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
}
.why__feature-body p {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════ */
/* SPECIALTIES                                                      */
/* ═══════════════════════════════════════════════════════════════ */
.specs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.spec-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: .8rem;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
  group: true;
}
.spec-card__accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: attr(data-color);
  transition: height .3s;
}
.spec-card[data-color="#1550C0"] .spec-card__accent { background: linear-gradient(90deg, #1A293A, #20A4A2); }
.spec-card[data-color="#00829B"] .spec-card__accent { background: linear-gradient(90deg, #20A4A2, #1A293A); }
.spec-card[data-color="#F0A500"] .spec-card__accent { background: linear-gradient(90deg, #DF163C, #20A4A2); }

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  border-color: var(--border);
}
.spec-card__icon {
  width: 48px; height: 48px;
  color: var(--text-3);
  transition: color .2s;
}
.spec-card:hover .spec-card__icon { color: var(--text-2); }
.spec-card__tag {
  color: var(--text-3);
  font-size: .65rem;
  letter-spacing: .12em;
}
.spec-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
.spec-card__qual {
  font-size: .8rem;
  color: var(--text-3);
}
.spec-card__qual strong { color: var(--text-2); }
.spec-card__list {
  display: flex; flex-direction: column; gap: .35rem;
  margin-top: .25rem;
}
.spec-card__list li {
  font-size: .85rem;
  color: var(--text-2);
  padding-left: 1rem;
  position: relative;
}
.spec-card__list li::before {
  content: '';
  position: absolute; left: 0; top: .55em;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
}
.spec-card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: auto;
  padding-top: 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap .2s;
  border-top: 1px solid var(--border-2);
}
.spec-card__link:hover { gap: .65rem; }

/* ═══════════════════════════════════════════════════════════════ */
/* CTA BAND                                                         */
/* ═══════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--navy);
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(32,164,162,.25), transparent);
}
.cta-band__inner {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(3rem,6vw,5rem) 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
}
.cta-band h2 em { font-style: italic; color: var(--teal); }
.cta-band p { color: rgba(255,255,255,.65); margin-top: .75rem; }
.cta-band .btn-primary { background: var(--red); color: #fff; }
.cta-band .btn-primary:hover { background: #fff; color: var(--navy); }

/* ═══════════════════════════════════════════════════════════════ */
/* MAP / LOCATION                                                   */
/* ═══════════════════════════════════════════════════════════════ */
.map-section__split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.map-section__info {
  display: flex; flex-direction: column; gap: 2rem;
}
.map-info__item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.map-info__icon { font-size: 1.25rem; flex-shrink: 0; }
.map-info__item strong { display: block; font-weight: 600; margin-bottom: .2rem; }
.map-info__item p { color: var(--text-2); font-size: .9rem; }
.map-info__item a { color: var(--gold); }
.map-info__item a:hover { text-decoration: underline; }

.map-section__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}
.map-section__frame iframe {
  width: 100%; height: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════ */
/* FOOTER                                                           */
/* ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
}
.footer__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer__logo-img {
  height: 40px; width: auto;
  /*filter: brightness(0) invert(1);
  opacity: .9;*/
  margin-bottom: .75rem;
  display: block;
}
.footer__brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}
.footer__address {
  margin-top: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.3);
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--teal);
  margin-bottom: 1rem;
}
.footer__links, .footer__contact, .footer__event {
  display: flex; flex-direction: column; gap: .6rem;
}
.footer__link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer__link svg { opacity: .6; flex-shrink: 0; }
.footer__link:hover { color: #fff; }
.footer__event-date {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--red);
}
.footer__event-date span {
  font-size: 1.25rem;
  vertical-align: super;
  margin-left: .1rem;
}
.footer__event-time {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
}
.footer__event p:last-child {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  margin-top: .25rem;
}
.footer__bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════════════════════════════ */
/* KEYFRAMES                                                        */
/* ═══════════════════════════════════════════════════════════════ */
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes bobDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ═══════════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                       */
/* ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero__split { grid-template-columns: 1fr; gap: 3rem; }
  .hero__photo-wrap { max-width: 560px; margin: 0 auto; width: 100%; }
  .hero__photo-deco { display: none; }
  .hero__content { align-items: center; text-align: center; }
  .hero__title { align-items: center; }
  .hero__meta { align-self: center; }
  .hero__actions { justify-content: center; }
  .why__header { grid-template-columns: 1fr; gap: 1.5rem; }
  .why__header-right { display: none; }
  .why__features { grid-template-columns: 1fr 1fr; }
  .why__feature:nth-child(3n)   { border-right: 1px solid rgba(255,255,255,.07); }
  .why__feature:nth-child(2n)   { border-right: none; }
  .why__feature:nth-child(n+5)  { border-bottom: none; }
  .why__feature:nth-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,.07); }
  .map-section__split { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__drawer { display: flex; } /* always in flex context, max-height controls visibility */
  .br-desktop { display: none; }
  .why__features { grid-template-columns: 1fr; }
  .why__feature { border-right: none !important; padding-right: 0; }
  .why__feature:nth-child(n+6) { border-bottom: none; }
  .why__feature:nth-child(-n+5) { border-bottom: 1px solid rgba(255,255,255,.07) !important; }
  .hero__counter-strip { flex-wrap: wrap; gap: 1rem; padding: 1rem; }
  .counter-sep { display: none; }
  .counter-item { flex: 0 0 calc(50% - .5rem); max-width: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: .5rem; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

@media (max-width: 480px) {
  .hero__meta { flex-direction: column; border-radius: var(--radius); padding: 1rem 1.25rem; }
  .hero__meta-sep { width: 100%; height: 1px; }
  .specs__grid { grid-template-columns: 1fr; }
  .program__timeline { grid-template-columns: 1fr; }
}
