/* ── Design-System-Tokens (aus src/design-system/tokens.ts) ─────────────── */

:root {
  /* Greens */
  --green-900: #14352A;
  --green-700: #1F4F3E; /* brand primary */
  --green-600: #2D6A52;
  --green-500: #3F8068;
  --green-300: #A6C2B4;

  /* Creams */
  --cream-50:  #F5F1E8; /* page background */
  --cream-100: #EDE7D7;
  --surface:   #FBF8F1;
  --surface-2: #FFFDF7;

  /* Ink (text) */
  --ink-900: #1A1F1B;
  --ink-700: #3A413C;
  --ink-500: #5A5F58;
  --ink-400: #7D8278;

  /* Brass */
  --brass-500: #B8924A;
  --brass-300: #D6B883;

  /* Lines */
  --line:        #E6E0D0;
  --line-strong: #D2CBB6;

  /* Type families */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Geist', system-ui, -apple-system, sans-serif;
  --font-mono:    'Geist Mono', ui-monospace, SFMono-Regular, monospace;
}

/* ── Reset / Base ───────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ui);
  font-weight: 400;
  color: var(--ink-900);
  background-color: var(--cream-50);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color 120ms ease;
}

a:hover {
  color: var(--green-600);
  text-decoration: underline;
}

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

/* ── Layout ─────────────────────────────────────────────────────────────── */

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* ── Header / Nav ──────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: rgba(245, 241, 232, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.lang-switch {
  display: inline-flex;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}

.lang-switch button {
  border: 0;
  background: transparent;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-500);
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 120ms ease;
}

.lang-switch button:hover {
  color: var(--ink-900);
}

.lang-switch button.active {
  background-color: var(--green-700);
  color: var(--cream-50);
}

/* ── Hero ──────────────────────────────────────────────────────────────── */

.hero {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

.hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  margin: 0 auto 32px;
  box-shadow: 0 9px 20px rgba(20, 53, 42, 0.18);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green-700);
  margin-bottom: 16px;
}

.hero .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--ink-500);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Section heading ──────────────────────────────────────────────────── */

.section-label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-500);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin-bottom: 32px;
}

/* ── About ─────────────────────────────────────────────────────────────── */

.about {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-700);
  margin-bottom: 20px;
  max-width: 640px;
}

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

.coming-soon {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: var(--green-700);
  color: var(--cream-50);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ── Contact ──────────────────────────────────────────────────────────── */

.contact p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-700);
  margin-bottom: 24px;
  max-width: 540px;
}

.mailto-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--green-700);
  color: var(--cream-50);
  border-radius: 14px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: background-color 120ms ease, transform 120ms ease;
}

.mailto-btn:hover {
  background-color: var(--green-600);
  color: var(--cream-50);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ── Footer ───────────────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background-color: var(--surface);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.site-footer p {
  font-size: 13px;
  color: var(--ink-500);
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer a {
  font-size: 13px;
  color: var(--ink-700);
}

/* ── Impressum-Page ───────────────────────────────────────────────────── */

.legal {
  padding-top: 60px;
  padding-bottom: 80px;
}

.legal h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 48px);
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin-bottom: 32px;
}

.legal h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink-900);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  margin-bottom: 12px;
}

.legal .placeholder {
  background-color: var(--cream-100);
  border-left: 3px solid var(--brass-500);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 12px 0;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-700);
}

/* Impressum-Daten als Bild — Privacy: Text nicht durchsuchbar im DOM */
.legal .impressum-data {
  display: block;
  max-width: 560px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 12px 0 24px;
  user-select: none;
  -webkit-user-select: none;
}

.back-link {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--ink-500);
}

.back-link:hover {
  color: var(--green-700);
  text-decoration: none;
}

/* ── Mobile ───────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
  section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }

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