:root {
  --bg:        #14100c;
  --bg-soft:   #1c1712;
  --panel:     #221b15;
  --line:      rgba(214, 178, 120, 0.16);
  --amber:     #d6a45a;
  --amber-2:   #e6bd78;
  --copper:    #b6743a;
  --cream:     #f5ede0;
  --muted:     #b3a793;
  --muted-2:   #8a7d6b;
  --maxw:      1140px;
  --radius:    16px;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--cream);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 820px) {
  .wrap { padding: 0 32px; }
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber-2), var(--copper));
  color: #241708;
  box-shadow: 0 10px 30px -10px rgba(214, 164, 90, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(214, 164, 90, 0.7); }
.btn-ghost {
  border-color: var(--line);
  color: var(--cream);
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover { border-color: var(--amber); transform: translateY(-2px); }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(20, 16, 12, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  min-height: 72px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand .mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: radial-gradient(circle at 30% 25%, var(--amber-2), var(--copper));
  color: #241708;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-family: 'Inter', sans-serif;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 0.92rem; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--cream); }
.nav-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }

@media (max-width: 820px) {
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .brand { font-size: 1.05rem; gap: 10px; }
  .brand .mark { width: 28px; height: 28px; font-size: 0.68rem; }
  .nav-cta .btn { padding: 10px 18px; font-size: 0.88rem; }
}
@media (max-width: 480px) {
  .nav-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(88vh, 820px);
  padding: clamp(90px, 14vw, 160px) 0 clamp(80px, 12vw, 140px);
  overflow: hidden;
  isolation: isolate;
}

/* Photo layer */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../images/Website_HeroImage.webp') center 32% / cover no-repeat;
  /* farblich an die Seite angleichen */
  filter: saturate(1.08) contrast(1.04) brightness(0.82);
  transform: scale(1.04);
}
/* Dunkler Verlauf für Lesbarkeit + Fade in die Seite */
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(18, 14, 10, 0.97) 0%,
      rgba(18, 14, 10, 0.88) 26%,
      rgba(18, 14, 10, 0.45) 50%,
      rgba(18, 14, 10, 0.20) 68%,
      rgba(18, 14, 10, 0.55) 100%),
    linear-gradient(to top,
      var(--bg) 0%,
      rgba(20, 16, 12, 0) 26%,
      rgba(20, 16, 12, 0) 74%,
      rgba(20, 16, 12, 0.6) 100%);
}
/* Warmer Tint + Vignette zur Cohesion mit der Marke */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 78% 22%, rgba(214, 164, 90, 0.16), transparent 60%),
    radial-gradient(120% 120% at 50% 50%, transparent 55%, rgba(10, 7, 4, 0.55) 100%);
  mix-blend-mode: screen;
  opacity: 0.85;
}

.hero-inner { position: relative; z-index: 1; width: 100%; }
.hero-copy { max-width: 620px; }

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  margin: 20px 0 0;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.hero .lede {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  color: #d9cdb9;
  max-width: 42ch;
  margin-top: 22px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}
.tagline {
  display: inline-block;
  margin-top: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--amber-2);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

@media (max-width: 720px) {
  .hero-media { background-position: center 30%; }
  /* stärkerer Scrim auf Mobile für Lesbarkeit */
  .hero-media::before {
    background:
      linear-gradient(180deg,
        rgba(18, 14, 10, 0.72) 0%,
        rgba(18, 14, 10, 0.60) 40%,
        rgba(18, 14, 10, 0.75) 75%,
        var(--bg) 100%);
  }
}
@media (max-width: 560px) {
  /* Buttons bleiben nebeneinander statt zu stapeln */
  .hero-actions { flex-wrap: nowrap; gap: 10px; }
  .hero-actions .btn { padding: 12px 18px; font-size: 0.88rem; }
}
@media (max-width: 380px) {
  .hero-actions .btn { padding: 10px 14px; font-size: 0.82rem; gap: 8px; }
}

/* ---------- Marquee stats ---------- */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 44px 0;
}
.stat { text-align: center; }
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--amber-2);
}
.stat .lbl { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.04em; }
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
}

/* ---------- Sections ---------- */
section.block { padding: clamp(72px, 10vw, 120px) 0; }
.section-head { max-width: 620px; margin-bottom: 54px; }
.section-head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-top: 14px;
}
.section-head p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(214,164,90,0.4); }
.card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(214,164,90,0.12);
  margin-bottom: 22px;
}
.card .ico svg { width: 26px; height: 26px; stroke: var(--amber-2); }
.card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.97rem; }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split .panel {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.65);
}
/* Foto-Ebene, farblich an die Seite angeglichen */
.split .panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/fasslager.webp') center / cover no-repeat;
  filter: saturate(1.06) contrast(1.03) brightness(0.9);
}
/* Warmer Tint + sanfte Vignette zur Cohesion */
.split .panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 25% 15%, rgba(214, 164, 90, 0.14), transparent 60%),
    radial-gradient(120% 120% at 50% 55%, transparent 58%, rgba(10, 7, 4, 0.5) 100%);
}
.split h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 14px; }
.split p { color: var(--muted); margin-top: 18px; font-size: 1.03rem; }
.split ul { list-style: none; margin-top: 24px; display: grid; gap: 14px; }
.split li { display: flex; gap: 12px; align-items: flex-start; color: var(--cream); font-size: 0.98rem; }
.split li svg { flex: none; width: 20px; height: 20px; stroke: var(--amber-2); margin-top: 3px; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split .panel { order: -1; }
}

/* ---------- Contact / CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(150deg, #2a2016, #191109);
  border: 1px solid var(--line);
  padding: clamp(48px, 8vw, 80px);
  text-align: center;
}
.cta::before {
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(60% 90% at 50% 0%, rgba(214,164,90,0.20), transparent 60%);
  pointer-events:none;
}
.cta h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); position: relative; }
.cta p { color: var(--muted); margin: 18px auto 34px; max-width: 46ch; position: relative; }
.mail {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-family: 'Cormorant Garamond', serif;
  color: var(--amber-2);
  border-bottom: 1px solid rgba(214,164,90,0.4);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.mail:hover { color: var(--cream); border-color: var(--cream); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 40px;
  margin-top: clamp(60px, 8vw, 100px);
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted-2);
  font-size: 0.88rem;
}
.foot a { color: var(--muted); }
.foot a:hover { color: var(--cream); }
.disclaimer {
  text-align: center;
  color: var(--muted-2);
  font-size: 0.8rem;
  margin-top: 26px;
  letter-spacing: 0.02em;
}

/* reveal on load */
.reveal { opacity: 0; transform: translateY(16px); animation: rise .8s ease forwards; }
.reveal.d1 { animation-delay: .08s; }
.reveal.d2 { animation-delay: .16s; }
.reveal.d3 { animation-delay: .24s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Simple content pages (Impressum etc.) ---------- */
.page-head {
  padding: clamp(64px, 10vw, 100px) 0 40px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.page-head h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-top: 14px;
}
.legal {
  padding: clamp(56px, 8vw, 90px) 0;
  max-width: 720px;
}
.legal h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--amber-2);
}
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--cream); margin-bottom: 6px; }
.legal a.inline-link {
  color: var(--amber-2);
  border-bottom: 1px solid rgba(214,164,90,0.4);
  transition: color .2s, border-color .2s;
}
.legal a.inline-link:hover { color: var(--cream); border-color: var(--cream); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color .2s;
}
.back-link:hover { color: var(--amber-2); }
