@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400&family=Schibsted+Grotesk:wght@400&family=Space+Mono:wght@400&display=swap');

:root {
  --eura-header-bg: #141210;
  --eura-header-ivory: #f7f3eb;
  --eura-header-muted: #b7ae9f;
  --eura-header-active: #d5b06b;
  --eura-header-line: rgba(247, 243, 235, 0.18);
  --eura-header-height: 96px;
  --eura-header-display: 'Bodoni Moda', 'Cormorant Garamond', Georgia, serif;
  --eura-header-sans: 'Schibsted Grotesk', 'Jost', system-ui, sans-serif;
  --eura-header-mono: 'Space Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

.global-header-spacer {
  flex: 0 0 var(--eura-header-height);
  width: 100%;
  height: var(--eura-header-height);
}
.global-header-spacer--overlay { display: none; }

.global-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  width: 100%;
  height: var(--eura-header-height);
  color: var(--eura-header-ivory);
  background: var(--eura-header-bg);
  border-bottom: 1px solid rgba(247, 243, 235, 0.08);
  font-family: var(--eura-header-sans);
}

.global-header__inner {
  width: min(100%, 1600px);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.global-header__brand {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--eura-header-ivory);
  text-decoration: none;
}

.global-header__brand-name {
  font-family: var(--eura-header-display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}

.global-header__brand-sub {
  color: var(--eura-header-muted);
  font-family: var(--eura-header-mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.global-header__desktop,
.global-header__primary,
.global-header__utilities,
.global-header__languages {
  display: flex;
  align-items: center;
}

.global-header__desktop { min-width: 0; gap: clamp(34px, 3.6vw, 56px); }
.global-header__primary { gap: clamp(20px, 2.1vw, 30px); }
.global-header__utilities { gap: clamp(28px, 2.5vw, 40px); }
.global-header__languages { gap: 12px; }

.global-header__link,
.global-header__language,
.global-header__cta,
.global-header__menu-button,
.global-menu__cta {
  color: var(--eura-header-ivory);
  text-decoration: none;
}

.global-header__link {
  position: relative;
  padding: 12px 0;
  color: rgba(247, 243, 235, 0.78);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  transition: color 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.global-header__link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--eura-header-active);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.global-header__link:hover,
.global-header__link:focus-visible,
.global-header__link[aria-current='page'] { color: var(--eura-header-ivory); }
.global-header__link:hover::after,
.global-header__link:focus-visible::after,
.global-header__link[aria-current='page']::after { transform: scaleX(1); }

.global-header__language {
  appearance: none;
  min-width: 24px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #968c7e;
  font-family: var(--eura-header-mono);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.global-header__language:hover,
.global-header__language:focus-visible,
.global-header__language.active { color: var(--eura-header-ivory); }

.global-header__cta,
.global-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  font-family: var(--eura-header-mono);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.global-header__cta-rule {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor;
  transition: width 400ms cubic-bezier(0.22, 1, 0.36, 1), color 240ms ease;
}

.global-header__cta:hover,
.global-header__cta:focus-visible,
.global-header__cta[aria-current='page'] { color: var(--eura-header-active); }
.global-header__cta:hover .global-header__cta-rule,
.global-header__cta:focus-visible .global-header__cta-rule { width: 54px; }

.global-header__menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--eura-header-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.global-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  overflow-y: auto;
  padding: 82px 24px 40px;
  background: var(--eura-header-bg);
  color: var(--eura-header-ivory);
  font-family: var(--eura-header-sans);
}

.global-menu.open { display: block; }
.global-menu__inner { width: min(100%, 520px); margin: 0 auto; }
.global-menu__primary { display: grid; }

.global-menu__link {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid var(--eura-header-line);
  color: rgba(247, 243, 235, 0.78);
  font-family: var(--eura-header-display);
  font-size: clamp(26px, 8vw, 34px);
  line-height: 1.1;
  text-decoration: none;
}

.global-menu__link:hover,
.global-menu__link:focus-visible,
.global-menu__link[aria-current='page'] { color: var(--eura-header-active); }

.global-menu__utilities {
  margin-top: 30px;
  display: grid;
  gap: 22px;
}

.global-menu__languages {
  display: flex;
  align-items: center;
  gap: 14px;
}

.global-menu__languages .global-header__language {
  min-width: 44px;
  border: 1px solid var(--eura-header-line);
}

.global-menu__cta { width: fit-content; }
.global-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--eura-header-muted);
  font-family: var(--eura-header-sans);
  font-size: 22px;
  cursor: pointer;
}

.global-header a:focus-visible,
.global-header button:focus-visible,
.global-menu a:focus-visible,
.global-menu button:focus-visible {
  outline: 1px solid var(--eura-header-active);
  outline-offset: 4px;
}

.progress-bar { top: calc(var(--eura-header-height) - 1px) !important; }

@media (max-width: 1180px) {
  .global-header__desktop { display: none; }
  .global-header__menu-button { display: inline-flex; }
}

@media (max-width: 760px) {
  :root { --eura-header-height: 84px; }
  .global-header__inner { padding: 0 20px; }
  .global-header__brand { gap: 6px; }
  .global-header__brand-name { font-size: 22px; }
  .global-header__brand-sub { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .global-header *,
  .global-menu * { transition-duration: 0.01ms !important; }
}
