/* ===========================
   Tokens
   =========================== */
:root {
  --ink:         #111111;
  --ink-muted:   #3D3D3D;
  --paper:       #FFFFFF;
  --accent:      #F25A0A;
  --accent-deep: #C44400;
  --line:        #E0E0E0;
  --line-dark:   #2A2A2A;

  --font-display: 'Barlow Semi Condensed', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --text-xs:  0.875rem;
  --text-s:   1rem;
  --text-m:   1.125rem;
  --text-l:   1.5rem;
  --text-xl:  2.25rem;
  --text-2xl: 3.5rem;

  --space-xs:  0.5rem;
  --space-s:   1rem;
  --space-m:   1.5rem;
  --space-l:   3rem;
  --space-xl:  5rem;
  --space-2xl: 8rem;

  --max-w:  72rem;
  --gutter: 1.5rem;
}

/* ===========================
   Font faces
   =========================== */
@font-face {
  font-family: 'Barlow Semi Condensed';
  src: url('../fonts/barlow-semi-condensed-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Semi Condensed';
  src: url('../fonts/barlow-semi-condensed-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

/* ===========================
   Reduced motion
   =========================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration:        0.01ms !important;
    animation-iteration-count: 1      !important;
    transition-duration:       0.01ms !important;
  }
}

/* ===========================
   Base
   =========================== */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-m);
  line-height: 1.6;
  color: var(--ink);
  background: var(--ink);
}

/* ===========================
   Focus
   =========================== */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, var(--text-2xl)); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 4vw, var(--text-xl)); font-weight: 700; }
h3 { font-size: var(--text-l); font-weight: 600; }

p { max-width: 60ch; }
a { color: inherit; }

/* ===========================
   Layout helpers
   =========================== */
.container {
  width: min(var(--max-w), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

/* ===========================
   Colour themes
   =========================== */
.dark {
  background: var(--ink);
  color: var(--paper);
}

.light {
  background: var(--paper);
  color: var(--ink);
}

/* ===========================
   Logo mark
   =========================== */
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
}

.logo .dot { color: var(--accent); }

/* ===========================
   Site header
   =========================== */
.site-header {
  padding-block: var(--space-m);
  border-bottom: 1px solid var(--line-dark);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  flex-wrap: wrap;
}

.header-badge {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ===========================
   Language switcher
   =========================== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.lang-switcher a {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.3);
  padding: 0.2rem 0.35rem;
  border-radius: 2px;
  transition: color 0.15s;
}

.lang-switcher a:hover { color: rgba(255, 255, 255, 0.7); }

.lang-switcher a[aria-current="page"] { color: var(--accent); }

.lang-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: var(--text-xs);
  user-select: none;
}

/* ===========================
   Hero
   =========================== */
.hero {
  padding-block: var(--space-2xl) var(--space-xl);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-m);
}

.hero__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero h1 { margin-bottom: var(--space-m); }

.hero__lead {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 52ch;
  margin-bottom: var(--space-l);
}

.hero__notice {
  border-left: 3px solid var(--accent);
  padding: var(--space-s) var(--space-m);
  background: rgba(255, 255, 255, 0.04);
  font-size: var(--text-s);
  color: rgba(255, 255, 255, 0.55);
  max-width: 48ch;
}

/* ===========================
   Contact section
   =========================== */
.contact-section {
  padding-block: var(--space-xl);
}

.contact-section h2 {
  margin-bottom: var(--space-l);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  margin-bottom: var(--space-l);
}

.contact-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-m);
}

.contact-list .label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  min-width: 5.5rem;
  flex-shrink: 0;
}

.contact-list a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.15s;
}

.contact-list a:hover { color: var(--accent); }

.contact-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.15s;
}

.contact-cta:hover        { background: var(--accent-deep); }
.contact-cta .dot         { color: var(--accent); }

.placeholder-tel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--line);
  font-style: italic;
}

/* ===========================
   Site footer
   =========================== */
.site-footer {
  padding-block: var(--space-m);
  border-top: 1px solid var(--line-dark);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-s);
}

.footer-meta {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  list-style: none;
}

.footer-nav a {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s;
}

.footer-nav a:hover { color: var(--accent); }

/* ===========================
   Inner page header
   =========================== */
.page-hero {
  padding-block: var(--space-xl) var(--space-l);
  border-bottom: 1px solid var(--line-dark);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

/* ===========================
   Prose (Impressum / Datenschutz)
   =========================== */
.prose {
  padding-block: var(--space-l) var(--space-2xl);
}

.prose .container { max-width: 44rem; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-muted);
  margin-bottom: var(--space-l);
  transition: color 0.15s;
}

.back-link:hover { color: var(--accent); }

.back-link::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.prose h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: var(--space-l);
  margin-bottom: var(--space-s);
}

.prose h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: var(--space-m);
  margin-bottom: var(--space-xs);
}

.prose p {
  max-width: none;
  margin-bottom: var(--space-s);
  line-height: 1.7;
}

.prose ul, .prose ol {
  padding-left: 1.5rem;
  margin-bottom: var(--space-s);
}

.prose li { margin-bottom: 0.4em; }

.prose a {
  color: var(--accent-deep);
  text-underline-offset: 0.2em;
}

.prose a:hover { color: var(--accent); }

.prose .placeholder {
  background: #FFF3CD;
  color: #7A4F00;
  padding: 0.1em 0.35em;
  border-radius: 3px;
  font-size: 0.9em;
  font-weight: 500;
}

/* Orange dot as list marker */
ul.dot-list {
  list-style: none;
  padding-left: 0;
}

ul.dot-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5em;
}

ul.dot-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 640px) {
  :root {
    --space-xl:  3rem;
    --space-2xl: 4.5rem;
  }

  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-list li {
    flex-direction: column;
    gap: 0.2rem;
  }

  .contact-list .label { min-width: auto; }

  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
