:root {
  color-scheme: dark;
  --bg: #08080a;
  --bg-soft: #111116;
  --panel: rgba(22, 20, 27, 0.76);
  --panel-solid: #151319;
  --text: #f6f2e9;
  --muted: #aaa4b1;
  --gold: #d8af57;
  --gold-bright: #f1cf7b;
  --violet: #7651a8;
  --line: rgba(216, 175, 87, 0.22);
  --max: 1180px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 0%, rgba(118, 81, 168, 0.13), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  transform: translateY(-120%);
  border-radius: 0 0 0.5rem 0.5rem;
  background: var(--gold-bright);
  color: #16110a;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
}

.nav {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  min-height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-mark {
  width: 2.5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 8, 10, 0.72);
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.09em;
}

.nav-link {
  padding: 0.65rem 0;
  color: #ddd8df;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--gold-bright);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero {
  position: relative;
  min-height: 760px;
  height: min(92svh, 920px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.98) 0%, rgba(8, 8, 10, 0.88) 38%, rgba(8, 8, 10, 0.28) 72%, rgba(8, 8, 10, 0.65) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 32%),
    radial-gradient(circle at 78% 35%, rgba(216, 175, 87, 0.18), transparent 26rem),
    linear-gradient(135deg, #17121e 0%, #09090b 70%);
}

.hero::after {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero.has-image::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.98) 0%, rgba(8, 8, 10, 0.84) 38%, rgba(8, 8, 10, 0.18) 72%, rgba(8, 8, 10, 0.55) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 34%),
    url("hero-praktikantika.png") center / cover no-repeat;
}

.hero-content {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 9rem 0 8rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.6rem;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.7rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 790px;
  margin-bottom: 1.6rem;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
}

h1 em {
  color: var(--gold-bright);
  font-weight: inherit;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 2.2rem;
  color: #cbc5ce;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.button {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold-bright);
  color: #16110a;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #f7dc96;
  box-shadow: 0 12px 30px rgba(216, 175, 87, 0.22);
}

.button span {
  font-size: 1.15rem;
}

.button-secondary {
  border-color: rgba(241, 207, 123, 0.55);
  background: transparent;
  color: var(--gold-bright);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(241, 207, 123, 0.1);
}

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8.5rem) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.section-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  max-width: 780px;
  margin-bottom: 2rem;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.lead {
  max-width: 760px;
  color: #c8c2cb;
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}

.services {
  padding-top: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 2.2rem 2rem 2.5rem;
}

.service-card + .service-card {
  border-left: 1px solid var(--line);
}

.service-number {
  display: block;
  margin-bottom: 4.4rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.service-card h3 {
  margin-bottom: 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.service-card p {
  margin-bottom: 1.7rem;
  color: var(--muted);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(216, 175, 87, 0.25);
  border-radius: 999px;
  color: #d4ced7;
  font-size: 0.88rem;
  line-height: 1.25;
}

.network {
  padding-top: 0;
}

.network-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 8% 16%, rgba(118, 81, 168, 0.24), transparent 27rem),
    linear-gradient(135deg, rgba(216, 175, 87, 0.06), transparent 46%),
    var(--panel-solid);
  box-shadow: var(--shadow);
}

.network-intro {
  display: grid;
  grid-template-columns: minmax(230px, 0.68fr) minmax(0, 1.5fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: end;
  padding: clamp(2rem, 6vw, 5rem);
}

.network-intro h2 {
  margin-top: 1.1rem;
  margin-bottom: 1.5rem;
}

.network-claim {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.25;
}

.network-copy {
  max-width: 760px;
  margin-bottom: 0;
  color: #c8c2cb;
  font-size: 1.06rem;
}

.network-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--gold-bright);
}

.network-stat strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7rem, 14vw, 12rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.network-stat span {
  margin-top: 1.8rem;
  color: #d4ced7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-transform: uppercase;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.network-card {
  min-height: 235px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.network-card + .network-card {
  border-left: 1px solid var(--line);
}

.network-card > span {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
}

.network-card h3 {
  margin-bottom: 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.15;
}

.network-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.approach {
  padding-top: 0;
}

.approach-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 8vw, 8rem);
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.approach-step {
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(118, 81, 168, 0.05));
}

.approach-step span {
  display: block;
  margin-bottom: 2.7rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.approach-step h3 {
  margin-bottom: 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.approach-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.references {
  padding-top: 0;
}

.references-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 8vw, 8rem);
  margin-bottom: clamp(2.8rem, 7vw, 5.5rem);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.reference-group {
  min-height: 310px;
  padding: clamp(1.7rem, 4vw, 2.7rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 60%);
}

.reference-kicker {
  margin-bottom: 2rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reference-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-list li {
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.35rem;
  background: rgba(8, 8, 10, 0.34);
  color: #d7d1da;
  font-size: 0.92rem;
  line-height: 1.35;
}

.reference-note {
  margin: 1rem 0 0;
  color: #817b87;
  font-size: 0.84rem;
  text-align: right;
}

.contact-shell {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(118, 81, 168, 0.25), transparent 26rem),
    linear-gradient(135deg, rgba(216, 175, 87, 0.09), transparent 45%),
    var(--panel-solid);
  box-shadow: var(--shadow);
  padding: clamp(2rem, 6vw, 5.5rem);
}

.contact-shell h2 {
  max-width: 830px;
  margin-bottom: 1.4rem;
}

.contact-shell .lead {
  margin-bottom: 2rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact-note {
  margin: 1.15rem 0 0;
  color: #aaa4b1;
  font-size: 0.95rem;
}

.contact-note a:hover,
.contact-note a:focus-visible,
.legal-main a:hover,
.legal-main a:focus-visible {
  color: var(--gold-bright);
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  min-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #8f8995;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.3rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-bright);
}

.legal-page {
  background:
    radial-gradient(circle at 80% 0%, rgba(118, 81, 168, 0.16), transparent 28rem),
    var(--bg);
}

.legal-header {
  position: static;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.legal-main {
  width: min(calc(100% - 2rem), 840px);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.legal-main h1 {
  margin-bottom: 3rem;
  font-size: clamp(3.4rem, 8vw, 6rem);
}

.legal-block {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  margin-bottom: 1rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .nav {
    min-height: 5.2rem;
  }

  .brand {
    letter-spacing: 0.09em;
  }

  .hero {
    min-height: 700px;
    height: auto;
  }

  .hero-content {
    padding: 11rem 0 6rem;
  }

  .hero.has-image::before {
    background:
      linear-gradient(90deg, rgba(8, 8, 10, 0.94), rgba(8, 8, 10, 0.5)),
      linear-gradient(0deg, var(--bg) 0%, transparent 50%),
      url("hero-praktikantika.png") 62% center / cover no-repeat;
  }

  h1 {
    font-size: clamp(3.45rem, 18vw, 5.3rem);
  }

  .intro-grid,
  .network-intro,
  .approach-heading,
  .approach-grid,
  .references-intro,
  .reference-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .network-intro {
    align-items: start;
  }

  .network-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-card {
    min-height: auto;
  }

  .network-card:nth-child(odd) {
    border-left: 0;
  }

  .network-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .reference-group {
    min-height: auto;
  }

  .intro-grid {
    gap: 1.4rem;
  }

  .service-card {
    min-height: auto;
  }

  .service-card + .service-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-number {
    margin-bottom: 2.4rem;
  }

  .site-footer {
    padding: 2rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-actions .button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .nav-menu .nav-link:not(:last-child) {
    display: none;
  }

  .network-grid {
    grid-template-columns: 1fr;
  }

  .network-card + .network-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
