/* ─── Tokens ───────────────────────────────────────────────────────────────── */
:root {
  --primary:      #F59C00;
  --base-100:     oklch(98% 0.007 70);
  --base-200:     oklch(94% 0.012 70);
  --base-300:     oklch(89% 0.016 70);
  --content:      oklch(14% 0.004 286);
  --muted:        oklch(14% 0.004 286 / 0.50);
  --faint:        oklch(14% 0.004 286 / 0.22);
  --border:       oklch(14% 0.004 286 / 0.08);
}

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

html { height: 100%; }

body {
  min-height: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  color: var(--content);
  background-color: var(--base-200);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* ─── Orbs ─────────────────────────────────────────────────────────────────── */
.orb {
  position: fixed;
  border-radius: 9999px;
  pointer-events: none;
  z-index: 0;
}

.orb-tl {
  width: 700px;
  height: 700px;
  top: -200px;
  left: -200px;
  background: var(--primary);
  opacity: 0.13;
  filter: blur(140px);
}

.orb-br {
  width: 600px;
  height: 600px;
  bottom: -180px;
  right: -150px;
  background: var(--primary);
  opacity: 0.08;
  filter: blur(120px);
}

/* ─── Page layout ──────────────────────────────────────────────────────────── */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ─── Brand ────────────────────────────────────────────────────────────────── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: var(--content);
  text-decoration: none;
  margin-bottom: 5rem;
}

.brand-logo {
  height: 8rem;
  width: auto;
}

/* ─── Main ─────────────────────────────────────────────────────────────────── */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ─── Badge ────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

/* ─── Headline ─────────────────────────────────────────────────────────────── */
.headline {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0.02em;
  color: var(--content);
  margin-bottom: 1.75rem;
}

.headline em {
  font-style: normal;
  color: var(--primary);
}

/* ─── Copy ─────────────────────────────────────────────────────────────────── */
.copy {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* ─── Divider ──────────────────────────────────────────────────────────────── */
.divider {
  width: 3rem;
  height: 1px;
  background: var(--border);
  margin-bottom: 2.5rem;
}

/* ─── Contact ──────────────────────────────────────────────────────────────── */
.contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}

a.contact-item:hover {
  opacity: 0.75;
}

.contact-item--static {
  cursor: default;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--base-100);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1rem;
  height: 1rem;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}

.contact-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--content);
}

/* ─── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.625rem;
  font-size: 0.8125rem;
  color: var(--faint);
}

.footer-sep {
  color: var(--border);
}

/* ─── Impressum ────────────────────────────────────────────────────────────── */
.impressum {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.impressum-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 2rem;
}

.impressum-block {
  margin-bottom: 1.75rem;
}

.impressum-heading {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.375rem;
}

.impressum-body {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--faint);
  margin-bottom: 0.5rem;
}

.impressum-body:last-child {
  margin-bottom: 0;
}

.impressum-link {
  color: var(--faint);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.impressum-link:hover {
  color: var(--muted);
}

/* ─── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .page {
    padding: 2rem 1.5rem 2rem;
  }

  .brand {
    margin-bottom: 3.5rem;
  }

  .headline {
    font-size: 2rem;
  }
}
