/* ═══════════════════════════════════════════════
   MULEUM — Shared Stylesheet
   Fonts: Bebas Neue (headings) + DM Sans (body)
   ═══════════════════════════════════════════════ */


:root {
  --white:          #FFFFFF;
  --off-white:      #F7F8F6;
  --light-surface:  #EEF1EE;
  --dark-blue:      #2F3543;
  --dark-green:     #1B8F58;
  --light-green:    #A0CBBC;
  --text-primary:   #2F3543;
  --text-secondary: #5A6370;
  --text-muted:     #8F9BA8;
  --border:         rgba(47, 53, 67, 0.1);
  --border-medium:  rgba(47, 53, 67, 0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

/* ════════════════ NAV ════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
nav.at-top  { background: transparent; }
nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo img { height: 54px; width: auto; display: block; }
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem; font-weight: 500;
  color: var(--text-secondary); text-decoration: none;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--dark-green); }
.nav-cta {
  background: var(--dark-green); color: #FFFFFF;
  padding: 0.5rem 1.25rem; border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem; font-weight: 700; text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(27,143,88,0.25);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s, background 0.2s;
}
.nav-cta:hover  { transform: translateY(-2px); background: #16754A; box-shadow: 0 6px 24px rgba(27,143,88,0.35); }
.nav-cta:active { transform: scale(0.98); }
.nav-cta:focus-visible { outline: 2px solid var(--dark-green); outline-offset: 4px; border-radius: 6px; }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 0; gap: 5px; border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(47,53,67,0.08); }
.hamburger:focus-visible { outline: 2px solid var(--dark-green); outline-offset: 2px; border-radius: 8px; }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #000;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s, background 0.2s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.has-video-hero nav.at-top .hamburger span,
.has-dark-hero  nav.at-top .hamburger span { background: rgba(255,255,255,0.9); }
nav.scrolled .hamburger span { background: #000; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .lang-switcher { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .lang-dropdown { display: none; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  padding: 96px 8% 48px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-links { list-style: none; display: flex; flex-direction: column; gap: 0; flex: 1; }
.mobile-menu-links li { border-bottom: 1px solid var(--border); }
.mobile-menu-links a {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.9rem 0;
  letter-spacing: 0.03em;
  transition: color 0.2s, padding-left 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible { color: var(--dark-green); padding-left: 0.5rem; }
.mobile-menu-cta {
  display: block;
  margin-top: 2rem;
  background: var(--dark-green); color: #fff;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(27,143,88,0.3);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
}
.mobile-menu-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(27,143,88,0.4); }
.mobile-menu-cta:active { transform: scale(0.98); }

/* Language inside mobile menu */
.mobile-menu-lang {
  display: flex; gap: 0.5rem;
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.mobile-menu-lang .lang-option {
  flex: 1; cursor: pointer;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-medium); border-radius: 8px;
  background: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.mobile-menu-lang .lang-option:hover { border-color: var(--dark-blue); color: var(--dark-blue); }
.mobile-menu-lang .lang-option.active {
  color: var(--dark-green); border-color: var(--dark-green);
  background: rgba(160,203,188,0.12); text-decoration: none;
}

/* ════════════════ BUTTONS ════════════════ */
.btn-primary {
  background: var(--dark-green); color: #FFFFFF;
  padding: 0.9375rem 2rem; border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 0.9375rem; text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(27,143,88,0.3);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: none; cursor: pointer;
}
.btn-primary:hover  { transform: translateY(-2px); background: #16754A; box-shadow: 0 8px 28px rgba(27,143,88,0.4); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:focus-visible { outline: 2px solid var(--dark-green); outline-offset: 4px; border-radius: 7px; }

.btn-ghost {
  background: transparent; color: var(--text-secondary);
  padding: 0.9375rem 2rem; border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.9375rem; text-decoration: none;
  border: 1px solid var(--border-medium);
  transition: border-color 0.2s, color 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-ghost:hover  { border-color: var(--dark-blue); color: var(--dark-blue); transform: translateY(-2px); }
.btn-ghost:focus-visible { outline: 2px solid var(--dark-blue); outline-offset: 4px; }

.btn-outline-green {
  background: transparent; color: var(--dark-green);
  padding: 0.9375rem 2rem; border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 0.9375rem; text-decoration: none;
  border: 1.5px solid var(--dark-green);
  transition: background 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline-green:hover { background: rgba(160,203,188,0.15); transform: translateY(-2px); }

a.link-green, a.link-green:visited { color: var(--dark-green); }

/* ════════════════ UTILITIES ════════════════ */
.info-badge {
  display: inline-flex; align-items: center;
  background: rgba(160,203,188,0.15);
  border: 1px solid rgba(27,143,88,0.2);
  border-radius: 8px;
  padding: 0.5rem 1.1rem;
  font-size: 0.8125rem; color: var(--dark-green);
  letter-spacing: 0.03em;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
}

/* Standard content width used by every section */
.section-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.section-heading {
  text-align: left;
  max-width: 1060px;
  margin: 0 auto 4rem;
}
.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--dark-blue);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.section-heading p {
  font-size: 1.0625rem; line-height: 1.7;
  color: var(--text-secondary);
  font-family: 'DM Sans', sans-serif; font-weight: 400;
}

/* Scroll animation */
.anim-in {
  opacity: 1; filter: none; transform: none;
}
.anim-in.d1 { transition-delay: 0.1s; }
.anim-in.d2 { transition-delay: 0.25s; }
.anim-in.d3 { transition-delay: 0.4s; }
.anim-in.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* ════════════════ LOGO TICKER ════════════════ */
.logo-ticker-strip {
  background: var(--dark-blue);
  padding: 2rem 5%;
}
.logo-ticker-label {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.logo-ticker-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1060px;
  margin: 0 auto;
}
.logo-ticker-item {
  display: flex; align-items: center; justify-content: center;
  padding: 0.75rem 2.5rem 0.75rem 0; white-space: nowrap;
}
.logo-wordmark {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem; font-weight: 700;
  color: #FFFFFF; letter-spacing: -0.01em;
  transition: color 0.2s; user-select: none;
}
.logo-ticker-item:hover .logo-wordmark { color: rgba(255,255,255,0.85); }

/* ════════════════ CONTACT FORM ════════════════ */
.contact-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 6rem 5%;
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(160,203,188,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; position: relative; z-index: 2;
}
@media (min-width: 768px) { .contact-inner { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact-text h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--dark-blue); letter-spacing: 0.02em; margin-bottom: 1rem;
}
.contact-text p {
  font-size: 1rem; line-height: 1.75;
  color: var(--text-secondary); font-family: 'DM Sans', sans-serif; font-weight: 400; max-width: 400px;
}
.contact-detail { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail-item { display: flex; align-items: center; gap: 0.875rem; }
.contact-detail-icon {
  width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
  background: rgba(160,203,188,0.2); border: 1px solid rgba(27,143,88,0.15);
  display: flex; align-items: center; justify-content: center; color: var(--dark-green);
}
.contact-detail-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.15rem;
}
.contact-detail-val { font-family: 'DM Sans', sans-serif; font-size: 0.9375rem; color: var(--text-secondary); }
.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(47,53,67,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted);
}
.form-input, .form-select, .form-textarea {
  background: var(--off-white); border: 1px solid var(--border-medium);
  border-radius: 8px; padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.9375rem; color: var(--text-primary);
  width: 100%; transition: border-color 0.2s, box-shadow 0.2s; outline: none; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--dark-green); box-shadow: 0 0 0 3px rgba(27,143,88,0.1); background: var(--white);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit {
  width: 100%; margin-top: 1.5rem;
  background: var(--dark-green); color: #FFFFFF;
  padding: 0.9375rem 2rem; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.9375rem;
  letter-spacing: 0.02em; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(27,143,88,0.25);
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s, background 0.2s;
}
.form-submit:hover  { transform: translateY(-2px); background: #16754A; box-shadow: 0 8px 28px rgba(27,143,88,0.35); }
.form-submit:active { transform: scale(0.98); }
.form-submit:focus-visible { outline: 2px solid var(--dark-green); outline-offset: 4px; }
.form-note { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 1rem; line-height: 1.6; }
.form-success { display: none; text-align: center; padding: 2rem 0; }
.form-success.show { display: block; }
.success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(160,203,188,0.2); border: 1px solid rgba(27,143,88,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--dark-green);
}
.form-success h3 { font-size: 1.75rem; color: var(--dark-blue); margin-bottom: 0.5rem; }
.form-success p { font-family: 'DM Sans', sans-serif; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }

/* ════════════════ FOOTER ════════════════ */
footer {
  background: var(--dark-blue);
  padding: 4rem 5%;
}
.footer-inner {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-brand a:first-child { display: block; }
.footer-logo img { height: 48px; width: auto; margin-bottom: 1.25rem; display: block; }
.footer-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; line-height: 1.75;
  color: rgba(255,255,255,0.45); max-width: 300px;
}
.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35); margin-bottom: 1.25rem;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.footer-col-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: 1060px; margin: 3rem auto 0;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-linkedin {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  margin-top: 1.25rem;
  transition: color 0.2s;
}
.footer-linkedin:hover { color: #fff; }
.footer-linkedin svg { flex-shrink: 0; }
.footer-copy { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ════════════════ PAGE HERO (inner pages) ════════════════ */
.page-hero {
  background: var(--dark-blue);
  padding: 72px 5% 72px;
  display: flex;
  align-items: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(27,143,88,0.18) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}
.page-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.page-hero .info-badge { margin-bottom: 1.5rem; background: rgba(160,203,188,0.12); }
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #FFFFFF; margin-bottom: 1.5rem; letter-spacing: 0.01em;
}
.page-hero p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.78; color: rgba(255,255,255,0.7); max-width: 560px;
  margin: 0 auto 2.5rem;
}
.page-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Photo background for page heroes */
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(10,15,25,0.90) 0%, rgba(47,53,67,0.82) 100%);
}

/* Ambient photo strip */
.photo-strip {
  position: relative; overflow: hidden;
  height: 360px;
}
@media (max-width: 640px) { .photo-strip { height: 240px; } }
.photo-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(47,53,67,0.72) 0%, transparent 55%), linear-gradient(to top, rgba(47,53,67,0.55) 0%, transparent 60%);
}
.photo-strip-text {
  position: absolute; left: 5%; bottom: 2.5rem;
}
.photo-strip-text p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  color: #FFFFFF; letter-spacing: 0.03em; line-height: 1.1;
}

/* ════════════════ UNIFIED IMAGE COLOUR TREATMENT ════════════════ */
/* One consistent filter across every content image */
.page-hero-bg img,
.photo-strip img,
.intro-img-wrap img,
.who-img-wrap img,
.collage-card img,
.d365-col-card img,
.img-strip-item img,
.usp-visual img,
.hvorfor-img-wrap img,
.about-img-wrap img {
  filter: brightness(0.88) saturate(0.78);
}

/* Standard brand colour overlay — dark-green tint, multiply blend */
.intro-img-wrap::after,
.who-img-wrap::after,
.about-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(27,143,88,0.12) 0%, rgba(47,53,67,0.22) 100%);
  mix-blend-mode: multiply;
}

/* ════════════════ BREADCRUMB ════════════════ */
.breadcrumb {
  padding: 1rem 5%;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  max-width: 1060px; margin: 0 auto;
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--dark-green); }
.breadcrumb-sep { color: var(--border-medium); }

/* ════════════════ LANGUAGE SWITCHER ════════════════ */
.lang-dropdown {
  position: relative;
  display: inline-flex; align-items: center;
  margin-left: 0.75rem;
}
.lang-toggle {
  display: flex; align-items: center; gap: 0.35rem;
  background: transparent; border: 1px solid var(--border-medium);
  border-radius: 6px; padding: 0.35rem 0.65rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text-secondary); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.lang-toggle:hover { border-color: var(--dark-blue); color: var(--dark-blue); }
.lang-toggle:focus-visible { outline: 2px solid var(--dark-green); outline-offset: 3px; border-radius: 6px; }
.lang-toggle svg { transition: transform 0.2s; flex-shrink: 0; }
.lang-dropdown.open .lang-toggle svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white);
  border: 1px solid var(--border-medium); border-radius: 10px;
  padding: 0.4rem;
  box-shadow: 0 8px 32px rgba(47,53,67,0.14);
  min-width: 110px;
  display: none; flex-direction: column; gap: 2px;
  z-index: 400;
}
.lang-dropdown.open .lang-menu { display: flex; }
.lang-option {
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-secondary); text-align: left;
  padding: 0.5rem 0.75rem; border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.lang-option:hover { background: var(--off-white); color: var(--text-primary); }
.lang-option.active { color: var(--dark-green); font-weight: 700; text-decoration: underline; text-decoration-color: var(--dark-green); text-underline-offset: 3px; }
.lang-option:focus-visible { outline: 2px solid var(--dark-green); outline-offset: 2px; }
/* Dark hero overrides */
.has-dark-hero nav {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.has-dark-hero .nav-logo img {
  filter: invert(1);
  transition: filter 0.3s ease;
}
nav.scrolled .nav-logo img {
  filter: invert(1);
  transition: filter 0.3s ease;
}
.has-video-hero nav.at-top .nav-links a {
  color: rgba(255,255,255,0.78);
}
.has-video-hero nav.at-top .nav-links a:hover {
  color: #FFFFFF;
}
.has-video-hero nav.at-top .lang-toggle {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}
.has-video-hero nav.at-top .lang-toggle:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* Mobile: keep only the logo + hamburger in the top banner.
   Placed last so it overrides the .lang-dropdown base display defined above. */
@media (max-width: 768px) {
  .lang-dropdown,
  .lang-switcher,
  .nav-cta { display: none; }
}

/* ════════════════ SHARED NAV SCRIPT ════════════════ */
