/* ==========================================================================
   FOKUS POKUS Personaltraining — Prototyp
   Aesthetik: Maritime Street Fight-Poster (Navy / Gold, Grain, Kondens-Typo)
   ========================================================================== */

:root {
  --navy:      #0E2A4E;   /* Dunkelblau */
  --navy-800:  #0A2140;
  --navy-900:  #06152B;
  --ink:       #05080E;   /* Schwarz */
  --gold:      #E6B015;   /* Goldton (einheitlich, Vordergrund) */
  --gold-600:  #CF9C12;
  --gold-300:  #F7D35B;
  --white:     #FFFFFF;
  --paper:     #F4F8FC;
  --paper-2:   #E9DFC9;
  --paper-line:#D6C7A6;
  --cream:     #F4F8FC;   /* Weiss (Vordergrund) */

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ff-display: "Anton", Impact, sans-serif;
  --ff-cond:    "Barlow Condensed", sans-serif;
  --ff-body:    "Barlow", system-ui, sans-serif;
  --ff-black:   "Pirata One", "Anton", serif; /* Blackletter-Akzent (Tattoo/Street) */

  /* Akzentwelt: Tuerkis-Familie (Coral/Violet auf Blau-Tuerkis umgestellt) */
  --teal:   #1FD3C4;   /* Tuerkis, Hauptakzent neben Gelb */
  --coral:  #10B4C6;   /* Cyan */
  --violet: #145A86;   /* tiefes Stahlblau */

  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-gold: 6px 6px 0 var(--gold);
}

/* ---------- Reset-Ergänzung ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 0.92; }

/* ---------- Grain-Overlay ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--ff-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow .star { color: var(--teal); font-size: 1.1em; }

.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--ff-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  padding: 0.85em 1.5em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--ink); }
.btn:active { transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--ink); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  border-color: var(--cream);
  box-shadow: none;
}
.btn--ghost:hover { --btn-bg: var(--cream); --btn-fg: var(--ink); box-shadow: none; }
.btn--onlight.btn--ghost { --btn-fg: var(--navy-900); border-color: var(--navy-900); }
.btn--onlight.btn--ghost:hover { --btn-bg: var(--navy-900); --btn-fg: var(--paper); }

.section-tag {
  font-family: var(--ff-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  color: var(--gold-600);
}
.section-title {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: 0.01em;
}

/* Foto-Behandlung: Navy-Monochrome, Farbe kommt beim Hover ("bei Kontakt") */
.duo { position: relative; overflow: hidden; background: var(--navy-900); }
.duo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(1.02);
  transition: filter .5s ease, transform 6s ease;
}
.duo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(14,42,78,.35), rgba(6,21,43,.72));
  mix-blend-mode: multiply;
  transition: opacity .5s ease;
}
.duo:hover img { filter: grayscale(0) contrast(1.02); transform: scale(1.03); }
.duo:hover::after { opacity: 0; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,21,43,.85);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(230,176,21,.35);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: 104px;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand img { height: 64px; width: auto; filter: drop-shadow(2px 3px 4px rgba(0,0,0,.4)); }
.brand__name {
  font-family: var(--ff-display); text-transform: uppercase;
  font-size: 2.3rem; letter-spacing: .02em; color: var(--cream); line-height: .9;
}
.brand__name em { color: var(--gold); font-style: normal; }

/* Footer-Brand größer */
.brand--footer img { height: 84px; }
.brand--footer .brand__name { font-size: 2.6rem; }

@media (max-width: 620px) {
  .site-header .wrap { height: 84px; }
  .brand img { height: 50px; }
  .brand__name { font-size: 1.7rem; }
}
.nav {
  display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem);
}
.nav a {
  font-family: var(--ff-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }
.nav .btn { font-size: 0.95rem; padding: 0.6em 1.1em; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav a:not(.btn) { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(14,42,78,.9), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--ink) 70%);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid rgba(230,176,21,.3);
}
.hero__signet {
  position: absolute;
  left: -10%; top: 14%; transform: translateY(calc(-50% + 50px)) rotate(-18deg);
  width: min(58vw, 640px);
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  filter: saturate(0) brightness(2);
}
.hero .wrap {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero__eyebrow { color: var(--cream); margin-bottom: 1.4rem; }
.hero h1 {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(3.2rem, 9vw, 7rem);
  letter-spacing: 0.005em;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  text-stroke: 2px var(--gold);
}
.hero__lead {
  margin: 1.6rem 0 2.2rem;
  max-width: 42ch;
  font-size: clamp(1.18rem, 1.8vw, 1.35rem);
  line-height: 1.6;
  color: rgba(244,248,252,.85);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__stats {
  margin-top: 2.6rem;
  display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 3vw, 2.6rem);
  border-top: 2px solid rgba(230,176,21,.3);
  padding-top: 1.4rem;
}
.stat b {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--gold);
  line-height: 1;
}
.stat span {
  font-family: var(--ff-cond);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: rgba(244,248,252,.7);
}

/* Hero-Fotopanel als Sticker/Patch */
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 3px solid var(--gold);
  box-shadow: 14px 14px 0 rgba(0,0,0,.4);
  transform: rotate(1.4deg);
}
.hero__photo .duo { position: absolute; inset: 0; }
.hero__photo .duo img { transform: scaleX(-1); }
.hero__photo .duo:hover img { transform: scaleX(-1) scale(1.03); }
.hero__photo .tag {
  position: absolute; z-index: 3;
  font-family: var(--ff-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.72rem;
  background: var(--gold); color: var(--ink);
  padding: 0.35em 0.7em; border: 2px solid var(--ink);
}
.hero__photo .tag--tl { top: -14px; left: -12px; transform: rotate(-3deg); background: var(--teal); }
.hero__photo .tag--br { bottom: -14px; left: -12px; right: auto; transform: rotate(-3deg); background: var(--teal); }
.hero__badge {
  position: absolute; z-index: 4;
  right: -34px; top: -34px;
  width: 108px; height: 108px;
  transform: rotate(12deg);
  filter: drop-shadow(3px 4px 4px rgba(0,0,0,.5));
}

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero__photo { display: none; }
}

/* ==========================================================================
   MARQUEE / TICKER
   ========================================================================== */
.ticker {
  background:
    radial-gradient(120% 180% at 50% 50%, rgba(31,211,196,.10), transparent 70%),
    #05070D;
  border-top: 2px solid rgba(31,211,196,.55);
  border-bottom: 2px solid rgba(230,176,21,.5);
  box-shadow: inset 0 0 26px rgba(31,211,196,.16), 0 0 14px rgba(31,211,196,.18);
  overflow: hidden;
  white-space: nowrap;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.ticker.is-dragging { cursor: grabbing; }
.ticker__track span { will-change: transform; }
.ticker__track {
  display: flex;
  width: max-content;
  padding-block: 0.7rem;
  animation: marquee 26s linear infinite;
}
.ticker__group {
  flex: 0 0 auto;
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.ticker__track span {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  padding-inline: 1.3rem;
  display: inline-flex; align-items: center; gap: 1.3rem;
  /* Neon Tuerkis (dezenter Glow) */
  color: #EAFBFF;
  text-shadow:
    0 0 2px rgba(255,255,255,.5),
    0 0 6px rgba(31,211,196,.55),
    0 0 12px rgba(31,211,196,.35);
  animation: neonflicker 5.5s infinite alternate;
}
/* jedes zweite Wort in Gold-Neon */
.ticker__track span:nth-child(even) {
  color: #FFF7DA;
  text-shadow:
    0 0 2px rgba(255,255,255,.5),
    0 0 6px rgba(230,176,21,.5),
    0 0 12px rgba(230,176,21,.3);
}
/* Flacker leicht versetzen fuer echten Neon-Look */
.ticker__track span:nth-child(3n)   { animation-delay: -1.4s; }
.ticker__track span:nth-child(3n+1) { animation-delay: -3.1s; }
.ticker__track span::before,
.ticker__track span::after {
  content: "✦"; font-size: 0.72em; color: var(--gold);
  text-shadow: 0 0 6px rgba(230,176,21,.5);
}
.ticker__track span:nth-child(even)::before,
.ticker__track span:nth-child(even)::after {
  color: var(--teal);
  text-shadow: 0 0 6px rgba(31,211,196,.5);
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes neonflicker {
  0%, 16%, 19%, 21%, 55%, 57%, 100% { opacity: 1; }
  18%, 20%, 56% { opacity: .78; }
}

/* ==========================================================================
   ANGEBOT
   ========================================================================== */
.angebot {
  position: relative; isolation: isolate;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: linear-gradient(160deg, var(--navy-900), var(--ink));
}
.angebot__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.6rem;
  position: relative; z-index: 2;
}
.angebot__head p { max-width: 52ch; margin: 0.6rem 0 0; color: rgba(244,248,252,.72); font-size: 1.08rem; line-height: 1.6; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative; z-index: 2;
}
.card {
  position: relative;
  background: var(--navy-800);
  border: 2px solid rgba(230,176,21,.22);
  padding: 1.6rem 1.4rem 1.8rem;
  box-shadow: 6px 6px 0 rgba(0,0,0,.45);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  overflow: hidden;
}
.card::before {
  content: attr(data-num);
  position: absolute; right: 0.6rem; top: 0.1rem;
  font-family: var(--ff-display);
  font-size: 3.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(230,176,21,.16);
}
.card__icon {
  width: 54px; height: 54px; margin-bottom: 1rem;
  display: grid; place-items: center;
  border: 2px solid var(--navy-900);
  background: var(--gold);
}
.card__icon svg { width: 30px; height: 30px; }
.card h3 {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}
.card p { font-size: 1.02rem; line-height: 1.55; color: rgba(244,248,252,.8); margin: 0; }
.card:hover {
  transform: translate(-3px,-3px);
  box-shadow: var(--shadow-gold);
  background: var(--navy);
  border-color: var(--gold);
}

@media (max-width: 960px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cards { grid-template-columns: 1fr; } }

/* ==========================================================================
   ÜBER UWE
   ========================================================================== */
.about {
  background:
    linear-gradient(160deg, var(--navy-900), var(--ink));
  color: var(--cream);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  position: relative;
  border-block: 1px solid rgba(230,176,21,.3);
}
.about .wrap {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 4rem); align-items: center;
}
.about__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 3px solid var(--gold);
  transform: rotate(-1.5deg);
  box-shadow: 14px 14px 0 rgba(0,0,0,.35);
}
.about__photo .duo { position: absolute; inset: 0; }
.about h2 {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 1.2rem;
}
.about h2 .gold { color: var(--gold); }
.about__text p { color: rgba(244,248,252,.85); max-width: 54ch; margin: 0 0 1.1rem; font-size: 1.12rem; line-height: 1.62; }
.about__tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.6rem 0; }
.about__tags span {
  font-family: var(--ff-cond); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.82rem;
  border: 2px solid var(--gold); color: var(--gold);
  padding: 0.35em 0.8em;
}
.about__quote {
  border-left: 4px solid var(--gold);
  padding-left: 1rem; margin: 1.8rem 0 2.1rem;
  font-family: var(--ff-cond); font-weight: 500;
  font-size: 1.15rem; font-style: italic;
  color: var(--gold);
  white-space: nowrap;
}
@media (max-width: 560px) { .about__quote { white-space: normal; } }
@media (max-width: 820px) {
  .about .wrap { grid-template-columns: 1fr; }
  .about__photo { max-width: 360px; }
}

/* ==========================================================================
   SO LÄUFTS
   ========================================================================== */
.steps {
  position: relative; isolation: isolate;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: var(--ink);
}
.steps__head { margin-bottom: 2.8rem; }
.steps__head p { max-width: none; color: rgba(244,248,252,.72); margin-top: 1.4rem; font-size: 1.08rem; line-height: 1.6; }
.steps__list { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: minmax(120px, 0.5fr) 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  padding-block: 1.8rem;
  border-top: 2px solid rgba(244,236,221,.16);
}
.step:last-child { border-bottom: 2px solid rgba(244,236,221,.16); }
.step__num {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  color: transparent;
  -webkit-text-stroke: 2px rgba(244,248,252,.35);
  line-height: 0.8;
  transition: color .2s ease, -webkit-text-stroke-color .2s ease;
}
.step:hover .step__num { color: var(--gold); -webkit-text-stroke-color: var(--gold); }
.step h3 {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.4rem;
}
.step p { margin: 0; color: rgba(244,248,252,.8); max-width: 62ch; font-size: 1.1rem; line-height: 1.58; }
@media (max-width: 620px) {
  .step { grid-template-columns: 1fr; gap: 0.4rem; }
}

/* ==========================================================================
   STIMMEN
   ========================================================================== */
.voices {
  background: linear-gradient(160deg, var(--navy-900), var(--ink));
  color: var(--cream);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid rgba(230,176,21,.3);
}
.voices .section-title { color: var(--cream); }
.voices .section-title .gold { color: var(--gold); }
.voices__grid {
  margin-top: 2.6rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.quote {
  border: 2px solid var(--gold);
  padding: 1.6rem 1.4rem;
  background: rgba(255,255,255,.03);
  position: relative;
}
.quote::before {
  content: "“";
  font-family: var(--ff-display);
  position: absolute; top: -0.4rem; left: 0.8rem;
  font-size: 4rem; color: var(--gold); line-height: 1;
}
.quote p { margin: 1.4rem 0 1.2rem; font-size: 1.15rem; line-height: 1.55; }
.quote cite {
  font-family: var(--ff-cond); font-weight: 700; font-style: normal;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem;
  color: var(--gold);
}
@media (max-width: 860px) { .voices__grid { grid-template-columns: 1fr; } }

/* Hinweis über dem Band */
.voices__note {
  position: relative; z-index: 2;
  margin-top: .9rem; color: rgba(244,248,252,.72); font-size: .95rem;
}
.voices__note .voices__stars { color: var(--gold); letter-spacing: 2px; }
.voices__note a { color: var(--gold); text-decoration: underline; }

/* Durchlaufendes Bewertungs-Band */
.reviews {
  position: relative; z-index: 2;
  margin-top: 2.2rem; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.reviews__track {
  display: flex; width: max-content; gap: 1.2rem;
  padding-inline: var(--gutter);
  animation: reviews-marquee 70s linear infinite;
}
.reviews:hover .reviews__track { animation-play-state: paused; }
@keyframes reviews-marquee { to { transform: translateX(-50%); } }

.review {
  flex: 0 0 clamp(270px, 78vw, 360px);
  border: 2px solid var(--gold);
  background: rgba(255,255,255,.03);
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex; flex-direction: column;
}
.review__stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; margin-bottom: .8rem; }
.review blockquote {
  margin: 0 0 1.1rem; font-size: 1.02rem; line-height: 1.5; color: var(--cream);
}
.review figcaption {
  margin-top: auto;
  font-family: var(--ff-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: .88rem; color: var(--gold);
}
.review figcaption span {
  display: block; margin-top: .1rem;
  font-weight: 500; color: rgba(244,248,252,.5); font-size: .72rem; letter-spacing: .12em;
}
@media (prefers-reduced-motion: reduce) {
  .reviews__track { animation: none; }
}

/* ==========================================================================
   KONTAKT / CTA
   ========================================================================== */
.cta {
  background: var(--gold);
  color: var(--ink);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  border-block: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.cta__signet {
  position: absolute; right: -4%; bottom: -30%;
  width: min(46vw, 460px); height: auto; opacity: 0.12; transform: rotate(10deg);
  pointer-events: none;
}
.cta .wrap { position: relative; z-index: 2; text-align: center; }
.cta h2 {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
}
.cta p { max-width: 46ch; margin: 1rem auto 2rem; font-weight: 500; font-size: 1.22rem; line-height: 1.55; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta .btn { --btn-bg: var(--ink); --btn-fg: var(--gold); border-color: var(--ink); box-shadow: 6px 6px 0 rgba(0,0,0,.25); }
.cta .btn:hover { box-shadow: 9px 9px 0 rgba(0,0,0,.25); }
.cta__meta {
  margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem;
  justify-content: center;
  font-family: var(--ff-cond); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.9rem;
}
.cta__meta a { border-bottom: 2px solid var(--ink); padding-bottom: 2px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(244,248,252,.7);
  padding-block: 3rem 2rem;
}
.site-footer .wrap {
  display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: space-between; align-items: flex-start;
}
.site-footer img { height: 64px; width: auto; margin-bottom: 1rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-nav a {
  font-family: var(--ff-cond); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.9rem; color: var(--cream);
}
.footer-nav a:hover { color: var(--gold); }
.footer-note {
  width: 100%; border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 1.5rem; padding-top: 1.5rem;
  font-size: 0.82rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
}
.footer-note .proto { color: var(--gold); }

/* ==========================================================================
   Load-Animation (Hero staffelt rein)
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); animation: rise .7s ease forwards; }
  .d1 { animation-delay: .05s; }
  .d2 { animation-delay: .18s; }
  .d3 { animation-delay: .31s; }
  .d4 { animation-delay: .44s; }
  .d5 { animation-delay: .57s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* ==========================================================================
   v2 — URBAN STREET / GRAFFITI / DRESDEN NEUSTADT
   ========================================================================== */

/* Spray-Dots als wiederverwendbare Textur */
:root {
  --spray-dots: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='%23ffffff'%3E%3Ccircle cx='10' cy='14' r='1.6'/%3E%3Ccircle cx='38' cy='30' r='1'/%3E%3Ccircle cx='70' cy='10' r='2.1'/%3E%3Ccircle cx='96' cy='40' r='1.2'/%3E%3Ccircle cx='22' cy='60' r='1'/%3E%3Ccircle cx='54' cy='74' r='1.8'/%3E%3Ccircle cx='84' cy='88' r='1.1'/%3E%3Ccircle cx='16' cy='100' r='2'/%3E%3Ccircle cx='108' cy='104' r='1.5'/%3E%3Ccircle cx='60' cy='46' r='.9'/%3E%3C/g%3E%3C/svg%3E");
}

/* Blackletter-Akzent */
.black-accent { font-family: var(--ff-black); font-weight: 400; letter-spacing: .01em; }

/* Marker-Unterstrich unter Section-Titeln (handgezogen) */
.section-title.mark, .about h2.mark, .cta h2.mark, .voices .section-title.mark { position: relative; display: inline-block; }
.section-title.mark::after,
.about h2.mark::after,
.cta h2.mark::after,
.voices .section-title.mark::after {
  content: "";
  position: absolute; left: -2px; right: -6px; bottom: -.12em; height: .26em;
  background: var(--gold);
  clip-path: polygon(0 35%, 6% 10%, 20% 55%, 34% 20%, 50% 60%, 66% 22%, 82% 58%, 94% 18%, 100% 50%, 100% 100%, 0 100%);
  opacity: .9;
}
.cta h2.mark::after { background: var(--ink); }

/* Sticker-Tag (rotiert, geklebt) */
.sticker {
  display: inline-block;
  font-family: var(--ff-black);
  background: var(--coral); color: #fff;
  border: 2px solid var(--ink);
  padding: .1em .6em; transform: rotate(-3deg);
  box-shadow: 3px 3px 0 rgba(0,0,0,.4);
  line-height: 1.1;
}
.sticker--teal { background: var(--teal); }
.sticker--gold { background: var(--gold); color: var(--ink); }

/* Farbige Spray-Haze-Blobs (Dresden-Neustadt-Bunt) */
.spray {
  position: absolute; border-radius: 50%;
  filter: blur(42px); opacity: .5; pointer-events: none; z-index: 0;
  mix-blend-mode: screen;
}
.spray--teal   { background: var(--teal); }
.spray--coral  { background: var(--coral); }
.spray--violet { background: var(--violet); }
.spray--gold   { background: var(--gold); }

/* Beton/Spray-Overlay für dunkle Sektionen */
.grit::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--spray-dots);
  background-size: 120px 120px;
  opacity: .05; pointer-events: none;
}

/* --- HERO Graffiti-Backdrop --- */
.hero { isolation: isolate; }
.hero__graffiti { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__graffiti .spray.a { width: 46vw; height: 46vw; top: -14%; right: -8%; }
.hero__graffiti .spray.b { width: 34vw; height: 34vw; bottom: -18%; left: 6%; opacity: .38; }
.hero__graffiti .spray.c { width: 22vw; height: 22vw; top: 34%; right: 40%; opacity: .3; }
.hero__graffiti::after {
  content: ""; position: absolute; inset: 0;
  background-image: var(--spray-dots); background-size: 90px 90px; opacity: .06;
}
.hero .wrap { position: relative; z-index: 2; }
.hero__signet { z-index: 1; }

/* Tag-Scribble (SVG Kritzel) im Hero */
.hero__tagline {
  position: absolute; z-index: 1; left: 2%; bottom: 6%;
  width: 220px; opacity: .5; transform: rotate(-4deg);
  stroke: var(--teal); fill: none; stroke-width: 3; stroke-linecap: round;
}

/* Hero: kleiner Ortsstempel */
.hero__place {
  display: inline-flex; align-items: center; gap: .5em;
  margin-top: 1.4rem; font-family: var(--ff-cond); font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em; font-size: .8rem;
  color: rgba(244,248,252,.75);
}
.hero__place b { color: var(--teal); font-family: var(--ff-black); font-weight: 400; letter-spacing: .02em; font-size: 1.15em; }

/* ==========================================================================
   INK / TATTOO-GALLERY
   ========================================================================== */
.ink {
  position: relative;
  background: linear-gradient(160deg, #0A1220, var(--ink));
  color: var(--cream);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  border-top: 3px solid var(--gold);
  overflow: hidden;
}
.ink .spray.i1 { width: 30vw; height: 30vw; top: -10%; right: 4%; opacity: .32; }
.ink .spray.i2 { width: 24vw; height: 24vw; bottom: -12%; left: -4%; opacity: .28; }
.ink .wrap { position: relative; z-index: 2; }
.ink__head { max-width: 60ch; margin-bottom: 2.2rem; }
.ink__head h2 {
  font-family: var(--ff-display); text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4rem); margin: .2rem 0 .8rem;
}
.ink__head h2 .black-accent { color: var(--gold); text-transform: none; }
.ink__head p { color: rgba(244,248,252,.82); margin: 0; }

.ink__strip {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: min(78vw, 300px);
  gap: 1.4rem; overflow-x: auto; padding: 1rem .2rem 1.6rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.ink__strip::-webkit-scrollbar { height: 8px; }
.ink__strip::-webkit-scrollbar-thumb { background: var(--gold); }
.ink__card {
  scroll-snap-align: start;
  position: relative;
  border: 3px solid var(--gold);
  background: var(--navy-900);
  transform: rotate(var(--rot, 0deg));
  transition: transform .2s ease;
}
.ink__card:nth-child(odd)  { --rot: -1.5deg; }
.ink__card:nth-child(even) { --rot: 1.5deg; }
.ink__card:hover { transform: rotate(0deg) scale(1.02); z-index: 3; }
.ink__card .duo { aspect-ratio: 3/4; }
.ink__card figcaption {
  position: absolute; left: -6px; bottom: 12px;
  font-family: var(--ff-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; font-size: .82rem;
  background: var(--gold); color: var(--ink);
  padding: .3em .7em; border: 2px solid var(--ink);
}
.ink__note {
  margin-top: 1rem; font-family: var(--ff-cond); text-transform: uppercase;
  letter-spacing: .14em; font-size: .82rem; color: rgba(244,248,252,.6);
}

/* CTA + Voices bekommen Grit/Spray */
.cta, .voices, .about { isolation: isolate; }

/* ==========================================================================
   KONTAKTFORMULAR
   ========================================================================== */
.cta__head { text-align: center; }

.contact-form {
  position: relative; z-index: 2;
  max-width: 640px; margin: 2.6rem auto 0;
  background: linear-gradient(160deg, var(--navy-900), var(--ink));
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(0,0,0,.35);
  padding: clamp(1.4rem, 4vw, 2rem);
  text-align: left;
  color: var(--cream);
}
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.contact-form label {
  display: block;
  font-family: var(--ff-cond); font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; font-size: .82rem;
  color: rgba(244,248,252,.8); margin-bottom: .4rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  font-family: var(--ff-body); font-size: 1rem;
  background: var(--navy-800); color: var(--cream);
  border: 1px solid rgba(244,248,252,.16);
  padding: .8em .9em;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23F4F8FC' stroke-width='2'%3E%3Cpath d='M3 6l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9em center;
  padding-right: 2.4em; cursor: pointer;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(244,248,252,.4); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31,211,196,.2);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

.consent {
  display: flex; gap: .6rem; align-items: flex-start;
  font-family: var(--ff-body); font-weight: 400;
  text-transform: none; letter-spacing: 0; font-size: .9rem; line-height: 1.5;
  color: rgba(244,248,252,.8); margin: .3rem 0 1.3rem;
}
.consent input { width: auto; margin-top: .2rem; flex: 0 0 auto; accent-color: var(--gold); }
.consent a { color: var(--gold); text-decoration: underline; }

.contact-form .btn {
  --btn-bg: var(--gold); --btn-fg: var(--ink); border-color: var(--ink);
  width: 100%; justify-content: center; box-shadow: 5px 5px 0 var(--ink);
}
.contact-form .btn:hover { box-shadow: 8px 8px 0 var(--ink); }
.form-hint { font-size: .72rem; color: rgba(244,248,252,.5); margin: .9rem 0 0; }

/* Honeypot versteckt */
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Status-Meldung */
.form-status {
  padding: .9rem 1rem; margin-bottom: 1.3rem;
  font-weight: 600; border: 2px solid;
}
.form-status.ok  { border-color: var(--teal); color: var(--teal); background: rgba(31,211,196,.12); }
.form-status.err { border-color: #E5484D; color: #E5484D; background: rgba(229,72,77,.1); }

/* ==========================================================================
   RECHTLICHE SEITEN (Impressum / Datenschutz)
   ========================================================================== */
.legal {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 820px;
}
.legal h1 {
  font-family: var(--ff-display); text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 3.4rem); margin-bottom: 1.6rem;
}
.legal h2 {
  font-family: var(--ff-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; font-size: 1.3rem; margin: 2rem 0 .6rem;
}
.legal p, .legal li { color: rgba(244,248,252,.82); margin: 0 0 1rem; line-height: 1.65; }
.legal a { color: var(--gold); text-decoration: underline; }
.legal .legal-note {
  border-left: 4px solid var(--gold); padding-left: 1rem;
  font-style: italic; color: var(--gold);
}
.back-link {
  font-family: var(--ff-cond); font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; font-size: .9rem; color: var(--cream);
}
.back-link:hover { color: var(--gold); }
