/* =================================================================
   The Hidden Gallery – Tattoo Shop Design-System
   Dunkles Oliv/Militärgrün, Gold-/Khaki-Akzente, cremefarbene Schrift.
   ================================================================= */

/* ---------- Design-Tokens ---------- */
:root {
    --bg:          #182010;
    --bg-2:        #202a14;
    --panel:       #24301a;
    --panel-2:     #2c3a20;
    --panel-3:     #354628;

    --gold:        #c9b56a;
    --gold-bright: #ddca85;
    --gold-deep:   #9c8636;
    --olive:       #4a5a2b;
    --olive-light: #6b7d3d;

    --cream:       #e9e5d6;
    --cream-soft:  #cfcab6;
    --muted:       #948f7a;
    --white:       #ffffff;

    --line:        rgba(201, 181, 106, 0.24);
    --line-soft:   rgba(233, 229, 214, 0.10);

    --radius-lg:  20px;
    --radius-md:  14px;
    --radius-sm:  10px;
    --radius-pill: 999px;

    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 26px 60px rgba(0, 0, 0, 0.55);

    --container: 1200px;
    --font-head:   'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-script: 'Great Vibes', 'Segoe Script', cursive;
    --font-body:   'Montserrat', 'Segoe UI', system-ui, sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; background-color: var(--bg); overflow-x: hidden; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--cream-soft);
    font-size: 16px;
    line-height: 1.75;
    background-color: var(--bg);
    background-image:
        linear-gradient(180deg, rgba(18,20,13,0.55) 0%, rgba(18,20,13,0.70) 50%, rgba(18,20,13,0.82) 100%),
        url('../img/brand/background.jpg');
    background-size: cover, cover;
    background-position: center top, center top;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}
/* Mobile: iOS rendert fixierte Hintergründe unsauber -> mitscrollen lassen. */
@media (max-width: 820px) {
    body { background-attachment: scroll, scroll; }
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--cream);
    line-height: 1.14;
    margin: 0 0 .5em;
    font-weight: 700;
    letter-spacing: .01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: var(--gold); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-bright); }

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

::selection { background: var(--gold); color: var(--bg); }

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section { position: relative; padding: clamp(56px, 8vw, 100px) 0; }
.section--tight { padding: clamp(40px, 6vw, 66px) 0; }
.section > .container { position: relative; z-index: 1; }

.eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .28em;
    font-size: .74rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: .8rem;
}

.lead { font-size: 1.12rem; color: var(--cream-soft); }
.text-center { text-align: center; }
.section__head { max-width: 680px; margin: 0 auto 48px; }
.section__head.text-center { text-align: center; }

/* Ornamentaler Sektions-Titel (Shop / Unsere Produkte) */
.ornament-head { text-align: center; margin-bottom: 46px; }
.ornament-head .eyebrow { margin-bottom: .3rem; }
.ornament-head h2 { text-transform: uppercase; letter-spacing: .06em; margin: 0; }
.ornament-head .ornament {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    margin-top: 14px; color: var(--gold); opacity: .8;
}
.ornament-head .ornament::before,
.ornament-head .ornament::after {
    content: ""; height: 1px; width: min(120px, 22vw);
    background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament-head .ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament-head .ornament svg { width: 22px; height: 22px; flex: none; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .7em;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    padding: 15px 30px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
    text-decoration: none;
    line-height: 1;
}
.btn:hover { background: var(--gold); color: var(--bg); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201, 181, 106, 0.22); }
.btn svg { width: 1.05em; height: 1.05em; }

.btn--primary { background: transparent; color: var(--gold); }
.btn--primary:hover { background: var(--gold); color: var(--bg); }

.btn--purple { border-color: var(--olive-light); color: var(--cream); }
.btn--purple:hover { background: var(--olive); color: var(--cream); border-color: var(--olive); }

.btn--ghost { border-color: var(--line); color: var(--cream-soft); }
.btn--ghost:hover { background: var(--panel-2); color: var(--cream); border-color: var(--gold); }

.btn--solid { background: var(--gold); color: var(--bg); }
.btn--solid:hover { background: var(--gold-bright); color: var(--bg); }

/* ---------- Dekorative Blasen (dezent, dunkel) ---------- */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: .35;
    animation: float 11s ease-in-out infinite;
}
.bubble--pink, .bubble--yellow, .bubble--green, .bubble--blue, .bubble--lilac {
    background: radial-gradient(circle at 35% 35%, rgba(107,125,61,.6), rgba(74,90,43,.15));
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50%      { transform: translateY(-22px) translateX(10px); }
}

/* ---------- Header / Navigation ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
}
.site-header .container { padding: 0 24px; }
.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 10px 14px 10px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(13, 15, 10, 0.72);
    backdrop-filter: blur(12px);
    transition: background .3s var(--ease);
}
.site-header.is-scrolled .nav { background: rgba(13, 15, 10, 0.92); box-shadow: var(--shadow-sm); }

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--cream);
}
.brand:hover { color: var(--cream); }
.brand img { height: 44px; width: auto; display: block; }
.brand--logo img {
    height: 56px; width: auto; max-width: 60vw; object-fit: contain;
}
.brand--logo-sm img { height: 46px; max-width: 200px; }

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}
.nav__item { position: relative; }
.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--cream-soft);
    background: none;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    position: relative;
}
.nav__link::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
    height: 1px; background: var(--gold); transform: scaleX(0);
    transform-origin: left; transition: transform .25s var(--ease);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after,
.nav__item.is-active > .nav__link::after { transform: scaleX(1); }
.nav__item.is-active > .nav__link { color: var(--gold); }

.caret { width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -3px; }

.nav__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 8px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
    z-index: 20;
}
.nav__item--has-children:hover .nav__dropdown,
.nav__item--has-children:focus-within .nav__dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown a {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    color: var(--cream-soft);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.nav__dropdown a:hover { background: var(--panel-2); color: var(--gold); }

/* Sprachumschalter + Social im Header */
.nav__end { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; align-items: center; gap: 2px; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 3px; }
.lang-switch a {
    font-family: var(--font-body); font-size: .7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--cream-soft); padding: 5px 8px; border-radius: 6px;
}
.lang-switch a:hover { color: var(--gold); }
.lang-switch a.is-active { background: var(--gold); color: var(--bg); }

.nav__social { display: flex; align-items: center; gap: 8px; }
.nav__social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid var(--line); color: var(--cream-soft);
}
.nav__social a:hover { border-color: var(--gold); color: var(--gold); }
.nav__social svg { width: 16px; height: 16px; }

.nav__cta { margin-left: 4px; }

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--cream); transition: transform .25s var(--ease), opacity .2s; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: clamp(40px, 6vw, 80px) 0 clamp(30px, 5vw, 60px); }
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: clamp(30px, 5vw, 70px);
}
.hero__media { position: relative; }
.hero__media img { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.55)); }
.hero__stamp {
    position: absolute; top: 6%; left: -2%;
    width: clamp(90px, 12vw, 150px); height: clamp(90px, 12vw, 150px);
    border: 1px solid var(--line); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; text-align: center;
    font-family: var(--font-body); text-transform: uppercase; letter-spacing: .16em;
    font-size: .66rem; font-weight: 600; color: var(--gold);
    background: rgba(13,15,10,.35); backdrop-filter: blur(2px);
}
.hero__title {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: .005em;
    margin: 0 0 .18em;
    font-size: clamp(2.7rem, 6.4vw, 5.2rem);
    color: var(--gold);
    background: linear-gradient(176deg, #efe0a6 0%, #d9c479 34%, #c9b56a 55%, #9c8636 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 0 rgba(0,0,0,.15);
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .hero__title { color: var(--gold); }
}
.hero__script {
    font-family: var(--font-script);
    color: var(--cream);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    margin: 0 0 1.2rem;
}
.hero__subtitle { color: var(--cream-soft); max-width: 46ch; margin-bottom: 1.8rem; }
.hero__badge { margin-bottom: 1rem; }

/* ---------- Feature-Leiste ---------- */
.feature-bar {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(60, 72, 38, 0.28), rgba(20, 26, 12, 0.30));
    box-shadow: inset 0 1px 0 rgba(233,229,214,.06), var(--shadow-sm);
    padding: clamp(26px, 3vw, 38px) clamp(10px, 2vw, 26px);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.feature-bar .feature {
    flex-direction: column; text-align: center; gap: 14px; align-items: center;
    padding: 4px clamp(8px, 1.6vw, 22px);
    position: relative;
}
.feature-bar .feature + .feature::before {
    content: ""; position: absolute; left: 0; top: 6px; bottom: 6px;
    width: 1px; background: linear-gradient(180deg, transparent, var(--line), transparent);
}
.feature-bar .feature__icon {
    margin: 0 auto; width: 58px; height: 58px;
    background: radial-gradient(circle at 50% 38%, rgba(201,181,106,.16), rgba(201,181,106,.03));
    border-color: rgba(201,181,106,.34);
    box-shadow: inset 0 0 0 1px rgba(233,229,214,.04);
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-bar .feature:hover .feature__icon {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 8px 22px rgba(201,181,106,.18), inset 0 0 0 1px rgba(233,229,214,.06);
}
.feature-bar .feature__title {
    font-family: var(--font-body); text-transform: uppercase; letter-spacing: .13em;
    font-size: .73rem; font-weight: 600; color: var(--cream); margin: 0; line-height: 1.4;
}

/* ---------- Icons (Farbklassen auf Gold gemappt) ---------- */
.feature__icon, .mini-feature__icon, .icard__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; border-radius: 50%;
    border: 1px solid var(--line); color: var(--gold);
}
.feature__icon svg, .mini-feature__icon svg, .icard__icon svg { width: 24px; height: 24px; }
.ic-pink, .ic-green, .ic-purple, .ic-yellow, .ic-blue { color: var(--gold); }
.bg-pink, .bg-green, .bg-mint, .bg-lilac, .bg-yellow, .bg-blue { background: rgba(74, 90, 43, 0.18); }

/* ---------- Produkte / Shop ---------- */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.products--shop { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.products--shop .product-card__media { display: block; }
/* Produkte per Shortcode im Seiteninhalt (Karten in fester Breite) */
.products--shortcode { grid-template-columns: repeat(auto-fill, minmax(230px, 290px)); justify-content: start; gap: 22px; margin: 1.6em 0; }
.rich-note { color: var(--muted); font-style: italic; border: 1px dashed var(--line); border-radius: var(--radius-sm); padding: 14px 16px; }
.product-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(44,58,32,.42), rgba(20,26,12,.5));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.product-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0); transition: transform .35s var(--ease); z-index: 2;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(201,181,106,.5); box-shadow: 0 22px 46px rgba(0,0,0,.5), 0 0 0 1px rgba(201,181,106,.12); }
.product-card:hover::before { transform: scaleX(1); }
.product-card__media { aspect-ratio: 16 / 10; background: var(--panel); overflow: hidden; position: relative; }
.product-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20,26,12,.55)); pointer-events: none; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-card__title { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; font-size: .84rem; color: var(--cream); margin: 0; }
.product-card__sub { font-size: .82rem; color: var(--muted); margin: 0; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.product-card__price { font-family: var(--font-head); font-size: 1.35rem; color: var(--gold); font-variant-numeric: tabular-nums; }
.product-card__cart {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border: 1px solid var(--gold); border-radius: var(--radius-sm);
    color: var(--gold);
}
.product-card__cart:hover { background: var(--gold); color: var(--bg); }
.product-card__cart svg { width: 19px; height: 19px; }
.products-foot { text-align: center; margin-top: 40px; }

/* ---------- Über-mich-Band ---------- */
.about-band {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(25, 28, 18, 0.5);
}
.about-band__media { min-height: 260px; background-size: cover; background-position: center; }
.about-band__body { padding: clamp(28px, 4vw, 48px); }
.about-band__body h2 { text-transform: uppercase; letter-spacing: .04em; }

/* ---------- Inhalts-Komponenten (Unterseiten) ---------- */
.page-hero { position: relative; padding: clamp(60px, 9vw, 120px) 0 clamp(24px, 4vw, 50px); text-align: center; }
.page-hero h1 { margin-bottom: .3em; }
.rich { color: var(--cream-soft); }
.rich::after { content: ""; display: block; clear: both; } /* Floats einschließen */
.rich h2 { margin-top: 1.6em; }
.rich > *:first-child { margin-top: 0; }
/* Überschriften dürfen Floats umfließen (z. B. Porträt auf „About me“) –
   deshalb bewusst KEIN clear. Wer einen Abschnitt unter dem Umfluss beginnen
   will, setzt im Editor eine Trennlinie oder <p class="clear"></p>. */
.rich .clear, .clear { clear: both; }
.rich a { text-decoration: underline; text-underline-offset: 3px; }
.rich img { border-radius: var(--radius-md); margin: 1.4em 0; }

/* ---------- Ausrichtung & Textumfluss (Editor + Shortcodes) ---------- */
.rich [style*="text-align: center"], .rich .align-center, .align-center { text-align: center; }
.rich [style*="text-align: right"], .rich .align-right, .align-right { text-align: right; }
.rich [style*="text-align: left"], .rich .align-left, .align-left { text-align: left; }

.float-left  { float: left;  margin: .3em 1.8em 1.1em 0; max-width: 48%; }
.float-right { float: right; margin: .3em 0 1.1em 1.8em; max-width: 48%; }
.rich img.float-left, .rich img.float-right { margin-top: .4em; }

/* Video-Einbettung (YouTube/Vimeo, responsiv 16:9) */
.video-embed { position: relative; aspect-ratio: 16 / 9; margin: 1.6em 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); background: #000; box-shadow: var(--shadow-md); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Produkte per Shortcode im Text umfließen lassen */
.products--shortcode.is-float-left,
.products--shortcode.is-float-right {
    display: block;                       /* kein Grid – Karten stapeln im Float */
    width: min(300px, 42%);
    max-width: 100%;
}
.products--shortcode.is-float-left  { float: left;  margin: .2em 2em 1.4em 0; }
.products--shortcode.is-float-right { float: right; margin: .2em 0 1.4em 2em; }
/* Mehrere Karten in einem Float sauber untereinander */
.products--shortcode.is-float-left  > .product-card + .product-card,
.products--shortcode.is-float-right > .product-card + .product-card { margin-top: 22px; }
.products--shortcode.is-center { justify-content: center; }

/* Umflossener Text: keine überlangen Löcher, saubere Trennung */
.rich p, .rich li { overflow-wrap: break-word; }

@media (max-width: 780px) {
    .float-left, .float-right,
    .products--shortcode.is-float-left, .products--shortcode.is-float-right {
        float: none; width: 100%; max-width: 100%; margin: 1.4em 0;
    }
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split__media .round, .round { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.round img { width: 100%; height: 100%; object-fit: cover; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card {
    border: 1px solid var(--line); border-radius: var(--radius-md);
    background: var(--panel); overflow: hidden; display: block; color: inherit;
    transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); color: inherit; }
.card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--panel-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 20px 22px; }
.card__badge { display: inline-block; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; margin-bottom: 10px; }
.card__title { font-size: 1.15rem; margin: 0 0 .4rem; }
.card__text { color: var(--cream-soft); font-size: .92rem; }
.card__meta { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; color: var(--muted); font-size: .8rem; }
.card__more { color: var(--gold); }

.feature { display: flex; align-items: center; gap: 14px; }
.feature__text { color: var(--muted); font-size: .84rem; margin: 0; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 22px; }

.mini-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; margin: 26px 0; }
.mini-feature h4 { margin: 12px 0 4px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; color: var(--cream); }
.mini-feature p { font-size: .84rem; color: var(--muted); }

.icard { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--panel); padding: 26px; }
.icard__title { font-size: 1.1rem; margin: 14px 0 .4rem; }
.icard__text { color: var(--cream-soft); font-size: .9rem; }

/* Collage (Fallback, falls noch verwendet) */
.collage { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.collage__circle { border-radius: 50%; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 1; }
.collage__circle img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Formulare ---------- */
.form { display: grid; gap: 18px; max-width: 620px; }
.form label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cream-soft); margin-bottom: 6px; }
.form input[type="text"], .form input[type="email"], .form textarea {
    width: 100%; padding: 13px 15px;
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm);
    color: var(--cream); font-family: var(--font-body); font-size: .95rem;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold); }
.form textarea { min-height: 150px; resize: vertical; }
.form input[type="file"] { width: 100%; padding: 12px 14px; background: var(--panel); border: 1px dashed var(--line); border-radius: var(--radius-sm); color: var(--cream-soft); font-family: var(--font-body); font-size: .9rem; cursor: pointer; }
.form input[type="file"]::file-selector-button { margin-right: 12px; padding: 8px 14px; border: 1px solid var(--gold); border-radius: var(--radius-sm); background: transparent; color: var(--gold); font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; cursor: pointer; }
.form input[type="file"]::file-selector-button:hover { background: var(--gold); color: var(--bg); }
.form input[type="tel"], .form input[type="number"], .form input[type="date"], .form select {
    width: 100%; padding: 13px 15px;
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm);
    color: var(--cream); font-family: var(--font-body); font-size: .95rem;
}
.form select:focus { outline: none; border-color: var(--gold); }
.form select option { background: #1b2213; color: var(--cream); }
.form__privacy { display: flex; gap: 10px; align-items: flex-start; text-transform: none; letter-spacing: 0; font-size: .86rem; }
.form__privacy input { margin-top: 4px; }

/* ---------- Selbst gebaute Formulare (Formularbuilder) ---------- */
.form--builder { max-width: 760px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__field.is-wide { grid-column: 1 / -1; }
.form__field.has-error input, .form__field.has-error textarea, .form__field.has-error select { border-color: #d9704f; }
.form__section {
    grid-column: 1 / -1; margin: .6em 0 -4px;
    font-size: 1.1rem; color: var(--gold);
    border-bottom: 1px solid var(--line-soft); padding-bottom: 8px;
}
.form__intro { color: var(--cream-soft); }
.form__opt { text-transform: none; letter-spacing: 0; color: var(--muted); font-size: .78rem; }
.form__help { display: block; margin-top: 6px; color: var(--muted); font-size: .78rem; }
.form__err  { display: block; margin-top: 6px; color: #e08a6b; font-size: .8rem; }
.form__error {
    color: #e08a6b; border: 1px solid rgba(217, 112, 79, .45);
    background: rgba(217, 112, 79, .08);
    border-radius: var(--radius-sm); padding: 12px 16px; margin: 0;
}
.form__choices { display: grid; gap: 8px; }
.form__check {
    display: flex; gap: 10px; align-items: flex-start;
    text-transform: none; letter-spacing: 0; font-size: .9rem; margin-bottom: 0;
}
.form__check input { margin-top: 3px; flex: 0 0 auto; accent-color: var(--gold); }
.form__check span { color: var(--cream-soft); }
.form__privacy.has-error span { color: #e08a6b; }

/* Dankeschön-Karte nach dem Absenden */
.form-done {
    max-width: 560px; text-align: center;
    border: 1px solid var(--line); border-radius: var(--radius-md);
    background: rgba(25, 28, 18, .55); padding: 34px 30px;
}
.form-done__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; border-radius: 50%;
    border: 1px solid var(--line); color: var(--gold);
    background: rgba(74, 90, 43, .18); margin-bottom: 16px;
}
.form-done__icon svg { width: 24px; height: 24px; }
.form-done h3 { margin: 0 0 .4em; }
.form-done p { margin: 0; color: var(--cream-soft); }

@media (max-width: 620px) {
    .form__grid { grid-template-columns: 1fr; }
}

/* ---------- CTA-Box (Kontakt-Aufruf) ---------- */
.cta-box {
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    background: rgba(25, 28, 18, 0.5);
    padding: clamp(30px, 5vw, 56px);
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.cta-box__media img { border-radius: var(--radius-md); }
.cta-list { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 12px; }
.cta-list li { padding-left: 34px; position: relative; }
.cta-list .ci { position: absolute; left: 0; top: 1px; display: inline-flex; color: var(--gold); }
.cta-list .ci svg { width: 20px; height: 20px; }

/* ---------- Footer ---------- */
.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(9, 10, 7, 0.6);
    padding: 44px 0 30px;
    margin-top: 40px;
}
.footer__grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin: 0; padding: 0; }
.footer__nav a { color: var(--cream-soft); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.footer__nav a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); color: var(--cream-soft);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__social svg { width: 17px; height: 17px; }
.footer__bottom {
    display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
    margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line-soft);
    color: var(--muted); font-size: .78rem;
}
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--gold); }

/* ---------- Cookie ---------- */
.cookie {
    position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
    max-width: 680px; width: calc(100% - 32px);
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md);
    padding: 18px 22px; box-shadow: var(--shadow-lg); z-index: 200;
    align-items: center; gap: 18px; flex-wrap: wrap;
    font-size: .84rem;
    display: none;
}
.cookie.is-visible { display: flex; }
.cookie p { margin: 0; flex: 1; min-width: 220px; }
.cookie__actions { display: flex; gap: 10px; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .bubble { animation: none; }
}

/* ---------- Verfügbarkeits-Badge ---------- */
.badge { display: inline-flex; align-items: center; gap: 8px; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line); color: var(--cream); }
.badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--olive-light); }
.badge--frei::before { background: #7bb661; }
.badge--warteliste::before { background: var(--gold); }
.badge--ausgebucht::before { background: #b5553f; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__media { max-width: 420px; margin: 0 auto; order: 2; }
    .feature-bar { grid-template-columns: repeat(3, 1fr); }
    .products { grid-template-columns: 1fr 1fr; }
    .about-band { grid-template-columns: 1fr; }
    .about-band__media { min-height: 200px; }
    .split { grid-template-columns: 1fr; }
    .cta-box { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .nav__toggle { display: flex; }
    .nav__menu {
        position: absolute; top: calc(100% + 8px); left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 2px; margin: 0;
        background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md);
        padding: 10px; box-shadow: var(--shadow-md);
        display: none;
    }
    .nav__menu.is-open { display: flex; }
    .nav { flex-wrap: wrap; }
    .nav__dropdown {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; padding: 4px 0 4px 14px; background: transparent;
        display: none;
    }
    .nav__item--has-children.is-open .nav__dropdown { display: block; }
    .nav__end { margin-left: auto; }
    .feature-bar { grid-template-columns: 1fr 1fr; }
    .products { grid-template-columns: 1fr; }
    .footer__grid { flex-direction: column; text-align: center; }
}
@media (max-width: 960px) {
    .feature-bar .feature + .feature::before { display: none; }
    .feature-bar { gap: 18px 0; }
}

/* =================================================================
   Feinschliff v2 – Atmosphäre, Tiefe & Mikro-Interaktionen
   ================================================================= */

/* Film-Grain + Vignette für edle, tiefe Dunkelheit */
body::before {
    content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: .035;
}
body::after {
    content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background: radial-gradient(130% 90% at 50% -10%, transparent 52%, rgba(0,0,0,.45) 100%);
}
main, .site-footer { position: relative; z-index: 2; }
.site-header { z-index: 100; }

/* Ornament-Divider feiner */
.ornament-head .ornament { opacity: 1; }
.ornament-head .ornament svg { width: 16px; height: 16px; filter: drop-shadow(0 0 8px rgba(201,181,106,.4)); }

/* Buttons: Pfeil gleitet, sanfter Hover */
.btn svg { transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* Über-mich-Band: Motten-Wasserzeichen + Bild-Overlay */
.about-band { position: relative; overflow: hidden; }
.about-band::after {
    content: ""; position: absolute; right: -40px; bottom: -50px; width: 320px; height: 320px;
    background: url("../img/brand/logo.png") no-repeat center / contain;
    opacity: .05; pointer-events: none; filter: grayscale(1);
}
.about-band__media { position: relative; }
.about-band__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(24,32,16,.15), rgba(24,32,16,.75));
}
.about-band__body { position: relative; z-index: 1; }

/* Eyebrow mit feinen flankierenden Goldlinien */
.eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow::before, .eyebrow::after { content: ""; width: 24px; height: 1px; background: var(--gold); opacity: .6; }

/* Fokus-Sichtbarkeit (Barrierefreiheit) */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* Individuelle Scrollbar */
* { scrollbar-color: var(--gold-deep) transparent; scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--panel-3); border: 3px solid var(--bg); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* Sanfterer Sektions-Rhythmus */
.hero + .section--tight { padding-top: 0; }

/* ---------- Page-Builder-Blöcke ---------- */
.builder { padding: clamp(10px, 3vw, 30px) 0 clamp(40px, 7vw, 80px); }
.builder-block { margin: clamp(28px, 5vw, 52px) 0; }
.builder-block:first-child { margin-top: 0; }
.bb-heading h2 { margin: 0; }
.bb-image { margin-left: 0; margin-right: 0; }
.bb-image img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.bb-image figcaption { color: var(--muted); font-size: .85rem; margin-top: 10px; text-align: center; }
.bb-image--left { float: left; max-width: 46%; margin: .3em 2em 1.4em 0; }
.bb-image--right { float: right; max-width: 46%; margin: .3em 0 1.4em 2em; }
.bb-imagetext { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.bb-imagetext.is-right .bb-imagetext__media { order: 2; }
.bb-imagetext__media img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); display: block; }
.bb-imagetext__body h2 { margin-top: 0; }
.bb-divider { display: flex; align-items: center; justify-content: center; }
.bb-divider span { display: block; width: min(280px, 60%); height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); position: relative; }
.bb-divider span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 7px; height: 7px; background: var(--gold); transform: translate(-50%, -50%) rotate(45deg); }
.bb-button .btn { margin: 0; }
@media (max-width: 760px) {
    .bb-imagetext { grid-template-columns: 1fr; }
    .bb-imagetext.is-right .bb-imagetext__media { order: 0; }
    .bb-image--left, .bb-image--right { float: none; max-width: 100%; margin: 1.2em 0; }
}

/* ---------- Instagram-Galerie ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.ig-item {
    position: relative; display: block; overflow: hidden; border-radius: var(--radius-sm);
    border: 1px solid var(--line); aspect-ratio: 1; background: var(--panel);
}
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), opacity .3s; }
.ig-item::after {
    content: ""; position: absolute; inset: 0; background: rgba(24,32,16,.35); opacity: 0; transition: opacity .3s;
}
.ig-item:hover img { transform: scale(1.06); }
.ig-item:hover::after { opacity: 1; }
.ig-item__play {
    position: absolute; inset: 0; margin: auto; width: 48px; height: 48px; z-index: 2;
    display: flex; align-items: center; justify-content: center; color: var(--cream);
    background: rgba(13,15,10,.55); border: 1px solid var(--line); border-radius: 50%; font-size: 1rem;
}
@media (max-width: 560px) { .ig-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* ---------- Produkt-Lightbox ---------- */
.js-product { cursor: pointer; }
.pmodal {
    position: fixed; inset: 0; z-index: 300; display: none;
    align-items: center; justify-content: center; padding: 24px;
    background: rgba(0,0,0,.72); backdrop-filter: blur(4px);
}
.pmodal.is-open { display: flex; animation: pmodal-fade .25s var(--ease); }
@keyframes pmodal-fade { from { opacity: 0; } to { opacity: 1; } }
.pmodal__box {
    position: relative; width: min(860px, 100%); max-height: 88vh; overflow: auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.pmodal__media { background: var(--bg); display: flex; align-items: center; justify-content: center; }
.pmodal__media img { width: 100%; height: 100%; max-height: 88vh; object-fit: cover; display: block; }
.pmodal__body { padding: clamp(26px, 4vw, 44px); display: flex; flex-direction: column; }
.pmodal__sub { text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; color: var(--gold); margin: 0 0 10px; }
.pmodal__title { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--cream); margin: 0 0 12px; }
.pmodal__price { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold); margin: 0 0 16px; font-variant-numeric: tabular-nums; }
.pmodal__desc { color: var(--cream-soft); font-size: .95rem; line-height: 1.7; margin: 0 0 24px; }
.pmodal__buy { align-self: flex-start; margin-top: auto; }
.pmodal__close {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
    background: rgba(13,15,10,.6); border: 1px solid var(--line); color: var(--cream);
    font-size: 1.5rem; line-height: 1; display: flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s, border-color .2s;
}
.pmodal__close:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
@media (max-width: 680px) {
    .pmodal__box { grid-template-columns: 1fr; }
    .pmodal__media { max-height: 40vh; }
    .pmodal__media img { max-height: 40vh; }
}

/* =================================================================
   Hero-Animation – driftender Rauch, schwebende Ink-Caps, sanfter Zoom
   ================================================================= */
.hero--fx { overflow: hidden; }
.hero__fx { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero--fx > .container { position: relative; z-index: 1; }

/* Rauch/Nebel: weiche Farbwolken, die langsam über den Hero driften. */
.hero__smoke {
    position: absolute; border-radius: 50%;
    filter: blur(60px); opacity: .5;
    will-change: transform;
}
.hero__smoke--a {
    width: 46vw; height: 46vw; left: -12vw; top: -14vw;
    background: radial-gradient(circle, rgba(107,125,61,.5), transparent 68%);
    animation: heroDriftA 34s ease-in-out infinite alternate;
}
.hero__smoke--b {
    width: 38vw; height: 38vw; right: -8vw; top: 18%;
    background: radial-gradient(circle, rgba(201,181,106,.26), transparent 66%);
    animation: heroDriftB 44s ease-in-out infinite alternate;
}
.hero__smoke--c {
    width: 52vw; height: 34vw; left: 26%; bottom: -18vw;
    background: radial-gradient(circle, rgba(74,90,43,.44), transparent 70%);
    animation: heroDriftC 52s ease-in-out infinite alternate;
}
@keyframes heroDriftA {
    0%   { transform: translate3d(0,0,0) scale(1); }
    100% { transform: translate3d(9vw, 5vh, 0) scale(1.18); }
}
@keyframes heroDriftB {
    0%   { transform: translate3d(0,0,0) scale(1.1); }
    100% { transform: translate3d(-7vw, -6vh, 0) scale(.92); }
}
@keyframes heroDriftC {
    0%   { transform: translate3d(0,0,0) scale(.95); }
    100% { transform: translate3d(-10vw, -4vh, 0) scale(1.2); }
}

/* Ink-Caps: kleine Farbkappen, die auf und ab schweben. */
.hero__cap {
    position: absolute;
    width: var(--size, 16px); height: var(--size, 16px);
    border-radius: 50% 50% 46% 46% / 42% 42% 58% 58%;
    background: linear-gradient(160deg, rgba(201,181,106,.85), rgba(74,90,43,.55));
    border: 1px solid rgba(233,229,214,.28);
    box-shadow: 0 6px 16px rgba(0,0,0,.45), inset 0 -2px 5px rgba(0,0,0,.4);
    opacity: .55;
    animation: heroFloat var(--dur, 16s) ease-in-out var(--delay, 0s) infinite alternate;
    will-change: transform;
}
.hero__cap::after {
    content: ""; position: absolute; inset: 14% 18% auto 18%; height: 22%;
    border-radius: 50%; background: rgba(24,32,16,.85);
}
@keyframes heroFloat {
    0%   { transform: translate3d(0, 0, 0) rotate(-6deg); }
    100% { transform: translate3d(6px, -26px, 0) rotate(8deg); }
}

/* Parallax: JS setzt --px/--py auf dem Container, die Tiefe steckt im Element.
   Bewusst die eigenständige translate-Eigenschaft statt transform: die laufende
   Schwebe-Animation belegt transform bereits und würde den Versatz überschreiben.
   translate und transform werden vom Browser kombiniert. */
.hero__fx.is-parallax .hero__cap {
    translate: calc(var(--px, 0) * var(--depth, 10) * 1px)
               calc(var(--py, 0) * var(--depth, 10) * 1px);
    transition: translate .5s cubic-bezier(.2,.7,.3,1);
}
.hero__fx.is-parallax .hero__smoke {
    translate: calc(var(--px, 0) * -14px) calc(var(--py, 0) * -10px);
    transition: translate .9s cubic-bezier(.2,.7,.3,1);
}

/* Sanfter Zoom auf der Hero-Grafik. */
.hero--fx .hero__media img { animation: heroZoom 22s ease-in-out infinite alternate; }
@keyframes heroZoom {
    0%   { transform: scale(1) translateY(0); }
    100% { transform: scale(1.045) translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
    .hero__smoke, .hero__cap, .hero--fx .hero__media img { animation: none !important; }
    .hero__fx.is-parallax .hero__cap,
    .hero__fx.is-parallax .hero__smoke { translate: none !important; }
}

/* =================================================================
   Ladeanimation (Preloader)
   ================================================================= */
.preloader {
    position: fixed; inset: 0; z-index: 9998;
    display: grid; place-items: center;
    background: var(--bg);
    opacity: 1; visibility: visible;
    transition: opacity .5s ease, visibility .5s ease;
    /* Sicherheitsnetz: verschwindet auch ohne JavaScript. */
    animation: preloaderSafety 0s linear 2s forwards;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes preloaderSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.preloader__inner { display: grid; justify-items: center; gap: 22px; padding: 20px; }
.preloader__inner img { width: clamp(90px, 18vw, 130px); height: auto; animation: preloaderPulse 2s ease-in-out infinite; }
.preloader__name { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); letter-spacing: .06em; }
.preloader__bar { display: block; width: 150px; height: 2px; background: var(--line-soft); border-radius: 2px; overflow: hidden; }
.preloader__bar > span { display: block; height: 100%; width: 40%; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: preloaderSweep 1.3s ease-in-out infinite; }
@keyframes preloaderPulse { 0%, 100% { opacity: .55; transform: scale(.97); } 50% { opacity: 1; transform: scale(1); } }
@keyframes preloaderSweep { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }
@media (prefers-reduced-motion: reduce) {
    .preloader__inner img, .preloader__bar > span { animation: none; }
}

/* =================================================================
   Altersabfrage (18+)
   ================================================================= */
.age-gate { display: none; }
.age-lock { overflow: hidden; }
.age-lock body { overflow: hidden; }
.age-lock .age-gate {
    display: grid; place-items: center;
    position: fixed; inset: 0; z-index: 9997;
    padding: 24px;
    background: rgba(13, 17, 8, .93);
    backdrop-filter: blur(8px);
}
.age-gate__box {
    max-width: 520px; text-align: center;
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(44,58,32,.75), rgba(20,26,12,.9));
    box-shadow: var(--shadow-lg);
    padding: clamp(28px, 5vw, 46px);
}
.age-gate__logo { width: clamp(90px, 20vw, 140px); height: auto; margin-bottom: 18px; }
.age-gate__box h2 { font-size: clamp(1.4rem, 3.4vw, 2rem); margin: 0 0 .5em; }
.age-gate__box p { color: var(--cream-soft); margin: 0 0 1.4em; }
.age-gate__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =================================================================
   Zwei-Klick-Lösung für externe Inhalte (DSGVO)
   ================================================================= */
.consent {
    display: grid; place-items: center;
    border: 1px dashed var(--line); border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(44,58,32,.35), rgba(20,26,12,.5));
    padding: clamp(22px, 4vw, 38px); margin: 1.6em 0;
    text-align: center;
}
.consent--video { aspect-ratio: 16 / 9; }
.consent--map { min-height: 260px; }
.consent__inner { display: grid; justify-items: center; gap: 12px; max-width: 46ch; }
.consent__title {
    font-family: var(--font-body); text-transform: uppercase;
    letter-spacing: .16em; font-size: .74rem; color: var(--gold); margin: 0;
}
.consent__text { color: var(--cream-soft); font-size: .9rem; margin: 0; }
.consent__remember {
    display: flex; align-items: center; gap: 8px;
    font-size: .8rem; color: var(--muted); cursor: pointer;
}
.consent__remember input { accent-color: var(--gold); }
.consent__link { font-size: .78rem; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.consent__link:hover { color: var(--gold); }

/* =================================================================
   FAQ-Accordion
   ================================================================= */
.faq { display: grid; gap: 12px; margin: 1.6em 0; }
.faq__item {
    border: 1px solid var(--line); border-radius: var(--radius-md);
    background: rgba(36, 48, 26, .45);
    transition: border-color .25s var(--ease), background .25s var(--ease);
}
.faq__item[open] { border-color: rgba(201,181,106,.5); background: rgba(44, 58, 32, .55); }
.faq__q {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 22px; cursor: pointer; list-style: none;
    font-family: var(--font-body); font-weight: 600; color: var(--cream);
    font-size: .98rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--gold); }
.faq__mark { position: relative; flex: 0 0 auto; width: 16px; height: 16px; }
.faq__mark::before, .faq__mark::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    background: var(--gold); border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq__mark::before { width: 14px; height: 2px; }
.faq__mark::after  { width: 2px; height: 14px; }
.faq__item[open] .faq__mark::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a { padding: 0 22px 20px; color: var(--cream-soft); line-height: 1.75; }
.faq__a > :first-child { margin-top: 0; }
.faq__a > :last-child { margin-bottom: 0; }

/* =================================================================
   Öffnungszeiten
   ================================================================= */
.hours {
    display: grid; gap: 2px; margin: 1.6em 0;
    border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden;
}
.hours__row {
    display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
    padding: 13px 20px; background: rgba(36, 48, 26, .4);
}
.hours__row + .hours__row { border-top: 1px solid var(--line-soft); }
.hours__day { color: var(--cream-soft); font-size: .92rem; }
.hours__time { color: var(--cream); font-variant-numeric: tabular-nums; font-size: .92rem; white-space: nowrap; }
.hours__row.is-closed .hours__time { color: var(--muted); font-style: italic; }
.hours__row.is-today { background: rgba(74, 90, 43, .38); box-shadow: inset 3px 0 0 var(--gold); }
.hours__row.is-today .hours__day { color: var(--gold); font-weight: 600; }
.hours-note { color: var(--cream-soft); }

/* =================================================================
   Bewertungen / Kundenstimmen
   ================================================================= */
.reviews {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px; margin: 1.8em 0;
}
.review {
    margin: 0; padding: 26px 26px 22px;
    border: 1px solid var(--line); border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(44,58,32,.42), rgba(20,26,12,.5));
    display: flex; flex-direction: column; gap: 14px;
    transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.review:hover { transform: translateY(-4px); border-color: rgba(201,181,106,.45); }
.review__stars { display: flex; gap: 3px; }
.review__star svg { width: 16px; height: 16px; color: var(--line-soft); }
.review__star.is-on svg { color: var(--gold); }
.review blockquote {
    margin: 0; color: var(--cream-soft); font-size: .96rem; line-height: 1.75;
    position: relative; padding-left: 20px;
}
.review blockquote::before {
    content: "\201C"; position: absolute; left: -2px; top: -10px;
    font-family: var(--font-head); font-size: 2.6rem; color: var(--gold); opacity: .5; line-height: 1;
}
.review figcaption {
    margin-top: auto; padding-top: 4px;
    font-family: var(--font-body); font-weight: 600; font-size: .82rem;
    text-transform: uppercase; letter-spacing: .1em; color: var(--cream);
}
.review figcaption span { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.consent--gallery { min-height: 340px; }

/* ---------- Page-Builder: Spalten, Galerie, Zitat ---------- */
.bb-columns { display: grid; gap: clamp(24px, 4vw, 44px); }
.bb-columns--2 { grid-template-columns: repeat(2, 1fr); }
.bb-columns--3 { grid-template-columns: repeat(3, 1fr); }
.bb-columns__col > :first-child { margin-top: 0; }
.bb-columns__col > :last-child { margin-bottom: 0; }
@media (max-width: 820px) { .bb-columns--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .bb-columns--2, .bb-columns--3 { grid-template-columns: 1fr; } }

.bb-quote {
    margin-left: 0; margin-right: 0;
    border-left: 2px solid var(--gold);
    padding: 6px 0 6px clamp(20px, 4vw, 38px);
}
.bb-quote blockquote {
    margin: 0;
    font-family: var(--font-head); font-style: italic;
    font-size: clamp(1.2rem, 2.6vw, 1.7rem); line-height: 1.5;
    color: var(--cream);
}
.bb-quote figcaption {
    margin-top: 14px;
    font-family: var(--font-body); text-transform: uppercase;
    letter-spacing: .16em; font-size: .74rem; color: var(--gold);
}
.preloading body { overflow: hidden; }

/* ---- Gutschein-Karten & Einlöse-Seite ---------------------------------- */
.voucher-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin: 24px 0; }
.voucher-grid--single { grid-template-columns: minmax(240px, 360px); }
.voucher-card { background: rgba(24, 32, 16, 0.55); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, border-color .25s ease; }
.voucher-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.voucher-card__media { aspect-ratio: 3 / 2; overflow: hidden; }
.voucher-card__media img { width: 100%; height: 100%; object-fit: cover; }
.voucher-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.voucher-card__title { font-family: var(--font-display, 'Playfair Display', serif); color: var(--cream); margin: 0; font-size: 1.3rem; }
.voucher-card__desc { color: var(--cream-soft); font-size: .95rem; }
.voucher-card__price { color: var(--gold); font-weight: 600; font-size: 1.05rem; margin: 0; }
.voucher-card__buy { margin-top: 6px; align-self: flex-start; }

.redeem { max-width: 560px; margin: 40px auto; }
.redeem__card { background: rgba(24, 32, 16, 0.6); border: 1px solid var(--line); border-radius: 16px; padding: 30px 28px; }
.redeem__status { display: inline-block; padding: 6px 16px; border-radius: 999px; font-weight: 600; margin-bottom: 18px; }
.redeem__status--valid    { background: rgba(120,170,90,.18);  color: #a7c98a; }
.redeem__status--redeemed { background: rgba(201,181,106,.12); color: var(--cream-soft); }
.redeem__status--expired,
.redeem__status--unknown  { background: rgba(217,112,79,.18);  color: #e0916f; }
.redeem__big { font-family: var(--font-display, serif); font-size: 2.4rem; color: var(--gold); margin: 6px 0; }
.redeem__meta { color: var(--cream-soft); margin: 4px 0; }
.redeem__code { font-family: ui-monospace, monospace; color: var(--cream); letter-spacing: .04em; }
.redeem form { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.redeem label { color: var(--cream-soft); font-size: .95rem; display: flex; flex-direction: column; gap: 6px; }
.redeem input { background: rgba(0,0,0,.25); border: 1px solid var(--line); color: var(--cream); border-radius: 10px; padding: 12px 14px; font-size: 1rem; }
.redeem input:focus { outline: none; border-color: var(--gold); }
.redeem__msg { padding: 12px 16px; border-radius: 10px; margin: 14px 0; }
.redeem__msg--error { background: rgba(217,112,79,.16); color: #e0916f; }
.redeem__msg--ok    { background: rgba(120,170,90,.18); color: #a7c98a; }

/* ---- Shop / Warenkorb / Kasse ------------------------------------------ */
.shop-page { padding: 60px 0 80px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.voucher-card__form { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.voucher-card__pick { display: flex; flex-direction: column; gap: 6px; }
.voucher-card__amtlabel { color: var(--cream-soft); font-size: .82rem; }
.voucher-card__amount, .voucher-card__custom, .voucher-card__qty {
    background-color: rgba(0,0,0,.25); border: 1px solid var(--line); color: var(--cream);
    border-radius: 9px; padding: 9px 11px; font-size: .95rem; font-family: inherit; }
.voucher-card__amount { padding-right: 36px; }
.voucher-card__amount:focus, .voucher-card__custom:focus, .voucher-card__qty:focus { outline: none; border-color: var(--gold); }
.voucher-card__buyrow { display: flex; gap: 10px; align-items: stretch; }
.voucher-card__qty { width: 64px; text-align: center; }
.voucher-card__buy { flex: 1; cursor: pointer; }

.cart-table { margin: 24px 0; border-top: 1px solid var(--line); }
.cart-row { display: grid; grid-template-columns: 1fr auto auto auto; gap: 16px; align-items: center;
    padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-row__info { display: flex; flex-direction: column; gap: 3px; }
.cart-row__info strong { color: var(--cream); }
.cart-row__unit { color: var(--cream-soft); font-size: .88rem; }
.cart-row__qty input { width: 68px; text-align: center; background: rgba(0,0,0,.25);
    border: 1px solid var(--line); color: var(--cream); border-radius: 8px; padding: 8px; }
.cart-row__sum { color: var(--gold); font-weight: 600; min-width: 90px; text-align: right; }
.cart-row__del button { background: none; border: none; color: var(--cream-soft); font-size: 1.5rem;
    cursor: pointer; line-height: 1; padding: 0 6px; transition: color .2s; }
.cart-row__del button:hover { color: #e0916f; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 20px;
    font-size: 1.25rem; }
.cart-total strong { color: var(--gold); font-family: var(--font-display, serif); font-size: 1.6rem; }
.cart-tva { color: var(--cream-soft); font-size: .88rem; text-align: right; margin: 4px 0 0; }
.cart-actions { display: flex; gap: 14px; justify-content: flex-end; margin-top: 26px; flex-wrap: wrap; }
.cart-empty { color: var(--cream-soft); margin: 20px 0; }

.checkout-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; margin-top: 24px; align-items: start; }
.checkout-summary { background: rgba(24,32,16,.5); border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.checkout-summary h2 { margin-top: 0; }
.checkout-line { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; color: var(--cream-soft); }
.checkout-line--total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; color: var(--cream); font-size: 1.1rem; }
.checkout-line--total strong { color: var(--gold); }
.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.checkout-form label { display: flex; flex-direction: column; gap: 6px; color: var(--cream-soft); }
.checkout-form input, .checkout-form textarea { background: rgba(0,0,0,.25); border: 1px solid var(--line);
    color: var(--cream); border-radius: 10px; padding: 12px 14px; font-size: 1rem; font-family: inherit; }
.checkout-form input:focus, .checkout-form textarea:focus { outline: none; border-color: var(--gold); }
.checkout-form .has-error input, .checkout-form .has-error textarea { border-color: #e0916f; }
.checkout-privacy { flex-direction: row !important; align-items: flex-start; gap: 10px; font-size: .9rem; }
.checkout-privacy input { width: auto; margin-top: 3px; accent-color: var(--gold); }
.checkout-paynote { color: var(--cream-soft); font-size: .9rem; background: rgba(201,181,106,.08);
    border-left: 3px solid var(--gold); padding: 12px 16px; border-radius: 8px; }
.checkout-done { max-width: 620px; }
.checkout-done__no { color: var(--cream-soft); }
@media (max-width: 760px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .cart-row { grid-template-columns: 1fr auto auto; }
    .cart-row__sum { grid-column: 2 / 3; }
}

/* ---- Gutschein-Vorschaugrafik ------------------------------------------ */
.voucher-card__preview { line-height: 0; }
.voucher-card__preview .voucher-svg { width: 100%; height: auto; display: block; }
.voucher-svg { font-family: var(--font-body, 'Montserrat', sans-serif); }

/* ---- Einheitliche Dropdowns (gesamte Seite) ---------------------------- */
select {
    appearance: none; -webkit-appearance: none;
    background-color: rgba(0, 0, 0, 0.30);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9b56a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; background-size: 12px 12px;
    color: var(--cream); border: 1px solid var(--line); border-radius: 10px;
    padding: 11px 40px 11px 14px; font-family: inherit; font-size: 1rem; cursor: pointer;
}
select:hover { border-color: rgba(201, 181, 106, 0.5); }
select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201, 181, 106, 0.18); }
select option { background: #1c2414; color: var(--cream); }

/* ---- Zahlungsart-Auswahl (Checkout) ------------------------------------ */
.checkout-pay { border: 1px solid var(--line); border-radius: 12px; padding: 8px 14px 14px; margin: 4px 0;
    background: rgba(233, 229, 214, 0.05); }
.checkout-pay legend { padding: 0 8px; margin-left: 4px; color: var(--gold); font-size: .92rem; font-weight: 600; }
.checkout-pay__opt { display: flex !important; flex-direction: row !important; align-items: center; gap: 12px;
    padding: 12px 14px; margin-top: 8px; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
    background: rgba(233, 229, 214, 0.03); transition: border-color .2s, background .2s; color: var(--cream); }
.checkout-pay__opt:hover { border-color: rgba(201, 181, 106, 0.55); }
.checkout-pay__opt input[type="radio"] { width: 18px; height: 18px; flex: 0 0 auto; margin: 0; accent-color: var(--gold); }
.checkout-pay__opt span { font-size: 1.02rem; }
.checkout-pay__opt:has(input:checked) { border-color: var(--gold); background: rgba(201, 181, 106, 0.12); }

/* ---- Inline-Bezahlung (Stripe Payment Element / PayPal) ----------------- */
.pay-inline { margin: 6px 0 2px; }
.pay-inline h2 { margin-bottom: 12px; }
.pay-block { background: rgba(233, 229, 214, 0.05); border: 1px solid var(--line); border-radius: 12px;
    padding: 18px; margin-bottom: 14px; }
#stripe-payment-element { margin-bottom: 16px; }
.pay-btn { width: 100%; }
.pay-or { display: flex; align-items: center; text-align: center; color: var(--cream-soft); margin: 6px 0 14px; font-size: .9rem; }
.pay-or::before, .pay-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.pay-or span { padding: 0 14px; }
#pay-msg { margin-bottom: 14px; }

/* ---- Warenkorb-Button in der Navigation -------------------------------- */
.nav__cart { position: relative; }
.nav__cart-count { position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 5px;
    border-radius: 999px; background: var(--gold); color: var(--bg); font-size: .68rem; font-weight: 700;
    line-height: 18px; text-align: center; font-family: var(--font-body, 'Montserrat', sans-serif); box-shadow: 0 0 0 2px var(--bg); }

/* ---- Rechnungsadresse an der Kasse ---- */
.checkout-addr { display: flex; gap: 14px; }
.checkout-addr label { flex: 0 0 34%; }
.checkout-addr__city { flex: 1 1 auto; }
@media (max-width: 520px) { .checkout-addr { flex-direction: column; } .checkout-addr label { flex: 1; } }

/* ---- Gutschein-Aktion / Rabatt ---------------------------------------- */
.voucher-badge{display:inline-block;background:#a7c98a;color:#141a0e;font-size:.72rem;font-weight:700;
    padding:2px 8px;border-radius:999px;vertical-align:middle;letter-spacing:.02em}
.voucher-strike{text-decoration:line-through;color:var(--cream-soft,#cfcab6);opacity:.75;margin-right:4px}
.voucher-card__hint{color:#a7c98a;font-size:.82rem;margin:6px 0 0}
