/* v99 header-common.css
   Staged header CSS only.
   Rules here are exact-match header rules shared by existing CSS files.
   No original header rules were removed in this step.
*/

.brand-logo {
    display: flex;
    align-items: center;
    flex: none;
    line-height: 1;
  }

.brand-logo img {
    width: 136px;
    height: auto;
    display: block;
  }

.header-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    border: 1px solid var(--navy);
    border-radius: 999px;
    padding: 9px 22px;
    letter-spacing: .06em;
    transition: all .25s ease;
    margin-left: 2px;
    white-space: nowrap;
  }

.header-cta:hover {
    background: var(--navy);
    color: #fff;
  }

.header-lang {
    margin-left: 0;
    white-space: nowrap;
  }

.nav-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: .04em;
    transition: color .2s ease;
  }

.nav-link.current {
    position: relative;
  }

.nav-link.current::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: var(--teal);
  }

.nav-link:hover,.nav-link.current {
    color: var(--navy);
  }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }

.site-header .inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-left: clamp(28px,5vw,64px);
    padding-right: clamp(28px,5vw,64px);
  }

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
  }

.header-inner {
    width: min(var(--max), calc(100% - 48px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

.site-header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--line);
  }
