@font-face {
  font-family: 'Montserrat Squashed';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/montserrat-500-sq75-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat Squashed';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/montserrat-500-sq75-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #011536;
  --navy-deep: #000B1F;
  --blue:      #0365FA;
  --white:     #FFFFFF;
  --cream:     #F4F7FC;
  --muted:     #5A6782;
}

html { scroll-behavior: smooth; }

strong, b { font-weight: 500; }

body {
  font-family: 'Montserrat Squashed', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--white);
}

/* NAV */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  background: var(--navy);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .88rem;
  letter-spacing: .04em;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: .48rem 1.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: .85rem !important;
}
.nav-cta:hover { opacity: .88; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}

/* PAGE HEADER (for inner pages) */
.page-header {
  background: var(--navy);
  padding: 120px 2rem 10px;
  text-align: center;
}
.page-header .eyebrow { color: var(--blue); }
.page-header h1 {
  font-family: 'Montserrat Squashed', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  letter-spacing: -.02em;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .9rem;
}
.page-header p {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* SHARED UTILITIES */
.container { max-width: 1080px; margin: 0 auto; }

.eyebrow {
  display: block;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Montserrat Squashed', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  letter-spacing: -.02em;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: .9rem;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}
.section-sub.light { color: rgba(255,255,255,.55); }

.btn-gold {
  background: var(--blue);
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  font-size: .92rem;
  transition: opacity .2s;
  display: inline-block;
}
.btn-gold:hover { opacity: .85; }

/* FOOTER */
footer {
  background: var(--navy-deep);
  padding: 2.5rem 2rem;
  text-align: center;
}
footer .footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  margin-bottom: .9rem;
  text-decoration: none;
}
footer .footer-logo .logo-img { height: 42px; }
footer p { font-size: .8rem; color: rgba(255,255,255,.28); }
footer a { color: rgba(255,255,255,.35); text-decoration: none; }
footer a:hover { color: var(--blue); }

/* LANGUAGE SWITCHER */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-left: .8rem;
}
.lang-sep {
  color: rgba(255,255,255,.2);
  font-size: .75rem;
  line-height: 1;
}
.lang-btn {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  transition: color .2s;
  padding: .15rem .38rem;
  border-radius: 3px;
}
.lang-btn:hover { color: var(--blue); }
.lang-btn.active {
  color: var(--blue);
  background: rgba(196,162,101,.12);
}

/* RESPONSIVE */
@media (max-width: 720px) {
  nav { padding: 0 1.25rem; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem 1.5rem;
    gap: 1.3rem;
    border-top: 1px solid rgba(255,255,255,.07);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .page-header {
    padding: 100px 1.25rem 10px;
  }
  .page-header h1 {
    font-size: clamp(1.7rem, 7vw, 2.5rem);
  }

  .btn-gold {
    width: 100%;
    text-align: center;
  }

  footer { padding: 2rem 1.25rem; }
}

/* ---------- legal pages (Impressum / privacy / terms) ---------- */
.legal-section { background: var(--white); padding: 70px 2rem 90px; }
.legal-body { max-width: 780px; margin: 0 auto; }
.legal-body .updated {
  font-size: .8rem;
  color: rgba(13,27,53,.45);
  margin-bottom: 2.5rem;
}
.legal-body h2 {
  font-family: 'Montserrat Squashed', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  letter-spacing: -.02em;
  font-size: 1.12rem;
  color: var(--navy);
  margin: 2.6rem 0 .9rem;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p, .legal-body li {
  font-size: .95rem;
  line-height: 1.75;
  color: rgba(13,27,53,.78);
}
.legal-body p { margin-bottom: 1rem; }
.legal-body ul { margin: 0 0 1rem 1.15rem; }
.legal-body li { margin-bottom: .5rem; }
.legal-body a { color: var(--navy); font-weight: 500; }
.legal-body a:hover { color: var(--blue); }

.legal-table { width: 100%; border-collapse: collapse; margin-bottom: 1.2rem; }
.legal-table th, .legal-table td {
  text-align: left;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(13,27,53,.1);
  font-size: .93rem;
  line-height: 1.6;
  vertical-align: top;
}
.legal-table th { width: 38%; color: rgba(13,27,53,.5); font-weight: 500; }
.legal-table td { color: rgba(13,27,53,.85); }

.legal-note {
  background: var(--cream);
  border-left: 3px solid var(--blue);
  padding: 1rem 1.25rem;
  margin-bottom: 1.6rem;
}
.legal-note p { margin-bottom: 0; font-size: .9rem; }

.footer-legal { margin-top: .65rem; }
.footer-legal a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-legal a:hover { color: var(--blue); }

@media (max-width: 720px) {
  .legal-section { padding: 40px 1.25rem 60px; }
  .legal-table th, .legal-table td { display: block; width: 100%; }
  .legal-table th { border: none; padding-bottom: .15rem; }
}

/* logo sizing */
nav .logo-img { height: 34px; }
@media (max-width: 720px) { nav .logo-img { height: 28px; } footer .footer-logo .logo-img { height: 36px; } }

/* ---------- nav fit ----------
   German menu labels are long, so the bar runs out of room well before the
   720px mobile breakpoint. Never let a label break mid-word, tighten the bar
   on medium screens, and switch to the burger menu at 1024px. */
.nav-logo, .lang-switcher, .hamburger { flex: 0 0 auto; }
.nav-links a, .lang-btn { white-space: nowrap; }

@media (min-width: 1025px) and (max-width: 1180px) {
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 1.5rem; }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem;
    gap: 1.3rem;
    border-top: 1px solid rgba(255,255,255,.07);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .lang-switcher { margin-left: auto; margin-right: 1.25rem; }
}
