/* =============================================================
   myosotis · ink and art
   Design-System "Gothic Bloom"
   dark editorial × minimal-gothic × ein Rosa-Akzent (Lucas Farbe)
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Basis – warmes Fast-Schwarz */
  --bg:        #0a0908;
  --bg-soft:   #110f0d;
  --bg-card:   #15120f;
  --line:      #2a2622;

  /* Tinte – Knochen / Elfenbein */
  --ink:       #ece7e1;
  --ink-dim:   #b8b0a6;
  --ink-mute:  #847d73;

  /* Der Bruch – Rosa */
  --rose:      #ff4f87;   /* laut, sparsam */
  --rose-soft: #c98ba0;   /* gedeckt, für Linien/Felder */
  --rose-deep: #2a0f1a;   /* rosa-getöntes Dunkel für Flächen */

  /* Typo */
  --display: "Cormorant", Georgia, serif;
  --serif:   "Cormorant Garamond", Georgia, serif;
  --sans:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono:    "Space Mono", ui-monospace, monospace;

  /* Maße */
  --maxw: 1280px;
  --gut:  clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 350;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--rose); color: #0a0908; }

/* ---------- Grain / Vignette Overlay ---------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255,79,135,0.06), transparent 60%),
    radial-gradient(140% 100% at 50% 120%, rgba(0,0,0,0.55), transparent 55%);
}
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 2; opacity: 0.035;
  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'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typografie ---------- */
.display {
  font-family: var(--display);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.01em;
}
h1, h2, h3 { font-family: var(--display); font-weight: 300; line-height: 0.98; letter-spacing: -0.01em; }
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-soft);
}
.lead { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 28px); line-height: 1.4; color: var(--ink-dim); font-weight: 350; }
em, .ital { font-style: italic; }

/* ---------- Layout-Hilfen ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(80px, 12vw, 180px); position: relative; z-index: 3; }
.divider { height: 1px; background: var(--line); border: 0; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gut);
  mix-blend-mode: difference;
}
.nav__brand { font-family: var(--mono); font-size: 13px; letter-spacing: 0.22em; text-transform: lowercase; color: #fff; }
.nav__brand b { color: var(--rose); font-weight: 400; }
.nav__links { display: flex; gap: 26px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; }
.nav__links a { position: relative; opacity: 0.8; transition: opacity .3s; }
.nav__links a:hover { opacity: 1; }
@media (max-width: 760px) { .nav__links { display: none; } }

/* Scroll-Fortschritt (oben) */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--rose); z-index: 60; transition: width .1s linear; }

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 3; padding-block: 120px 60px; }
.hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(72px, 19vw, 320px);
  line-height: 0.82;
  letter-spacing: -0.02em;
}
.hero__title .rose { color: var(--rose); font-style: italic; }
.hero__sub { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: baseline; }
.hero__tag { font-family: var(--mono); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); }
.hero__tag b { color: var(--ink); font-weight: 400; }

/* Choose two worlds */
.gate { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border-block: 1px solid var(--line); position: relative; z-index: 3; }
@media (max-width: 760px) { .gate { grid-template-columns: 1fr; } }
.gate__cell {
  background: var(--bg);
  padding: clamp(40px, 7vw, 96px) var(--gut);
  min-height: 46vh;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background .5s var(--ease);
  position: relative; overflow: hidden;
}
.gate__cell:hover { background: var(--bg-soft); }
.gate__cell:hover .gate__name { color: var(--rose); }
.gate__role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose-soft); }
.gate__name { font-family: var(--display); font-weight: 300; font-size: clamp(48px, 8vw, 120px); line-height: 0.9; transition: color .5s var(--ease); }
.gate__desc { color: var(--ink-mute); max-width: 38ch; margin-top: 14px; }
.gate__go { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; display: inline-flex; gap: 10px; align-items: center; }
.gate__go .arr { transition: transform .4s var(--ease); }
.gate__cell:hover .gate__go .arr { transform: translateX(8px); color: var(--rose); }

/* ============================================================
   BRAND HERO (fett) — Emblem × Wortmarke
   ============================================================ */
.stage {
  position: relative; z-index: 3;
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 120px var(--gut) 80px; overflow: hidden;
}
/* dramatischer Hintergrund: Artwork-Schimmer + rosa Halo */
.stage__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-position: center; background-size: cover;
  opacity: .14; filter: grayscale(.2) contrast(1.05);
  -webkit-mask-image: radial-gradient(58% 60% at 50% 42%, #000 0%, transparent 72%);
          mask-image: radial-gradient(58% 60% at 50% 42%, #000 0%, transparent 72%);
}
.stage::before {
  content: ""; position: absolute; z-index: 0; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 36% at 50% 34%, rgba(255,79,135,0.20), transparent 70%),
    radial-gradient(80% 70% at 50% 120%, rgba(0,0,0,0.7), transparent 60%);
}
.lockup { position: relative; z-index: 4; display: flex; flex-direction: column; align-items: center; }
.lockup__emblem {
  height: clamp(190px, 33vh, 400px); width: auto;
  filter: drop-shadow(0 0 26px rgba(255,79,135,0.42)) drop-shadow(0 14px 40px rgba(0,0,0,.6));
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce){ .lockup__emblem{ animation: none; } }
.lockup__word {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(58px, 14vw, 210px); line-height: .9;
  letter-spacing: -0.015em; margin-top: clamp(-18px, -2vw, -34px);
  text-transform: lowercase;
}
.lockup__word .o { color: var(--rose); font-style: italic; }
.lockup__kicker { font-family: var(--mono); font-size: clamp(11px,1.4vw,13px); letter-spacing: .34em; text-transform: uppercase; color: var(--rose-soft); margin-bottom: 30px; }
.lockup__sub { margin-top: 22px; font-family: var(--serif); font-size: clamp(18px,2.2vw,26px); color: var(--ink-dim); }
.lockup__sub b { color: var(--ink); font-weight: 400; font-style: italic; }
.lockup__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 4; font-family: var(--mono); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-mute); display: grid; gap: 10px; justify-items: center; }
.lockup__scroll .ln { width: 1px; height: 40px; background: linear-gradient(var(--rose-soft), transparent); animation: drip 2.4s ease-in-out infinite; }
@keyframes drip { 0%,100%{ opacity:.3; transform: scaleY(.6); transform-origin: top; } 50%{ opacity:1; transform: scaleY(1); } }

/* Marek-Hinweis (dezent, nicht gleichwertig) */
.satellite { border-block: 1px solid var(--line); position: relative; z-index: 3; }
.satellite__inner { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(20px,4vw,48px); align-items: center; padding-block: clamp(40px,6vw,72px); }
@media (max-width: 760px){ .satellite__inner{ grid-template-columns: 1fr; text-align: left; gap: 20px; } }
.satellite__mark { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-soft); }
.satellite__txt h3 { font-family: var(--display); font-weight: 300; font-size: clamp(28px,4vw,52px); line-height: .98; }
.satellite__txt p { color: var(--ink-mute); margin-top: 8px; max-width: 52ch; }
.satellite__go { font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; display: inline-flex; gap: 10px; align-items: center; white-space: nowrap; border: 1px solid var(--line); padding: 15px 22px; transition: border-color .3s, color .3s; }
.satellite__go:hover { border-color: var(--rose); color: var(--rose); }
.satellite__go .arr { transition: transform .4s var(--ease); }
.satellite__go:hover .arr { transform: translateX(6px); }

/* Mini-Emblem in Nav/Footer */
.brand-mark { height: 22px; width: auto; vertical-align: middle; margin-right: 9px; filter: drop-shadow(0 0 6px rgba(255,79,135,.4)); }
.footer__brand-mark { height: clamp(70px, 12vw, 120px); width: auto; filter: drop-shadow(0 0 16px rgba(255,79,135,.35)); }

/* ============================================================
   Generic content
   ============================================================ */
.eyebrow-row { display: flex; align-items: baseline; gap: 18px; margin-bottom: clamp(30px, 5vw, 64px); }
.eyebrow-row .idx { font-family: var(--mono); font-size: 12px; color: var(--ink-mute); letter-spacing: 0.1em; }
.h-sec { font-family: var(--display); font-weight: 300; font-size: clamp(40px, 7vw, 110px); line-height: 0.92; }
.h-sec .rose { color: var(--rose); font-style: italic; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: 1fr; } }

.prose p { color: var(--ink-dim); max-width: 60ch; margin-bottom: 1.1em; }
.prose p:last-child { margin-bottom: 0; }

/* Karten / Listen */
.card { background: var(--bg); padding: clamp(28px, 4vw, 48px); }
.card h3 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.card p { color: var(--ink-mute); }
.card .num { font-family: var(--mono); font-size: 12px; color: var(--rose-soft); letter-spacing: 0.1em; }

/* Feature: Angsthase – sensible, weiche Sektion */
.angst {
  background: linear-gradient(180deg, var(--rose-deep), var(--bg) 80%);
  border-top: 1px solid var(--line);
}
.angst .h-sec .rose { font-style: italic; }
.angst .pill { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); border: 1px solid rgba(255,79,135,.35); border-radius: 999px; padding: 7px 16px; margin-bottom: 28px; }

/* Galerie */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 10px; }
.gallery figure { position: relative; overflow: hidden; background: var(--bg-card); border: 1px solid var(--line); }
.gallery figure::after { content: attr(data-cap); position: absolute; left: 12px; bottom: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-dim); opacity: 0; transform: translateY(6px); transition: .4s var(--ease); }
.gallery figure:hover::after { opacity: 1; transform: none; }
.gallery .ph { aspect-ratio: 3/4; width: 100%; display: grid; place-items: center; }
.gallery .ph svg { width: 38%; opacity: .25; }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; filter: saturate(.96) contrast(1.02); transition: transform 1.2s var(--ease), filter .6s; }
.gallery figure:hover img { transform: scale(1.04); filter: saturate(1.05) contrast(1.05); }
.gallery .g-wide img, .gallery .g-half img { aspect-ratio: 16/11; }
.g-tall { grid-column: span 4; }
.g-wide { grid-column: span 8; }
.g-sq   { grid-column: span 4; }
.g-half { grid-column: span 6; }
@media (max-width: 860px) { .g-tall, .g-wide, .g-sq, .g-half { grid-column: span 6; } }
@media (max-width: 560px) { .g-tall, .g-wide, .g-sq, .g-half { grid-column: span 12; } }

/* FAQ / Accordion */
.faq__item { border-top: 1px solid var(--line); padding: 28px 0; }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { display: flex; justify-content: space-between; gap: 24px; align-items: baseline; cursor: pointer; }
.faq__q h3 { font-size: clamp(20px, 2.6vw, 30px); font-family: var(--serif); font-weight: 400; }
.faq__q .sign { font-family: var(--mono); color: var(--rose); flex: none; transition: transform .4s var(--ease); }
.faq__item[open] .faq__q .sign { transform: rotate(45deg); }
.faq__a { color: var(--ink-mute); max-width: 64ch; padding-top: 16px; }
.faq__item summary { list-style: none; } .faq__item summary::-webkit-details-marker { display: none; }

/* Liste mit Index (Prozess / Prinzipien) */
.steps { counter-reset: s; }
.steps li { list-style: none; border-top: 1px solid var(--line); padding: 30px 0; display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start; }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before { counter-increment: s; content: counter(s, decimal-leading-zero); font-family: var(--mono); font-size: 13px; color: var(--rose-soft); padding-top: 6px; }
.steps h3 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 8px; }
.steps p { color: var(--ink-mute); max-width: 58ch; }

/* Kontaktformular (Platzhalter) */
.form { display: grid; gap: 22px; max-width: 620px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.field input, .field textarea, .field select {
  background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink);
  padding: 14px 16px; font-family: var(--sans); font-size: 16px; border-radius: 0;
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--rose); }
.field textarea { min-height: 140px; resize: vertical; }
.btn {
  justify-self: start; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--rose); color: var(--ink); padding: 16px 28px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.btn:hover { background: var(--rose); color: #0a0908; }
.form__note { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: .05em; }
.form__note b { color: var(--rose-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-block: 60px; position: relative; z-index: 3; }
.footer__grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
.footer__brand { font-family: var(--display); font-size: clamp(40px, 8vw, 96px); font-weight: 300; line-height: .9; }
.footer__brand .rose { color: var(--rose); font-style: italic; }
.footer__col { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; color: var(--ink-mute); display: grid; gap: 10px; align-content: start; }
.footer__col a:hover { color: var(--rose); }
.footer__meta { margin-top: 48px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-family: var(--mono); font-size: 11px; color: var(--ink-mute); letter-spacing: .08em; }

/* AVantgarde credit – dezent */
.avantgarde-credit { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--ink-mute); transition: color .3s; }
.avantgarde-credit:hover { color: var(--rose-soft); }

/* ============================================================
   Motion / Reveal
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* Vergissmeinnicht – Linienmotiv */
.bloom { position: absolute; pointer-events: none; opacity: .5; z-index: 0; }
.bloom svg path, .bloom svg circle, .bloom svg line { stroke: var(--rose-soft); }
.bloom--tr { top: -40px; right: -30px; width: clamp(140px, 22vw, 320px); }
.bloom--bl { bottom: -60px; left: -40px; width: clamp(160px, 26vw, 380px); transform: rotate(180deg); }

/* Featured artwork (Hero einer Welt) */
.feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } }
.feature__img { position: relative; border: 1px solid var(--line); overflow: hidden; background: var(--bg-card); }
.feature__img img { width: 100%; display: block; }
.feature__img figcaption { position: absolute; left: 14px; bottom: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim); }

/* Preis-Karten */
.price { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 640px) { .price { grid-template-columns: 1fr; } }
.price__cell { background: var(--bg); padding: clamp(28px, 4vw, 44px); }
.price__amount { font-family: var(--display); font-size: clamp(44px, 6vw, 76px); font-weight: 300; line-height: 1; }
.price__amount .cur { color: var(--rose); font-style: italic; font-size: .5em; }
.price__name { font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--rose-soft); margin-bottom: 18px; display: block; }
.price__cell ul { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.price__cell li { color: var(--ink-mute); padding-left: 20px; position: relative; }
.price__cell li::before { content: "—"; position: absolute; left: 0; color: var(--rose-soft); }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim); border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; }
.chip--rose { color: var(--rose); border-color: rgba(255,79,135,.4); }

/* ============================================================
   THEME: Carnation Piercing (Marek) — Gold + Petrol statt Rosa
   ============================================================ */
body.theme-carnation {
  --rose:       #e9a400;   /* Gold = Hauptakzent */
  --rose-soft:  #6ab0b8;   /* Petrol = zweite Tonfarbe */
  --rose-deep:  #241a06;   /* gold-getöntes Dunkel */
}
body.theme-carnation ::selection { background: #e9a400; color: #0a0908; }
body.theme-carnation .stage::before {
  background:
    radial-gradient(40% 36% at 50% 34%, rgba(233,164,0,0.18), transparent 70%),
    radial-gradient(80% 70% at 50% 120%, rgba(0,0,0,0.7), transparent 60%);
}
body.theme-carnation::before {
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(233,164,0,0.06), transparent 60%),
    radial-gradient(140% 100% at 50% 120%, rgba(0,0,0,0.55), transparent 55%);
}
body.theme-carnation .chip--rose { border-color: rgba(233,164,0,.45); }
body.theme-carnation .angst .pill { border-color: rgba(233,164,0,.4); }

/* CP-Logo im Hero (breit) — feine, lebendige Bewegung (Nelke wiegt aus dem Stiel) */
.cp-logo {
  width: min(820px, 92%); height: auto; margin-inline: auto;
  filter: drop-shadow(0 0 30px rgba(233,164,0,.28));
  transform-origin: 50% 88%;            /* Drehpunkt am „Stiel" unten */
  will-change: transform, filter;
  animation: cp-breathe 7.5s ease-in-out infinite;
}
.cp-logo:hover { animation-duration: 4s; }   /* bei Hover etwas lebhafter */

@keyframes cp-breathe {
  0%   { transform: translateY(0)    rotate(-0.7deg) scale(1);      filter: drop-shadow(0 2px 24px rgba(233,164,0,.20)); }
  50%  { transform: translateY(-9px) rotate(0.7deg)  scale(1.012);  filter: drop-shadow(0 8px 42px rgba(233,164,0,.38)); }
  100% { transform: translateY(0)    rotate(-0.7deg) scale(1);      filter: drop-shadow(0 2px 24px rgba(233,164,0,.20)); }
}
.cp-logo--footer { animation: none; }
@media (prefers-reduced-motion: reduce) { .cp-logo { animation: none; } }

/* Sektions-Hintergrund-Artworks */
.sec-art {
  position: absolute; inset: 0;
  z-index: -1; pointer-events: none;
  background-size: cover; background-position: center; opacity: .13;
  -webkit-mask-image: radial-gradient(95% 85% at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(95% 85% at 50% 50%, #000 30%, transparent 80%);
}
.sec-art--strong { opacity: .26; }
.sec-art--right {
  background-position: right center;
  -webkit-mask-image: radial-gradient(80% 90% at 78% 50%, #000 22%, transparent 78%);
          mask-image: radial-gradient(80% 90% at 78% 50%, #000 22%, transparent 78%);
}

.cp-logo--footer {
  width: min(440px, 80%); opacity: .9;
  transform-origin: 50% 88%;
  animation: cp-breathe-soft 9s ease-in-out infinite;   /* Footer ruhiger */
}
@keyframes cp-breathe-soft {
  0%,100% { transform: translateY(0)    rotate(-0.4deg); filter: drop-shadow(0 0 16px rgba(233,164,0,.16)); }
  50%     { transform: translateY(-5px) rotate(0.4deg);  filter: drop-shadow(0 4px 26px rgba(233,164,0,.26)); }
}

@media (prefers-reduced-motion: reduce) {
  .cp-logo, .cp-logo--footer { animation: none; }
}

/* Preisliste */
.pricelist { display: grid; gap: 0; border-top: 1px solid var(--line); max-width: 760px; }
.pricelist__row { display: flex; align-items: baseline; gap: 16px; padding: 16px 2px; border-bottom: 1px solid var(--line); }
.pricelist__row .nm { font-family: var(--serif); font-size: clamp(18px,2.2vw,24px); color: var(--ink); }
.pricelist__row .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.pricelist__row .pr { font-family: var(--mono); font-size: 14px; color: var(--rose); letter-spacing: .04em; white-space: nowrap; }
.pricelist__row .pr.soft { color: var(--ink-mute); }
.pricelist__note { font-family: var(--serif); font-style: italic; color: var(--ink-mute); margin-top: 18px; }

/* Termin-Entscheidung (Ja / Nein) */
.decide { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 700px){ .decide { grid-template-columns: 1fr; } }
.decide__col { background: var(--bg); padding: clamp(26px,3.5vw,40px); }
.decide__head { font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.decide__col--yes .decide__head { color: var(--rose); }
.decide__col--no  .decide__head { color: var(--rose-soft); }
.decide__col ul { list-style: none; display: grid; gap: 12px; }
.decide__col li { color: var(--ink-dim); padding-left: 22px; position: relative; }
.decide__col--yes li::before { content: "→"; position: absolute; left: 0; color: var(--rose); }
.decide__col--no  li::before { content: "·"; position: absolute; left: 4px; color: var(--rose-soft); }
.decide__foot { margin-top: 20px; color: var(--ink-mute); font-family: var(--serif); font-style: italic; }

/* „Steche ich nicht" */
.notlist { display: flex; flex-wrap: wrap; gap: 12px; }
.notlist span { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-dim); border: 1px solid var(--line); padding: 10px 16px; position: relative; }
.notlist span::before { content: "✕ "; color: var(--rose-soft); }

/* Carnation-Motiv */
.carn-motif { position: absolute; pointer-events: none; opacity: .14; z-index: 0; width: clamp(160px, 22vw, 300px); }
.carn-motif--tr { top: 40px; right: -20px; }

/* Back link to hub */
.back { position: fixed; left: var(--gut); bottom: 22px; z-index: 40; font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); mix-blend-mode: difference; }
.back:hover { color: var(--rose); }
