/* ═══════════════════════════════════════════════════════════
   SHARKINK TATTOO STUDIO
   tattoo-styles.css — Urban · Raw · Street · Precise
   Color DNA from Logo: Dark Olive Green, Black, White
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
    /* Core Palette — extracted from Shark-Ink logo */
    --black:         #0A0A0A;
    --deep:          #111111;
    --dark:          #1A1A1A;
    --surface:       #202020;
    --surface-2:     #2A2A2A;
    --border:        rgba(255,255,255,0.06);
    --border-bright: rgba(255,255,255,0.12);

    /* Green Family — logo's signature green */
    --green:         #6B9B50;
    --green-bright:  #7DBF5A;
    --green-deep:    #4A6E3C;
    --green-muted:   #3D5C32;
    --green-glow:    rgba(107,155,80,0.25);
    --green-fog:     rgba(74,110,60,0.12);
    --green-10:      rgba(107,155,80,0.10);
    --green-20:      rgba(107,155,80,0.20);
    --green-40:      rgba(107,155,80,0.40);

    /* Text */
    --white:         #FFFFFF;
    --off-white:     #E8E8E8;
    --grey-light:    #B0B0B0;
    --grey-mid:      #808080;
    --grey-dark:     #404040;

    /* Fonts */
    --ff-head:    'Barlow Condensed', sans-serif;
    --ff-body:    'Barlow', sans-serif;
    --ff-marker:  'Permanent Marker', cursive;

    /* Layout */
    --nav-h:     70px;
    --bar-h:     60px;
    --max:       1140px;
    --pad:       clamp(20px, 5vw, 72px);

    /* Vertical rhythm */
    --vr-desk:   130px;
    --vr-mob:    80px;

    /* Motion */
    --ease:      cubic-bezier(.4, 0, .2, 1);
    --ease-out:  cubic-bezier(0, .55, .45, 1);
    --fast:      150ms;
    --mid:       280ms;
    --slow:      500ms;

    /* Noise SVG — feiner Grain-Basis-Layer */
    --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");

    /* Beton-Grain — gröbere Frequenz, mehr Textur */
    --concrete: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.42' numOctaves='6' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23c)' opacity='0.055'/%3E%3C/svg%3E");
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body {
    background: var(--black);
    background-image: var(--noise);
    background-size: 256px;
    color: var(--off-white);
    font-family: var(--ff-body);
    font-weight: 400;
    overflow-x: hidden;
}

/* ── STILMITTEL 1: Beton-/Concrete-Grain Overlay ─────────────
   Feiner urbaner Wandputz-Layer über die gesamte Seite.
   Fixiert, skaliert auf 400px — roh, handwerklich, subtil.
   Sitzt über allem außer dem Lightning-Canvas (z-index 9998/9999).
   ──────────────────────────────────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: var(--concrete);
    background-size: 400px 400px;
    opacity: 1;
    mix-blend-mode: overlay;
}

/* ── STILMITTEL 2a: Ink-Smoke Vignette ───────────────────────
   Dunkle, leicht grünlich getönte Randvignette — als würde
   Tinte / Rauch vom Rand her ins Bild ziehen.
   Sehr subtil, verstärkt den Underground-Charakter.
   ──────────────────────────────────────────────────────────── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(
        ellipse 85% 80% at 50% 45%,
        transparent 55%,
        rgba(8, 14, 6, 0.55) 100%
    );
}
a       { text-decoration: none; color: inherit; }
button  { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
address { font-style: normal; }
img, video { display: block; max-width: 100%; }
ul, ol  { list-style: none; }
table   { border-collapse: collapse; }

/* ─── ATMOSPHERIC SCROLL LAYER ───────────────────────────── */
.atmo-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.atmo-layer__fog {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
    mix-blend-mode: screen;
}

.atmo-layer__fog--1 {
    width: 900px; height: 600px;
    background: radial-gradient(ellipse at center, rgba(74,110,60,0.18) 0%, transparent 70%);
    top: 10%; left: -200px;
    animation: fogDrift1 18s ease-in-out infinite alternate;
}

.atmo-layer__fog--2 {
    width: 700px; height: 500px;
    background: radial-gradient(ellipse at center, rgba(107,155,80,0.10) 0%, transparent 65%);
    top: 40%; right: -150px;
    animation: fogDrift2 22s ease-in-out infinite alternate;
}

.atmo-layer__fog--3 {
    width: 800px; height: 400px;
    background: radial-gradient(ellipse at center, rgba(44,74,36,0.20) 0%, transparent 70%);
    bottom: 10%; left: 20%;
    animation: fogDrift3 26s ease-in-out infinite alternate;
}

@keyframes fogDrift1 {
    from { transform: translateY(0) translateX(0) scale(1); }
    to   { transform: translateY(60px) translateX(40px) scale(1.1); }
}
@keyframes fogDrift2 {
    from { transform: translateY(0) translateX(0) scale(1.05); }
    to   { transform: translateY(-80px) translateX(-30px) scale(0.95); }
}
@keyframes fogDrift3 {
    from { transform: translateY(0) translateX(0); }
    to   { transform: translateY(-50px) translateX(60px) scale(1.08); }
}

/* ─── SECTION UTILITIES ──────────────────────────────────── */
.section-tag {
    display: block;
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .25em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: .75rem;
}

/* ─── SECTION TRANSITIONS ────────────────────────────────── */
.section-transition {
    position: relative;
    z-index: 2;
    margin-top: -2px;
    margin-bottom: -2px;
    pointer-events: none;
}
.section-transition svg {
    display: block;
    width: 100%;
    height: 60px;
}
.section-transition--hero-leistungen svg { height: 80px; }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
[data-reveal].visible {
    opacity: 1;
    transform: none;
}
[data-delay="1"] { transition-delay: 0.10s; }
[data-delay="2"] { transition-delay: 0.20s; }
[data-delay="3"] { transition-delay: 0.30s; }
[data-delay="4"] { transition-delay: 0.40s; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--ff-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all var(--mid) var(--ease);
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    padding: .85rem 2rem;
    background: var(--green);
    color: var(--black);
    border: 2px solid var(--green);
}
.btn--primary:hover {
    background: var(--green-bright);
    border-color: var(--green-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--green-glow);
}

.btn--outline {
    padding: .85rem 2rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.btn--book-primary {
    padding: 1rem 2.4rem;
    background: var(--green);
    color: var(--black);
    border: 2px solid var(--green);
    font-size: 15px;
}
.btn--book-primary:hover {
    background: var(--green-bright);
    border-color: var(--green-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--green-glow);
}

.btn--book-outline {
    padding: 1rem 2.4rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
    font-size: 15px;
}
.btn--book-outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 100;
    transition: background var(--slow) var(--ease), box-shadow var(--slow) var(--ease);
}

.nav.scrolled {
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.4);
}

.nav__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}
.nav__logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px var(--green-glow));
}
.nav__brand-text {
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .06em;
    color: var(--white);
}
.nav__brand-accent { color: var(--green); }

.nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav__link {
    font-family: var(--ff-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--grey-light);
    transition: color var(--fast);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--mid) var(--ease-out);
}
.nav__link:hover,
.nav__link.is-current { color: var(--white); }
.nav__link:hover::after,
.nav__link.is-current::after { transform: scaleX(1); }

.nav__right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.nav__cta {
    font-family: var(--ff-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .55rem 1.4rem;
    background: var(--green);
    color: var(--black);
    border-radius: 2px;
    transition: all var(--mid) var(--ease);
}
.nav__cta:hover {
    background: var(--green-bright);
    transform: translateY(-1px);
}

.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px; height: 36px;
    gap: 6px;
}
.nav__burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: all var(--mid) var(--ease);
}
.nav__burger[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* ─── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--slow) var(--ease);
}
.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}
.mobile-menu nav a {
    font-family: var(--ff-head);
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--grey-light);
    transition: color var(--fast);
}
.mobile-menu nav a:hover { color: var(--green); }
.mobile-menu__cta {
    margin-top: .5rem;
    padding: .85rem 2.5rem !important;
    background: var(--green) !important;
    color: var(--black) !important;
    border-radius: 2px;
    font-size: 16px !important;
}

/* ─── HERO STAGE ─────────────────────────────────────────── */
.hero-stage { position: relative; }

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-h);
}

.hero__bg-noise {
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-size: 200px;
    opacity: .6;
    z-index: 1;
    pointer-events: none;
}

.hero__scan-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.04) 2px,
        rgba(0,0,0,0.04) 4px
    );
}

.hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.4) brightness(0.35);
}
.hero__video-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 50%, rgba(74,110,60,0.20) 0%, transparent 55%),
        linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.7) 100%),
        linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.9) 100%);
}

.hero__layout {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    min-height: calc(100vh - var(--nav-h));
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.hero__eyebrow {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.hero__headline {
    display: flex;
    flex-direction: column;
    font-family: var(--ff-head);
    font-size: clamp(72px, 8vw, 120px);
    font-weight: 900;
    line-height: .92;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2rem;
}
.hero__headline-line { display: block; }

/* ── STILMITTEL 2b: Grüne Lichtkante — Hero-Headline ─────────
   Nur die erste Zeile "PRÄZISION" bekommt eine hauchdünne
   grüne Text-Shadow-Kante. Kein Glow-Kitsch — eine scharfe,
   präzise Lichtkante wie von einer Klinge beleuchtet.
   ──────────────────────────────────────────────────────────── */
.hero__headline-line:first-child {
    text-shadow:
        1px  0   0   rgba(107,200,60,0.0),   /* kein horizontaler Versatz */
        0    1px 0   rgba(107,200,60,0.0),
        -1px 0   8px rgba(107,200,60,0.18),  /* linke Kante: hauchzarter Schein */
         0  -1px 6px rgba(107,200,60,0.10);  /* obere Kante: minimalster Reflex */
}

.hero__headline-line--accent {
    color: var(--green);
    font-family: var(--ff-marker);
    font-size: clamp(48px, 5.5vw, 88px);
    letter-spacing: .02em;
    line-height: 1;
    -webkit-text-stroke: 0;
}

/* ── STILMITTEL 2c: Blade-Marks ──────────────────────────────
   Einheitlicher vertikaler Strich links von den Headlines.
   Gilt für Leistungen, Portfolio/Galerie und Preise.
   ──────────────────────────────────────────────────────────── */
.blade-mark {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.blade-mark.visible { opacity: 1; }

/* Gemeinsamer vertikaler Strich — links vom Titel */
.leistungen__header,
.galerie__header,
.preise__header {
    position: relative;
    padding-left: 20px; /* Platz für den Strich */
}

.blade-mark--leistungen,
.blade-mark--galerie,
.blade-mark--preise-v {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 80px;
}

/* Horizontale Kratzer unter Preise-Titel — bleibt als zweites Detail */
.blade-mark--preise-h {
    right: 0;
    top: -10px;
    width: 60px;
    height: 24px;
    transform: rotate(-2deg);
}

.hero__sub {
    font-size: 15px;
    line-height: 1.7;
    color: var(--grey-light);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-bright);
}
.hero__stat { text-align: left; }
.hero__stat-num {
    display: block;
    font-family: var(--ff-head);
    font-size: 32px;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
}
.hero__stat-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--grey-mid);
    margin-top: .25rem;
}
.hero__stat-sep {
    width: 1px; height: 40px;
    background: var(--border-bright);
    flex-shrink: 0;
}

/* Right media — logo display */
.hero__media {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__logo-frame {
    position: relative;
    width: clamp(280px, 35vw, 480px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__logo-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,155,80,0.30) 0%, transparent 65%);
    animation: glowPulse 4s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes glowPulse {
    from { opacity: .6; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1.05); }
}
.hero__logo-big {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(107,155,80,0.5));
    animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

/* Scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}
.hero__scroll-text {
    font-family: var(--ff-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .3em;
    color: var(--grey-mid);
}
.hero__scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--green) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: .4; transform: scaleY(1); }
    50%       { opacity: 1; transform: scaleY(1.15); }
}

/* ─── SECTION BASE STYLES ────────────────────────────────── */
.leistungen,
.studio,
.galerie,
.preise,
.booking,
.kontakt {
    position: relative;
    z-index: 1;
    padding-top:    var(--vr-desk);
    padding-bottom: var(--vr-desk);
}

/* Atmospheric section overlays */
.leistungen__atmo,
.studio__atmo,
.galerie__atmo,
.preise__atmo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.leistungen__atmo {
    background:
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(74,110,60,0.12) 0%, transparent 70%),
        linear-gradient(to bottom, var(--black) 0%, rgba(16,22,14,1) 50%, var(--black) 100%);
}
.studio__atmo {
    background:
        radial-gradient(ellipse 50% 60% at 20% 60%, rgba(74,110,60,0.10) 0%, transparent 70%),
        linear-gradient(to bottom, var(--black) 0%, rgba(14,20,12,1) 60%, var(--black) 100%);
}
.galerie__atmo {
    background:
        radial-gradient(ellipse 70% 40% at 50% 50%, rgba(44,74,36,0.15) 0%, transparent 65%),
        linear-gradient(to bottom, var(--black) 0%, rgba(12,18,10,1) 50%, var(--black) 100%);
}
.preise__atmo {
    background: linear-gradient(to bottom, var(--black), rgba(16,22,14,0.95), var(--black));
}

/* ─── LEISTUNGEN ─────────────────────────────────────────── */
.leistungen__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.leistungen__header {
    margin-bottom: 3.5rem;
}
.leistungen__title {
    font-family: var(--ff-head);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--white);
    line-height: .9;
    margin-bottom: .5rem;
}
.leistungen__sub {
    font-size: 14px;
    color: var(--grey-mid);
    letter-spacing: .06em;
}

.leistungen__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
}

/* SERVICE CARDS */
.scard {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color var(--mid) var(--ease);
}
.scard:hover { border-color: var(--green-40); }
.scard:first-child { border-radius: 2px 0 0 0; }
.scard:nth-child(2) { border-radius: 0 2px 0 0; }
.scard:nth-child(3) { border-radius: 0 0 0 2px; }
.scard:last-child { border-radius: 0 0 2px 0; }

.scard__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--dark);
}
.scard__video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 0.85;
    transition: opacity 0.35s var(--ease), transform 0.6s var(--ease);
}

/* Desktop Hover → 100% + Video läuft (is-active) */
@media (hover: hover) {
    .scard:hover .scard__video { opacity: 1; }
}

/* is-active = Video spielt → volle Deckkraft */
.scard.is-active .scard__video { opacity: 1; }

/* Mobile: etwas reduzierte Grundopacity */
@media (hover: none) {
    .scard__video { opacity: 0.75; }
    .scard.is-active .scard__video { opacity: 1; }
}
.scard:hover .scard__video { transform: scale(1.06); }

.scard__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.2) 50%, transparent 80%);
    transition: background var(--mid) var(--ease);
}
.scard:hover .scard__overlay {
    background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, rgba(74,110,60,0.15) 60%, transparent 100%);
}

.scard__num-big {
    position: absolute;
    top: 1rem; right: 1rem;
    z-index: 4;
    font-family: var(--ff-head);
    font-size: 48px;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    transition: color var(--mid) var(--ease);
}
.scard:hover .scard__num-big { color: rgba(107,155,80,0.25); }

.scard__body {
    padding: 1.75rem;
}
.scard__name {
    display: block;
    font-family: var(--ff-head);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: .5rem;
    transition: color var(--mid);
}
.scard:hover .scard__name { color: var(--green); }

.scard__meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .85rem;
}
.scard__duration,
.scard__price {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--grey-mid);
}
.scard__price { color: var(--green); }
.scard__dot { color: var(--grey-dark); }

.scard__desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--grey-light);
}

/* ─── STUDIO ──────────────────────────────────────────────── */
.studio__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.studio__img-frame {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}
.studio__img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: saturate(0.7) brightness(0.85);
    transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}
.studio__img-frame:hover .studio__img {
    transform: scale(1.03);
    filter: saturate(0.85) brightness(0.95);
}
.studio__img-border {
    position: absolute;
    inset: 0;
    border: 2px solid var(--green-20);
    border-radius: 2px;
    pointer-events: none;
    transition: border-color var(--mid);
}
.studio__img-frame:hover .studio__img-border { border-color: var(--green-40); }
.studio__img-tag {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    font-family: var(--ff-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--green);
    background: rgba(10,10,10,0.85);
    padding: .35rem .85rem;
    border: 1px solid var(--green-40);
    border-radius: 1px;
}

.studio__content { }
.studio__title {
    font-family: var(--ff-head);
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: .9;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.studio__title-accent {
    color: var(--green);
    font-family: var(--ff-marker);
    font-size: clamp(40px, 5vw, 72px);
    letter-spacing: .02em;
}
.studio__lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--off-white);
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.studio__body {
    font-size: 14px;
    line-height: 1.75;
    color: var(--grey-light);
    margin-bottom: 2rem;
}

.studio__values {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.studio__value {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: 13.5px;
    color: var(--grey-light);
    line-height: 1.5;
}
.studio__value-icon {
    color: var(--green);
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ─── GALERIE ─────────────────────────────────────────────── */
.galerie__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.galerie__header { margin-bottom: 3rem; }
.galerie__title {
    font-family: var(--ff-head);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--white);
    line-height: .9;
    margin-bottom: .5rem;
}
.galerie__sub {
    font-size: 14px;
    color: var(--grey-mid);
    letter-spacing: .06em;
}

.galerie__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 6px;
    margin-bottom: 2.5rem;
}
.galerie__item {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border-radius: 1px;
}
.galerie__item--tall { grid-row: span 2; }
.galerie__item--wide { grid-column: span 2; }

.galerie__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.6) brightness(0.8);
    transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.galerie__item:hover img {
    transform: scale(1.06);
    filter: saturate(0.85) brightness(0.9);
}

.galerie__item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--mid) var(--ease);
}
.galerie__item:hover .galerie__item-overlay { opacity: 1; }
.galerie__item-overlay span {
    font-family: var(--ff-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--green);
}

.galerie__cta {
    /* Desktop: zentriert, etwas Luft nach oben */
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

/* ─── INSTAGRAM BUTTON ───────────────────────────────────── */
.insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px 14px 16px;
    border-radius: 14px;
    background: rgba(20,20,20,0.80);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
    text-decoration: none;
    transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s;
    min-width: 0;
}
.insta-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(220,39,67,0.35);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(220,39,67,0.15);
}
.insta-btn:active { transform: scale(0.97); }

.insta-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    /* Softer IG-Gradient als Icon-Hintergrund */
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 2px 12px rgba(220,39,67,0.30);
}
.insta-btn__icon svg { display: block; }
/* Icon-Pfad weiß damit er auf dem Gradient lesbar ist */
.insta-btn__icon svg path { fill: #fff; }

.insta-btn__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.insta-btn__label {
    font-family: var(--ff-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
}
.insta-btn__handle {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .02em;
    color: var(--grey-mid);
    line-height: 1;
}

.insta-btn__arrow {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: rgba(255,255,255,0.35);
    margin-left: 4px;
    transition: transform 0.2s var(--ease), color 0.2s;
}
.insta-btn:hover .insta-btn__arrow {
    transform: translate(2px, -2px);
    color: rgba(255,255,255,0.65);
}

/* Mobile: volle Breite innerhalb des pad-Bereichs, mehr Luft nach Dots */
@media (max-width: 900px) {
    .galerie__cta {
        padding: 0 var(--pad);
        margin-top: 20px;
    }
    .insta-btn {
        width: 100%;
        border-radius: 12px;
    }
}

/* ─── PREISE ──────────────────────────────────────────────── */
.preise__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.preise__header {
    margin-bottom: 3rem;
    position: relative;
}
.preise__title {
    font-family: var(--ff-head);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--white);
    line-height: .9;
    margin-bottom: .5rem;
    text-align: left;
}
.preise__sub {
    font-size: 14px;
    color: var(--grey-mid);
    letter-spacing: .06em;
    text-align: left;
}

.preise__table-wrap {
    border: 1px solid var(--border-bright);
    border-radius: 2px;
    overflow: hidden;
    max-width: 800px;
}

.price-table {
    width: 100%;
}
.price-table thead tr {
    background: var(--surface);
    border-bottom: 1px solid var(--border-bright);
}
.price-table th {
    padding: 1rem 1.5rem;
    font-family: var(--ff-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--green);
    text-align: left;
}
.price-table th.duration,
.price-table th.price,
.price-table td.duration,
.price-table td.price {
    text-align: right;
}
.price-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background var(--fast);
}
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: var(--surface); }
.price-table tbody tr.highlight {
    background: rgba(107,155,80,0.06);
    border-color: rgba(107,155,80,0.2);
}
.price-table td {
    padding: 1.1rem 1.5rem;
    font-size: 14px;
    color: var(--grey-light);
    line-height: 1.4;
}
.price-table td:first-child { color: var(--off-white); }
.price-table td.price {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 15px;
    color: var(--green);
}

.badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .2rem .55rem;
    background: var(--green-20);
    color: var(--green-bright);
    border: 1px solid var(--green-40);
    border-radius: 1px;
    margin-left: .5rem;
    vertical-align: middle;
}

.preise__note {
    margin-top: 1rem;
    font-size: 11px;
    color: var(--grey-dark);
    line-height: 1.6;
    padding: 0 .25rem;
}

/* ─── BOOKING ─────────────────────────────────────────────── */
.booking {
    position: relative;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    border-top: 1px solid var(--border-bright);
    border-bottom: 1px solid var(--border-bright);
}
.booking__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 100% at 50% 50%, rgba(74,110,60,0.20) 0%, transparent 65%),
        var(--black);
    pointer-events: none;
}
.booking__shark-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: .04;
}
.booking__shark-bg img {
    width: 600px;
    max-width: 80%;
    filter: grayscale(1);
}
.booking__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--pad);
}
.booking__eyebrow {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.25rem;
}
.booking__title {
    font-family: var(--ff-head);
    font-size: clamp(64px, 9vw, 120px);
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: .88;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.booking__title-accent {
    color: var(--green);
    font-family: var(--ff-marker);
    font-size: clamp(48px, 7vw, 100px);
}
.booking__sub {
    font-size: 15px;
    color: var(--grey-light);
    margin-bottom: 2.5rem;
}
.booking__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─── KONTAKT ─────────────────────────────────────────────── */
.kontakt {
    background: var(--deep);
    border-top: 1px solid var(--border);
}
.kontakt__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 3rem;
}

/* Logo direkt in der ersten Spalte, über dem Label "Adresse" */
.kontakt__logo {
    margin-bottom: 1.5rem;
}
.kontakt__logo-img {
    /* Größe: präsent aber nicht dominant */
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    /* mix-blend-mode: lighten löst den schwarzen Logo-BG auf —
       verschmilzt nahtlos mit dem dunklen Section-Hintergrund.
       Kein Glow, kein Filter, kein Effekt dahinter. */
    mix-blend-mode: lighten;
}

/* Mobile-Row und Mobile-Sep sind auf Desktop neutral —
   der Container verhält sich wie normaler Flex-Child */
.kontakt__mobile-row {
    display: contents; /* unsichtbarer Wrapper — Kinder verhalten sich als direkte Flex-Kinder */
}
.kontakt__mobile-sep { display: none; } /* nur Mobile sichtbar */

.kontakt__col { flex: 1; min-width: 0; }
.kontakt__sep {
    width: 1px;
    align-self: stretch;
    min-height: 120px;
    background: var(--border-bright);
    flex-shrink: 0;
}
.kontakt__label {
    font-family: var(--ff-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
}
.kontakt__address {
    font-size: 15px;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: .75rem;
}
.kontakt__link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--grey-mid);
    transition: color var(--fast);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.kontakt__link:hover { color: var(--green); }
.kontakt__phone {
    display: block;
    font-family: var(--ff-head);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--white);
    margin-bottom: .5rem;
    transition: color var(--fast);
}
.kontakt__phone:hover { color: var(--green); }

/* Hours table */
.hours { width: 100%; }
.hours td {
    padding: .4rem 0;
    font-size: 13px;
    color: var(--grey-light);
    border-bottom: 1px solid var(--border);
}
.hours td:last-child { text-align: right; color: var(--grey-mid); }
.hours tr.today td { color: var(--green) !important; font-weight: 600; }
.hours td.closed { color: var(--grey-dark) !important; }

/* ─── KONTAKT — Logo oben links ───────────────────────────── */
.kontakt__logo {
    grid-column: 1 / -1; /* volle Breite über alle Spalten */
    margin-bottom: 2rem;
}
.kontakt__logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 0 14px rgba(107,190,60,0.25));
}

/* ─── FOOTER — Vollflächiger Brand-Endframe ───────────────── */
.footer {
    position: relative;
    overflow: hidden;
    /* Nahtloser Übergang von der Kontakt-Section */
    background: var(--black);
}

/* Bild-Wrapper — vollflächig, behält Seitenverhältnis sauber */
.footer__image-frame {
    position: relative;
    width: 100%;
    /* Höhe: grosszügig, damit das Bild atmen kann */
    min-height: 320px;
    max-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Das Bild nimmt den gesamten Rahmen ein — kein Verzerren */
.footer__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    /* mix-blend-mode: lighten löst den schwarzen Hintergrund des Logos auf —
       er verschmilzt nahtlos mit dem Footer-Schwarz */
    mix-blend-mode: lighten;
    /* Subtiler grüner Glow — hält die Markenfarbe präsent */
    filter: drop-shadow(0 0 40px rgba(107,190,60,0.15));
    /* Leichter Sättigungsboost damit Grüntöne knackiger wirken */
    filter: saturate(1.15) drop-shadow(0 0 30px rgba(107,190,60,0.12));
    transition: filter 0.6s ease;
}

/* Oben: schwarzer Fade-In — verbindet nahtlos mit Kontakt-Section */
/* Unten: schwarzer Fade-Out — sauberer Abschluss */
.footer__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(10,10,10,0.75) 0%,
            rgba(10,10,10,0.00) 30%,
            rgba(10,10,10,0.00) 70%,
            rgba(10,10,10,0.85) 100%
        );
    pointer-events: none;
}

/* Copyright — minimal, clean, direkt unter dem Bild */
.footer__bottom {
    background: var(--black);
    border-top: 1px solid rgba(107,180,60,0.08);
    text-align: center;
    padding: 1rem var(--pad);
}
.footer__bottom p {
    font-size: 11px;
    letter-spacing: .06em;
    color: var(--grey-dark);
}
.footer__bottom a {
    color: inherit;
    transition: color var(--fast);
}
.footer__bottom a:hover { color: var(--grey-light); }

/* Responsive */
@media (max-width: 900px) {
    .footer__image-frame { min-height: 220px; max-height: 380px; }
    .kontakt__logo-img   { width: 80px; height: 80px; }
}
@media (max-width: 640px) {
    .footer__image-frame { min-height: 160px; max-height: 280px; }
}

/* ─── STICKY BAR (mobile) — Floating Pill ────────────────── */
.sticky-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    /* Kein Hintergrund auf der Bar selbst — die Buttons floaten */
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    pointer-events: none; /* Bar-Fläche selbst nicht klickbar */
    /* Sanftes Fade nach unten damit Bar aus Seite "wächst" */
    background: linear-gradient(to top,
        rgba(8,8,8,0.85) 0%,
        rgba(8,8,8,0.40) 60%,
        transparent 100%);
}
.sticky-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    pointer-events: auto;
}

/* Alle drei Buttons — identische Cloud/Pill-Kapsel */
.sticky-bar__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
    max-width: 110px;
    height: 58px;
    border-radius: 18px;
    font-family: var(--ff-head);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
    /* Glassmorphism-Pill */
    background: rgba(22,22,22,0.72);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow:
        0 4px 24px rgba(0,0,0,0.45),
        0 1px 0 rgba(255,255,255,0.05) inset;
    transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
                color 0.18s, background 0.18s;
}
.sticky-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.sticky-bar__icon svg { display: block; }
.sticky-bar__label { line-height: 1; }

/* Press-Feedback */
.sticky-bar__btn:active {
    transform: scale(0.91);
    box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

/* Anrufen — neutrales Pill, leichtes Weiß-Highlight beim Tap */
.sticky-bar__btn--call:active {
    color: var(--white);
    background: rgba(40,40,40,0.82);
}

/* Grüner Blink-Effekt wenn User ganz unten angekommen ist.
   Kontrolliert, nicht aggressiv — grün/normal im langsamen Wechsel. */
@keyframes phonePulse {
    0%, 100% {
        color: rgba(255,255,255,0.70);
        border-color: rgba(255,255,255,0.09);
        box-shadow: 0 4px 24px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.05) inset;
    }
    50% {
        color: var(--green);
        border-color: rgba(107,190,60,0.35);
        box-shadow: 0 4px 24px rgba(0,0,0,0.45), 0 0 12px rgba(107,190,60,0.30), 0 1px 0 rgba(255,255,255,0.05) inset;
    }
}
.sticky-bar__btn--call.is-pulsing {
    animation: phonePulse 1.8s ease-in-out infinite;
}

/* WhatsApp — dezentes Grün beim Tap */
.sticky-bar__btn--wa:active {
    color: #25D366;
    border-color: rgba(37,211,102,0.25);
    background: rgba(15,35,18,0.85);
    box-shadow: 0 4px 20px rgba(37,211,102,0.15), 0 1px 0 rgba(255,255,255,0.04) inset;
}

/* Termin — grüner Akzent-Pill */
.sticky-bar__btn--book {
    color: var(--black);
    background: var(--green);
    border-color: transparent;
    box-shadow:
        0 4px 24px rgba(107,155,80,0.35),
        0 1px 0 rgba(255,255,255,0.18) inset;
}
.sticky-bar__btn--book .sticky-bar__label { color: rgba(0,0,0,0.75); }
.sticky-bar__btn--book:active {
    transform: scale(0.91);
    background: var(--green-bright);
    box-shadow: 0 2px 12px rgba(107,155,80,0.25);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .nav__links { display: none; }
    .nav__cta   { display: none; }
    .nav__burger { display: flex; }

    .hero__layout {
        grid-template-columns: 1fr;
        padding-bottom: 8rem;
    }
    .hero__media { display: none; }
    .hero__headline { font-size: clamp(60px, 14vw, 88px); }

    .leistungen__grid { grid-template-columns: 1fr; }

    .studio__inner { grid-template-columns: 1fr; }

    .galerie__item--wide { grid-column: span 1; /* Desktop-Fallback */ }

    .kontakt__inner {
        flex-direction: column;
        gap: 0;
    }
    .kontakt__sep { width: 100%; height: 1px; min-height: auto; align-self: auto; }

    /* Desktop-Separator zwischen Adresse und Öffnungszeiten auf Mobile verstecken —
       der mobile-row Container übernimmt die Trennung */
    .kontakt__sep--desktop-only { display: none; }

    /* Mobile-Row: Adresse links, Öffnungszeiten rechts — nebeneinander */
    .kontakt__mobile-row {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        padding: 2rem 0 1.5rem;
    }

    /* Linke Spalte: Logo + Adresse */
    .kontakt__mobile-row > .kontakt__col:first-child {
        flex: 0 0 42%;
        padding-right: 1rem;
    }

    /* Rechte Spalte: Öffnungszeiten — etwas mehr Platz */
    .kontakt__col--hours {
        flex: 1;
        padding-left: 1rem;
    }

    /* Logo auf Mobile etwas kleiner damit es nicht dominiert */
    .kontakt__logo-img { width: 72px; height: 72px; }
    .kontakt__logo     { margin-bottom: 1rem; }

    /* Urbane SVG-Trennlinie — sichtbar nur auf Mobile */
    .kontakt__mobile-sep {
        display: block;
        flex: 0 0 16px;
        align-self: stretch;
        padding: 0 7px;
    }
    .kontakt__mobile-sep svg {
        width: 2px;
        height: 100%;
        min-height: 200px;
        display: block;
    }

    /* Stunden-Tabelle auf Mobile kompakter */
    .kontakt__col--hours .hours td {
        font-size: 11.5px;
        padding: .28rem 0;
    }

    /* Kontakt-Spalte (Telefon) auf Mobile ausblenden */
    .kontakt__col--phone { display: none; }
    .kontakt__sep--before-phone { display: none; }

    /* Kompakte Bottom-Bereiche auf Mobile */
    .booking  { padding-top: 52px; padding-bottom: 52px; }
    .kontakt  { padding-top: 40px; padding-bottom: 40px; }
    .footer__bottom { padding: 1rem var(--pad); }

    .sticky-bar { display: block; }
    /* body-padding = Pill-Buttons Höhe (58px) + Padding oben/unten (20px) + safe-area */
    body { padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }

    :root { --vr-desk: 64px; }
}

/* ─── GALERIE: MOBILE SWIPER ──────────────────────────────── */
/* Kein Blitz im Galerie-Bereich */
.galerie { isolation: isolate; }
.galerie .galerie__atmo { z-index: 0; }

/* Mobile Dots */
.galerie__dots {
    display: none; /* wird per JS auf mobile eingeblendet */
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}
.galerie__dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    transition: background 0.25s, transform 0.25s, width 0.25s;
    flex-shrink: 0;
}
.galerie__dot.is-active {
    background: var(--green);
    width: 18px;
    border-radius: 3px;
}

@media (max-width: 900px) {
    .galerie__slider-wrap {
        /* Negativer Margin damit Bilder bis zum Rand gehen und angeschnitten werden */
        margin-left: calc(-1 * var(--pad));
        margin-right: calc(-1 * var(--pad));
    }
    .galerie__grid {
        /* Horizontaler Scroll-Slider */
        display: flex;
        flex-direction: row;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 10px;
        /* Padding damit erstes Bild etwas eingerückt ist und nächstes angeschnitten sichtbar */
        padding: 0 var(--pad);
        padding-right: calc(var(--pad) + 24px); /* zeigt an, dass rechts mehr kommt */
        margin-bottom: 0;
        /* Höhe fest damit Slider nicht zusammenbricht */
        height: 280px;
        align-items: stretch;
    }
    .galerie__grid::-webkit-scrollbar { display: none; }

    /* Alle Items im Slider gleich groß — Hochformat */
    .galerie__item {
        flex: 0 0 70vw;
        max-width: 280px;
        min-width: 200px;
        height: 100%;
        scroll-snap-align: start;
        border-radius: 10px;
        /* Immer sichtbares Overlay auf Mobile */
    }
    .galerie__item--tall,
    .galerie__item--wide {
        /* Desktop-Spanning auf Mobile aufheben */
        grid-row: unset;
        grid-column: unset;
    }
    /* Overlay auf Mobile immer sichtbar (kein Hover) */
    .galerie__item .galerie__item-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(10,10,10,0.80) 0%, transparent 55%);
    }
    /* Dots sichtbar auf Mobile */
    .galerie__dots { display: flex; }
}

@media (max-width: 640px) {
    .galerie__grid {
        height: 260px;
    }
    .galerie__item {
        flex: 0 0 78vw;
    }
}

@media (max-width: 640px) {
    .hero__stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .hero__stat-sep { width: 40px; height: 1px; }
    .booking__actions { flex-direction: column; align-items: center; }
    .hero__actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════
   STILMITTEL 3 — INK DRIP
   Einzelne Tintenspur, rechts im Studio-Bereich schwebend.
   Erscheint beim Scroll-Eintritt via clip-path reveal.
   Wirkt wie Tinte, die an einer Betonwand herunterläuft.
   ══════════════════════════════════════════════════════════ */
.ink-drip {
    position: absolute;
    right: clamp(2rem, 5vw, 6rem);
    top: 8%;
    width: 24px;
    height: 420px;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    /* Reveal: clip-path von oben nach unten — wirkt wie echter Tintenfluss */
    clip-path: inset(0 0 100% 0);
    transition:
        opacity   0.4s ease,
        clip-path 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ink-drip.visible {
    opacity: 1;
    clip-path: inset(0 0 0% 0);
}

@media (max-width: 900px) {
    .ink-drip { display: none; }
}

/* ══════════════════════════════════════════════════════════
   STILMITTEL 4 — CURSOR INK TRAIL
   Beim Hovern über die Seite hinterlässt der Cursor eine
   ultraflüchtige grüne Partikel-Spur. Kleine Punkte die
   sofort verblassen — wie Tinte auf einer Oberfläche.
   Nur Desktop. Nie dominant. Kaum wahrnehmbar bis man
   gezielt hinschaut — dann wirkt es sehr hochwertig.
   ══════════════════════════════════════════════════════════ */
.cursor-dot {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9990;
    transform: translate(-50%, -50%);
    background: rgba(107, 190, 60, 0.7);
    animation: cursorFade 0.55s ease-out forwards;
    will-change: opacity, transform;
}

@keyframes cursorFade {
    0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(1);   }
    100% { opacity: 0;   transform: translate(-50%, -50%) scale(0.2); }
}

/* ─── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .atmo-layer__fog,
    .hero__logo-big,
    .hero__logo-glow,
    .hero__scroll-line { animation: none; }
    [data-reveal] { transition: opacity 0.3s; transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   TATTOO ANFRAGE (2026-09, ersetzt die frühere feste Preisliste
   — jedes Tattoo wird individuell kalkuliert, Formular sammelt
   alle nötigen Angaben + Fotos). Nutzt ausschließlich bestehende
   Tokens (Farben/Fonts/Radius/Spacing/Ease) — keine neue
   Designsprache.
   ═══════════════════════════════════════════════════════════ */
.tattoo-anfrage {
    position: relative;
    z-index: 1;
    padding-top:    var(--vr-desk);
    padding-bottom: var(--vr-desk);
}
.tattoo-anfrage__atmo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(to bottom, var(--black), rgba(16,22,14,0.95), var(--black));
}
.tattoo-anfrage__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.tattoo-anfrage__header { margin-bottom: 2.5rem; }
.tattoo-anfrage__title {
    font-family: var(--ff-head);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--white);
    line-height: .95;
    margin: .75rem 0 .5rem;
}
.tattoo-anfrage__sub {
    font-size: 14px;
    color: var(--grey-mid);
    letter-spacing: .06em;
}

.tattoo-anfrage__intro { max-width: 720px; margin-bottom: 3.5rem; }
.tattoo-anfrage__intro-title {
    font-family: var(--ff-head);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 1rem;
}
.tattoo-anfrage__intro p {
    font-size: 14.5px;
    color: var(--grey-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.tattoo-anfrage__factors {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem 1.5rem;
    margin: 0 0 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border-bright);
    border-radius: 2px;
}
.tattoo-anfrage__factors li {
    font-size: 13px;
    color: var(--grey-light);
    padding-left: 1rem;
    position: relative;
}
.tattoo-anfrage__factors li::before { content: '—'; position: absolute; left: 0; color: var(--green); }
.tattoo-anfrage__price-tag {
    display: inline-block;
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--green);
    border: 2px solid var(--green);
    border-radius: 2px;
    padding: .6rem 1.4rem;
    margin: .5rem 0 1.25rem;
}

/* ── Formular ─────────────────────────────────────────────── */
.tform { max-width: 820px; }
.tform__section {
    border: 1px solid var(--border-bright);
    border-radius: 2px;
    background: var(--surface);
    padding: 1.75rem clamp(1.25rem, 3vw, 2.25rem);
    margin-bottom: 1.5rem;
}
.tform__legend {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--ff-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding: 0;
}
.tform__legend-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    background: var(--green);
    color: var(--black);
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}
.tform__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1.25rem; }
.tform__field { display: flex; flex-direction: column; gap: .4rem; }
.tform__field--wide { grid-column: 1 / -1; }
.tform__field label {
    font-family: var(--ff-body);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--grey-light);
    letter-spacing: .02em;
}
.tform__hint-inline { color: var(--grey-dark); font-weight: 400; }
.tform input[type="text"],
.tform input[type="email"],
.tform input[type="tel"],
.tform input[type="number"],
.tform select,
.tform textarea {
    width: 100%;
    background: var(--dark);
    border: 1px solid var(--border-bright);
    border-radius: 2px;
    color: var(--off-white);
    font-family: var(--ff-body);
    font-size: 14px;
    padding: .75rem .9rem;
    transition: border-color var(--fast) var(--ease);
}
.tform textarea { resize: vertical; min-height: 84px; }
.tform input:focus, .tform select:focus, .tform textarea:focus { outline: none; border-color: var(--green); }
.tform select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%236B9B50' stroke-width='1.8'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .8rem center;
    background-size: 14px;
    padding-right: 2.2rem;
}
.tform__hint { font-size: 12px; color: var(--grey-dark); line-height: 1.6; margin: .5rem 0 1rem; }

.tform__checkbox {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    cursor: pointer;
    margin-bottom: .85rem;
    font-size: 13.5px;
    color: var(--grey-light);
    line-height: 1.5;
}
.tform__checkbox input[type="checkbox"] {
    accent-color: var(--green);
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    cursor: pointer;
}
.tform__checkbox a { color: var(--green); }
.tform__checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .3rem 1.25rem; margin-bottom: 1.25rem; }

.tform__guide {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}
.tform__guide-title {
    font-family: var(--ff-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: .6rem;
}
.tform__guide p { font-size: 13px; color: var(--grey-light); line-height: 1.6; margin-bottom: .6rem; }
.tform__guide ol { padding-left: 1.2rem; }
.tform__guide li { font-size: 13px; color: var(--grey-light); line-height: 1.7; }
.tform__guide li strong { color: var(--white); }

.tform__dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    border: 1.5px dashed var(--border-bright);
    border-radius: 2px;
    padding: 2rem 1rem;
    text-align: center;
    color: var(--grey-mid);
    cursor: pointer;
    transition: border-color var(--mid) var(--ease), background var(--mid) var(--ease), color var(--mid) var(--ease);
}
.tform__dropzone p { font-size: 13px; margin: 0; }
.tform__dropzone span { color: var(--green); text-decoration: underline; }
.tform__dropzone-sub { font-size: 11px !important; color: var(--grey-dark) !important; margin-top: .2rem !important; }
.tform__dropzone:hover,
.tform__dropzone:focus-visible,
.tform__dropzone.is-dragover {
    border-color: var(--green);
    background: var(--green-fog);
    color: var(--green-bright);
    outline: none;
}

.tform__previews { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .9rem; }
.tform__preview {
    position: relative;
    width: 76px; height: 76px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--border-bright);
    background: var(--dark);
    flex-shrink: 0;
}
.tform__preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tform__preview--file { display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--grey-mid); text-align: center; padding: 4px; }
.tform__preview-remove {
    position: absolute; top: 2px; right: 2px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(10,10,10,0.85);
    border: 1px solid var(--border-bright);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; line-height: 1;
    cursor: pointer;
}
.tform__preview-remove:hover { background: var(--green); color: var(--black); border-color: var(--green); }

.tform__submit { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 15px; margin-top: .5rem; }
.tform__submit:disabled { opacity: .5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.tform__status { margin-top: .9rem; font-size: 13px; color: var(--grey-light); min-height: 1.2em; }
.tform__status.is-error { color: #e0665a; }

.tform__success {
    max-width: 560px;
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid var(--green-40);
    border-radius: 2px;
    background: var(--green-fog);
    color: var(--green-bright);
}
.tform__success svg { margin-bottom: 1rem; color: var(--green); }
.tform__success h3 {
    font-family: var(--ff-head);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--white);
    margin-bottom: .75rem;
}
.tform__success p { font-size: 14px; color: var(--grey-light); line-height: 1.6; margin-bottom: .5rem; }

@media (max-width: 900px) {
    .tattoo-anfrage__factors { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .tform__grid, .tform__checkbox-grid { grid-template-columns: 1fr; }
    .tform__section { padding: 1.4rem 1.1rem; }
}
