/* =========================================================
   BRADA Gruppe — Website
   Editorial layer over the BRADA design tokens.
   Cream canvas · Dark Teal base · Heritage Gold hairlines
   Headlines: DM Serif Display · Body: Gantari Light
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");

:root {
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --gold: #c8a96e;
  --gold-deep: #ab8c52;
  --gold-line: rgba(200, 169, 110, 0.55);
  --cream: #f0ebe0;
  --cream-soft: #f6f2ea;
  --cream-deep: #e7e0d1;
  --ink: #172323;
  --ink-soft: #1f2e2e;
  --on-ink-1: #f0ebe0;
  --on-ink-2: rgba(240, 235, 224, 0.62);
  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ---------- shared layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 11vw, 152px); }

/* ---------- type ---------- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 0;
  font-size: clamp(44px, 8.2vw, 116px);
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
}
.h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
}
.serif-italic { font-style: italic; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow .mark { width: 18px; height: auto; color: var(--gold); flex: none; }
.eyebrow.on-ink { color: var(--gold); }

.lead {
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.6;
  font-weight: 300;
  color: var(--ink-soft);
}
.muted { color: #5a6a6e; }
.on-ink { color: var(--on-ink-1); }
.on-ink-2 { color: var(--on-ink-2); }

/* hairline */
.rule { height: 1px; background: var(--gold-line); border: 0; width: 100%; }
.rule-ink { background: rgba(240,235,224,0.18); }

/* ---------- buttons / links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 500;
  letter-spacing: 0.01em;
  padding: 16px 26px; border-radius: 2px; border: 1px solid transparent;
  cursor: pointer; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-solid { background: var(--ink); color: var(--cream); }
.btn-solid:hover { background: #25403f; }
.btn-ghost-ink { background: transparent; color: var(--ink); border-color: rgba(23,35,35,0.28); }
.btn-ghost-ink:hover { border-color: var(--ink); }
.btn-onink { background: var(--cream); color: var(--ink); }
.btn-onink:hover { background: #fff; }
.btn-ghost-onink { background: transparent; color: var(--cream); border-color: rgba(240,235,224,0.32); }
.btn-ghost-onink:hover { border-color: var(--gold); color: var(--gold); }

.txtlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--ink);
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 3px;
  transition: border-color .25s, gap .25s;
}
.txtlink .arr { transition: transform .25s; }
.txtlink:hover { border-color: var(--gold); }
.txtlink:hover .arr { transform: translateX(3px); }
.txtlink.on-ink { color: var(--cream); }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.988);
  filter: blur(2px);
  transition:
    opacity .85s cubic-bezier(.22,.61,.18,1),
    transform .85s cubic-bezier(.22,.61,.18,1),
    filter .85s ease;
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; filter: none; }
/* Hero-Parallax: Bild bekommt etwas Spielraum nach oben/unten */
.hero > img { will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .hero > img { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* image-slot defaults */
image-slot { display: block; background: var(--cream-deep); }
