/* Theme-gklickt-Pattern-CSS (Plugin-portabel) — nur Theme-Prefix-Klassen */

/*
Theme Name:   gklickt — Kadence Child
Theme URI:    https://gklickt.de
Description:  Custom Child Theme für gklickt.de — Liquid Glass · Helle Bildbühne · Linsen-Fokus-Pull. Bindet sich ans Marstaller-Universum durch gemeinsame Designtokens (EB Garamond, Jost, Gold-Akzent #C9A84C).
Author:       Gregor Marstaller
Author URI:   https://gklickt.de
Template:     kadence
Version:      0.5.0
License:      GPL-2.0-or-later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  gklickt
Update URI:   gklickt.de
*/

/* ════════════════════════════════════════════════════════════════
   1. Design-Tokens
   ════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════
   2. Body & Typografie
   ════════════════════════════════════════════════════════════════ */

h1, h2, .gk-italic { font-style: italic !important; }

.gk-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gk-gold-deep);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

/* ════════════════════════════════════════════════════════════════
   3. Header transparent über Hero
   ════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════
   4. Hero · Crossfade mit Linsen-Fokus-Pull
   ════════════════════════════════════════════════════════════════ */

.gk-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.gk-hero__images { position: absolute; inset: 0; }

.gk-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity, filter, transform;
  transition: opacity 1.5s ease-in-out;
}

.gk-hero__img.is-active {
  opacity: 1;
  animation: gk-focus-pull 7s ease-out forwards;
}

@keyframes gk-focus-pull {
  0%   { filter: blur(22px) brightness(1.12) saturate(0.85); transform: scale(1.10); }
  35%  { filter: blur(0) brightness(1) saturate(1);            transform: scale(1.02); }
  100% { filter: blur(0) brightness(1) saturate(1);            transform: scale(1.06); }
}

.gk-hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.32) 100%);
  pointer-events: none;
}

/* ─── Cover-Bild bekommt Linsen-Fokus-Pull beim Laden ─── */

.gk-hero .wp-block-cover__image-background,
.wp-block-cover.gk-hero img.wp-block-cover__image-background {
  animation: gk-focus-pull-once 3s ease-out forwards;
  will-change: filter, transform;
}

@keyframes gk-focus-pull-once {
  0%   { filter: blur(20px) brightness(1.15) saturate(0.85); transform: scale(1.10); }
  60%  { filter: blur(0) brightness(1) saturate(1);            transform: scale(1.04); }
  100% { filter: blur(0) brightness(1) saturate(1);            transform: scale(1.02); }
}

/* ─── Hero-Card als Liquid-Glass (DEUTLICH sichtbar) ─── */

.gk-hero__card,
.wp-block-group.gk-hero__card {
  width: min(620px, calc(100% - 3rem)) !important;
  margin: 0 auto !important;
  padding: 2.75rem 3rem !important;
  background: rgba(248, 242, 230, 0.78) !important;
  backdrop-filter: blur(30px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  border-radius: 14px !important;
  box-shadow:
    0 40px 100px -30px rgba(31, 26, 18, 0.55),
    0 0 0 1px rgba(201, 168, 76, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.9) !important;
  text-align: center;
  animation: gk-card-enter 1.2s 0.6s ease-out backwards;
}

.gk-hero__card .gk-hero__title,
.gk-hero__card h1 {
  color: var(--gk-ink) !important;
  text-shadow: none;
}

.gk-hero__card .gk-hero__tagline,
.gk-hero__card p {
  color: var(--gk-ink-soft) !important;
}

@keyframes gk-card-enter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Liquid-Glass-Helper, einsetzbar auf jedem wp-block-group via className "gk-glass" */

.gk-glass,
.wp-block-group.gk-glass {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 2rem 2.5rem !important;
  box-shadow: 0 20px 50px -20px rgba(31, 26, 18, 0.3), inset 0 1px 0 rgba(255,255,255,0.8);
}

.gk-hero__title {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  letter-spacing: -0.5px;
  color: var(--gk-ink);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.gk-hero__tagline {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--gk-ink-soft);
  max-width: 480px;
  margin: 0 auto;
}

.gk-hero__credit {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  transition: opacity 0.6s;
}

/* ════════════════════════════════════════════════════════════════
   4b. Brand-Mark — Logo-Stil für Hero und Pattern-Vorschau
   ════════════════════════════════════════════════════════════════ */

.gk-brand-mark {
  text-align: center;
  margin-bottom: 1.5rem;
  display: block;
}

.gk-brand-name {
  display: inline-block;
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--gk-ink);
  line-height: 1;
  letter-spacing: -0.5px;
}

.gk-brand-dot {
  color: var(--gk-gold);
}

.gk-brand-sub {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gk-gold-deep);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ════════════════════════════════════════════════════════════════
   5. Glass-Helper
   ════════════════════════════════════════════════════════════════ */

.gk-glass {
  background: var(--gk-glass-bg-2);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--gk-glass-bord);
  border-radius: 8px;
  box-shadow: var(--gk-glass-shadow), inset 0 1px 0 rgba(255,255,255,0.8);
}

/* ════════════════════════════════════════════════════════════════
   6. Intro · Glass-Karte überlappt Bild
   ════════════════════════════════════════════════════════════════ */

.gk-intro {
  padding: 8rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.gk-intro::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  top: 4rem; left: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gk-gold-soft), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.gk-intro__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 580px;
}

.gk-intro__image {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: 0 40px 80px -30px rgba(31, 26, 18, 0.35);
}

.gk-intro__card {
  position: relative;
  margin-left: -100px;
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 3.5rem;
  background: var(--gk-glass-bg-2);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--gk-glass-bord);
  border-radius: 8px;
  box-shadow: var(--gk-glass-shadow), inset 0 1px 0 rgba(255,255,255,0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gk-intro__card h2 {
  font-style: italic;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 1.5rem;
  color: var(--gk-ink);
}

.gk-intro__card p {
  font-size: 1rem;
  color: var(--gk-ink-soft);
  margin-bottom: 1.1rem;
  line-height: 1.75;
}

.gk-intro__card p em {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gk-clay);
  font-weight: 500;
}

.gk-signature {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gk-ink);
  margin-top: 1.5rem;
}

/* ════════════════════════════════════════════════════════════════
   7. Bokeh-Akzent-Helper
   ════════════════════════════════════════════════════════════════ */

.gk-bokeh-section {
  position: relative;
  overflow: hidden;
}

.gk-bokeh-section::before,
.gk-bokeh-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.gk-bokeh-section::before {
  width: 400px; height: 400px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, var(--gk-gold-soft), transparent 65%);
}

.gk-bokeh-section::after {
  width: 300px; height: 300px;
  bottom: 60px; left: -80px;
  background: radial-gradient(circle, var(--gk-clay-soft), transparent 70%);
}

.gk-bokeh-section > * { position: relative; z-index: 1; }

/* ════════════════════════════════════════════════════════════════
   8. Galerie · Selektive Tiefenschärfe
   ════════════════════════════════════════════════════════════════ */

.gk-gallery-wrap {
  padding: 7rem 2.5rem;
  background: var(--gk-cream-deep);
  position: relative;
  overflow: hidden;
}

.gk-gallery-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
  text-align: center;
  position: relative;
}

.gk-gallery-header h2 {
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
}

.gk-gallery {
  max-width: 1500px;
  margin: 0 auto;
  column-count: 4;
  column-gap: 1rem;
  position: relative;
}

.gk-gallery figure {
  break-inside: avoid;
  margin: 0 0 1rem 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 16px -4px rgba(31, 26, 18, 0.14);
}

.gk-gallery figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.6s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1);
}

.gk-gallery figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem 1.5rem 1.2rem;
  color: var(--gk-cream);
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.gk-gallery:hover figure img {
  filter: blur(2.5px) brightness(0.92);
  transform: scale(0.985);
}

.gk-gallery figure:hover img {
  filter: none;
  transform: scale(1.02);
}

.gk-gallery figure:hover figcaption { opacity: 1; }

.gk-gallery figure:hover {
  box-shadow: 0 20px 50px -10px rgba(31, 26, 18, 0.35);
}

.gk-gallery-cta {
  text-align: center;
  margin-top: 3.5rem;
}

@media (max-width: 1100px) { .gk-gallery { column-count: 3; } }

@media (max-width: 800px)  { .gk-gallery { column-count: 2; } .gk-intro__grid { grid-template-columns: 1fr; gap: 1.5rem; } .gk-intro__card { margin: 0; padding: 2.5rem; } }

@media (max-width: 500px)  { .gk-gallery { column-count: 1; } }

/* ════════════════════════════════════════════════════════════════
   9. Format-Prosa
   ════════════════════════════════════════════════════════════════ */

.gk-format {
  padding: 8rem 2.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.gk-format-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gk-format-header h2 {
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
}

.gk-format-prose p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--gk-ink-soft);
  position: relative;
  padding-left: 4rem;
  margin-bottom: 2.5rem;
}

.gk-format-prose .gk-step-num {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 2.6rem;
  color: var(--gk-gold);
  line-height: 1;
  position: absolute;
  left: 0;
  top: -0.15rem;
}

.gk-format-prose strong {
  color: var(--gk-ink);
  font-weight: 500;
}

.gk-format-table {
  margin-top: 3rem;
  background: var(--gk-glass-bg-2);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--gk-glass-bord);
  border-radius: 8px;
  box-shadow: 0 20px 50px -20px rgba(31, 26, 18, 0.18), inset 0 1px 0 rgba(255,255,255,0.7);
  overflow: hidden;
}

.gk-format-table dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  font-size: 0.95rem;
}

.gk-format-table dt {
  padding: 1rem 1.5rem;
  color: var(--gk-ink);
  font-weight: 500;
  border-bottom: 1px solid rgba(31, 26, 18, 0.07);
  background: rgba(248, 242, 230, 0.4);
}

.gk-format-table dd {
  padding: 1rem 1.5rem;
  color: var(--gk-ink-soft);
  border-bottom: 1px solid rgba(31, 26, 18, 0.07);
}

.gk-format-table dt:last-of-type, .gk-format-table dd:last-of-type {
  border-bottom: none;
}

.gk-format-table .gk-row-price dt,
.gk-format-table .gk-row-price dd {
  background: rgba(201, 168, 76, 0.08);
  font-size: 1.1rem;
}

.gk-format-table .gk-row-price dd {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: var(--gk-gold-deep);
  font-weight: 500;
}

@media (max-width: 800px) {
  .gk-format-table dl { grid-template-columns: 1fr; }
  .gk-format-table dt { padding-bottom: 0.25rem; }
  .gk-format-table dd { padding-top: 0.25rem; padding-bottom: 1.25rem; }
}

/* ════════════════════════════════════════════════════════════════
   10. Schauspieler-Grid
   ════════════════════════════════════════════════════════════════ */

.gk-actors-wrap {
  padding: 7rem 2.5rem;
}

.gk-actors-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
  text-align: center;
}

.gk-actors-header h2 {
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
}

.gk-actors-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.gk-actor-card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}

.gk-actor-thumb {
  aspect-ratio: 1 / 1.2;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 0.85rem;
  overflow: hidden;
  box-shadow: 0 4px 12px -2px rgba(31, 26, 18, 0.16);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s ease;
}

.gk-actor-card:hover .gk-actor-thumb {
  transform: scale(1.03);
  box-shadow: 0 16px 40px -8px rgba(31, 26, 18, 0.32);
}

.gk-actor-card h4 {
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 1100px) { .gk-actors-grid { grid-template-columns: repeat(4, 1fr); } }

@media (max-width: 800px)  { .gk-actors-grid { grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 500px)  { .gk-actors-grid { grid-template-columns: repeat(2, 1fr); } }

/* ════════════════════════════════════════════════════════════════
   11. CTA · Photo-Background mit Glass-Card
   ════════════════════════════════════════════════════════════════ */

.gk-cta {
  position: relative;
  padding: 9rem 2.5rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.gk-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 26, 18, 0.45), rgba(31, 26, 18, 0.65));
}

.gk-cta__card {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  padding: 3.5rem 3rem;
  background: var(--gk-glass-bg);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  border: 1px solid var(--gk-glass-bord);
  border-radius: 8px;
  box-shadow: var(--gk-glass-shadow), inset 0 1px 0 rgba(255,255,255,0.7);
  text-align: center;
}

.gk-cta__card h2 {
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--gk-ink);
  margin-bottom: 1rem;
}

.gk-cta__card p {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--gk-ink-soft);
  margin-bottom: 2.25rem;
}

/* ════════════════════════════════════════════════════════════════
   12. Buttons
   ════════════════════════════════════════════════════════════════ */

.wp-block-button.is-style-gk-pill .wp-block-button__link,
.gk-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gk-gold);
  color: var(--gk-ink);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 60px;
  border: none;
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 8px 20px -8px rgba(201, 168, 76, 0.5);
}

.wp-block-button.is-style-gk-pill .wp-block-button__link:hover,
.gk-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(201, 168, 76, 0.55);
}

.gk-btn--glass {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gk-ink);
  border: 1px solid var(--gk-gold);
  box-shadow: none;
}

.gk-btn--glass:hover { background: var(--gk-gold); }

/* ════════════════════════════════════════════════════════════════
   13. Footer · Universum-Hinweis (vereinfacht)
   ════════════════════════════════════════════════════════════════ */

.gk-universum-link {
  text-align: center;
  padding: 1.5rem 0;
  margin: 0;
}

.gk-universum-link a {
  font-family: 'EB Garamond', serif !important;
  font-style: italic;
  font-size: 1rem;
  color: var(--gk-ink-mute) !important;
  text-decoration: none !important;
  letter-spacing: 0.5px;
  transition: color 0.4s, opacity 0.4s;
  opacity: 0.75;
}

.gk-universum-link a:hover {
  color: var(--gk-gold-deep) !important;
  opacity: 1;
}

.gk-universum-link a::before {
  content: '↗ ';
  font-style: normal;
  opacity: 0.6;
  margin-right: 0.25rem;
}

/* ════════════════════════════════════════════════════════════════
   14. Responsive Polish — v2.4.15 erneuert
   ────────────────────────────────────────────────────────────────
   Hero auf Smartphone: Bild MUSS sichtbar bleiben. Karte wird
   kompakter, transparenter, sinkt nach unten — Gesicht oben sichtbar.
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 800px) {
  .gk-gallery-wrap, .gk-actors-wrap, .gk-cta { padding: 5rem 1.5rem; }
  .gk-intro { padding: 5rem 1.5rem; }
  .gk-format { padding: 5rem 1.5rem; }
  .gk-intro__image { aspect-ratio: 4/5; }
}

/* ─── Hero Mobile: Bild OBEN sichtbar, Card UNTEN kompakt (v2.4.19) ─── */
/* Strategie: Card klein + unten verankert, Bild bekommt 60-65 % der Höhe.   */
@media (max-width: 900px) {
  .gk-hero,
  .wp-block-cover.gk-hero {
    min-height: 100svh !important;
    height: auto !important;
    align-items: flex-end !important;
  }
  .gk-hero .wp-block-cover__image-background,
  .wp-block-cover.gk-hero img.wp-block-cover__image-background {
    object-position: center 22% !important;
  }
  /* Inner-Container: Card NACH UNTEN, kein vertikales Zentrieren */
  .wp-block-cover.gk-hero .wp-block-cover__inner-container,
  html body .wp-block-cover.gk-hero > .wp-block-cover__inner-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding: 0 1rem 1.5rem !important;
    margin-top: auto !important;
    min-height: auto !important;
  }
  /* Card kompakt + transparent */
  html body .gk-hero__card,
  html body .wp-block-group.gk-hero__card {
    width: calc(100% - 1rem) !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    padding: 1.1rem 1rem !important;
    background: rgba(248, 242, 230, 0.82) !important;
    backdrop-filter: blur(12px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(150%) !important;
    border-radius: 8px !important;
    border-width: 1px !important;
  }
  .gk-hero__card .gk-brand-mark { margin-bottom: 0.55rem !important; }
  .gk-hero__card .gk-brand-name { font-size: 1.25rem !important; }
  .gk-hero__card .gk-brand-sub  { font-size: 0.5rem !important; letter-spacing: 2px !important; margin-top: 0.25rem !important; }
  .gk-hero__card .gk-eyebrow {
    font-size: 0.55rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 0.4rem !important;
  }
  .gk-hero__card .gk-hero__title,
  .gk-hero__card h1 {
    font-size: clamp(1.15rem, 5.5vw, 1.6rem) !important;
    margin-bottom: 0.35rem !important;
    line-height: 1.15 !important;
  }
  .gk-hero__card .gk-hero__tagline,
  .gk-hero__card p {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
    max-width: 95% !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 480px) {
  html body .gk-hero__card,
  html body .wp-block-group.gk-hero__card {
    max-width: 360px !important;
    padding: 1rem 0.9rem !important;
  }
  .gk-hero__card .gk-brand-name { font-size: 1.1rem !important; }
  .gk-hero__card .gk-hero__title,
  .gk-hero__card h1 { font-size: 1.15rem !important; line-height: 1.1 !important; }
  .gk-hero__card .gk-hero__tagline,
  .gk-hero__card p { font-size: 0.78rem !important; }
}

/* Sehr enge / lange Mobiles: noch kompakter */
@media (max-width: 380px) {
  html body .gk-hero__card,
  html body .wp-block-group.gk-hero__card {
    max-width: 320px !important;
    padding: 0.85rem 0.8rem !important;
  }
  .gk-hero__card .gk-hero__title,
  .gk-hero__card h1 { font-size: 1.05rem !important; }
}

/* ════════════════════════════════════════════════════════════════
   15. NEUE PROFI-PATTERNS (v2.4.15)
   ────────────────────────────────────────────────────────────────
   Drei stilistische Familien für klare optische Vielfalt:
   · gk-cinema-*   (Cinematic / Dunkel)
   · gk-edit-*     (Editorial / Magazin)
   · gk-warm-*     (Warm / Handgemacht)
   ════════════════════════════════════════════════════════════════ */

/* ─── Cinematic Magazine-Cover-Hero ──────────────────────── */
.gk-cinema-cover {
  position: relative;
  min-height: 95vh;
  background: #0e0b08;
  color: #f8f2e6;
  overflow: hidden;
}
.gk-cinema-cover .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 3.5rem 4rem !important;
}
.gk-cinema-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(14,11,8,0.55) 75%, rgba(14,11,8,0.92) 100%);
  pointer-events: none;
  z-index: 1;
}
.gk-cinema-issue {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #c9a84c;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.gk-cinema-headline {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.95;
  margin: 0 0 1.5rem 0;
  color: #f8f2e6;
  max-width: 18ch;
}
.gk-cinema-meta,
.wp-block-group.gk-cinema-meta {
  display: flex !important;
  gap: 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(248,242,230,0.7);
  border-top: 1px solid rgba(248,242,230,0.25);
  padding-top: 1.25rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.gk-cinema-meta > p,
.gk-cinema-meta > * {
  margin: 0 !important;
  font-size: 0.7rem;
  color: rgba(248,242,230,0.78);
  line-height: 1.4;
}
.gk-cinema-meta strong {
  display: block;
  color: #c9a84c;
  font-size: 0.6rem;
  letter-spacing: 3px;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
@media (max-width: 780px) {
  .gk-cinema-cover .wp-block-cover__inner-container { padding: 2rem 1.5rem 2.5rem !important; }
  .gk-cinema-meta { gap: 1.25rem; font-size: 0.62rem; }
}

/* ─── Cinematic Editorial Portfolio (dunkel) ─────────────── */
.gk-cinema-portfolio {
  padding: 8rem 2.5rem;
  background: #0e0b08;
  color: #f8f2e6;
  position: relative;
}
.gk-cinema-portfolio .gk-cinema-portfolio__header {
  max-width: 1300px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: end;
}
.gk-cinema-portfolio h2 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
  color: #f8f2e6;
  margin: 0;
}
.gk-cinema-portfolio .gk-cinema-portfolio__lead {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(248,242,230,0.7);
  line-height: 1.7;
}
/* v2.4.17 — Slots positionsbasiert (:nth-child) statt Klassen.
   Bild per Drag & Drop in Slot 1, 2 oder 3 — Slot bestimmt Größe.
   wp:gallery-Default-Flex muss explizit überschrieben werden. */
.gk-cinema-portfolio-grid,
figure.wp-block-gallery.gk-cinema-portfolio-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 5fr 4fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
}
.gk-cinema-portfolio-grid > figure.wp-block-image,
figure.wp-block-gallery.gk-cinema-portfolio-grid > figure.wp-block-image {
  margin: 0 !important;
  width: auto !important;
  flex: none !important;
  overflow: hidden;
  border-radius: 2px;
}
.gk-cinema-portfolio-grid > figure.wp-block-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(.2,.7,.2,1), filter 0.6s;
  filter: brightness(0.92);
}
.gk-cinema-portfolio-grid > figure.wp-block-image:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}
/* Slot 1 (links): groß + hoch, über zwei Reihen */
.gk-cinema-portfolio-grid > figure.wp-block-image:nth-child(1) {
  grid-row: span 2;
  aspect-ratio: 3/5;
}
/* Slot 2 (rechts oben): quer */
.gk-cinema-portfolio-grid > figure.wp-block-image:nth-child(2) {
  aspect-ratio: 5/4;
}
/* Slot 3 (rechts unten): quadrat */
.gk-cinema-portfolio-grid > figure.wp-block-image:nth-child(3) {
  aspect-ratio: 1/1;
}
@media (max-width: 900px) {
  .gk-cinema-portfolio .gk-cinema-portfolio__header { grid-template-columns: 1fr; gap: 1.5rem; }
  .gk-cinema-portfolio-grid,
  figure.wp-block-gallery.gk-cinema-portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .gk-cinema-portfolio-grid > figure.wp-block-image:nth-child(1) {
    grid-row: auto;
    aspect-ratio: 4/5;
  }
}

/* ─── Editorial Pricing — 3 Karten ────────────────────────── */
.gk-edit-pricing {
  padding: 7rem 2.5rem;
  background: var(--gk-cream, #f8f2e6);
  position: relative;
}
.gk-edit-pricing-header {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.gk-edit-pricing-header h2 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}
.gk-edit-pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.gk-edit-pricing-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(31,26,18,0.08);
  border-radius: 6px;
  padding: 2.5rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), box-shadow 0.45s;
}
.gk-edit-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(31,26,18,0.25);
}
.gk-edit-pricing-card--featured {
  background: var(--gk-ink, #1f1a12);
  color: var(--gk-cream, #f8f2e6);
  border-color: transparent;
  transform: translateY(-12px);
  box-shadow: 0 24px 60px -20px rgba(31,26,18,0.45);
}
.gk-edit-pricing-card--featured:hover { transform: translateY(-18px); }
.gk-edit-pricing-card--featured .gk-edit-price,
.gk-edit-pricing-card--featured h3,
.gk-edit-pricing-card--featured .gk-edit-pricing-list li { color: var(--gk-cream, #f8f2e6); }
.gk-edit-pricing-card--featured .gk-edit-pricing-list li::before { color: var(--gk-gold, #c9a84c) !important; }
.gk-edit-pricing-badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gk-gold, #c9a84c);
  color: var(--gk-ink, #1f1a12);
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 30px;
}
.gk-edit-pricing-card h3 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.gk-edit-pricing-card .gk-edit-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gk-gold-deep, #a08530);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.gk-edit-price {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 2.4rem;
  line-height: 1;
  margin: 0 0 0.25rem 0;
}
.gk-edit-price small {
  font-size: 0.75rem;
  font-style: normal;
  font-family: 'Jost', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gk-ink-mute, rgba(31,26,18,0.55));
  margin-left: 0.25rem;
}
.gk-edit-pricing-list {
  list-style: none;
  padding: 1.5rem 0 0 0;
  margin: 0;
  border-top: 1px solid rgba(31,26,18,0.12);
  margin-top: 1.5rem;
  flex: 1;
}
.gk-edit-pricing-card--featured .gk-edit-pricing-list { border-color: rgba(248,242,230,0.2); }
.gk-edit-pricing-list li {
  padding: 0.55rem 0 0.55rem 1.5rem;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.55;
}
.gk-edit-pricing-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gk-gold-deep, #a08530);
  font-size: 1.4rem;
  line-height: 1;
  top: 0.45rem;
}
@media (max-width: 900px) {
  .gk-edit-pricing-grid { grid-template-columns: 1fr; gap: 1rem; }
  .gk-edit-pricing-card--featured { transform: none; }
  .gk-edit-pricing-card--featured:hover { transform: translateY(-4px); }
}

/* ─── Editorial Workflow — Horizontal-Schritte ────────────── */
.gk-edit-workflow {
  padding: 7rem 2.5rem;
  background: var(--gk-cream-deep, #f3ebd9);
}
.gk-edit-workflow-header {
  max-width: 760px;
  margin: 0 auto 5rem;
  text-align: center;
}
.gk-edit-workflow-header h2 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
}
.gk-edit-workflow-row {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.gk-edit-workflow-row::before {
  content: '';
  position: absolute;
  top: 1.4rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gk-gold-deep, #a08530), transparent);
  opacity: 0.4;
  z-index: 0;
}
.gk-edit-workflow-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.gk-edit-workflow-num {
  width: 2.8rem;
  height: 2.8rem;
  margin: 0 auto 1.25rem;
  background: var(--gk-cream, #f8f2e6);
  border: 1px solid var(--gk-gold, #c9a84c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gk-gold-deep, #a08530);
}
.gk-edit-workflow-step h4 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
}
.gk-edit-workflow-step p {
  font-size: 0.92rem;
  color: var(--gk-ink-soft, #5c5145);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .gk-edit-workflow-row { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .gk-edit-workflow-row::before { display: none; }
}
@media (max-width: 500px) {
  .gk-edit-workflow-row { grid-template-columns: 1fr; }
}

/* ─── Warm FAQ — Akkordeon-Stil ───────────────────────────── */
.gk-warm-faq {
  padding: 7rem 2.5rem;
  background: linear-gradient(180deg, var(--gk-cream, #f8f2e6) 0%, var(--gk-cream-deep, #f3ebd9) 100%);
}
.gk-warm-faq-inner {
  max-width: 780px;
  margin: 0 auto;
}
.gk-warm-faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.gk-warm-faq-header h2 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
}
.gk-warm-faq-item {
  border-top: 1px solid rgba(31,26,18,0.12);
  padding: 1.25rem 0;
}
.gk-warm-faq-item:last-child { border-bottom: 1px solid rgba(31,26,18,0.12); }
.gk-warm-faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  list-style: none;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gk-ink, #1f1a12);
  padding: 0.4rem 0;
  transition: color 0.3s;
}
.gk-warm-faq-item summary::-webkit-details-marker { display: none; }
.gk-warm-faq-item summary::after {
  content: '+';
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 1.4rem;
  color: var(--gk-gold-deep, #a08530);
  font-weight: 300;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  line-height: 1;
}
.gk-warm-faq-item[open] summary { color: var(--gk-gold-deep, #a08530); }
.gk-warm-faq-item[open] summary::after {
  transform: rotate(45deg);
}
.gk-warm-faq-answer {
  padding: 0.75rem 0 0.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gk-ink-soft, #5c5145);
}
.gk-warm-faq-answer p { margin: 0 0 0.75rem; }
.gk-warm-faq-answer p:last-child { margin-bottom: 0; }
@media (max-width: 600px) {
  .gk-warm-faq { padding: 5rem 1.5rem; }
  .gk-warm-faq-item summary { font-size: 1.05rem; gap: 1rem; }
}

/* ─── Warm Behind-the-Scenes — Polaroid-Galerie + Notiz ─── */
.gk-warm-bts {
  padding: 7rem 2.5rem;
  background: var(--gk-cream, #f8f2e6);
  position: relative;
  overflow: hidden;
}
.gk-warm-bts::before {
  content: '';
  position: absolute;
  top: 3rem; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,168,76,0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.gk-warm-bts-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.gk-warm-bts-note {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--gk-ink, #1f1a12);
}
.gk-warm-bts-note h2 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.gk-warm-bts-note .gk-warm-handwriting {
  font-size: 1.6rem;
  color: var(--gk-gold-deep, #a08530);
  display: block;
  margin-top: 1.5rem;
}
/* v2.4.17 — Polaroid-Positionen :nth-child-basiert.
   Bild swappen via Drag & Drop — Slot bestimmt Position + Rotation.
   wp:gallery-Default-Flex muss überschrieben werden. */
.gk-warm-bts-stack,
figure.wp-block-gallery.gk-warm-bts-stack {
  position: relative;
  display: block !important;
  height: 460px;
  margin: 0 !important;
}
.gk-warm-bts-stack > figure.wp-block-image,
figure.wp-block-gallery.gk-warm-bts-stack > figure.wp-block-image {
  position: absolute;
  width: 56% !important;
  flex: none !important;
  background: #fffbf3;
  padding: 0.65rem 0.65rem 2.5rem;
  box-shadow: 0 14px 32px -10px rgba(31,26,18,0.28);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
  margin: 0 !important;
}
.gk-warm-bts-stack > figure.wp-block-image img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}
/* Slot 1: links oben, leichte Linksrotation */
.gk-warm-bts-stack > figure.wp-block-image:nth-child(1) {
  top: 0; left: 0;
  transform: rotate(-5deg);
  z-index: 1;
}
/* Slot 2: rechts mittig, leichte Rechtsrotation */
.gk-warm-bts-stack > figure.wp-block-image:nth-child(2) {
  top: 4rem; right: 0; left: auto;
  transform: rotate(4deg);
  z-index: 2;
}
/* Slot 3: unten mittig-links, kaum gedreht */
.gk-warm-bts-stack > figure.wp-block-image:nth-child(3) {
  bottom: 0; left: 22%; top: auto;
  transform: rotate(-2deg);
  z-index: 3;
}
.gk-warm-bts-stack > figure.wp-block-image:hover {
  transform: rotate(0deg) translateY(-6px);
  z-index: 10;
}
@media (max-width: 900px) {
  .gk-warm-bts-inner { grid-template-columns: 1fr; gap: 3rem; }
  .gk-warm-bts-stack { height: 380px; }
}

/* ─── Testimonials — Karten visuell differenziert ────────── */
.gk-testimonials {
  padding: 7rem 2.5rem;
  background: var(--gk-cream-deep, #f3ebd9);
}
.gk-testimonials-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.gk-testimonials-header h2 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
}
.gk-testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
}
.gk-testimonials-grid .wp-block-column { padding: 0; }
.gk-quote-card,
.wp-block-group.gk-quote-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 2.5rem 2rem !important;
  position: relative;
  box-shadow: 0 20px 40px -20px rgba(31,26,18,0.15);
}
.gk-quote-card::before {
  content: '"';
  position: absolute;
  top: 0.4rem;
  left: 1.2rem;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gk-gold, #c9a84c);
  opacity: 0.5;
}
.gk-quote-text {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--gk-ink, #1f1a12);
  margin: 1rem 0 1.5rem !important;
}
.gk-quote-cite {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--gk-ink-soft, #5c5145);
  border-top: 1px solid rgba(31,26,18,0.15);
  padding-top: 1rem;
  margin: 0 !important;
}
.gk-quote-cite strong {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  color: var(--gk-ink, #1f1a12);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.72rem;
}
@media (max-width: 900px) {
  .gk-testimonials-grid { grid-template-columns: 1fr !important; }
}

/* ─── Hero-Alt: Magazine Split (zweite Hero-Variante) ────── */
.gk-hero-split {
  display: grid;
  grid-template-columns: 5fr 4fr;
  min-height: 92vh;
  background: var(--gk-cream, #f8f2e6);
}
.gk-hero-split__media {
  position: relative;
  overflow: hidden;
}
.gk-hero-split__media .wp-block-image,
.gk-hero-split__media figure {
  margin: 0;
  height: 100%;
}
.gk-hero-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gk-hero-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
}
.gk-hero-split__issue {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gk-gold-deep, #a08530);
  font-weight: 700;
  margin-bottom: 2rem;
}
.gk-hero-split__title {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.gk-hero-split__lead {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--gk-ink-soft, #5c5145);
  max-width: 36ch;
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .gk-hero-split { grid-template-columns: 1fr; min-height: auto; }
  .gk-hero-split__media { aspect-ratio: 4/5; }
  .gk-hero-split__text { padding: 3rem 1.5rem 4rem; }
}

/* ════════════════════════════════════════════════════════════════
   17. KOMPLETT-STARTSEITE (v2.4.19) — Mission · Sektionen · Kontakt
   ════════════════════════════════════════════════════════════════ */

.gk-mission {
  padding: 7rem 2.5rem 6rem;
}
.gk-mission h2 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin-bottom: 1.5rem;
}
.gk-mission p { font-size: 1.05rem; line-height: 1.8; color: var(--gk-ink-soft, #5c5145); margin-bottom: 1.1rem; }
.gk-mission .gk-signature {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gk-ink, #1f1a12);
  margin-top: 2rem;
}

/* Photo-Sektion: Bild + Text Seite an Seite */
.gk-section-photo {
  padding: 5rem 2.5rem;
}
.gk-section-photo h2 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.gk-section-photo p { font-size: 1rem; line-height: 1.75; color: var(--gk-ink-soft, #5c5145); margin-bottom: 1rem; }
.gk-section-photo .wp-block-image { margin: 0; }
.gk-section-photo .wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 30px 60px -25px rgba(31, 26, 18, 0.3);
  display: block;
}
@media (max-width: 800px) {
  .gk-section-photo .gk-section-photo__row { flex-direction: column !important; gap: 2rem !important; }
  .gk-section-photo--reverse .gk-section-photo__row { flex-direction: column !important; }
  .gk-section-photo .wp-block-column { flex-basis: 100% !important; }
  .gk-section-photo { padding: 4rem 1.5rem; }
}

/* Kontakt-Sektion */
.gk-kontakt-section {
  padding: 7rem 2.5rem 6rem;
  background: linear-gradient(180deg, var(--gk-cream, #f8f2e6) 0%, var(--gk-cream-deep, #f3ebd9) 100%);
}
.gk-kontakt-section h2 {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 1rem;
}
.gk-kontakt-section > p { font-size: 1.05rem; color: var(--gk-ink-soft, #5c5145); margin-bottom: 2.5rem; }
.gk-kontakt-direct {
  margin-top: 2rem !important;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: var(--gk-ink, #1f1a12);
}
.gk-kontakt-direct a {
  color: var(--gk-gold-deep, #a08530);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* Form-Styling */
.gk-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  box-shadow: 0 25px 60px -20px rgba(31, 26, 18, 0.18);
}
.gk-form-row { display: flex; flex-direction: column; }
.gk-form-row label { display: flex; flex-direction: column; font-family: 'Jost', sans-serif; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gk-ink, #1f1a12); font-weight: 500; }
.gk-form-row label > span { margin-bottom: 0.4rem; }
.gk-form-row input[type="text"],
.gk-form-row input[type="email"],
.gk-form-row select,
.gk-form-row textarea {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(31,26,18,0.15);
  border-radius: 5px;
  color: var(--gk-ink, #1f1a12);
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  box-sizing: border-box;
}
.gk-form-row textarea { resize: vertical; min-height: 100px; }
.gk-form-row input:focus,
.gk-form-row select:focus,
.gk-form-row textarea:focus {
  outline: none;
  border-color: var(--gk-gold, #c9a84c);
  background: #fff;
}
.gk-form-consent { font-family: 'EB Garamond', serif; font-style: italic; font-size: 0.92rem; color: var(--gk-ink-soft, #5c5145); }
.gk-form-consent label { flex-direction: row; font-family: 'EB Garamond', serif; text-transform: none; letter-spacing: 0; font-size: 0.92rem; font-weight: 400; align-items: center; gap: 0.5rem; }
.gk-form-consent input[type="checkbox"] { width: 1.05rem; height: 1.05rem; accent-color: var(--gk-gold-deep, #a08530); margin: 0; }
.gk-form-consent a { color: var(--gk-gold-deep, #a08530); }
.gk-form-submit { align-items: flex-start; margin-top: 0.5rem; }
.gk-form-submit .gk-btn,
.gk-form-row .gk-btn {
  display: inline-block;
  padding: 0.95rem 2.25rem;
  background: var(--gk-gold, #c9a84c);
  color: var(--gk-ink, #1f1a12);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 8px 20px -8px rgba(201, 168, 76, 0.5);
}
.gk-form-submit .gk-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(201, 168, 76, 0.55); }
.gk-form-target-hint { font-family: 'EB Garamond', serif; font-style: italic; font-size: 0.82rem; color: var(--gk-ink-mute, rgba(31,26,18,0.55)); margin-top: 0.5rem; line-height: 1.5; }
.gk-form-target-hint code { font-family: 'Jost', monospace; font-size: 0.78rem; background: rgba(31,26,18,0.06); padding: 0.1rem 0.35rem; border-radius: 3px; }

/* Feedback-Box (vom Handler injected) */
.zzr-feedback { padding: 0.85rem 1rem; border-radius: 6px; font-family: 'EB Garamond', serif; font-style: italic; margin-top: 0.5rem; }
.zzr-feedback--ok { background: rgba(126, 186, 130, 0.18); color: #2d5e30; border: 1px solid rgba(126,186,130,0.5); }
.zzr-feedback--err { background: rgba(200, 37, 44, 0.12); color: #8b1f24; border: 1px solid rgba(200,37,44,0.4); }

/* ════════════════════════════════════════════════════════════════
   18. IMAGE-SHAPE-VARIATIONEN (v2.4.19) — universell
   ────────────────────────────────────────────────────────────────
   Block-Style-Variationen für core/image. Im Block-Editor: Bild
   wählen → Sidebar „Stile" → Form-Variation klicken.
   Variationen: Circle · Rounded · Blob · Hex
   ════════════════════════════════════════════════════════════════ */

/* Container vorbereiten — Aspect-Ratio damit Mask sauber clipped */
.is-style-mup-shape-circle img,
.is-style-mup-shape-rounded img,
.is-style-mup-shape-blob img,
.is-style-mup-shape-hex img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.is-style-mup-shape-circle,
.is-style-mup-shape-blob,
.is-style-mup-shape-hex {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.is-style-mup-shape-circle {
  border-radius: 50%;
}
.is-style-mup-shape-rounded img {
  border-radius: 24px;
}
.is-style-mup-shape-blob {
  /* Sanftes Blob — variabler Border-Radius */
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  animation: mup-blob-morph 20s ease-in-out infinite;
}
@keyframes mup-blob-morph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
  25%      { border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; }
  50%      { border-radius: 50% 50% 60% 40% / 60% 50% 50% 40%; }
  75%      { border-radius: 55% 45% 50% 50% / 40% 60% 40% 60%; }
}
.is-style-mup-shape-hex {
  /* Hexagon via clip-path */
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border-radius: 0;
}

/* Editor: aspect-ratio darf User selbst überschreiben (Resize-Handle) */
.editor-styles-wrapper .is-style-mup-shape-circle,
.editor-styles-wrapper .is-style-mup-shape-blob,
.editor-styles-wrapper .is-style-mup-shape-hex {
  aspect-ratio: 1 / 1;
}

/* ════════════════════════════════════════════════════════════════
   16. EDITOR-OVERRIDES (v2.4.16)
   ────────────────────────────────────────────────────────────────
   Im Frontend sind Bild-Captions absolut positioniert / hover-fade.
   Im Editor MÜSSEN sie aber sichtbar und direkt anklickbar sein,
   damit User reinklicken und tippen können.
   .editor-styles-wrapper ist die Gutenberg-Iframe-Body-Klasse.
   ════════════════════════════════════════════════════════════════ */

.editor-styles-wrapper .gk-gallery figcaption,
.editor-styles-wrapper figure.gk-actor-thumb figcaption,
.editor-styles-wrapper .gk-cinema-portfolio-grid figcaption,
.editor-styles-wrapper .gk-warm-bts-stack figcaption,
.editor-styles-wrapper .gk-hero-split__media figcaption,
.editor-styles-wrapper .gk-intro__image figcaption {
  position: static !important;
  opacity: 1 !important;
  background: none !important;
  color: var(--gk-ink, #1f1a12) !important;
  padding: 0.4rem 0.5rem 0 !important;
  font-family: 'EB Garamond', serif !important;
  font-style: italic !important;
  font-size: 0.9rem !important;
  text-align: center !important;
  pointer-events: auto !important;
}

/* Editor-Hint: gestrichelter Rahmen um leere Captions, damit User sie sehen */
.editor-styles-wrapper figure.wp-block-image figcaption:empty::before {
  content: 'Hier reinklicken und Beschriftung tippen';
  color: rgba(31,26,18,0.4);
  font-style: italic;
  font-size: 0.8rem;
}

/* ════════════════════════════════════════════════════════════════
   SPIELEREI-HELPER — universell auf jeden Block anwendbar
   Im Editor: Block wählen → Sidebar → Erweitert → "Zusätzliche CSS-Klasse"
   Verfügbare Klassen:
   · spielerei-sparkle      — Diamantpainting-Schimmer (Theme-Farben)
   · spielerei-focus        — Linsen-Fokus-Pull beim Laden (Bilder)
   · spielerei-shimmer      — Glanz-Streifen wandert einmalig durch
   · spielerei-glow         — sanftes pulsierendes Aura
   · spielerei-fade-up      — Fade-In von unten beim Scrollen
   ════════════════════════════════════════════════════════════════ */

/* Reduzierte Bewegung: Animationen pausieren wenn der Nutzer reduce-motion will */
/* ════════════════════════════════════════════════════════════════
   19. WOW-HERO (v2.4.21) — Cinematic Bottom-Type
   ────────────────────────────────────────────────────────────────
   Designprinzip: das Bild ist die Hauptperson, der Text ordnet sich
   am unteren Bildrand ein. Funktioniert identisch von 4K-Desktop bis
   320px-Smartphone — kein verdecktes Gesicht, kein Layout-Bruch.
   ────────────────────────────────────────────────────────────────
   Animationen:
   · Bild: Ken-Burns Slow-Zoom (12s, einmalig)
   · Type: Fade-Up mit Stagger (Eyebrow → H1 → Lead → Scroll)
   · Brand-Dot: sanfter Gold-Pulse alle 4s
   Alle Animationen aus, wenn prefers-reduced-motion: reduce.
   ════════════════════════════════════════════════════════════════ */

.gk-hero-wow,
.wp-block-cover.gk-hero-wow {
  position: relative;
  min-height: 100svh !important;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  padding: 0 !important;
  background: #0e0b08;
}

.gk-hero-wow > .wp-block-cover__background { z-index: 1; }

/* ─── Bild: füllt komplett, Ken-Burns-Effekt ─── */
.gk-hero-wow .wp-block-cover__image-background,
.wp-block-cover.gk-hero-wow img.wp-block-cover__image-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  z-index: 0;
  will-change: transform, filter;
  animation: gk-wow-burns 14s ease-out forwards, gk-wow-focus-pull 2.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes gk-wow-focus-pull {
  0%   { filter: blur(20px) brightness(1.15) saturate(0.8); }
  100% { filter: blur(0) brightness(1) saturate(1); }
}
@keyframes gk-wow-burns {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1.00); }
}

/* ─── Gradient unten für Lesbarkeit ─── */
.gk-hero-wow::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 88%, rgba(0,0,0,0.85) 100%),
    radial-gradient(ellipse at bottom left, rgba(0,0,0,0.45), transparent 55%);
  pointer-events: none;
  z-index: 2;
}

/* ─── Inner Container ─── */
.gk-hero-wow .wp-block-cover__inner-container,
html body .wp-block-cover.gk-hero-wow > .wp-block-cover__inner-container {
  position: relative !important;
  z-index: 3;
  display: grid !important;
  grid-template-rows: auto 1fr auto auto !important;
  grid-template-areas: "brand" "spacer" "text" "scroll" !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100svh !important;
  padding: clamp(1.5rem, 3.5vw, 3rem) clamp(1.25rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem) !important;
  margin: 0 !important;
  max-width: none !important;
  box-sizing: border-box !important;
  align-items: stretch !important;
  justify-items: start !important;
}

/* ─── Brand-Mark oben links (klein) ─── */
.gk-hero-wow__brand,
.gk-hero-wow .gk-hero-wow__brand {
  grid-area: brand;
  margin: 0 !important;
  color: rgba(248, 242, 230, 0.92);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  opacity: 0;
  animation: gk-wow-fadein 1.2s ease-out 0.2s forwards;
}
.gk-hero-wow__brand-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  letter-spacing: -0.3px;
  line-height: 1;
  color: rgba(248, 242, 230, 0.95);
}
.gk-hero-wow__brand-dot {
  display: inline-block;
  color: #c9a84c;
  animation: gk-wow-dot 4s ease-in-out 2s infinite;
}
.gk-hero-wow__brand-sub {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.5rem, 0.62vw, 0.62rem);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(248,242,230,0.7);
  font-weight: 500;
  margin-top: 0.45rem;
}

@keyframes gk-wow-dot {
  0%, 70%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(201,168,76,0)); }
  85%           { transform: scale(1.5); filter: drop-shadow(0 0 8px rgba(201,168,76,0.85)); }
}

/* ─── Text-Block unten links ─── */
.gk-hero-wow__text,
.wp-block-group.gk-hero-wow__text {
  grid-area: text;
  margin: 0 !important;
  width: 100% !important;
  max-width: 900px !important;
  text-align: left !important;
}
.gk-hero-wow__eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.6rem, 0.82vw, 0.78rem);
  letter-spacing: clamp(2.5px, 0.35vw, 4.5px);
  text-transform: uppercase;
  color: #c9a84c;
  font-weight: 600;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.5rem) !important;
  position: relative;
  padding-left: clamp(2rem, 3vw, 3.25rem);
  opacity: 0;
  animation: gk-wow-fadeup 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
.gk-hero-wow__eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: clamp(1.5rem, 2.5vw, 2.5rem);
  height: 1px;
  background: #c9a84c;
  transform-origin: left;
  animation: gk-wow-line 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
  transform: scaleX(0);
}

.gk-hero-wow__title,
h1.gk-hero-wow__title,
.gk-hero-wow .gk-hero-wow__title {
  font-family: 'EB Garamond', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 500 !important;
  font-size: clamp(2rem, 7.5vw, 6.5rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -1px !important;
  color: #fffaf0 !important;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.5rem) !important;
  max-width: 16ch !important;
  text-shadow: 0 4px 30px rgba(0,0,0,0.45);
  opacity: 0;
  animation: gk-wow-fadeup 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.gk-hero-wow__lead {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.35vw, 1.3rem);
  color: rgba(248,242,230,0.9);
  margin: 0 !important;
  max-width: 38ch;
  line-height: 1.5;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  opacity: 0;
  animation: gk-wow-fadeup 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

/* ─── Scroll-Indicator rechts unten ─── */
.gk-hero-wow__scroll,
.gk-hero-wow .gk-hero-wow__scroll {
  grid-area: scroll;
  justify-self: end;
  align-self: end;
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(248,242,230,0.55);
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: relative;
  opacity: 0;
  animation: gk-wow-fadein 1.2s ease-out 1.4s forwards;
}
.gk-hero-wow__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, rgba(248,242,230,0.55) 0%, transparent 100%);
  margin: 0.6rem auto 0;
  animation: gk-wow-scroll-line 2.2s ease-in-out 2s infinite;
}

@keyframes gk-wow-scroll-line {
  0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%      { transform: scaleY(1); opacity: 1; }
  51%      { transform-origin: bottom; }
  100%     { transform: scaleY(0); }
}

/* ─── Keyframes ─── */
@keyframes gk-wow-fadeup {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes gk-wow-fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes gk-wow-line {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* ─── Mobile: gleiche Komposition, Type skaliert dezent ─── */
@media (max-width: 900px) {
  .gk-hero-wow,
  .wp-block-cover.gk-hero-wow {
    min-height: 100svh !important;
  }
  .gk-hero-wow .wp-block-cover__image-background {
    object-position: center 25% !important;
  }
  .gk-hero-wow__title,
  h1.gk-hero-wow__title {
    font-size: clamp(2rem, 9vw, 3.6rem) !important;
    max-width: 14ch !important;
  }
  .gk-hero-wow__lead {
    max-width: 30ch;
  }
  .gk-hero-wow__scroll { font-size: 0.55rem; letter-spacing: 4px; }
  .gk-hero-wow__scroll::after { height: 2rem; }
}

@media (max-width: 600px) {
  .gk-hero-wow::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 18%, rgba(0,0,0,0) 42%, rgba(0,0,0,0.6) 78%, rgba(0,0,0,0.92) 100%);
  }
  .gk-hero-wow__scroll { display: none !important; }
  .gk-hero-wow .wp-block-cover__inner-container {
    grid-template-areas: "brand" "spacer" "text" !important;
    grid-template-rows: auto 1fr auto !important;
  }
}

@media (max-width: 380px) {
  .gk-hero-wow__title,
  h1.gk-hero-wow__title {
    font-size: clamp(1.7rem, 8vw, 2.4rem) !important;
  }
  .gk-hero-wow__eyebrow {
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    padding-left: 2rem;
  }
}

/* ─── Reduce Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .gk-hero-wow .wp-block-cover__image-background,
  .gk-hero-wow__brand,
  .gk-hero-wow__eyebrow,
  .gk-hero-wow__title,
  .gk-hero-wow__lead,
  .gk-hero-wow__scroll,
  .gk-hero-wow__brand-dot {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .gk-hero-wow__eyebrow::before {
    transform: scaleX(1) !important;
  }
  .gk-hero-wow__scroll::after {
    transform: scaleY(1) !important;
    opacity: 1 !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   20. WOW-TRANSFORM für bestehende gk-hero (v2.4.23)
   ────────────────────────────────────────────────────────────────
   Greift auf existierende Hero-Patterns, die schon im Frontend sind.
   Kein Pattern-Rebuild nötig — pure CSS. Card wird durchsichtig, Type
   sitzt am unteren Bildrand wie in WOW, Bild bekommt Ken-Burns +
   Focus-Pull. Funktioniert auf jeder Seite, die .gk-hero verwendet.
   ════════════════════════════════════════════════════════════════ */

/* Bild bekommt Ken-Burns + Focus-Pull beim Laden — bei bestehenden Seiten */
.gk-hero .wp-block-cover__image-background,
.wp-block-cover.gk-hero img.wp-block-cover__image-background {
  animation: gk-hero-burns 16s ease-out forwards, gk-hero-focuspull 3s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
  will-change: transform, filter;
}
@keyframes gk-hero-burns {
  0%   { transform: scale(1.06); }
  100% { transform: scale(1.00); }
}
@keyframes gk-hero-focuspull {
  0%   { filter: blur(18px) brightness(1.12) saturate(0.85); }
  100% { filter: blur(0) brightness(1) saturate(1); }
}

/* Gradient nach unten — Lesbarkeit ohne Card-Schutz */
.gk-hero::after,
.wp-block-cover.gk-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.45) 88%, rgba(0,0,0,0.72) 100%),
    radial-gradient(ellipse at bottom left, rgba(0,0,0,0.4), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.gk-hero > .wp-block-cover__inner-container,
.wp-block-cover.gk-hero > .wp-block-cover__inner-container {
  position: relative !important;
  z-index: 2 !important;
}

/* ─── Tablet + Mobile: Card-Transparenz, Type-Repositionierung ─── */
@media (max-width: 900px) {
  /* Card wird zur unsichtbaren Hülle, Inhalt am unteren Bildrand */
  html body .gk-hero__card,
  html body .wp-block-group.gk-hero__card {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    animation: none !important;
    text-align: left !important;
  }

  /* Inner-Container am unteren Rand verankern */
  html body .wp-block-cover.gk-hero > .wp-block-cover__inner-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    padding: 1.5rem clamp(1.25rem, 5vw, 2rem) clamp(1.5rem, 4vw, 2.5rem) !important;
    margin-top: 0 !important;
    min-height: 100svh !important;
  }
  html body .gk-hero,
  html body .wp-block-cover.gk-hero {
    min-height: 100svh !important;
    height: auto !important;
    align-items: flex-end !important;
  }
  html body .gk-hero .wp-block-cover__image-background {
    object-position: center 25% !important;
  }

  /* Brand-Mark: klein oben, weiß */
  html body .gk-hero__card .gk-brand-mark {
    position: absolute !important;
    top: 1.25rem !important;
    left: clamp(1.25rem, 5vw, 2rem) !important;
    margin: 0 !important;
    text-align: left !important;
    width: auto !important;
  }
  html body .gk-hero__card .gk-brand-name {
    color: rgba(248,242,230,0.95) !important;
    font-size: 1rem !important;
    line-height: 1 !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }
  html body .gk-hero__card .gk-brand-sub {
    color: rgba(248,242,230,0.75) !important;
    font-size: 0.5rem !important;
    letter-spacing: 2.5px !important;
    margin-top: 0.3rem !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  }

  /* Eyebrow: Gold mit Linie */
  html body .gk-hero__card .gk-eyebrow {
    color: #c9a84c !important;
    font-size: 0.6rem !important;
    letter-spacing: 2.5px !important;
    margin: 0 0 0.65rem !important;
    padding-left: 2rem !important;
    position: relative !important;
    text-align: left !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  html body .gk-hero__card .gk-eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 1.5rem; height: 1px;
    background: #c9a84c;
    transform: translateY(-50%);
  }

  /* Headline: dramatisch, italic, weiß */
  html body .gk-hero__card .gk-hero__title,
  html body .gk-hero__card h1 {
    color: #fffaf0 !important;
    font-family: 'EB Garamond', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
    font-size: clamp(1.85rem, 8.5vw, 3.4rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.5px !important;
    margin: 0 0 0.6rem !important;
    max-width: 14ch !important;
    text-align: left !important;
    text-shadow: 0 3px 20px rgba(0,0,0,0.5);
  }

  /* Tagline: zart weiß-italic */
  html body .gk-hero__card .gk-hero__tagline,
  html body .gk-hero__card p:not(.gk-brand-mark):not(.gk-eyebrow) {
    color: rgba(248,242,230,0.92) !important;
    font-family: 'EB Garamond', Georgia, serif !important;
    font-style: italic !important;
    font-size: clamp(0.88rem, 3.4vw, 1.05rem) !important;
    line-height: 1.5 !important;
    max-width: 32ch !important;
    margin: 0 !important;
    text-align: left !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }
}

/* ─── Tablet: zwischen Mobile und Desktop ─── */
@media (min-width: 769px) and (max-width: 1024px) {
  html body .gk-hero__card .gk-hero__title,
  html body .gk-hero__card h1 {
    font-size: clamp(2.4rem, 6vw, 4rem) !important;
    max-width: 16ch !important;
  }
  html body .gk-hero__card .gk-hero__tagline {
    font-size: 1.05rem !important;
  }
}

/* ─── Desktop ≥ 900 px: Card weiterhin sichtbar aber dezenter ─── */
@media (min-width: 901px) {
  html body .gk-hero__card,
  html body .wp-block-group.gk-hero__card {
    background: rgba(248, 242, 230, 0.74) !important;
    backdrop-filter: blur(22px) saturate(170%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(170%) !important;
    border-color: rgba(255,255,255,0.65) !important;
    max-width: 540px !important;
  }
  /* Card etwas nach unten-rechts statt streng mittig */
  html body .wp-block-cover.gk-hero > .wp-block-cover__inner-container {
    padding-bottom: 6vh !important;
  }
}

/* ─── Reduce Motion sweep ─── */
@media (prefers-reduced-motion: reduce) {
  .gk-hero .wp-block-cover__image-background,
  .wp-block-cover.gk-hero img.wp-block-cover__image-background {
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
}
