/* =========================================================
   AC-WANDTATTOO by Abby Cole — Baustellen-Seite
   Helles, warmes Farbverlaufs-Thema statt Foto: das Logo ist
   schwarz auf Transparent, daher heller Verlauf Creme -> Rot,
   passend zum roten Stempel-Badge im Logo.
   ========================================================= */
:root{
  --cream:#faf5ee;
  --peach:#f3c9a8;
  --red:#d51414;
  --red-deep:#7a0c0c;
  --charcoal:#211c1a;
  --grey:#5c534d;

  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

body{
  margin:0;
  background:var(--cream);
  color:var(--charcoal);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
}

a{ color:inherit; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  text-align:center;
}

.hero-gradient{
  position:absolute; inset:0;
  background: linear-gradient(120deg,
    var(--cream) 0%,
    var(--peach) 35%,
    var(--red) 72%,
    var(--red-deep) 100%);
  background-size: 300% 300%;
  animation: gradient-drift 16s ease-in-out infinite;
}
@keyframes gradient-drift{
  0%{ background-position: 0% 30%; }
  50%{ background-position: 100% 70%; }
  100%{ background-position: 0% 30%; }
}

.hero-content{
  position:relative; z-index:2;
  padding: 0 1.4rem;
  display:flex; flex-direction:column; align-items:center;
}

.hero-logo{
  width:min(560px, 82vw);
  height:auto;
  margin-bottom:2rem;
  filter: drop-shadow(0 10px 26px rgba(33,28,26,.25));
}

.hero-notice{
  font-size:clamp(.95rem, 1.6vw, 1.15rem);
  letter-spacing:.02em;
  color:var(--charcoal);
  line-height:1.7;
  max-width:460px;
  margin:0;
  font-weight:500;
  text-shadow: 0 1px 12px rgba(250,245,238,.6);
}

/* ---------- Scroll cue ---------- */
.scroll-cue{
  position:absolute; bottom:2.2rem; left:50%; transform:translateX(-50%);
  z-index:2; width:22px; height:36px; border:2px solid rgba(33,28,26,.45); border-radius:20px;
  display:flex; align-items:flex-start; justify-content:center; padding-top:6px;
  text-decoration:none;
}
.scroll-cue span{
  width:4px; height:8px; border-radius:2px; background:var(--charcoal);
  animation: scroll-cue-move 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-move{
  0%{ opacity:1; transform:translateY(0); }
  70%{ opacity:0; transform:translateY(10px); }
  100%{ opacity:0; transform:translateY(0); }
}

/* ---------- Impressum ---------- */
.imprint-section{
  position:relative;
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 5rem 1.4rem 6rem;
  background: linear-gradient(180deg, var(--red-deep) 0%, #3a0808 100%);
}

.imprint-panel{
  position:relative;
  z-index:2;
  max-width:560px;
  width:100%;
  background: rgba(250,245,238,.94);
  border: 1px solid rgba(33,28,26,.08);
  border-radius:8px;
  padding: 2.6rem 2.4rem;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.5);
}

.eyebrow{
  text-transform:uppercase; letter-spacing:.16em; font-size:.7rem;
  color:var(--red); font-weight:700; margin:0 0 .8em;
}

.imprint-panel h2{
  font-family:var(--font-display);
  font-size:1.6rem;
  letter-spacing:.02em;
  margin:0 0 1em;
  color:var(--charcoal);
}

.imprint-panel p{
  color:var(--grey);
  line-height:1.75;
  margin:0 0 1.1em;
  font-size:.95rem;
}

.imprint-panel a{
  color:var(--red);
  border-bottom:1px solid rgba(213,20,20,.35);
  text-decoration:none;
}
.imprint-panel a:hover{ border-color:var(--red); }

.imprint-footnote{
  margin-top:1.8em;
  padding-top:1.4em;
  border-top:1px solid rgba(33,28,26,.1);
  font-size:.78rem;
  color:var(--grey);
}

@media (max-width:520px){
  .imprint-panel{ padding:2rem 1.5rem; }
}
