/* ==========================================================================
   GUTSCHEINE (23.09.2026) — Stile der Bausteine geschenk-buehne, geschenkkarte, anlass-kacheln,
   fragen-liste. Eigene Datei, damit main.css und effekte.css unberuehrt bleiben; eingebunden von
   den Bausteinen selbst (nur Seiten, die sie benutzen, laden sie).
   Marke unveraendert: Farben/Schrift aus den Variablen in main.css. Keine Dauerbewegung, keine
   Effekte ueber Text (Jamie 23.09.2026) — Tiefe kommt aus Bild, Licht und Schatten.
   ========================================================================== */

/* ---------- geschenk-buehne ---------- */
.l7-gb { position: relative; background: var(--l7-black); color: var(--l7-white); overflow: hidden; isolation: isolate; }
.l7-gb__medium { position: relative; }
.l7-gb__medium img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 42%; display: block; }
.l7-gb__inner { position: relative; z-index: 2; }
.l7-gb__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--l7-teal); margin: 0 0 20px; }
.l7-gb__titel { font-size: clamp(42px, 5.6vw, 84px); line-height: 0.93; letter-spacing: -0.035em; margin: 0 0 24px; max-width: 11ch; color: var(--l7-white); }
.l7-gb__titel .l7-accent { color: var(--l7-teal); }
.l7-gb__sub { font-size: clamp(17px, 1.45vw, 20px); line-height: 1.55; color: rgba(255,255,255,0.8); max-width: 34em; margin: 0 0 36px; }
.l7-gb__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.l7-gb__fakten { list-style: none; margin: 48px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 760px; border-top: 1px solid rgba(255,255,255,0.16); }
.l7-gb__fakten li { padding: 20px 24px 0 0; }
.l7-gb__fakten li + li { padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.1); }
.l7-gb__fakten strong { display: block; font-size: 20px; font-weight: 800; letter-spacing: -0.01em; color: var(--l7-white); }
.l7-gb__fakten span { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; line-height: 1.4; }

@media (min-width: 900px) {
  .l7-gb--bild { min-height: min(calc(100svh - 90px), 900px); display: flex; align-items: flex-end; }
  .l7-gb--bild .l7-gb__medium { position: absolute; inset: 0; z-index: 0; }
  .l7-gb--bild::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
      linear-gradient(90deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.78) 30%, rgba(10,10,10,0.2) 58%, rgba(10,10,10,0) 72%),
      linear-gradient(0deg, var(--l7-black) 0%, rgba(10,10,10,0) 30%); }
  .l7-gb__inner { width: 100%; padding-top: 96px; padding-bottom: 56px; }
}
@media (max-width: 899px) {
  .l7-gb__medium { aspect-ratio: 4 / 3.3; }
  .l7-gb__medium img { object-position: 76% 58%; }
  .l7-gb__medium::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--l7-black) 2%, rgba(10,10,10,0) 42%); }
  .l7-gb--bild .l7-gb__inner { margin-top: -36px; }
  .l7-gb__inner { padding-bottom: 56px; }
  .l7-gb__titel { font-size: clamp(40px, 11.5vw, 56px); }
  .l7-gb__sub { margin-bottom: 28px; }
  .l7-gb__ctas .l7-btn { flex: 1 1 100%; justify-content: center; }
  .l7-gb__fakten { grid-template-columns: 1fr; margin-top: 40px; }
  .l7-gb__fakten li, .l7-gb__fakten li + li { padding: 14px 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
  .l7-gb__fakten strong { font-size: 17px; }
  .l7-gb__fakten span { margin: 0; text-align: right; }
}

/* Kaufleiste (nur Handy) */
.l7-kaufleiste { display: none; }
@media (max-width: 899px) {
  .l7-kaufleiste { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; align-items: center; justify-content: space-between; gap: 12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px)); background: rgba(10,10,10,0.94); border-top: 1px solid rgba(4,255,247,0.28);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); transform: translateY(110%); transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); }
  .l7-kaufleiste.is-on { transform: translateY(0); }
  .l7-kaufleiste__text { color: var(--l7-white); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; }
  .l7-kaufleiste .l7-btn { padding: 12px 18px; font-size: 13px; white-space: nowrap; flex: 0 0 auto; }
}

/* ---------- geschenkkarte ---------- */
.l7-gk { position: relative; color: var(--l7-white); padding: 128px 0; overflow: hidden;
  background: radial-gradient(ellipse 60% 70% at 26% 50%, rgba(4,255,247,0.11), rgba(4,255,247,0) 70%), var(--l7-black); }
.l7-gk__raster { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 72px; align-items: center; }
.l7-gk__buehne { position: relative; aspect-ratio: 1.15; display: grid; place-items: center; }
.l7-gk__karte { position: relative; grid-area: 1 / 1; width: min(92%, 540px); aspect-ratio: 1.586; border-radius: 14px; overflow: hidden; z-index: 2;
  background: linear-gradient(140deg, #202020 0%, #0d0d0d 46%, #151515 100%);
  box-shadow: 0 60px 90px -30px rgba(0,0,0,0.9), 0 30px 60px -20px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.09), 0 0 90px rgba(4,255,247,0.10);
  transform: rotate(-7deg) translate(-2%, -4%); }
/* Schraeges Tuerkis-Feld rechts: nimmt den Schnitt des Signets auf, ohne es nachzuzeichnen. */
.l7-gk__karte::before { content: ""; position: absolute; top: -30%; bottom: -30%; right: -3%; width: 15%; transform: skewX(-24deg);
  background: linear-gradient(180deg, #4DFFFA 0%, var(--l7-teal) 45%, #00d9d2 100%); box-shadow: -1px 0 0 rgba(255,255,255,0.5); }
/* Feiner Schliff + ruhiger Glanz (statisch). */
.l7-gk__karte::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(118deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.03) 28%, rgba(255,255,255,0) 42%),
    repeating-linear-gradient(118deg, rgba(255,255,255,0.022) 0 1px, rgba(255,255,255,0) 1px 6px); }
.l7-gk__karte--hinten { z-index: 1; transform: rotate(5deg) translate(9%, 8%); opacity: 0.85;
  background: linear-gradient(140deg, #2b0b1e 0%, #14060e 55%, #1d0915 100%); box-shadow: 0 40px 70px -30px rgba(0,0,0,0.9), inset 0 0 0 1px rgba(255,20,147,0.25); }
.l7-gk__karte--hinten::before { background: linear-gradient(180deg, #ff3fa6, var(--l7-magenta)); opacity: 0.8; }
.l7-gk__kopf { position: absolute; z-index: 1; left: 7%; right: 24%; top: 9%; display: flex; justify-content: space-between; align-items: flex-start; }
.l7-gk__logo { width: 34%; height: auto; }
.l7-gk__links { display: flex; flex-direction: column; gap: 10px; }
.l7-gk__art { font-size: clamp(8px, 1.05vw, 11px); font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.l7-gk__fuss { position: absolute; z-index: 1; left: 7%; right: 24%; bottom: 9%; display: flex; justify-content: space-between; align-items: flex-end; }
.l7-gk__wert { font-weight: 900; font-size: clamp(40px, 5vw, 68px); line-height: 0.85; letter-spacing: -0.04em; color: var(--l7-white); display: inline-flex; align-items: flex-start; gap: 0.08em; }
.l7-gk__wert small { font-size: 0.42em; letter-spacing: 0; margin-top: 0.08em; color: var(--l7-teal); }
.l7-gk.is-textwert .l7-gk__wert { font-size: clamp(28px, 3.4vw, 46px); }
.l7-gk.is-textwert .l7-gk__wert small { display: none; }
[data-l7-kartenwert] { display: inline-block; transition: opacity 0.16s ease, transform 0.16s ease; }
[data-l7-kartenwert].is-wechsel { opacity: 0; transform: translateY(6px); }
.l7-gk__zeile { font-size: clamp(8px, 0.95vw, 10px); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); text-align: right; line-height: 1.5; white-space: nowrap; }
.l7-gk__schatten { position: absolute; left: 15%; right: 15%; bottom: 6%; height: 12%; z-index: 0; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(4,255,247,0.28), rgba(4,255,247,0)); filter: blur(18px); }
.l7-gk__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--l7-teal); margin: 0 0 16px; }
.l7-gk__titel { font-size: clamp(34px, 4.4vw, 60px); line-height: 0.98; letter-spacing: -0.03em; color: var(--l7-white); margin: 0 0 18px; }
.l7-gk__lead { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.75); max-width: 30em; margin: 0 0 32px; }
.l7-gk__betraege { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.l7-gk__betrag { display: flex; align-items: center; height: 100%; min-height: 84px; padding: 18px 20px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.025); color: var(--l7-white); text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease; }
.l7-gk__betrag strong { display: block; font-size: 32px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; transition: color 0.2s ease; }
.l7-gk__betrag strong small { font-size: 0.55em; font-weight: 800; letter-spacing: 0; }
.l7-gk__betrag span { display: block; margin-top: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.l7-gk__betrag:hover, .l7-gk__betrag:focus-visible { border-color: var(--l7-teal); background: rgba(4,255,247,0.07); color: var(--l7-white); transform: translateY(-2px); }
.l7-gk__betrag:hover strong, .l7-gk__betrag:focus-visible strong { color: var(--l7-teal); }
.l7-gk__betrag:focus-visible { outline: 2px solid var(--l7-teal); outline-offset: 2px; }
.l7-gk__wunsch { grid-column: 1 / -1; }
.l7-gk__wunsch .l7-gk__betrag { display: flex; align-items: center; justify-content: space-between; gap: 16px; position: relative; padding-right: 52px; }
.l7-gk__wunsch .l7-gk__betrag strong { font-size: 22px; text-transform: uppercase; letter-spacing: -0.01em; }
.l7-gk__wunsch .l7-gk__betrag span { margin: 0; text-align: right; letter-spacing: 0.08em; }
.l7-gk__wunsch .l7-gk__betrag::after { content: "→"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--l7-teal); font-weight: 800; }
.l7-gk__einloesen { margin: 20px 0 0; padding: 14px 18px; border-left: 3px solid var(--l7-teal); background: rgba(4,255,247,0.06); font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.88); max-width: 38em; }
.l7-gk__cta { margin-top: 28px; }
.l7-gk__hinweis { margin: 20px 0 0; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.5); max-width: 38em; }
@media (max-width: 899px) {
  .l7-gk { padding: 72px 0 80px; }
  .l7-gk__raster { grid-template-columns: 1fr; gap: 24px; }
  .l7-gk__buehne { aspect-ratio: 1.3; margin: 0 -8px; }
  .l7-gk__karte { width: 80%; }
  .l7-gk__betrag { min-height: 68px; justify-content: center; }
  .l7-gk__lead { font-size: 16px; margin-bottom: 24px; }
  .l7-gk__betrag { padding: 16px 12px 14px; }
  .l7-gk__betrag strong { font-size: 24px; }
  .l7-gk__betrag span { font-size: 10px; letter-spacing: 0.1em; }
  .l7-gk__wunsch .l7-gk__betrag { flex-direction: column; align-items: flex-start; gap: 6px; }
  .l7-gk__wunsch .l7-gk__betrag strong { font-size: 18px; }
  .l7-gk__wunsch .l7-gk__betrag span { text-align: left; }
}

/* ---------- anlass-kacheln ---------- */
.l7-ak { padding: 120px 0; }
.l7-ak--hell { background: var(--l7-cream-soft); color: var(--l7-black); }
.l7-ak--dunkel { background: var(--l7-black); color: var(--l7-white); }
.l7-ak__kopf { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 16px 64px; align-items: end; margin-bottom: 48px; }
.l7-ak__eyebrow { grid-column: 1 / -1; font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--l7-teal-dark); margin: 0; }
.l7-ak--dunkel .l7-ak__eyebrow { color: var(--l7-teal); }
.l7-ak__titel { font-size: clamp(34px, 4.4vw, 60px); line-height: 0.98; letter-spacing: -0.03em; margin: 0; }
.l7-ak__lead { font-size: 18px; line-height: 1.55; margin: 0; opacity: 0.75; max-width: 26em; }
.l7-ak__liste { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.l7-ak__liste--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.l7-ak__kachel { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #111; }
.l7-ak__kachel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.l7-ak__kachel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 30%, rgba(10,10,10,0) 58%); pointer-events: none; }
.l7-ak__text { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 22px 22px 24px; color: var(--l7-white); }
.l7-ak__text h3 { font-size: 22px; letter-spacing: -0.01em; margin: 0 0 8px; }
.l7-ak__text h3 { line-height: 1.1; min-height: 1.1em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* BUENDIG (23.09.2026): Text immer genau 2 Zeilen hoch (Handy 3), damit alle Titel auf einer Linie stehen. */
.l7-ak__text p { font-size: 14px; line-height: 1.45; margin: 0; color: rgba(255,255,255,0.82); height: calc(1.45em * 2); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
@media (hover: hover) { .l7-ak__kachel:hover img { transform: scale(1.04); } }
.l7-ak__cta { margin-top: 40px; }
@media (max-width: 899px) {
  .l7-ak { padding: 72px 0; }
  .l7-ak__kopf { grid-template-columns: 1fr; margin-bottom: 28px; }
  .l7-ak__lead { font-size: 16px; }
  .l7-ak__liste, .l7-ak__liste--3 { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; margin: 0 -24px; padding: 0 24px 4px; scroll-padding: 0 24px; scrollbar-width: none; }
  .l7-ak__liste::-webkit-scrollbar { display: none; }
  .l7-ak__kachel { flex: 0 0 76%; scroll-snap-align: start; }
  .l7-ak__text p { height: calc(1.45em * 3); -webkit-line-clamp: 3; }
}

/* ---------- drei-schritte (Liste) auf Seiten mit Geschenkkarte ---------- */
body:has(.l7-gk) .l7-steps { gap: 0; counter-reset: none; }
body:has(.l7-gk) .l7-steps__item { padding: 28px 32px 8px 0; border-top: 2px solid var(--l7-black); }
body:has(.l7-gk) .l7-steps__item + .l7-steps__item { padding-left: 32px; border-left: 1px solid rgba(10,10,10,0.1); }
body:has(.l7-gk) .l7-steps__num { font-size: 72px; }
body:has(.l7-gk) .l7-steps__item h3 { font-size: 22px; }
body:has(.l7-gk) .l7-steps__item p { font-size: 16px; opacity: 0.8; max-width: 22em; }
@media (max-width: 899px) {
  body:has(.l7-gk) .l7-steps__item, body:has(.l7-gk) .l7-steps__item + .l7-steps__item { padding: 22px 0 18px; border-left: 0; display: grid; grid-template-columns: 64px 1fr; column-gap: 8px; }
  body:has(.l7-gk) .l7-steps__num { font-size: 44px; grid-row: span 2; margin: 0; }
  body:has(.l7-gk) .l7-steps__item h3 { font-size: 18px; margin-top: 4px; }
  body:has(.l7-gk) .l7-steps__item p { font-size: 15px; }
}

/* ---------- fragen-liste ---------- */
.l7-fl { background: var(--l7-cream-soft); color: var(--l7-black); padding: 120px 0; }
.l7-fl__raster { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 32px 80px; align-items: start; }
.l7-fl__kopf { position: sticky; top: 120px; }
.l7-fl__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--l7-teal-dark); margin: 0 0 16px; }
.l7-fl__titel { font-size: clamp(32px, 3.8vw, 52px); line-height: 1; letter-spacing: -0.03em; margin: 0 0 16px; }
.l7-fl__lead { font-size: 16px; color: #555; margin: 0; }
.l7-fl__liste { border-top: 2px solid var(--l7-black); }
.l7-fl__item { border-bottom: 1px solid rgba(10,10,10,0.12); }
.l7-fl__item summary { list-style: none; cursor: pointer; position: relative; padding: 24px 48px 24px 0; font-size: 18px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.35; }
.l7-fl__item summary::-webkit-details-marker { display: none; }
.l7-fl__item summary::before, .l7-fl__item summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 16px; height: 2px; background: var(--l7-black); transition: transform 0.25s ease, background-color 0.2s ease; }
.l7-fl__item summary::after { transform: rotate(90deg); }
.l7-fl__item[open] summary::after { transform: rotate(0deg); }
.l7-fl__item summary:hover::before, .l7-fl__item summary:hover::after { background: var(--l7-teal-dark); }
.l7-fl__item summary:focus-visible { outline: 2px solid var(--l7-teal-dark); outline-offset: 4px; }
.l7-fl__antwort { padding: 0 48px 26px 0; font-size: 16px; line-height: 1.6; color: #3a3a3a; max-width: 40em; }
@media (max-width: 899px) {
  .l7-fl { padding: 72px 0; }
  .l7-fl__raster { grid-template-columns: 1fr; }
  .l7-fl__kopf { position: static; }
  .l7-fl__item summary { font-size: 16px; padding: 20px 40px 20px 0; }
  .l7-fl__antwort { padding-right: 0; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .l7-kaufleiste, .l7-ak__kachel img, .l7-gk__betrag, [data-l7-kartenwert] { transition: none !important; }
}
