/* ==========================================================================
   Power für creative Ideen GmbH – Stylesheet
   Systemschriften, keine externen Ressourcen, keine Cookies.
   ========================================================================== */

:root {
  /* Markenspektrum, Reihenfolge wie im Logo (links nach rechts) */
  --c01: #00101f;  --c02: #676c66;  --c03: #cfc7bc;  --c04: #5e2a27;
  --c05: #88004f;  --c06: #e2001a;  --c07: #ee7f00;  --c08: #ffe900;
  --c09: #8aaf48;  --c10: #00582f;  --c11: #03386f;  --c12: #307bac;
  --c13: #8eb9c7;  --c14: #f5bac8;  --c15: #622379;

  --leit:   #622379;
  --tinte:  #00101f;
  --leise:  #5e6260;
  --linie:  #dcd7d0;
  --sand:   #f6f4f1;
  --papier: #ffffff;

  --display: "Bahnschrift", "Avenir Next Condensed", "HelveticaNeue-CondensedBold",
             "Helvetica Neue", "Arial Narrow", system-ui, sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --rand: clamp(1.25rem, 5vw, 4.5rem);
  --breite: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--papier);
  color: var(--tinte);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--leit); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--c07);
  outline-offset: 3px;
}

.huelle { max-width: var(--breite); margin-inline: auto; padding-inline: var(--rand); }

/* --- Typografie -------------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0.005em;
  margin: 0;
  text-transform: uppercase;
  /* verteilt Ueberschriften gleichmaessig auf die Zeilen, statt ein
     einzelnes Wort allein in die letzte Zeile zu schicken */
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 1.4rem + 5.6vw, 5.4rem); }
h2 { font-size: clamp(1.9rem, 1.2rem + 2.9vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.45rem); letter-spacing: 0.02em; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.marke {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--leise);
}

.vorspann { font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem); line-height: 1.5; }

/* --- Kopfzeile --------------------------------------------------------- */

.kopf {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--linie);
}
.kopf__innen {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: 0.85rem;
}
.kopf__logo { display: block; }
.kopf__logo img { height: clamp(33px, 5.2vw, 52px); width: auto; }

.nav { display: flex; gap: clamp(0.9rem, 2vw, 1.9rem); flex-wrap: wrap; }
.nav a {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--tinte);
  text-decoration: none;
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
}
.nav a:hover { border-bottom-color: var(--leit); }
@media (max-width: 900px) { .nav a:nth-child(4) { display: none; } }
@media (max-width: 700px) { .nav a:nth-child(2), .nav a:nth-child(3) { display: none; } }

/* --- Hero: hängende Balken --------------------------------------------- */

.hero { position: relative; padding-bottom: clamp(3rem, 7vw, 6rem); }

.balken {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  height: clamp(110px, 22vw, 240px);
  align-items: start;
  gap: 0;
}
.balken span {
  display: block;
  width: 100%;
  transform-origin: top center;
  transform: scaleY(1);
}
.balken span:nth-child(1)  { height: 46%; background: var(--c01); }
.balken span:nth-child(2)  { height: 72%; background: var(--c02); }
.balken span:nth-child(3)  { height: 34%; background: var(--c03); }
.balken span:nth-child(4)  { height: 88%; background: var(--c04); }
.balken span:nth-child(5)  { height: 58%; background: var(--c05); }
.balken span:nth-child(6)  { height: 100%; background: var(--c06); }
.balken span:nth-child(7)  { height: 41%; background: var(--c07); }
.balken span:nth-child(8)  { height: 67%; background: var(--c08); }
.balken span:nth-child(9)  { height: 30%; background: var(--c09); }
.balken span:nth-child(10) { height: 79%; background: var(--c10); }
.balken span:nth-child(11) { height: 52%; background: var(--c11); }
.balken span:nth-child(12) { height: 94%; background: var(--c12); }
.balken span:nth-child(13) { height: 38%; background: var(--c13); }
.balken span:nth-child(14) { height: 63%; background: var(--c14); }
.balken span:nth-child(15) { height: 85%; background: var(--c15); }

@media (prefers-reduced-motion: no-preference) {
  .balken span { animation: fallen 0.75s cubic-bezier(0.16, 0.84, 0.44, 1) backwards; }
  .balken span:nth-child(1)  { animation-delay: 0.02s }
  .balken span:nth-child(2)  { animation-delay: 0.06s }
  .balken span:nth-child(3)  { animation-delay: 0.10s }
  .balken span:nth-child(4)  { animation-delay: 0.14s }
  .balken span:nth-child(5)  { animation-delay: 0.18s }
  .balken span:nth-child(6)  { animation-delay: 0.22s }
  .balken span:nth-child(7)  { animation-delay: 0.26s }
  .balken span:nth-child(8)  { animation-delay: 0.30s }
  .balken span:nth-child(9)  { animation-delay: 0.34s }
  .balken span:nth-child(10) { animation-delay: 0.38s }
  .balken span:nth-child(11) { animation-delay: 0.42s }
  .balken span:nth-child(12) { animation-delay: 0.46s }
  .balken span:nth-child(13) { animation-delay: 0.50s }
  .balken span:nth-child(14) { animation-delay: 0.54s }
  .balken span:nth-child(15) { animation-delay: 0.58s }
  @keyframes fallen { from { transform: scaleY(0); } to { transform: scaleY(1); } }
}

.hero__text { padding-top: clamp(2.2rem, 5vw, 4rem); }
.hero__text h1 { max-width: 15ch; font-size: clamp(2.1rem, 1.2rem + 4.2vw, 4.1rem); }
.hero__sub {
  margin-top: clamp(1.2rem, 3vw, 2rem);
  max-width: 46ch;
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.45rem);
  line-height: 1.45;
  color: var(--tinte);
}
.hero__meta {
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem;
}
.hero__meta span {
  font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.8rem; font-weight: 700; color: var(--leise);
}

/* --- Abschnitte -------------------------------------------------------- */

.block { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.block--sand { background: var(--sand); }
.block__kopf { max-width: 58ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.block__kopf h2 { margin-bottom: 0.8rem; }
.block__kopf .marke { display: block; margin-bottom: 0.9rem; }

/* --- Stationen (Leistungen) -------------------------------------------- */

.stationen { display: grid; gap: 1px; background: var(--linie); border-block: 1px solid var(--linie); }
@media (min-width: 800px) { .stationen { grid-template-columns: repeat(2, 1fr); } }

.station { background: var(--papier); padding: clamp(1.6rem, 3vw, 2.4rem); position: relative; }
.block--sand .station { background: var(--sand); }
.station__nr {
  font-family: var(--display); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.16em; color: var(--leise); display: flex; align-items: center;
  gap: 0.6rem; margin-bottom: 0.9rem;
}
.station__nr::before { content: ""; width: 1.4rem; height: 0.55rem; background: var(--ton, var(--leit)); }
.station h3 { margin-bottom: 0.7rem; }
.station p { color: #2b3335; font-size: 0.98rem; }

/* --- Referenzen -------------------------------------------------------- */

.refs { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1.2rem, 2.4vw, 2rem); }
@media (min-width: 700px)  { .refs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .refs { grid-template-columns: repeat(3, 1fr); } }

.ref { display: flex; flex-direction: column; border: 1px solid var(--linie); background: var(--papier); }
.ref__bild { display: block; overflow: hidden; border-bottom: 4px solid var(--ton, var(--leit)); background: var(--sand); }
.ref__bild img { width: 100%; height: auto; aspect-ratio: 760 / 475; object-fit: cover; object-position: top center; transition: transform 0.4s ease; }
.ref__bild:hover img { transform: scale(1.035); }
@media (prefers-reduced-motion: reduce) { .ref__bild img { transition: none; } .ref__bild:hover img { transform: none; } }

.ref__text { padding: 1.15rem clamp(1.1rem, 2vw, 1.5rem) 1.4rem; }
.ref__ton { width: 2.2rem; height: 0.45rem; background: var(--ton, var(--leit)); margin-bottom: 1rem; }
.ref__text > a {
  font-family: var(--display); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.01em; color: var(--tinte); text-decoration: none;
  border-bottom: 2px solid var(--linie); word-break: break-word;
}
.ref__text > a:hover { border-bottom-color: var(--leit); color: var(--leit); }
.ref__text p { margin: 0.6rem 0 0; font-size: 0.92rem; color: var(--leise); line-height: 1.55; }

.ref--text strong { font-family: var(--display); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.01em; display: block; }

.refs__hinweis { margin-top: clamp(1.4rem, 3vw, 2.2rem); font-size: 0.88rem; color: var(--leise); max-width: 62ch; }

/* --- Eigener Shop ------------------------------------------------------ */

.shop { background: var(--c10); color: #fff; }
.shop__innen { display: grid; gap: clamp(1.8rem, 4vw, 3rem); align-items: center; }
@media (min-width: 860px) { .shop__innen { grid-template-columns: 1.15fr 1fr; } }
.shop .marke { color: var(--c13); }
.shop h2 { color: #fff; margin-bottom: 1rem; }
.shop p { color: #e6efe9; }
.shop__streifen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; height: 0.85rem; max-width: 10rem; margin-bottom: 1.2rem; background: #fff; padding: 3px; }
.shop__streifen i { display: block; }

.knopf {
  display: inline-block; margin-top: 1.6rem;
  font-family: var(--display); text-transform: uppercase; font-weight: 700;
  letter-spacing: 0.12em; font-size: 0.92rem;
  background: var(--c09); color: var(--c01);
  padding: 0.95rem 1.7rem; text-decoration: none;
  border: 2px solid var(--c09);
}
.knopf:hover { background: transparent; color: var(--c09); }

.shop__zahlen { display: grid; gap: 1.6rem; }
.shop__zahl { border-left: 3px solid var(--c13); padding-left: 1.1rem; }
.shop__zahl b { display: block; font-family: var(--display); font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; color: #fff; }
.shop__zahl span { font-size: 0.9rem; color: #cfe0d6; }

/* --- Zeitstrahl -------------------------------------------------------- */

.jahre { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
@media (min-width: 880px) { .jahre { grid-template-columns: repeat(4, 1fr); } }

.jahr { padding: 1.6rem 1.4rem 1.6rem 0; border-top: 3px solid var(--ton, var(--leit)); }
@media (min-width: 880px) { .jahr { padding-right: 2rem; } }
.jahr b {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.1; margin-bottom: 0.4rem;
}
.jahr p { font-size: 0.95rem; color: #2b3335; }

/* --- Kontakt ----------------------------------------------------------- */

.kontakt__innen { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 820px) { .kontakt__innen { grid-template-columns: 1.1fr 1fr; } }

.wege { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }
.wege li { border-top: 1px solid var(--linie); padding-top: 1.1rem; }
.wege .marke { display: block; margin-bottom: 0.35rem; }
.wege a, .wege strong {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.25rem, 1rem + 1.3vw, 1.85rem);
  letter-spacing: 0.01em; color: var(--tinte); text-decoration: none;
  word-break: break-word;
}
.wege a:hover { color: var(--leit); }
.wege small { display: block; font-size: 0.85rem; color: var(--leise); margin-top: 0.3rem; }

.karte { --pad: clamp(1.75rem, 3.6vw, 50px);
         background: var(--papier); border: 1px solid var(--linie); padding: var(--pad); }
.karte address { font-style: normal; line-height: 1.75; }
.karte h3 { margin-bottom: 0.9rem; }
.karte__marke { width: min(300px, 100%); height: auto; display: block;
                margin-bottom: calc(var(--pad) - 0.4rem); }

/* --- Fußzeile ---------------------------------------------------------- */

.spektrum { display: grid; grid-template-columns: repeat(15, 1fr); height: 0.65rem; }
.spektrum i { display: block; }

.fuss { background: var(--c01); color: #b9c0c4; padding-block: clamp(2.6rem, 5vw, 4rem); }
.fuss__innen { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 760px) { .fuss__innen { grid-template-columns: 1fr auto; } }
.fuss img { height: clamp(40px, 5.8vw, 53px); width: auto; margin-bottom: 1.4rem; }
.fuss a { color: #fff; }
.fuss p { font-size: 0.9rem; line-height: 1.7; }
.fuss__links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.fuss__links a {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.82rem; font-weight: 700; text-decoration: none; color: #fff;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.fuss__links a:hover { border-bottom-color: var(--c07); }

/* --- Rechtstexte ------------------------------------------------------- */

.recht { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.recht__innen { max-width: 72ch; }
.recht h1 { margin-bottom: 2rem; }
.recht h2 { font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.6rem); margin-top: 2.6rem; margin-bottom: 0.8rem; }
.recht h3 { font-size: 1.05rem; margin-top: 1.8rem; margin-bottom: 0.5rem; }
.recht p, .recht li { font-size: 1rem; }
.recht ul { padding-left: 1.2rem; }
.recht li { margin-bottom: 0.45rem; }
.recht address { font-style: normal; line-height: 1.8; }
.recht__zurueck {
  display: inline-block; margin-bottom: 2rem;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.82rem; font-weight: 700; text-decoration: none; color: var(--leit);
}
.recht__zurueck:hover { text-decoration: underline; }

.sprung {
  position: absolute; left: -9999px;
  background: var(--c01); color: #fff; padding: 0.8rem 1.2rem; z-index: 99;
}
.sprung:focus { left: 0.5rem; top: 0.5rem; position: fixed; }
