:root {
  --bg-main: #050408;
  --gold-soft: #f3e8cf;
  --gold-mid: #d5b678;
  --gold-deep: #a58547;
  --text-light: #f7f5f0;
  --text-muted: #d1cfcb;
  --text-dark: #141014;
  --accent-red: #8c1118;

  --radius-xl: 34px;
  --radius-lg: 24px;

  --shadow-strong: 0 24px 68px rgba(0, 0, 0, 0.78);
}

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

/* Base */
body {
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #030306;
  color: var(--text-dark);
  overflow-x: hidden;   /* mobile safe */
  overflow-y: auto;     /* mobile safe */
  -webkit-text-size-adjust: 100%;
}

/* ================= EXECUTIVE MOVING SPOTLIGHT BACKGROUND ================= */

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3.2vw, 1.5rem);
  position: relative;
  isolation: isolate;
}

/* Atmosphere layers */
.page::before,
.page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

/* dark stage */
.page::before {
  background: radial-gradient(circle at 50% 15%, #191622, #050408 62%);
}

/* moving spotlight beams */
.page::after {
  background:
    conic-gradient(
      from 205deg at 18% 0%,
      rgba(245, 225, 185, 0.0) 0deg,
      rgba(245, 225, 185, 0.0) 12deg,
      rgba(245, 225, 185, 0.70) 26deg,
      rgba(245, 225, 185, 0.0) 44deg,
      rgba(245, 225, 185, 0.0) 360deg
    ),
    conic-gradient(
      from 12deg at 82% 100%,
      rgba(150, 18, 24, 0.0) 0deg,
      rgba(150, 18, 24, 0.0) 18deg,
      rgba(150, 18, 24, 0.75) 34deg,
      rgba(150, 18, 24, 0.0) 54deg,
      rgba(150, 18, 24, 0.0) 360deg
    ),
    radial-gradient(circle at 50% -12%, rgba(243, 226, 190, 0.32), transparent 72%);
  mix-blend-mode: screen;
  filter: blur(13px);
  animation: movingSpots 24s ease-in-out infinite alternate;
  opacity: 0.9;
}

@keyframes movingSpots {
  0%   { transform: translate(0,0) rotate(0deg) scale(1); opacity: .78; }
  25%  { transform: translate(-12px, 8px) rotate(-2deg) scale(1.015); opacity:.88;}
  50%  { transform: translate(14px,-8px) rotate(1.5deg) scale(1.025); opacity:.86;}
  75%  { transform: translate(-8px,5px) rotate(-1.5deg) scale(1.01); opacity:.82;}
  100% { transform: translate(6px,-4px) rotate(1deg) scale(1.02); opacity:.88;}
}

/* ================= 5 STAR PREMIUM – TOP ARC LUXURY (mobile responsive) ================= */

.stars {
  position: absolute;
  top: 3.8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 28px;
  z-index: 3;
  opacity: .995;
  pointer-events: none;
}

.star {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #fff9dd 5%, #ffe9b6 40%, #d8b975 95%);
  clip-path: polygon(
    50% 0%, 61% 35%,
    98% 35%, 68% 57%,
    79% 91%, 50% 70%,
    21% 91%, 32% 57%,
    2% 35%, 39% 35%
  );
  filter:
    drop-shadow(0 0 24px rgba(243,226,190,.75))
    drop-shadow(0 0 70px rgba(243,226,190,.45))
    drop-shadow(0 0 120px rgba(243,226,190,.35));
  animation: starGlow 3.2s ease-in-out infinite alternate;
}

/* arc */
.star:nth-child(1){ transform: translateY(22px) rotate(-8deg) scale(.94); }
.star:nth-child(2){ transform: translateY(10px) rotate(-4deg) scale(.98); }
.star:nth-child(3){ transform: translateY(0)   scale(1.18); }
.star:nth-child(4){ transform: translateY(10px) rotate(4deg)  scale(.98); }
.star:nth-child(5){ transform: translateY(22px) rotate(8deg)  scale(.94); }

@keyframes starGlow {
  0% {
    filter:
      drop-shadow(0 0 14px rgba(243,226,190,.45))
      drop-shadow(0 0 40px rgba(243,226,190,.25));
    transform: translateY(0);
  }
  50% {
    filter:
      drop-shadow(0 0 40px rgba(243,226,190,.85))
      drop-shadow(0 0 120px rgba(243,226,190,.55));
    transform: translateY(-3px) scale(1.02);
  }
  100% {
    filter:
      drop-shadow(0 0 18px rgba(243,226,190,.55))
      drop-shadow(0 0 60px rgba(243,226,190,.32));
    transform: translateY(0);
  }
}

/* ================= CARD ================= */

.card {
  max-width: 1150px;
  width: min(1150px, 100%);
  min-height: 320px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(130deg, #06060a 0%, #050509 34%, #f3e8cf 34%, #d1b173 100%);
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.55fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  animation: cardFloat 14s ease-in-out infinite alternate;
}

@media (max-width: 880px) {
  .card {
    grid-template-columns: 1fr;
    background:
      linear-gradient(155deg, #040409 0%, #050509 40%, #f3e8cf 40%, #d1b173 100%);
  }
}

/* subtiler sheen */
.card::before {
  content: "";
  position: absolute;
  inset: -22%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 46%,
    rgba(255, 255, 255, 0.04) 56%,
    transparent 100%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-60%);
  animation: cardSheen 22s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cardFloat {
  0%   { transform: translateY(0px);  box-shadow:0 24px 64px rgba(0,0,0,.78); }
  50%  { transform: translateY(-4px); box-shadow:0 30px 80px rgba(0,0,0,.9); }
  100% { transform: translateY(-1px); box-shadow:0 26px 70px rgba(0,0,0,.82); }
}

@keyframes cardSheen {
  0%   { opacity:0; transform:translateX(-60%); }
  45%  { opacity:0; }
  55%  { opacity:.7; transform:translateX(0%); }
  65%  { opacity:0; transform:translateX(40%); }
  100% { opacity:0; transform:translateX(60%); }
}

/* ================= LEFT SIDE ================= */

.card__left {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.6rem) clamp(1.2rem, 3.4vw, 2.3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-light);
}

/* LOGO + HOVER */
.logo-wrap {
  width: 190px;
  max-width: 100%;
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 0, 0, 0.55), transparent 55%),
    linear-gradient(135deg, #f3e6c7, #ccb78b);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .6s ease, box-shadow .6s ease, filter .6s ease;
  position: relative;
}

.logo-wrap::after {
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:36px;
  background: radial-gradient(circle, rgba(247,230,191,.6), rgba(211,176,114,.08), transparent 70%);
  opacity:0;
  filter:blur(12px);
  transition: opacity .6s ease;
}

.logo-wrap:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 26px 78px rgba(0,0,0,.6);
  filter: brightness(1.03);
}
.logo-wrap:hover::after { opacity: 1; }

.logo {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 22px;
  transition: transform .6s ease, filter .6s ease;
}
.logo-wrap:hover .logo {
  transform: scale(1.04);
  filter: drop-shadow(0 5px 20px rgba(243,226,190,.32));
}

.left-meta {
  display:flex;
  align-items:center;
  gap:.8rem;
  margin-top:1.4rem;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.16em;
  opacity:.86;
}

.left-meta__line {
  width:34px;
  height:2px;
  background:linear-gradient(to right,var(--accent-red),var(--gold-mid));
  flex: 0 0 auto;
}

.left-meta__text span {
  display:block;
  font-size:.7rem;
  text-transform:none;
  letter-spacing:.06em;
}

/* ================= RIGHT SIDE ================= */

.card__right {
  padding: clamp(1.6rem, 4vw, 2.7rem) clamp(1.2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-dark);
  position: relative;
  z-index: 0;
}

/* gläsernes panel */
.card__right::before {
  content: "";
  position: absolute;
  inset: 0.8rem 0.95rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,0.40), rgba(255,255,255,0.16));
  box-shadow:
    0 18px 40px rgba(0,0,0,0.40),
    inset 0 0 0 1px rgba(255,255,255,0.32);
  opacity: 0.94;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 880px) {
  .card__right::before { inset: 0.7rem 0.8rem; }
}

/* Badge */
.badge {
  display:inline-flex;
  align-items:center;
  padding:.35rem .9rem;
  border-radius:999px;
  border:1px solid rgba(152,17,24,.4);
  color:var(--accent-red);
  font-size:.8rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:1rem;
  background:rgba(241,228,196,.94);
  box-shadow:0 0 0 rgba(152,17,24,0);
  animation: badgePulse 3s ease-in-out infinite;
  position:relative;
  overflow:hidden;
  width: fit-content;
}

.badge::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(152,17,24,.35);
  opacity:0;
  transition:opacity .3s ease;
}
.badge:hover::after{opacity:1;}

@keyframes badgePulse{
  0%{ transform:translateY(0) scale(1); box-shadow:0 0 0 0 rgba(152,17,24,0); }
  45%{ transform:translateY(-1px) scale(1.02); box-shadow:0 0 16px 2px rgba(152,17,24,.18); }
  100%{ transform:translateY(0) scale(1); box-shadow:0 0 0 0 rgba(152,17,24,0); }
}

/* Headline */
.headline{
  margin:0 0 .85rem;
  font-size: clamp(1.45rem, 3.8vw, 2.05rem);
  line-height:1.18;
  font-family:"Playfair Display","Times New Roman",serif;
  font-weight:600;
  letter-spacing: .01em;
}
.headline span{
  display:block;
  margin-top:.18rem;
  font-size: clamp(1rem, 2.7vw, 1.18rem);
  font-family:"Poppins",system-ui,sans-serif;
  font-weight:500;
}

/* Text */
.subline{
  margin:0 0 1.25rem;
  font-size: clamp(.92rem, 2.6vw, .96rem);
  color:#4b4540;
  max-width: 62ch;
}

/* Divider */
.divider{
  width:2px;
  height:88px;
  background:var(--accent-red);
  margin:.4rem 0 1.1rem;
}

/* Services */
.services{
  list-style:none;
  padding:0;
  margin:0 0 1.4rem;
  font-size: clamp(.92rem, 2.6vw, .96rem);
  font-weight:600;
}
.services li{
  position:relative;
  padding-left:1.45rem;
  line-height: 1.5;
}
.services li::before{
  content:"";
  position:absolute;
  left:0;
  top:.75em;
  width:11px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(to right,var(--accent-red),var(--gold-mid));
}
.services li+li{margin-top:.28rem;}

/* Kontakt */
.contact{
  display:flex;
  flex-wrap:wrap;
  gap:1.1rem 1.7rem;
  font-size: .92rem;
  margin-bottom:.85rem;
}
.contact h2{
  margin:0 0 .25rem;
  font-size:.9rem;
  font-weight:600;
}
.contact p{margin:0;}
.contact a{
  color:#171310;
  text-decoration:none;
  border-bottom:1px solid transparent;
}
.contact a:hover{border-bottom-color:rgba(23,19,16,.4);}

/* Status */
.status{
  margin:0;
  font-size:.85rem;
  color:#5e5850;
}
.highlight-status{
  position: relative;
  display: inline-block;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3e6c7, #d2b172);
  color: #171310;
  font-weight: 600;
  letter-spacing: .06em;
  box-shadow: 0 10px 34px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.35);
  margin-top: .6rem;
  width: fit-content;
  max-width: 100%;
}

/* ================= MOBILE OPTIMIZATION (keine Layout-Änderung, nur optimal) ================= */

@media (max-width: 880px) {
  .card__left {
    align-items: center;
    text-align: center;
    gap: 1.2rem;
  }
  .left-meta { justify-content: center; }
  .card__left { padding-bottom: 1.4rem; }

  /* Divider wird horizontal -> wirkt auf mobile deutlich cleaner */
  .divider { width: 92px; height: 2px; margin: 1rem 0 1rem; }
}

@media (max-width: 520px) {
  /* Sterne: sichtbar, aber nicht dominant */
  .stars { top: 5.2%; gap: 14px; }
  .star { width: 34px; height: 34px; }
  .star:nth-child(1){ transform: translateY(10px) rotate(-8deg) scale(.96); }
  .star:nth-child(2){ transform: translateY(5px) rotate(-4deg) scale(.98); }
  .star:nth-child(3){ transform: translateY(0) scale(1.12); }
  .star:nth-child(4){ transform: translateY(5px) rotate(4deg) scale(.98); }
  .star:nth-child(5){ transform: translateY(10px) rotate(8deg) scale(.96); }

  /* Panel-Inset etwas enger -> mehr nutzbarer Platz */
  .card__right::before { inset: 0.65rem 0.7rem; }

  /* Links/Typo kompakter -> keine Umbruchsprobleme */
  .badge { letter-spacing: .16em; }
  .contact { gap: 1rem 1.2rem; }
  .highlight-status { padding: .55rem 1rem; }
}

/* Sehr kleine Geräte */
@media (max-width: 380px) {
  .logo-wrap { padding: 1.05rem; }
  .services li { padding-left: 1.25rem; }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .page::after, .card, .card::before, .star, .badge { animation: none !important; }
}
