/* ─────────────────────────────────────────────────────────────────────────────
   MOVES Consulting — The Travel Document, Corporate Edition
   A site built like the thing it produces: an official document with the right stamps.
   Palette (Kunden-CD): Dunkelblau #282572 · Grau #949698 · Weiss · Silber
   Fonts:   IBM Plex Sans (display + body) · IBM Plex Mono (MRZ/fields) — one family
   Signature: the stamp system — hero seal, process stamp-page, application form
   ───────────────────────────────────────────────────────────────────────────── */

:root {
  /* Palette — Kunden-CD: Dunkelblau 40/37/114 · Grau 148/150/152 · Weiss · Silber */
  --navy:       #282572;
  --navy-soft:  #38349b;
  --navy-deep:  #16143f;
  --silver:          #c3c7d1;
  --silver-bright:   #e8eaef;
  --white:         #ffffff;
  --cloud:    #eef0f4;
  --ink:           #1e2029;
  --stamp:         #282572;
  --stamp-soft:    #6266b8;
  --grey:         #54575e;
  --grey-soft:    #949698;
  --mist:           #b8bcd8;   /* secondary text on navy */
  --hairline:      rgba(30, 32, 41, 0.14);
  --hairline-dark: rgba(255, 255, 255, 0.18);

  /* Type */
  --font-display: 'IBM Plex Sans', -apple-system, system-ui, sans-serif;
  --font-sans:    'IBM Plex Sans', -apple-system, system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Layout */
  --max-w: 1320px;
  --pad-x: clamp(24px, 5vw, 80px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-stamp: cubic-bezier(0.34, 1.56, 0.44, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0; padding: 0;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.55;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
em, i { font-style: italic; }

::selection { background: var(--navy); color: var(--white); }

/* ───────────────────────────  TYPE UTILITIES  ─────────────────────────── */

.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ───────────────────────────  NAV  ─────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.nav.on-dark {
  background: rgba(22, 20, 63, 0.82);
  border-bottom-color: var(--hairline-dark);
  color: var(--white);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  height: 40px;
}
.nav__brand-img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.4s var(--ease);
}
.nav__brand-img--light { display: none; }
.nav.on-dark .nav__brand-img--dark { display: none; }
.nav.on-dark .nav__brand-img--light { display: block; }
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav__links a {
  color: inherit;
  opacity: 0.75;
  transition: opacity 0.2s var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: currentColor;
  opacity: 0.6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__social {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--ink);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.nav__social svg { width: 13px; height: 13px; }
.nav__social:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.nav.on-dark .nav__social {
  color: var(--white);
  border-color: var(--hairline-dark);
}
.nav.on-dark .nav__social:hover {
  background: var(--silver);
  border-color: var(--silver);
  color: var(--navy-deep);
}

@media (max-width: 520px) {
  .nav__social { display: none; }
}

/* Language toggle — document field, not pill */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  background: transparent;
  transition: border-color 0.4s var(--ease);
}
.nav.on-dark .lang-toggle { border-color: var(--hairline-dark); }
.lang-toggle__option {
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: var(--grey);
  background: transparent;
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  line-height: 1;
}
.lang-toggle__option:hover { color: var(--ink); }
.nav.on-dark .lang-toggle__option:hover { color: var(--white); }
.lang-toggle__option.is-active {
  background: var(--ink);
  color: var(--white);
}
.nav.on-dark .lang-toggle__option.is-active {
  background: var(--white);
  color: var(--navy-deep);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__inner { padding: 13px 20px; }
}

/* ───────────────────────────  CTAs — document buttons, zero radius  ─────────────────────────── */

.cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  position: relative;
}

.cta--primary {
  gap: 12px;
  padding: 15px 26px;
  background: var(--navy);
  color: var(--white);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid var(--navy);
}
.cta--primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.cta--primary .cta__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease);
}
.cta--primary .cta__arrow svg { width: 15px; height: 15px; }
.cta--primary:hover .cta__arrow { transform: translateX(5px); }

.cta--ghost {
  gap: 12px;
  padding: 15px 26px;
  background: transparent;
  color: var(--ink);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(30, 32, 41, 0.35);
}
.cta--ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.cta--ghost .cta__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease);
}
.cta--ghost .cta__arrow svg { width: 15px; height: 15px; }
.cta--ghost:hover .cta__arrow { transform: translateX(5px); }

.cta--sm {
  padding: 9px 16px;
  font-size: 12.5px;
  gap: 9px;
}
.cta--sm .cta__arrow svg { width: 12px; height: 12px; }

.nav.on-dark .cta--primary {
  background: var(--silver);
  border-color: var(--silver);
  color: var(--navy-deep);
}
.nav.on-dark .cta--primary:hover {
  background: var(--silver-bright);
  border-color: var(--silver-bright);
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
a:hover > .btn__arrow, button:hover > .btn__arrow { transform: translateX(4px); }

/* ───────────────────────────  HERO — the visa page  ─────────────────────────── */

.hero {
  position: relative;
  padding: clamp(130px, 15vh, 175px) var(--pad-x) 0;
  background: var(--white);
  overflow: hidden;
}

/* Guilloche field — machine-engraved waves, like the print floor of a visa */
.hero__guilloche {
  position: absolute;
  left: 0; right: 0;
  top: clamp(40px, 8vh, 110px);
  height: clamp(320px, 52vh, 520px);
  background: var(--navy);
  -webkit-mask-image: url('/images/guilloche-band.svg');
          mask-image: url('/images/guilloche-band.svg');
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  opacity: 0.13;
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(36px, 5vh, 52px);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}
html.js .hero__eyebrow {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s var(--ease) 0.1s, transform 0.7s var(--ease) 0.1s;
}
html.js .is-loaded .hero__eyebrow { opacity: 1; transform: translateY(0); }
.hero__eyebrow-mark {
  width: 36px; height: 1px;
  background: var(--silver);
  display: inline-block;
}

/* The Statement */
.hero__statement {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(37px, 5.6vw, 86px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 clamp(28px, 4vh, 44px);
  max-width: 22ch;
  padding-bottom: 0.15em;
}
.hero__statement .w {
  display: inline-block;
  white-space: nowrap;
}
html.js .hero__statement .w {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease) calc(var(--i, 0) * 55ms + 250ms),
              transform 0.8s var(--ease) calc(var(--i, 0) * 55ms + 250ms);
}
html.js .is-loaded .hero__statement .w {
  opacity: 1;
  transform: translateY(0);
}
.hero__accent em {
  font-style: italic;
  color: var(--navy);
}

/* Lede */
.hero__lede {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--grey);
  max-width: 58ch;
  margin: 0 0 clamp(34px, 5vh, 46px);
}
html.js .hero__lede {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 1.15s, transform 0.8s var(--ease) 1.15s;
}
html.js .is-loaded .hero__lede { opacity: 1; transform: translateY(0); }

/* Actions */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: clamp(60px, 9vh, 100px);
}
html.js .hero__actions {
  opacity: 0;
  transition: opacity 0.7s var(--ease) 1.35s;
}
html.js .is-loaded .hero__actions { opacity: 1; }

/* The entry seal — stamped onto the page after load */
.hero__seal {
  position: absolute;
  top: clamp(95px, 13vh, 150px);
  right: clamp(30px, 7vw, 130px);
  width: clamp(120px, 13vw, 180px);
  height: clamp(120px, 13vw, 180px);
  color: var(--stamp);
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 1250px) {
  .hero__seal { opacity: 0.55; }
}
@media (max-width: 900px) {
  .hero__seal { display: none; }
}

/* MRZ — the machine-readable zone closes the hero like a document edge */
.hero__mrz {
  position: relative;
  border-top: 1px solid var(--hairline);
  margin-top: 10px;
  padding: 18px 0 22px;
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.35vw, 16px);
  letter-spacing: 0.14em;
  line-height: 1.75;
  color: var(--grey);
  white-space: nowrap;
  overflow: hidden;
}
.hero__mrz-line { display: block; overflow: hidden; }
html.js .hero__mrz-line {
  width: 0;
}
html.js .is-loaded .hero__mrz-line--1 {
  animation: mrzType 1.1s steps(44, end) 1.7s forwards;
}
html.js .is-loaded .hero__mrz-line--2 {
  animation: mrzType 1.1s steps(44, end) 2.35s forwards;
}
@keyframes mrzType {
  from { width: 0; }
  to   { width: 100%; }
}

/* ───────────────────────────  STAMPS — the signature system  ─────────────────────────── */

.stamp {
  transform-origin: center;
  transform: rotate(var(--rot, -6deg));
}
html.js .stamp {
  opacity: 0;
  transform: scale(1.45) rotate(calc(var(--rot, -6deg) + 5deg));
  transition: opacity 0.18s ease-out, transform 0.42s var(--ease-stamp);
}
html.js .stamp.is-stamped {
  opacity: 1;
  transform: scale(1) rotate(var(--rot, -6deg));
}

/* Round seal (SVG-based, hero + submit) */
.seal-svg { width: 100%; height: 100%; display: block; }

/* Border-crossing stamps on the process page */
.pstamp {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px 11px;
  border: 2px solid currentColor;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1.5px transparent, inset 0 0 0 3px transparent;
  position: relative;
  color: var(--navy);
  background: transparent;
  min-width: 168px;
}
.pstamp::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid currentColor;
  border-radius: 3px;
  opacity: 0.65;
}
.pstamp__route {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
}
.pstamp__day {
  font-family: var(--font-mono);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}
.pstamp--arrival {
  color: var(--stamp);
  border-radius: 50%;
  padding: 22px 18px;
  align-items: center;
  text-align: center;
  justify-content: center;
  aspect-ratio: 1.55 / 1;
  border-radius: 50% / 50%;
}
.pstamp--arrival::before {
  border-radius: 50% / 50%;
  inset: 4px;
}

/* Ink texture for every stamp */
.ink { filter: url(#inkbleed); }

/* ───────────────────────────  TRUST STRIP  ─────────────────────────── */

.trust {
  background: var(--white);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 22px var(--pad-x);
  overflow: hidden;
}
.trust__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 40px;
}
.trust__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  white-space: nowrap;
}
.trust__marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.trust__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.trust__brand {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.62;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust__brand em { font-style: italic; opacity: 0.85; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .trust__inner { grid-template-columns: 1fr; gap: 16px; }
}

/* ───────────────────────────  SECTION FRAMEWORK  ─────────────────────────── */

.section {
  position: relative;
  padding: clamp(60px, 7.5vw, 104px) var(--pad-x);
  scroll-margin-top: 80px;
}
.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.section__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5.2vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  max-width: 16ch;
}
.section__heading em {
  font-style: italic;
  color: var(--navy);
}
.is-dark-section .section__heading em { color: var(--silver); }

.section__lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--grey);
  max-width: 56ch;
  margin: 0 0 52px;
}
.is-dark-section .section__lead { color: var(--mist); }

.section__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 32px;
}
.section__kicker::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--silver);
}
.is-dark-section .section__kicker { color: var(--mist); }

/* Perforated edge — where one document leaf ends */
.perf-edge {
  position: relative;
}
.perf-edge::before {
  content: '';
  position: absolute;
  top: -4px; left: 0; right: 0;
  height: 8px;
  background-image: radial-gradient(circle at 4px 4px, var(--white) 2.6px, transparent 3px);
  background-size: 18px 8px;
  background-repeat: repeat-x;
  pointer-events: none;
  z-index: 2;
}

/* ───────────────────────────  CREDO — the data page  ─────────────────────────── */

.credo {
  background: var(--cloud);
}
.credo__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
  background: var(--white);
}
.credo__item {
  padding: clamp(22px, 2.4vw, 34px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: var(--white);
  transition: background 0.3s var(--ease);
  min-height: 250px;
}
.credo__item:hover { background: var(--cloud); }
.credo__field {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--grey-soft);
  margin: 0;
  line-height: 1.5;
}
.credo__field b {
  display: block;
  font-weight: 500;
  color: var(--grey);
}
.credo__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--navy);
}
.credo__unit {
  font-family: var(--font-mono);
  font-size: 0.24em;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-soft);
  vertical-align: top;
  margin-left: 4px;
  position: relative;
  top: 0.5em;
}
.credo__detail {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--grey);
  margin: 0;
  flex: 1;
}

@media (max-width: 1100px) {
  .credo__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .credo__grid { grid-template-columns: repeat(2, 1fr); }
  .credo__item { min-height: 0; }
}
@media (max-width: 480px) {
  .credo__grid { grid-template-columns: 1fr; }
}

/* ───────────────────────────  PAIN — navy chapter  ─────────────────────────── */

.pain {
  background: var(--navy);
  color: var(--white);
}
.pain__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px) clamp(60px, 8vw, 120px);
  margin-top: 40px;
}
.pain__item { position: relative; }
.pain__item:nth-child(2) { margin-top: 60px; }
.pain__item:nth-child(3) { margin-top: -40px; }
.pain__item:nth-child(4) { margin-top: 80px; }
.pain__quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 84px;
  line-height: 0.6;
  color: var(--silver);
  opacity: 0.55;
  margin-bottom: 8px;
  display: block;
}
.pain__problem {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 22px;
}
.pain__detail {
  font-size: 15px;
  line-height: 1.6;
  color: var(--mist);
  margin: 0 0 18px;
}
.pain__answer {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--silver-bright);
}
.pain__answer::before {
  content: '→ ';
  font-style: normal;
  color: var(--silver-bright);
}
.pain__answer strong { color: #ffffff; font-weight: 600; }

@media (max-width: 768px) {
  .pain__items { grid-template-columns: 1fr; }
  .pain__item:nth-child(n) { margin-top: 0; }
}

/* ───────────────────────────  FEES — the schedule of charges  ─────────────────────────── */

.fees-section {
  background: var(--cloud);
}
.fees {
  margin-top: 40px;
  padding: clamp(28px, 3.5vw, 48px) clamp(28px, 3.5vw, 48px) clamp(24px, 3vw, 36px);
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--hairline);
  position: relative;
}
.fees__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-soft);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 12px;
  margin: 0 0 10px;
}
.fees__list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(20px, 3vw, 32px);
}
.fees__row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dotted var(--hairline);
}
.fees__row:last-child { border-bottom: none; }
.fees__name {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.fees__name small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--grey);
  margin-top: 3px;
  max-width: 44ch;
}
.fees__leader {
  flex: 1;
  border-bottom: 1px dotted var(--grey-soft);
  transform: translateY(-4px);
  min-width: 40px;
  opacity: 0.55;
}
.fees__price {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  color: var(--navy);
  white-space: nowrap;
}
.fees__price small {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-left: 8px;
}
.fees__today {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  margin: 0;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.4;
  color: var(--grey);
}
.fees__today-label {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  flex-shrink: 0;
}
.fees__today b {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 700px) {
  .fees__row { flex-direction: column; gap: 6px; }
  .fees__leader { display: none; }
  .fees__today { flex-direction: column; gap: 8px; }
}

/* ───────────────────────────  SERVICES  ─────────────────────────── */

.services { background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.service {
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background 0.4s var(--ease);
  min-height: 460px;
  position: relative;
}
.service:hover { background: var(--cloud); }
.service--featured {
  background: var(--navy);
  color: var(--white);
}
.service--featured:hover { background: var(--navy-soft); }

.service__num {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--grey-soft);
  margin: 0 0 26px;
}
.service--featured .service__num { color: var(--silver); }
.service__num::after {
  content: '';
  display: block;
  width: 26px; height: 1px;
  margin-top: 10px;
  background: currentColor;
  opacity: 0.5;
}
.service__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -0.022em;
  margin: 0 0 8px;
}
.service__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.3;
  color: var(--grey);
  margin: 0 0 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
}
.service--featured .service__sub {
  color: var(--mist);
  border-bottom-color: var(--hairline-dark);
}
.service__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service__list li {
  padding: 10px 0 10px 22px;
  font-size: 14.5px;
  line-height: 1.45;
  position: relative;
  border-bottom: 1px solid var(--hairline);
}
.service--featured .service__list li { border-bottom-color: var(--hairline-dark); }
.service__list li:last-child { border-bottom: none; }
.service__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 19px;
  width: 12px; height: 1px;
  background: var(--navy);
}
.service--featured .service__list li::before { background: var(--silver); }
.service__list em { font-style: italic; color: var(--grey); }
.service--featured .service__list em { color: var(--mist); }

@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
  .service { min-height: auto; }
}

/* ───────────────────────────  PROCESS — the stamp page  ─────────────────────────── */

.process {
  background: var(--cloud);
  position: relative;
}
/* faint rosette watermark, like the print floor of a passport page */
.process::after {
  content: '';
  position: absolute;
  right: clamp(20px, 6vw, 120px);
  top: clamp(30px, 5vw, 80px);
  width: clamp(200px, 24vw, 340px);
  height: clamp(200px, 24vw, 340px);
  background: var(--navy);
  -webkit-mask-image: url('/images/guilloche-rosette.svg');
          mask-image: url('/images/guilloche-rosette.svg');
  -webkit-mask-size: contain;
          mask-size: contain;
  opacity: 0.07;
  pointer-events: none;
}
.process__timeline {
  margin-top: 72px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 clamp(16px, 2vw, 32px);
}
.process__line {
  position: absolute;
  top: 34px;
  left: 0; right: 0;
  height: 0;
  border-top: 1px dashed rgba(30, 32, 41, 0.3);
  z-index: 0;
}
.process__line-fill {
  position: absolute;
  top: -1px; left: 0;
  height: 1px;
  background: var(--navy);
  width: var(--process-progress, 0%);
  transition: width 0.6s var(--ease);
}
.process__station {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.process__stamp-slot {
  min-height: 108px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
  background: var(--cloud);
  padding-right: 10px;
}
.process__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.process__detail {
  font-size: 14px;
  line-height: 1.55;
  color: var(--grey);
  max-width: 30ch;
  margin: 0;
}

@media (max-width: 900px) {
  .process__timeline { grid-template-columns: 1fr 1fr; gap: 44px 24px; }
  .process__line { display: none; }
}
@media (max-width: 540px) {
  .process__timeline { grid-template-columns: 1fr; gap: 40px; }
  .process__stamp-slot { min-height: 0; margin-bottom: 18px; }
}

/* ───────────────────────────  FOUNDER — navy chapter II  ─────────────────────────── */

.founder {
  background: var(--navy);
  color: var(--white);
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: clamp(64px, 8vw, 120px);
}
.founder__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(50px, 7vw, 110px);
  align-items: start;
}
.founder__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--navy-deep);
  border: 1px solid var(--hairline-dark);
  outline: 1px solid rgba(195, 199, 209, 0.35);
  outline-offset: 6px;
  overflow: visible;
  margin: 0;
}
.founder__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: saturate(0.94) contrast(1.02) brightness(1.02);
  transition: filter 0.6s var(--ease);
}
.founder__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(22, 20, 63, 0.82) 100%);
  pointer-events: none;
}
.founder__visual:hover .founder__portrait {
  filter: saturate(1) contrast(1) brightness(1.05);
}
/* embossed notary seal over the photo corner — like a certified passport photo */
.founder__seal {
  position: absolute;
  top: -34px; right: -34px;
  width: 130px; height: 130px;
  background: var(--silver);
  -webkit-mask-image: url('/images/guilloche-rosette.svg');
          mask-image: url('/images/guilloche-rosette.svg');
  -webkit-mask-size: contain;
          mask-size: contain;
  opacity: 0.5;
  pointer-events: none;
  z-index: 3;
}
.founder__signature {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 14px;
  margin: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.founder__signature-mark {
  width: 130px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.founder__people {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.founder__person {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.3;
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.founder__person b {
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 14px;
}
.founder__person small {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 2px;
}

.founder__content .section__heading { color: var(--white); }
.founder__content .section__heading em { color: var(--silver); }
.founder__story {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--mist);
}
.founder__story p { margin: 0 0 18px; }
.founder__story strong { color: var(--white); font-weight: 600; }
.founder__story p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 300;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--silver);
}
.founder__pullquote {
  margin: 48px 0;
  padding: 30px 0;
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--white);
}

@media (max-width: 900px) {
  .founder__grid { grid-template-columns: 1fr; }
  .founder__seal { top: -20px; right: -12px; width: 96px; height: 96px; }
}

/* ───────────────────────────  VOICES  ─────────────────────────── */

.voices { background: var(--white); }
.voices__grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}
.voice--featured {
  padding: clamp(56px, 7vw, 80px) clamp(40px, 5vw, 72px) clamp(40px, 5vw, 60px);
  background: var(--cloud);
  border: 1px solid var(--hairline);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Grid streckt die Karte auf die Hoehe der Zitat-Spalte — Inhalt mittig verankern */
  justify-content: center;
}
.voice--featured::before {
  content: '\201C';
  display: block;
  font-family: var(--font-display);
  font-size: clamp(88px, 10vw, 140px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.6;
  color: var(--silver);
  margin: 0 auto clamp(20px, 3vw, 32px);
  pointer-events: none;
}
.voice--featured .voice__quote {
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.voice--featured .voice__quote::after {
  content: '\201D';
  display: inline;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--silver);
  margin-left: 0.04em;
}
.voice--featured .voice__attr { align-items: center; text-align: center; }
.voice__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 32px;
}
.voice__attr {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.voice__attr-company {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.voices__column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.voice--small {
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}
.voice--small:last-child { border-bottom: none; }
.voice--small .voice__quote {
  font-size: clamp(16px, 1.4vw, 19px);
  margin-bottom: 16px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .voices__grid { grid-template-columns: 1fr; }
}

/* ───────────────────────────  INSIGHTS / JOURNAL  ─────────────────────────── */

.insights { background: var(--white); }
.insights__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.insight {
  padding: clamp(28px, 3.5vw, 44px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--white);
  transition: background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.insight:hover { background: var(--cloud); }
.insight__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 500;
}
.insight__category { color: var(--navy); }
.insight__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  flex: 1;
  color: var(--ink);
}
.insight__excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--grey);
  margin: 0 0 28px;
}
.insight__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  align-self: flex-start;
  transition: color 0.2s var(--ease);
}
.insight__cta:hover { color: var(--ink); }
.insights__all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.insights__all:hover { color: var(--navy); border-bottom-color: var(--navy); }

@media (max-width: 900px) {
  .insights__grid { grid-template-columns: 1fr; }
}

/* Subscribe block */
.subscribe {
  margin-top: clamp(72px, 9vw, 120px);
  padding-top: clamp(56px, 7vw, 84px);
  border-top: 1px solid var(--hairline);
}
.subscribe__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  max-width: 16ch;
}
.subscribe__lead {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--grey);
  max-width: 50ch;
  margin: 0 0 40px;
  line-height: 1.5;
}
.subscribe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.subscribe__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.subscribe__card:hover {
  border-color: var(--navy);
  background: var(--cloud);
  transform: translateY(-2px);
}
.subscribe__icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.3s var(--ease);
}
.subscribe__icon svg { width: 20px; height: 20px; }
.subscribe__card:hover .subscribe__icon { background: var(--ink); }
.subscribe__body { display: flex; flex-direction: column; }
.subscribe__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  margin: 0 0 8px;
}
.subscribe__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 12px;
}
.subscribe__detail {
  font-size: 14px;
  line-height: 1.55;
  color: var(--grey);
  margin: 0 0 20px;
  flex: 1;
}
.subscribe__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  align-self: flex-start;
}

@media (max-width: 900px) {
  .subscribe__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .subscribe__card { grid-template-columns: 1fr; }
}

/* ───────────────────────────  RESOURCES — the annex  ─────────────────────────── */

.resources { background: var(--cloud); }
.resources__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.resource--wide { grid-column: 1 / -1; }
.resource {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
}
.resource:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -18px rgba(22, 20, 63, 0.4);
}
.resource__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.resource__tag { color: var(--navy); }
.resource__type { color: var(--grey); }
.resource__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.resource__excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--grey);
  margin: 0 0 24px;
  flex: 1;
}
.resource__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  align-self: flex-start;
}
.resource:hover .resource__cta .btn__arrow { transform: translateY(2px); }

@media (max-width: 768px) {
  .resources__grid { grid-template-columns: 1fr; }
}

/* ───────────────────────────  CTA — the application form  ─────────────────────────── */

.section.cta {
  display: block;
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
/* gold guilloche floor along the bottom edge */
.section.cta::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -40px;
  height: 300px;
  background: var(--silver);
  -webkit-mask-image: url('/images/guilloche-band.svg');
          mask-image: url('/images/guilloche-band.svg');
  -webkit-mask-size: cover;
          mask-size: cover;
  opacity: 0.1;
  pointer-events: none;
}
.cta__inner {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta__doc-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  border-bottom: 1px solid var(--hairline-dark);
  padding-bottom: 14px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.cta__doc-head b { color: var(--silver); font-weight: 500; }
.cta__heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 30px;
  max-width: 15ch;
}
.cta__heading em {
  font-style: italic;
  color: var(--silver);
}
.cta__lead {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
  color: var(--mist);
  max-width: 52ch;
  margin: 0 0 52px;
}
.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 32px;
  max-width: 680px;
  margin-bottom: 36px;
}
.cta__form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta__form-field--full { grid-column: 1 / -1; }
.cta__form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.cta__form-label::before {
  content: counter(field, decimal-leading-zero);
  counter-increment: field;
  color: var(--silver);
}
.cta__form { counter-reset: field; }
.cta__form-input {
  background: transparent;
  border: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
  padding: 10px 0;
  font: inherit;
  font-size: 16px;
  color: var(--white);
  font-family: var(--font-sans);
  transition: border-color 0.2s var(--ease);
  outline: none;
  border-radius: 0;
}
.cta__form-input::placeholder { color: var(--mist); opacity: 0.55; }
.cta__form-input:focus { border-bottom: 1px solid var(--silver); }
textarea.cta__form-input { resize: vertical; min-height: 80px; line-height: 1.5; }

.cta__submit-row {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.cta__submit {
  background: linear-gradient(180deg, #eef0f4 0%, #c3c7d1 100%);
  color: var(--navy-deep);
  padding: 17px 30px;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.15s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cta__submit:hover { background: linear-gradient(180deg, #f7f8fa 0%, #d4d7de 100%); }
.cta__submit:active { transform: scale(0.97); }
.cta__trust {
  font-size: 12.5px;
  color: var(--mist);
}
.cta__trust span {
  display: inline-block;
  margin: 0 8px;
  color: var(--silver);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .cta__form { grid-template-columns: 1fr; }
}

/* ───────────────────────────  FOOTER  ─────────────────────────── */

.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) var(--pad-x) 36px;
  position: relative;
  border-top: 1px solid rgba(195, 199, 209, 0.25);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hairline-dark);
}
.footer__brand-logo {
  width: 140px;
  height: auto;
  display: block;
  margin: 0 0 20px;
}
.footer__brand-text {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.55;
  max-width: 36ch;
}
.footer__brand-text strong { color: var(--white); font-weight: 600; }
.footer__title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__addr {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white);
  margin: 0;
  font-style: normal;
}
.footer__addr a { border-bottom: 1px solid transparent; transition: border-color 0.2s var(--ease); }
.footer__addr a:hover { border-bottom-color: var(--silver); }
.footer__links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.footer__links a {
  color: var(--white);
  opacity: 0.72;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
}
.footer__links a:hover { opacity: 1; color: var(--silver-bright); }

.footer__mrz {
  font-family: var(--font-mono);
  font-size: clamp(9px, 1.1vw, 12px);
  letter-spacing: 0.14em;
  color: var(--mist);
  opacity: 0.4;
  margin: 30px 0 0;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--mist);
}

@media (max-width: 800px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ───────────────────────────  REVEAL  ─────────────────────────── */

html.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ───────────────────────────  LEGAL PAGES  ─────────────────────────── */

.legal-page { background: var(--white); }
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--pad-x) clamp(60px, 8vw, 100px);
}
.legal__inner { position: relative; }
.legal__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  margin: 16px 0 24px;
  color: var(--ink);
}
.legal__intro {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--grey);
  margin: 0 0 48px;
  max-width: 60ch;
}
.legal__section { margin-bottom: 36px; }
.legal__section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.7vw, 26px);
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.legal__section p,
.legal__section ul {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 14px;
}
.legal__section ul { padding-left: 22px; }
.legal__section li { margin-bottom: 6px; }
.legal__section a {
  color: var(--navy);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.legal__section a:hover { border-bottom-color: var(--navy); }
.legal__section code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  padding: 2px 6px;
  background: var(--cloud);
  border-radius: 2px;
}
.legal__footnote {
  margin-top: 60px;
  font-size: 12.5px;
  color: var(--grey);
  font-style: italic;
}
.legal-page .nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ───────────────────────────  BLOG INDEX + ARTICLE  ─────────────────────────── */

.blog-list {
  list-style: none;
  padding: 0; margin: 48px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
  transition: background 0.25s var(--ease);
}
.blog-card:hover { background: linear-gradient(to right, var(--cloud), transparent 60%); }
.blog-card__cover {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cloud);
  border: 1px solid var(--hairline);
  position: relative;
}
.blog-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card__cover img { transform: scale(1.04); }
.blog-card__cover--empty {
  background-image: linear-gradient(135deg, var(--cloud) 0%, var(--hairline) 100%);
}
.blog-card__body { display: flex; flex-direction: column; gap: 12px; }
.blog-card__meta {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.blog-card__date { font-variant-numeric: tabular-nums; white-space: nowrap; }
.blog-card__cats { color: var(--navy); font-weight: 500; }
.blog-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
.blog-card__title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.blog-card__title a:hover { color: var(--navy); }
.blog-card__excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: var(--grey);
  margin: 0;
  max-width: 56ch;
}
.blog-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  align-self: flex-start;
  margin-top: 4px;
  transition: color 0.2s var(--ease);
}
.blog-card__cta:hover { color: var(--ink); }

@media (max-width: 700px) {
  .blog-card { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
  .blog-card__cover { aspect-ratio: 16 / 9; }
}

.article__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey);
  margin: 0 0 40px;
  letter-spacing: 0.05em;
}
.article__cover {
  margin: 0 0 40px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cloud);
  border: 1px solid var(--hairline);
}
.article__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.article__body p,
.article__body ul,
.article__body ol,
.article__body blockquote {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 22px;
}
.article__body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2vw, 30px);
  letter-spacing: -0.015em;
  margin: 48px 0 18px;
  line-height: 1.2;
}
.article__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 1.6vw, 24px);
  margin: 36px 0 14px;
  line-height: 1.25;
}
.article__body img,
.article__body figure img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 28px 0;
}
.article__body blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  padding: 0 0 0 24px;
  border-left: 2px solid var(--silver);
  color: var(--ink);
  margin: 30px 0;
}
.article__body a {
  color: var(--navy);
  border-bottom: 1px solid var(--hairline);
  transition: border-color 0.2s var(--ease);
}
.article__body a:hover { border-bottom-color: var(--navy); }
.article__body ul, .article__body ol { padding-left: 22px; }
.article__body li { margin-bottom: 8px; }


/* ───────────────────────────  FILM — the moving picture  ─────────────────────────── */

.film { background: var(--white); }
.film__frame {
  margin: 48px 0 0;
  position: relative;
  border: 1px solid var(--hairline);
  outline: 1px solid var(--silver);
  outline-offset: 6px;
  background: var(--navy-deep);
}
.film__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy-deep);
}
.film__caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-soft);
}

/* ───────────────────────────  COUNTRIES — the destination plates  ─────────────────────────── */

.countries { background: var(--white); }
.countries__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.country-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 2.4vw, 32px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--white);
  color: var(--ink);
  min-height: 190px;
  transition: background 0.3s var(--ease);
}
.country-card:hover { background: var(--cloud); }
.country-card__code {
  font-family: var(--font-mono);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--navy);
  line-height: 1;
}
.country-card__code::after {
  content: '';
  display: block;
  width: 26px; height: 1px;
  margin-top: 12px;
  background: var(--silver);
}
.country-card__name {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 4px 0 0;
}
.country-card__fact {
  font-size: 13px;
  line-height: 1.5;
  color: var(--grey);
  margin: 0;
  flex: 1;
}
.country-card__cta {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.country-card--note {
  justify-content: center;
  background: var(--cloud);
  gap: 12px;
}
.country-card--note p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--grey);
}

@media (max-width: 1000px) { .countries__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .countries__grid { grid-template-columns: 1fr; } .country-card { min-height: 0; } }

/* ───────────────────────────  COUNTRY DETAIL PAGES  ─────────────────────────── */

.country-head {
  display: flex;
  align-items: baseline;
  gap: 22px;
  flex-wrap: wrap;
}
.country-head__code {
  font-family: var(--font-mono);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1;
}
.cfacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 36px 0 44px;
}
.cfact {
  border: 1px solid var(--hairline);
  background: var(--cloud);
  padding: 18px 20px;
}
.cfact__label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-soft);
  margin: 0 0 8px;
}
.cfact__value {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0;
}
.cfact__value small {
  display: block;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--grey);
  margin-top: 4px;
}
.country-cta {
  margin-top: 52px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--navy);
  color: #ffffff;
}
.country-cta p {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--mist);
}
.country-cta p b { color: #ffffff; }
.country-cta a.cta--primary {
  background: linear-gradient(180deg, #eef0f4 0%, #c3c7d1 100%);
  border-color: transparent;
  color: var(--navy-deep);
}
.country-cta a.cta--primary:hover {
  background: linear-gradient(180deg, #f7f8fa 0%, #d4d7de 100%);
}

@media (max-width: 640px) { .cfacts { grid-template-columns: 1fr; } }

/* ───────────────────────────  REDUCED MOTION  ─────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  html.js .hero__statement .w,
  html.js .hero__eyebrow,
  html.js .hero__lede,
  html.js .hero__actions,
  html.js .reveal,
  html.js .stamp {
    opacity: 1 !important;
    transform: none !important;
  }
  html.js .hero__mrz-line { width: 100% !important; animation: none !important; }
  .trust__track { animation: none !important; }
}

/* ───────────────────────────  LANG MENU (6 Sprachen)  ─────────────────────────── */

.lang-menu {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  background: transparent;
  transition: border-color 0.4s var(--ease);
  flex-wrap: wrap;
}
.nav.on-dark .lang-menu { border-color: var(--hairline-dark); }
.lang-menu__option {
  padding: 5px 7px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: var(--grey);
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  line-height: 1;
}
.lang-menu__option:hover { color: var(--ink); }
.nav.on-dark .lang-menu__option { color: var(--mist); }
.nav.on-dark .lang-menu__option:hover { color: #ffffff; }
.lang-menu__option.is-active { background: var(--ink); color: #ffffff; }
.nav.on-dark .lang-menu__option.is-active { background: #ffffff; color: var(--navy-deep); }

@media (max-width: 560px) {
  .lang-menu__option { padding: 5px 5px; font-size: 9px; letter-spacing: 0.06em; }
}

/* ───────────────────────────  EU-27 LISTE (Hub)  ─────────────────────────── */

.eu27 {
  border-top: 1px solid var(--hairline);
}
.eu27__row {
  display: grid;
  grid-template-columns: minmax(120px, 200px) 1fr;
  gap: 10px 22px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 13.5px;
  line-height: 1.5;
}
.eu27__name { font-weight: 600; color: var(--ink); }
.eu27__sys { color: var(--grey); }
@media (max-width: 540px) {
  .eu27__row { grid-template-columns: 1fr; gap: 2px; }
}

/* ───────────────────────────  LANG SELECT — Flaggen-Dropdown  ─────────────────────────── */

.nav__links a { white-space: nowrap; }
.nav__links { gap: clamp(16px, 2vw, 30px); }
@media (max-width: 1120px) {
  .nav__links { display: none; }
}

.lang-select { position: relative; }
.lang-select__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink);
  user-select: none;
  list-style: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  line-height: 1;
}
.lang-select__btn::-webkit-details-marker { display: none; }
.lang-select__btn::marker { content: ''; }
.lang-select__btn:hover { border-color: var(--grey-soft); }
.lang-select[open] .lang-select__btn { border-color: var(--navy); }
.nav.on-dark .lang-select__btn { color: #ffffff; border-color: var(--hairline-dark); }
.nav.on-dark .lang-select[open] .lang-select__btn { border-color: var(--silver); }

.lang-select .flag {
  width: 20px;
  height: 12px;
  border-radius: 1.5px;
  display: block;
  box-shadow: 0 0 0 1px rgba(30, 32, 41, 0.18);
  flex-shrink: 0;
}
.lang-select__chev {
  width: 9px;
  height: 6px;
  opacity: 0.55;
  transition: transform 0.25s var(--ease);
}
.lang-select[open] .lang-select__chev { transform: rotate(180deg); }

.lang-select__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid var(--hairline);
  box-shadow: 0 20px 48px -20px rgba(22, 20, 63, 0.38), 0 4px 14px rgba(22, 20, 63, 0.08);
  padding: 6px;
  z-index: 140;
}
.lang-select__opt {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 2px;
  transition: background 0.15s var(--ease);
}
.lang-select__opt:hover { background: var(--cloud); }
.lang-select__opt.is-active {
  background: var(--cloud);
  color: var(--navy);
}
.lang-select__opt.is-active::after {
  content: '';
  margin-left: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy);
}

/* ───────────────────────────  COUNTRY LAYOUT + CONTACT CARD  ─────────────────────────── */

.country-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--pad-x) clamp(60px, 8vw, 100px);
}
.country-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.country-main { min-width: 0; }
.country-aside { position: sticky; top: 88px; }

@media (max-width: 1000px) {
  .country-layout { grid-template-columns: 1fr; gap: 44px; }
  .country-aside { position: static; max-width: 520px; }
}

/* Contact card — the sticky application slip */
.contact-card {
  background: var(--navy);
  color: #ffffff;
  border-radius: 4px;
  padding: clamp(24px, 2.4vw, 30px);
  box-shadow: 0 24px 60px -28px rgba(22, 20, 63, 0.5);
}
.contact-card__doc {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline-dark);
}
.contact-card__lead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 8px;
}
.contact-card__sublead {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--mist);
  margin: 0 0 20px;
}
.contact-card__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 20px;
}
.contact-card__tab {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  background: transparent;
  border: 1px solid var(--hairline-dark);
  border-radius: 2px;
  padding: 10px 8px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.contact-card__tab:hover { color: #ffffff; border-color: var(--silver); }
.contact-card__tab.is-active {
  background: #ffffff;
  color: var(--navy-deep);
  border-color: #ffffff;
}
.contact-card__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-card__field {
  display: block;
  margin-bottom: 12px;
}
.contact-card__row .contact-card__field { margin-bottom: 12px; }
.contact-card__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 6px;
}
.contact-card__field input,
.contact-card__field textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  padding: 10px 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #ffffff;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.contact-card__field textarea { resize: vertical; min-height: 74px; line-height: 1.5; }
.contact-card__field input::placeholder,
.contact-card__field textarea::placeholder { color: rgba(255, 255, 255, 0.42); }
.contact-card__field input:focus,
.contact-card__field textarea:focus {
  outline: none;
  border-color: var(--silver);
  background: rgba(255, 255, 255, 0.12);
}
.contact-card__when { display: none; }
.contact-card.is-callback .contact-card__message { display: none; }
.contact-card.is-callback .contact-card__when { display: block; }
.contact-card__submit {
  width: 100%;
  margin-top: 4px;
  background: linear-gradient(180deg, #eef0f4 0%, #c3c7d1 100%);
  color: var(--navy-deep);
  border: none;
  border-radius: 2px;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: filter 0.2s var(--ease), transform 0.12s var(--ease);
}
.contact-card__submit:hover { filter: brightness(1.04); }
.contact-card__submit:active { transform: scale(0.98); }
.contact-card__submit .lbl-cb { display: none; }
.contact-card.is-callback .contact-card__submit .lbl-eq { display: none; }
.contact-card.is-callback .contact-card__submit .lbl-cb { display: inline; }
.contact-card__trust {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--mist);
  text-align: center;
  margin: 14px 0 0;
}

@media (max-width: 420px) {
  .contact-card__row { grid-template-columns: 1fr; gap: 0; }
}
