/* ==========================================================================
   LOKALE FONTS (Version v21 & v31)
   ========================================================================== */

/* Cormorant Garamond v21 */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/cormorant-garamond-v21-latin-700.woff2') format('woff2');
}

/* Montserrat v31 */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/montserrat-v31-latin-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/montserrat-v31-latin-500.woff2') format('woff2');
}

/* ── NATIVE FARBÜBERGÄNGE via @property ────────────────────────────────────
   Typisierte Custom Properties erlauben dem Browser, Farben nativ zu
   interpolieren — GPU-beschleunigt, kein GSAP-Overhead, kein Neustart
   bei Lenis-Overshoot. Fallback (ältere Browser): sofortiger Farbwechsel.
   ─────────────────────────────────────────────────────────────────────── */
@property --bg-color {
    syntax: '<color>';
    inherits: true;
    initial-value: #EFE5DA;
}

@property --text-color {
    syntax: '<color>';
    inherits: true;
    initial-value: #1f3d35;
}

:root {
    /* KEINE Zeit-Transition auf den Farbvariablen mehr: Der Farbübergang wird
       in script.js (initThemeSwitching) per ScrollTrigger-Scrub direkt ans
       Scrollen gekoppelt — eine CSS-Transition würde die frameweisen Updates
       verzögern und den Verlauf hinter dem Scroll herhinken lassen. */

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    /* --gold: #c5a059; */
    --gold: #7B5024;
    /* ← Goldton anpassen (z.B. #b8933a dunkler, #d4b870 heller) */
    --accent: var(--gold);
    --text-dark: #1f3d35;
    /* ← Dunkelgrün: Primärfarbe für Text + Hintergründe */
    --text-color: var(--text-dark);
    /* --bg-creme: #f4f1ee; */
    --bg-creme: #EFE5DA;
    /* ← Cremeweiß: Hellton der Seite */
    --bg-color: var(--bg-creme);
    color-scheme: only light;
    --frame-width: 1800px;

    /* ── TYPOGRAFIE-SKALA ──────────────────────────────────────────────────
       Alle Texte nutzen diese Variablen. Hier zentral anpassen:
       --fs-body:    Fliesstext-Grösse  [1.0rem = kleiner, 1.25rem = grösser]
       --fs-body-lg: Grösserer Fliesstext (aktuell ungenutzt, für spätere Nutzung)
       --fs-label:   Abschnitts-Labels (VISION, METHODIK etc.)
       --lh-body:    Zeilenabstand Fliesstext [1.5 = kompakter, 1.8 = luftiger]
       --ls-label:   Buchstabenabstand Labels [0.3em = enger, 0.5em = weiter]
       ─────────────────────────────────────────────────────────────────── */
    --fs-body: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
    /* identisch zu body font-size — skaliert mit Viewport */
    --fs-body-lg: 1.25rem;
    --fs-label: 1.72rem;
    --fs-button: 1rem;
    --lh-body: 1.65;
    --ls-label: 0.4em;
    --ls-button: 0.22em;
}

/* ==========================================================================
   TYPOGRAFIE-FUNDAMENT — klare Hierarchie (Punkt 1)
   ========================================================================== */
.section-label {
    font-family: var(--font-sans);
    font-size: var(--fs-label);
    font-weight: 500;
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 24px;
}

.serif-display {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.005em;
}

.serif-display.alignment-left {
    text-align: left;
}

.gold-text {
    color: var(--gold);
}

.gold-gradient-text {
    background: linear-gradient(135deg, #d9b978 0%, #c5a059 55%, #a78443 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-bold {
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 8px;
}

.premium-link {
    color: var(--bg-creme);
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.35);
    transition: all 0.3s ease;
}

.premium-link:hover {
    border-bottom-color: var(--gold);
    opacity: 0.85;
}

.legal-content {
    padding-top: 120px;
}

.vision-pure-section {
    padding: 8vh 5vw 12vh;
    min-height: auto;
}

.vision-content-minimal {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.vision-content-minimal .serif-display {
    margin-bottom: 40px;
}

.legal-text-block {
    font-family: var(--font-sans);
    font-size: var(--fs-body);
    line-height: 1.75;
    font-weight: 400;
}

.legal-text-block p {
    margin-bottom: 14px;
}

.legal-text-block ul {
    font-family: var(--font-sans);
    font-size: var(--fs-body);
}

/* 1. BASE & CURSOR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Nur für Screenreader/Suchmaschinen sichtbar (z.B. Kontext-Zusatz im Hero-H1) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999 !important;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: exclusion;
    opacity: 0;
    /* Neu: Versteckt den Cursor beim Laden */
    transition: opacity 0.3s ease;
    /* Macht das Einblenden geschmeidig */
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
}

.cursor-circle {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 1px solid white;
    border-radius: 50%;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cursor-active .cursor-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: none;
    font-family: var(--font-sans);
    /* Fliesstext 18–20px Desktop / ~16px Mobile (Punkt 1) */
    /* Alt Schriftgrösse
    font-size: clamp(1rem, 0.93rem + 0.35vw, 1.2rem); */
    /* Neu: 1.125rem als Startwert für 18px */
    font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
    line-height: var(--lh-body);
    font-weight: 400;
    overflow-x: hidden;
    cursor: none;
    background-image: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    margin: 0;
    /* Straffere Abstände: 15vh → 10vh (Punkt 2) */
    padding: 10vh 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* WICHTIG: Hintergrund auf transparent, damit .noise sichtbar bleibt */
    background-color: transparent !important;
    /* WICHTIG: Erlaubt den Sektionen, die globale Hintergrundfarbe zu zeigen
    background-color: var(--bg-color);
    /* Verhindert "Blitzer" zwischen den Sektionen */
    transition: none !important;
    /* Verhindert Konflikte mit GSAP */
    margin-top: -1px;
    z-index: 1;
}

a,
button,
.accordion-header,
.close-modal {
    cursor: none !important;
}

.social-sidebar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10001;
    color: white;
    mix-blend-mode: difference;
    /* Invertiert Farben automatisch */
}

.social-sidebar a {
    color: inherit;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-sidebar a svg {
    width: 1.1rem;
    height: 1.1rem;
    display: block;
    /* mix-blend-mode direkt auf dem SVG: bleibt gegen den echten Seitenhintergrund
       und invertiert korrekt — ohne Isolations-Effekt wie bei mix-blend-mode auf <a> */
    mix-blend-mode: difference;
}

.social-sidebar a:hover {
    opacity: 0.5;
}

/* ── TELEFON-POPUP ──────────────────────────────────────────────────────────
   Am body angehängt (via JS) → position: fixed damit es beim Scrollen
   am Viewport bleibt. Koordinaten: Sidebar right:20px + ~50px = right:70px.
   Farben hardcoded — kein mix-blend-mode / Theme-Switch-Einfluss.
   ─────────────────────────────────────────────────────────────────────── */
#phone-popup {
    position: fixed;
    right: 70px;
    bottom: 20px;
    background: #1a2e25;
    border: 1px solid rgba(197, 160, 89, 0.55);
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    z-index: 10002;
}

#phone-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.phone-popup-number {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #EFE5DA;
    letter-spacing: 0.12em;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.phone-popup-btn {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    color: #EFE5DA;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    cursor: none;
    text-transform: uppercase;
    opacity: 0.75;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.phone-popup-btn:hover {
    color: #c5a059;
    opacity: 1;
}

/* Loading Seite nur einmalig anzeigen */
/* ── LOADING PAGE: LAYOUT ───────────────────────────────────────────────────
   #site-loader: Fullscreen-Overlay
   align-items: flex-end → Inhalt am unteren Rand (wie Vorlage)
   justify-content: flex-start → Inhalt links ausgerichtet
   ─────────────────────────────────────────────────────────────────────── */
#site-loader {
    position: fixed;
    inset: 0;
    z-index: 200000;
    background-color: #1a1a1a;
    display: flex;
    align-items: flex-end;
    /* war: center — Text unten wie Vorlage */
    justify-content: center;
    /* war: flex-start */
    overflow: hidden;
    pointer-events: all;
    touch-action: none;
}

/* Hintergrundbild mit Overlay für Lesbarkeit */
.loader-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
        url('img/bg-texture_1920.jpg') no-repeat center/cover;
    /* WebP mit JPEG-Fallback: Browser ohne image-set/WebP bleiben auf der Zeile oben */
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
        image-set(url('img/bg-texture_1920.webp') type('image/webp'),
            url('img/bg-texture_1920.jpg') type('image/jpeg'));
    /* [Anpassen: 0.45 = Abdunklung, 0.6 dunkler] */
    z-index: 1;
    will-change: transform, opacity;
    transform: scale(1);
}

/* ── LOADING PAGE: CONTENT-WRAPPER ─────────────────────────────────────────
   Breite: 100% — damit die Zeilen die volle Bildschirmbreite nutzen
   Padding: 5vw links/rechts, 6vh unten — wie Vorlage
   [Anpassen: 6vh → mehr/weniger Abstand vom unteren Rand]
   ─────────────────────────────────────────────────────────────────────── */
.loader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    /* war: left */
    width: 100%;
    /* war: 90% — volle Breite für 2-Zeilen-Layout */
    padding: 0 5vw 6vh;
    /* links/rechts 5vw, unten 6vh [Anpassen] */
}

/* ── LOADING PAGE: ZITAT-TEXT ──────────────────────────────────────────────
   GESAMTGRÖSSE: clamp(MIN, IDEAL, MAX)
   - Min:  1.4rem  [Mobile-Minimum]
   - Ideal: 4.2vw  [← Haupthebel: kleiner = mehr Spielraum bei schmalen Screens]
   - Max:  6.5rem  [Desktop-Maximum]

   Jede Zeile ist ein .lq-line-Block mit white-space:nowrap → kein ungewollter Umbruch.
   ─────────────────────────────────────────────────────────────────────── */
.loader-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.0rem, 3.9vw, 6.5rem);
    /* [Anpassen: 2.9vw — reduziert wegen längerem Text. Faustregel: je länger der Text, desto kleiner der vw-Wert] */
    /* [Anpassen: 4.2vw → kleiner/grösser] */
    line-height: 1.1;
    /* [Anpassen: 1.0 enger, 1.3 weiter] */
    text-shadow:
        0 2px 24px rgba(0, 0, 0, 0.75),
        0 0 8px rgba(0, 0, 0, 0.4);
    color: var(--bg-creme);
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    max-width: none;
    text-align: center;
}

/* Jede Zeile: eigener Block, kein Umbruch erlaubt
   display: block stellt sicher, dass Zeile 1 und 2 untereinander stehen */
.loader-quote .lq-line {
    display: block;
    white-space: nowrap;
    /* verhindert Zeilenumbruch innerhalb einer Zeile */
}

/* Grosse Hauptwörter: Sans-Serif, Uppercase */
.loader-quote .lq-word {
    /* font-family: 'Montserrat', sans-serif; */
    font-family: 'Cormorant Garamond', sans-serif;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.08em;
    /* [Anpassen: 0.04em–0.15em] */
    text-transform: uppercase;
}

/* Kursive Serif-Grossbuchstaben: KEINE ZUFÄLLE / Entscheidungen */
.loader-quote .lq-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Kleine Verbindungswörter: sind / auch
   GRÖSSE: 0.55em [Anpassen: 0.45em–0.65em] */
.loader-quote .lq-connector {
    font-family: 'Cormorant Garamond', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 0.55em;
    /* [Anpassen: 0.45em–0.65em] */
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Schlüssel: zentriert unter dem Text
   margin-top: 40px [Anpassen für mehr/weniger Abstand] */
.loader-key-wrapper {
    margin-top: 40px;
    text-align: center;
    /* zentriert den Schlüssel unabhängig vom linksausgerichteten Text */
}

.key-gold {
    /* FLUIDES DESIGN:
       Min: 120px (für sehr kleine Handys)
       Ideal: 15vw (15% der Bildschirmbreite)
       Max: 250px (damit er auf Desktop nicht riesig wird)
       [Anpassen: 20vw → grösser/kleiner]
    */
    width: clamp(160px, 18vw, 300px);
    height: auto;
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    max-width: 100%;
}


/* ── LOADER: MOBILE FILM-CREDITS ───────────────────────────────────────────
   Cineastischer Abspann: Text scrollt langsam von unten nach oben.
   Maske oben/unten blendet den Text weich ein und aus — wie im Kino.
   ─────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* Kinoleinwand-Effekt: Gradient-Overlays via Pseudo-Elemente statt mask-image.
       mask-image auf position:fixed kollidiert in Safari mit background-clip:text
       (NINA/SPRENGER Textur-Effekt) und bricht den hero-title-wrapper. */
    #site-loader::before,
    #site-loader::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 22%;
        z-index: 3;
        pointer-events: none;
    }

    #site-loader::before {
        top: 0;
        background: linear-gradient(to bottom, #1a1a1a 0%, transparent 100%);
    }

    #site-loader::after {
        bottom: 0;
        background: linear-gradient(to top, #1a1a1a 0%, transparent 100%);
    }

    #site-loader {
        align-items: center;
    }

    .loader-content {
        padding: 0 10vw;
        padding-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .loader-quote {
        font-size: clamp(2.2rem, 9vw, 4.2rem);
        line-height: 1.55;
        white-space: normal;
        text-align: center;
        letter-spacing: 0.01em;
    }

    .loader-quote .lq-line {
        white-space: normal;
        display: block;
        margin-bottom: 0.25em;
    }

    .loader-quote .lq-connector {
        font-size: 0.65em;
        opacity: 1;
        letter-spacing: 0.2em;
    }

    .loader-key-wrapper {
        position: absolute;
        bottom: 8vh;
        left: 0;
        right: 0;
        margin: 0;
        text-align: center;
        z-index: 4;
    }
}

/* Hintergrund Rauschen aktuell noch nicht optimal */
.noise {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.15;
    mix-blend-mode: overlay;
    /* Reagiert dynamisch auf die Farbe darunter */
    filter: none;
    /* Korrigierte URL: Der Namespace ist nun vollständig */
    background-image: url('img/cardboard.png');
    background-size: 150px 150px;
    background-repeat: repeat;
    /* Performance-Booster */
    transform: translateZ(0);
}

/* Noise auf Touch-Geräten deaktivieren: das viewportfüllende fixed-Overlay
   mit mix-blend-mode erzwingt pro Scroll-Frame ein Full-Screen-Compositing —
   auf Mobil-GPUs eine der Hauptursachen für Ruckeln */
@media (hover: none) {
    .noise {
        display: none;
    }
}


/* ── NAVIGATION ────────────────────────────────────────────────────────────
   top: 40px   → Abstand vom oberen Rand [Anpassen: 20px–60px]
   font-size: 10px  → Schriftgrösse Nav [Anpassen: 9px–13px]
   letter-spacing: 4px  → Buchstabenabstand [Anpassen: 2px–6px]
   ─────────────────────────────────────────────────────────────────────── */
.top-nav {
    position: fixed;
    top: 40px;
    width: 100%;
    padding: 0 5vw;
    display: flex;
    justify-content: space-between;
    z-index: 100005 !important;
    color: var(--text-color);
    font-size: 10px;
    letter-spacing: 4px;
    /* Keine eigene color-Transition: --text-color animiert bereits auf :root —
       eine zusätzliche Transition liesse die Nav dem restlichen Text nachhinken */
    pointer-events: none;
}

.nav-left,
.nav-right {
    /* Reaktiviert die Klickbarkeit für die eigentlichen Inhalte */
    pointer-events: auto;
}

.content-wrapper {
    width: 100%;
    max-width: 1800px;
    /* Deine gewünschte Maximalbreite */
    margin: 0 auto;
    /* Zentriert den Inhalt bei Bildschirmen > 1800px */
    position: relative;
}

/* 2. LAYOUT & HERO - OPTIMIERT */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    overflow: hidden;
    /* Verhindert horizontales Scrollen durch die Animation */
}

.hero-title-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Semantischer H1-Wrapper (enthält NINA + SPRENGER).
   display:contents entfernt das Element aus dem Box-Tree,
   damit die beiden Spans sich weiterhin wie zuvor verhalten. */
.hero-h1 {
    margin: 0;
    padding: 0;
    display: contents;
}

/* ── HERO TITEL (NINA / SPRENGER) ──────────────────────────────────────────
   PERFORMANCE-HINWEIS für ältere Desktops:
   Folgende Eigenschaften sind GPU-intensiv und können bei schwacher Hardware
   zu Ruckeln führen — Reihenfolge nach Impact:

   1. mix-blend-mode: multiply  → erzwingt einen eigenen Compositing-Layer.
      Falls es ruckelt: auf 'normal' oder 'screen' wechseln.

   2. background-clip: text + background-image (Textur)  → wird bei jedem
      Scroll-Frame neu berechnet. Fix: will-change: transform bleibt,
      aber im Notfall background-image entfernen und color stattdessen nutzen.

   3. scrub: 0.5 (in script.js)  → federnde Bewegung kostet CPU.
      Fix: scrub: 1 oder scrub: true für linearere, billigere Animation.

   SCHRIFTGRÖSSE: clamp(MIN_REM, MITTEL_VW, MAX_REM)
   - Min: 4.5rem    [Anpassen für Mobile]
   - Mitte: 14.09vw [Anpassen: kleinerer % = kleiner auf Desktop]
   - Max: 35rem      [Anpassen für sehr grosse Bildschirme]

   ZEILENHÖHE: 0.85 [Anpassen: 0.8–1.0, höher = mehr Abstand zwischen NINA/SPRENGER]
   ─────────────────────────────────────────────────────────────────────── */
.huge-title {
    font-family: var(--font-serif);
    font-size: clamp(4.5rem, 1.1818rem + 14.0909vw, 35rem);
    line-height: 0.85;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    background-image: url('img/bg_hero_2400.jpg');
    /* WebP mit JPEG-Fallback (−56% Dateigrösse, LCP-relevant) */
    background-image: image-set(url('img/bg_hero_2400.webp') type('image/webp'),
            url('img/bg_hero_2400.jpg') type('image/jpeg'));
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    width: 100%;
    display: block;
    white-space: nowrap;
    letter-spacing: 0.02em;
    overflow: visible;
    padding-right: 0.1em;
    margin-right: -0.06em;
    mix-blend-mode: normal;
    /* war: multiply — entfernt, da es einen teuren Compositing-Layer erzwingt und auf älteren GPUs das Hauptgrund für Ruckeln ist */
    opacity: 0.9;

    /* --- PERFORMANCE BOOSTER --- */
    will-change: transform;
    transform: translateZ(0);
    /* Erzwingt GPU-Rendering */
    backface-visibility: hidden;
    /* Verhindert Flackern */
    /* perspective entfernt: erzeugte einen 3D-Kontext ohne 3D-Inhalte —
       konnte beim Transformieren Re-Rasterisierungs-Sprünge auslösen */
}

/* WICHTIG: Eigene Blöcke für die Animationselemente */
.marquee-left {
    text-align: left !important;
    /* Optional: Ein wenig Abstand zum Rand */
    padding-left: 5vw;
    /* will-change: transform; */
}

.marquee-right {
    text-align: right !important;
    align-self: flex-end;
    /* Schiebt Sprenger nach rechts */
    padding-right: 5vw;
    /* will-change: transform; */
    /* font-size: clamp(3rem, 17vw, 35rem); */
}

/* Spezifische Korrektur für SPRENGER (1vw kleiner als NINA) */
.branding-sub {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    letter-spacing: 0.4em;
    /* Weiter Abstand zwischen Buchstaben */
    color: var(--text-dark);
    margin-top: 130px;
    /* Schiebt den Text nach unten (Design-Entscheidung) */
    position: relative;
    z-index: 10;
    /* Liegt über dem Gitter-Muster */
}

/* 3. VISION UPGRADE — Abstand oben ~30% reduziert (Punkt 4) */
.vision {
    overflow: clip;
    position: relative;
    padding: 14vh 5vw 6vh;
}

.vision-backdrop {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    font-family: var(--font-serif);
    font-size: 20vw;
    color: var(--accent);
    opacity: 0.15;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    will-change: transform, opacity;
}

.vision .content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1800px;
}

.vision .reveal-text {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.3vw, 4.2rem);
    line-height: 1.15;
    text-align: left;
    color: var(--text-color);
    font-weight: 400;
    /* Kompakter Textblock → bessere Bild/Text-Balance (Punkt 4) */
    max-width: 1400px;
    will-change: transform, opacity;
}

.vision .reveal-text em {
    font-style: italic;
    font-family: var(--font-serif);
}

.vision .reveal-text strong {
    color: var(--accent);
    font-weight: 300;
}

/* Inspiration — Abstände straffer, Fliesstext in Sans (Punkt 1+2+8) */
.inspiration-section {
    padding: 100px 5%;
    text-align: left;
}

.inspiration-section .serif-display {
    margin-bottom: 36px;
}

.inspiration-body {
    max-width: 1800px;
    margin: 0 auto 40px;
}

.inspiration-body p {
    font-family: var(--font-sans) !important;
    font-size: var(--fs-body) !important;
    line-height: var(--lh-body) !important;
    color: var(--text-color);
    font-weight: 400;
    max-width: 820px;
}

/* 5. CATEGORY GRID — volle Seitenbreite nutzen (Feedback User-Screenshot 1) */
.inspiration-section .container-wide {
    width: 100%;
    /* Aus dem 5% Section-Padding ausbrechen, damit die Kacheln die Seitenbreite besser füllen */
    margin-left: calc(-1 * (100vw - 100%) / 2 + 24px);
    margin-right: calc(-1 * (100vw - 100%) / 2 + 24px);
    max-width: none;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    width: 100%;
    padding: 0;
    max-width: none;
}

.category-item {
    position: relative;
    aspect-ratio: 4/5;
    /* von 1/1 → etwas höher, premium-editorial */
    overflow: hidden;
    display: block;
    background: var(--text-dark);
}

.cat-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    /* Füllt das Quadrat komplett aus */
    background-position: center;
    /* Zentriert das Bild */
    transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    /* Sehr weiche Animation */
}

.cat-hover-box {
    position: absolute;
    inset: 0;
    /* Deckt das ganze Quadrat ab */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(15px, 2vw, 40px);
    /* Dynamisches Padding je nach Viewport */
    text-align: center;
    z-index: 5;
    transition: background-color 0.6s ease;
    background-color: rgba(31, 61, 53, 0);
    /* Startet transparent */
}

/* Der Titel im weißen Rahmen auf dem Bild */
.hover-title {
    position: absolute;
    font-family: var(--font-sans);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    /* von 0.4em → passt lange Titel ohne Overflow */
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 13px 22px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    background: rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    text-align: center;
    font-weight: 500;
}

/* Der Block mit Beschreibung und Link (wird bei Hover sichtbar) */
.hover-box-content {
    opacity: 0;
    /* Startet unsichtbar */
    transform: translateY(15px);
    /* Startet leicht versetzt nach unten */
    pointer-events: none;
    /* Unsichtbare Links dürfen keine Taps/Klicks abfangen —
       wird bei :hover / .is-switched wieder auf auto gesetzt */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.5s ease 0.1s, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    width: 100%;
}

/* Category-Hover-Text: Sans (Fliesstext-Konsistenz Punkt 1) */
.hover-desc {
    font-family: var(--font-sans);
    color: var(--bg-creme);
    font-size: clamp(0.95rem, 1.05vw, 1.1rem);
    line-height: 1.55;
    margin-bottom: 20px;
    font-weight: 400;
    max-width: 90%;
}

.hover-link {
    font-family: var(--font-sans);
    color: var(--bg-creme);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold);
    /* Goldene Unterstreichung */
    padding-bottom: 4px;
}

/* HOVER-LOGIK: Was passiert beim Drüberfahren (Desktop) oder Umschalten (Mobile) */
.category-item:hover .cat-hover-box,
.category-item.is-switched .cat-hover-box {
    background-color: rgba(31, 61, 53, 0.98);
    /* Dunkelgrünes Overlay wird sichtbar */
}

.category-item:hover .hover-title,
.category-item.is-switched .hover-title {
    opacity: 0;
    /* Titel verschwindet */
    transform: scale(0.9);
    /* Titel wird dabei kleiner */
    pointer-events: none;
    /* Titel reagiert nicht mehr auf Maus */
}

.category-item:hover .hover-box-content,
.category-item.is-switched .hover-box-content {
    opacity: 1;
    /* Text wird sichtbar */
    transform: translateY(0);
    /* Text fährt an Zielposition */
    pointer-events: auto;
    /* Link wird klickbar */
}

.category-item:hover .cat-image,
.category-item.is-switched .cat-image {
    transform: scale(1.08);
    /* Bild zoomt leicht ein (Parallax-Feeling) */
}

/* 4. SERVICES — alter Scroll-Reveal-Layer entfernt,
   neue Accordion-Version steht am Ende der Datei (Services-Accordion-Wrapper) */

/* 6. ABOUT SECTION RE-DESIGN — Abstände straffer (Punkt 2) */
.about-section {
    padding: 15vh 5vw;
}

.about-grid {
    display: grid;
    /* Textblock stärker gewichtet (Punkt 8: Bild-Text-Balance) */
    grid-template-columns: 1fr 1.25fr;
    gap: 5vw;
    align-items: flex-start;
    width: 100%;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-image-spacer {
        display: none;
    }

    /* Höhere Spezifität (#intro-target) ist nun via min-width-Logik gelöst —
       kein Override hier mehr nötig */
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

.about-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    /* Das Div nimmt die volle Spaltenbreite (900px bei 1800px Wrapper) */
}

.about-image img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    filter: grayscale(1);
    will-change: filter;
    transition: filter 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-section:hover .about-image img {
    filter: grayscale(0);
}

.about-image-spacer {
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    z-index: 1;
    opacity: 0.3;
}

.about-name {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 7rem);
    line-height: 0.95;
    margin-bottom: 28px;
    color: var(--text-color);
    font-weight: 400;
}

.intro-name {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 6rem);
    /* Größe leicht optimiert für Einzeiligkeit */
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-color);
    white-space: nowrap;
    /* Verhindert den Zeilenumbruch */
    letter-spacing: 0.02em;
}

/* Ergänzung für About-Sektion */
#intro-target .premium-cta {
    margin-top: 24px;
    display: inline-flex;
}

/* ----- INTRO-BEREICH SPEZIFISCH (Punkt 3) -----
   grid-template-columns NUR auf Desktop setzen (min-width: 769px).
   Auf Mobile erbt #intro-target .about-grid damit die 1fr-Regel aus
   dem 768px-Breakpoint — ohne Kaskaden-Konflikt. */
#intro-target .about-grid {
    align-items: center;
    /* Kein grid-template-columns hier — kommt nur im Desktop-Block unten */
}

@media (min-width: 769px) {
    #intro-target .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

#intro-target .about-description {
    max-width: 420px;
    /* Textspalte schmaler */
}

#intro-target .about-description p {
    font-size: inherit;
    /* war 1.05rem — jetzt identisch zu Master */
    line-height: var(--lh-body);
    /* war 1.6 — jetzt identisch zu Master */
    margin-bottom: 18px;
    /* war 14px — jetzt identisch zu Master */
    opacity: 0.88;
}

#intro-target .intro-name {
    margin-bottom: 22px;
    /* kompakter an den Text heran */
}

.about-description {
    max-width: 560px;
}

.quote-focus {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    /* Deutlich größer als der Fließtext */
    line-height: 1.3;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 30px;
    position: relative;
    font-weight: 300;
}

/* Optional: Ein dezenter Akzent für die Hochkomma */
.quote-focus::before {
    content: '';
    /* Hier könnte man noch ein grafisches Element ergänzen,
       aber für pure Eleganz reichen die im Text getippten Hochkomma aus. */
}

.lead-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text-color);
    font-style: italic;
}

.about-description p {
    font-family: var(--font-sans);
    font-size: inherit;
    /* erbt direkt vom Body — Master-Referenz */
    line-height: var(--lh-body);
    /* REFERENZ für .accordion-inner p — zentral via --lh-body */
    opacity: 0.85;
    /* [Anpassen: 0.7 dezenter, 1.0 volle Lesbarkeit] */
    margin-bottom: 18px;
    /* [Anpassen: 12px–28px Absatzabstand] */
    color: var(--text-color);
    font-weight: 400;
}

/* PREMIUM CTA BUTTON — grösser, präsenter (Punkt 6) */
.premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: var(--fs-button);
    letter-spacing: var(--ls-button);
    font-weight: 500;
    text-transform: uppercase;
    /* Abstand zu Text reduziert (50 → 28) */
    margin-top: 28px;
    padding: 20px 44px;
    border: 1px solid rgba(31, 61, 53, 0.3);
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

/* Ergänzung für About-Sektion — Zitate kompakter (Punkt 2) */
.about-quote-top,
.about-quote-bottom {
    font-family: var(--font-serif) !important;
    font-style: italic;
    font-size: clamp(1.3rem, 1.8vw, 1.6rem) !important;
    line-height: 1.4 !important;
    color: var(--text-dark);
    margin: 32px 0 !important;
    padding-left: 22px;
    border-left: 2px solid var(--gold);
    font-weight: 400;
}

.read-more-trigger {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--accent);
    cursor: pointer;
    margin-top: 20px;
    font-weight: 500;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.read-more-trigger:hover {
    border-color: var(--accent);
}

.premium-cta:hover {
    border-color: var(--accent);
    background: var(--text-color);
    color: var(--bg-color);
    padding-left: 55px;
}

.cta-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.premium-cta:hover .cta-dot {
    transform: scale(1.5);
    background: var(--bg-color);
}

.cta .arrow {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.cta:hover .arrow {
    transform: scale(1.5);
    background: var(--bg-color);
}

/* ==========================================================================
   7. CONTACT MODAL - PREMIUM DESIGN (NO WHITE BOXES)
   ========================================================================== */
#contact-modal {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: none;
    background-color: #1f3d35 !important;
    overflow-y: auto;
    /* Ziel: Kein Scrollen auf Mobile */
}

/* DAS X ZUM SCHLIESSEN */
.close-modal {
    position: fixed !important;
    top: 30px;
    right: 5vw;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000001;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Der Hover-Effekt für das X */
.close-modal:hover .close-icon span:nth-child(1) {
    transform: rotate(135deg);
    /* Eine Vierteldrehung weiter */
    background-color: var(--gold);
}

.close-modal:hover .close-icon span:nth-child(2) {
    transform: rotate(45deg);
    /* Eine Vierteldrehung weiter */
    background-color: var(--gold);
}

.close-icon span {
    /* ... deine bisherigen Styles ... */
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.3s ease;
}

.close-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.close-icon span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #EFE5DA;
}

.close-icon span:nth-child(1) {
    transform: rotate(45deg);
}

.close-icon span:nth-child(2) {
    transform: rotate(-45deg);
}

/* CONTENT LAYOUT */
.modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    margin: 80px auto 0 !important;
    /* Weniger Abstand oben für Mobile */
    opacity: 0;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    /* Kompakter Titel */
    margin-bottom: 20px;
    color: #EFE5DA;
    font-weight: 300;
}

/* FORM-GRUPPEN: Kompakt für No-Scroll */
.form-group {
    border-bottom: 1px solid rgba(244, 241, 238, 0.2);
    padding: 8px 0;
    /* Weniger Padding spart massiv Platz */
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
    opacity: 0.6;
    color: #EFE5DA;
    text-transform: uppercase;
}

/* INPUTS: Transparent & Keine Browser-Boxen */
.form-group input,
.form-group textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    border-radius: 0;
    color: #EFE5DA !important;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    width: 100%;
    padding: 2px 0;
}

/* VERHINDERT HÄSSLICHE FARBEN BEIM AUTOMATISCHEN AUSFÜLLEN */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    /* Textfarbe auf dein Creme-Weiss erzwingen */
    -webkit-text-fill-color: #EFE5DA !important;
    /* Hintergrundfarbe auf dein Dunkelgrün erzwingen (via innerem Schatten) */
    -webkit-box-shadow: 0 0 0px 1000px #1f3d35 inset !important;
    /* Übergang für die Hintergrundfarbe extrem verlangsamen, damit nichts blitzt */
    transition: background-color 5000s ease-in-out 0s;
}

textarea#message {
    height: 50px;
    /* Nachrichtenkasten kompakt */
    resize: none;
}

/* Anrede-Auswahl: gleiche Optik wie die Text-Inputs (transparent, Serif, creme) */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    border-radius: 0;
    color: #EFE5DA !important;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    width: 100%;
    padding: 2px 0;
    cursor: pointer !important;
}

/* Aufgeklappte Optionsliste: lesbare Farben (System-Dropdown ignoriert transparent) */
.form-group select option {
    color: #1f3d35;
    background: #EFE5DA;
}

/* SENDEN-BUTTON — grösser, präsenter (Punkt 6) */
.submit-btn {
    background: none;
    border: 1px solid var(--bg-creme);
    color: var(--bg-creme) !important;
    padding: 18px 32px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.22em;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    transition: all 0.3s ease;
}

/* HOVER-EFFEKT: Goldener Hintergrund, dunkler Text */
.submit-btn:hover {
    background-color: var(--bg-creme) !important;
    color: #1f3d35 !important;
    /* Dein Dunkelgrün */
    border-color: var(--bg-creme) !important;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* SCHLIESSEN-Button im Erfolgs-Overlay: Das Overlay ist creme (nicht dunkelgrün
   wie das Modal) — die .submit-btn-Grundregel färbt den Text aber per !important
   creme → unsichtbar auf creme. Die ID-Selektoren gewinnen per Spezifität. */
#success-overlay .submit-btn {
    color: var(--text-dark) !important;
    border-color: var(--text-dark) !important;
    background: none !important;
}

#success-overlay .submit-btn:hover {
    background-color: var(--text-dark) !important;
    color: var(--bg-creme) !important;
    border-color: var(--text-dark) !important;
}

/* CURSOR — aktiver Zustand sichtbar auf jedem Hintergrund */
#cursor.cursor-active {
    mix-blend-mode: difference;
}

.cursor-active .cursor-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 2500px) {

    /* Ab 2500px wachsen die Container prozentual mit dem Bildschirm mit */
    .content-wrapper,
    .category-grid,
    .process-container {
        max-width: 95vw;
    }

    .about-grid {
        gap: 8vw;
    }

    /* HINWEIS: Die 'max-height: 75vh' Regel wurde hier bewusst gelöscht.
       Dadurch behalten alle Bilder (About, Services, Preview) ihr perfektes
       2/3 Hochformat, skalieren sauber in der Breite mit und nichts wird mehr
       abgeschnitten! */
}

/* DESKTOP ANPASSUNGEN (Wieder mehr Luft) */
@media (min-width: 769px) {
    .hero-title-wrapper {
        align-items: flex-start;
        /* Erlaubt Nina links und Sprenger rechts (per align-self) */
    }

    .modal-content {
        margin-top: 120px !important;
    }

    .modal-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .form-group {
        padding: 12px 0;
        margin-bottom: 15px;
    }

    .submit-btn {
        width: auto;
        padding: 15px 50px;
    }

    textarea#message {
        height: 80px;
    }
}

/* Für iPhones mit Notch passen wir BEIDE an */
@media (max-width: 768px) {

    .close-modal,
    .top-nav {
        top: calc(env(safe-area-inset-top, 20px) + 20px) !important;
    }
}

/* HAMBURGER ICON ANIMATION */
.menu-lines {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 100006 !important;
    /* Über dem Overlay */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-lines span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.4s;
}

/* Verwandlung zum X */
.menu-lines.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-lines.is-active span:nth-child(2) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Wenn das Menü aktiv ist, ändern wir die Farbe der Linien */
.menu-lines.is-active span {
    background-color: var(--bg-color) !important;
}

/* MENU OVERLAY STYLES */
#menu-overlay {
    display: none;
    /* Initial versteckt */
    position: fixed;
    inset: 0;
    z-index: 100001;
    align-items: center;
    justify-content: center;
    /* Blockiert Touch-Scroll-Gesten auf dem Overlay — Ergänzung zur
       JS-Scroll-Sperre, v.a. für iOS-Eigenheiten mit overflow:hidden */
    touch-action: none;
}

.menu-bg {
    position: absolute;
    inset: 0;
    background-color: var(--text-color);
    transform: translateY(-100%);
}

.menu-nav {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-link {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 7vw, 3rem);
    color: var(--bg-color);
    text-decoration: none;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.3s;
}

.menu-link:hover {
    color: var(--accent);
}

.menu-footer-links {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.menu-footer-links a {
    font-size: 0.7rem;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.2em;
}

/* ==========================================================================
   FINALER FOOTER MIT LOGO (Zentriert & Responsiv)
   ========================================================================== */
.main-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1800px;
    /* KORREKTUR: Feste Maximalbreite statt fehlerhaftem calc() */
    margin: 0 auto;
    padding: 40px 5vw 60px;
    /* KORREKTUR: 5vw Padding links/rechts hinzugefügt */
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-color);
}

/* LOGO STYLING */
.footer-logo-wrap {
    margin-bottom: 40px;
    text-align: center;
}

.footer-logo-wrap:hover {
    transform: translateY(0px);
    /* Subtiler Hover-Effekt */
}

.footer-logo {
    /* Probiere einen Wert zwischen 200px und 300px */
    width: 100px;
    max-width: 80% !important;
    /* Sicherheit für kleine Bildschirme */
    height: auto;
    opacity: 0.8;
    /* Etwas dezenter wirkt oft hochwertiger */
    transition: all 0.3s ease;
}

.footer-logo-wrap:hover .footer-logo {
    opacity: 1;
    transform: translateY(-2px);
}

/* TEXT & LINKS STYLING (unverändert) */
.main-footer p {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.main-footer a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.main-footer a:hover {
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
}

.subpage .main-footer {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1000;
    /* margin-top: 10px; */
    /* Platz nach dem Rechtstext */
}

/* Cursor auf Unterseiten */
.subpage #cursor {
    display: flex !important;
    visibility: visible !important;
}

.sticky-image-wrapper img {
    width: 100%;
    height: 125%;
    /* 25% Puffer für die Parallax-Bewegung */
    object-fit: cover;
    position: absolute;
    top: -12.5%;
    /* Zentriert das grössere Bild */
    left: 0;
    will-change: transform;
    /* Optimiert die Performance */
}

/* 2. Fix für die Methodik-Sektion — Abstände straffer (Punkt 2+5) */
.process-section {
    padding: 110px 10%;
    background-color: var(--bg-color);
    color: var(--text-color);
    position: relative;
    width: 100%;
    align-items: flex-start;
    display: flex;
    justify-content: center;
    /* Ändert die Ausrichtung von center auf start */
    text-align: left;
    min-height: auto;
    /* Erlaubt der Sektion mit dem Inhalt zu wachsen */
    z-index: 1;
    /* Ergänze diese Transition für einen noch weicheren Übergang */
    /* transition: background-color 1.2s ease; */
}

/* 2. Der Container, der alles auf max. 1400px begrenzt */
.process-container {
    width: 100%;
    max-width: 1800px;
    /* Gleiche Breite wie .content-wrapper */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Alles nach links ausrichten */
}

/* Stelle sicher, dass die .section-label auch in dunklen Sektionen sichtbar ist */
.process-section .section-label {
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
    /* font-size: 0.7rem;
    letter-spacing: 0.4em; */
}

.serif-display.gold-text {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--gold);
    font-weight: 300;
    margin-bottom: 50px;
}

/* Neuer Split-Wrapper für das Layout */
.methodik-split-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5vw;
    width: 100%;
    margin-top: 80px;
    /* Replaces margin-top from old wrapper */
}

/* 4. Der Text-Bereich mit der Goldlinie */
.process-content-wrapper {
    position: relative;
    flex: 1;
    max-width: 750px;
    /* Etwas schmaler wirkt edler */
    margin: 0;
    /* Kein margin-auto mehr */
    padding-left: 80px;
    /* Abstand der Goldlinie zum Text */
}

/* 5. SCHLÜSSEL WASSERZEICHEN — responsiv skalierend */
/* Der äußere Container, der den Platz rechts reserviert */
.methodik-key-visual {
    /* Fluid: schrumpft von 300px bei breiten Screens auf 180px bei ~900px */
    flex: 0 0 clamp(120px, 18vw, 300px);
    position: sticky;
    top: 20vh;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.4s ease;
}

/* Der innere Container, der das Bild hält - WICHTIG */
.methodik-sticky-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 1. Basis-Setup für beide Bilder */
.key-static {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Sanfter Übergang beim Wechsel */
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
}

/* Standard-Zustand (Seite startet dunkelgrün) */
.key-dark {
    opacity: 0;
    z-index: 1;
}

.key-light {
    opacity: 1;
    z-index: 2;
}

/* Wechsel-Logik via Body-Klasse */
/* Wenn wir in einer hellen Sektion sind, fügt JS die Klasse .is-light-bg hinzu */
body.is-light-bg .key-dark {
    opacity: 1;
}

body.is-light-bg .key-light {
    opacity: 0;
}

.process-gold-thread {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    /* Dezente weiße Linie */
    overflow: visible;
    /* Schlüssel-Icon darf am unteren Ende herausragen */
}

.gold-progress {
    position: absolute;
    left: -1px;
    /* Zentriert auf der Thread-Linie */
    top: 0;
    width: 3px;
    height: 100%;
    /* Volle Höhe — Füllstand steuert JS via scaleY (Compositor statt Layout) */
    transform: scaleY(0);
    transform-origin: top center;
    background: var(--bg-creme);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    z-index: 5;
    overflow: visible;
    /* Schlüssel muss über den Div-Rand hinausragen können */
}

/* Schlüssel als Pfeilspitze am unteren Ende der Gold-Linie.
   ~38px ≈ 1 cm auf Desktop. Bewegt sich automatisch mit der
   wachsenden Linie mit, da er relativ zu .gold-progress positioniert ist.
   Filter: hell-SVG → Gold-Ton passend zur Linie.              */
.gold-thread-key {
    position: absolute;
    bottom: -19px;
    /* Zentriert das 38px-Icon am Tip der Linie */
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: auto;
    /* filter: sepia(1) saturate(4) hue-rotate(8deg) brightness(1.05); */
    pointer-events: none;
    display: block;
}

.process-step {
    display: flex;
    gap: 40px;
    /* Straffere Leserführung: 150 → 90 (Punkt 2+5) */
    margin-bottom: 90px;
    opacity: 0.2;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.process-step.active {
    opacity: 1;
    /* Aktiver Schritt voll sichtbar */
    transform: translateY(0);
    /* Rutscht an Position */
}

.step-number {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-color);
    letter-spacing: 0.2em;
}

.step-title {
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.3em;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Step-Beschreibung: Sans (Fliesstext-Konsistenz) (Punkt 1) */
.step-desc {
    font-family: var(--font-sans);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: inherit;
    opacity: 0.85;
    max-width: 640px;
    font-weight: 400;
}

/* NEU: ausserhalb des Media-Queries — gilt für alle Breakpoints */
.step-desc p {
    margin-bottom: 18px;
}

.step-desc p:last-child {
    margin-bottom: 0;
}

/* Fix für dunkle Unterseiten */
body.subpage {
    --bg-color: #1f3d35 !important;
    /* Dein Dunkelgrün */
    --text-color: #EFE5DA !important;
    /* Dein Creme-Weiss */
    background-color: var(--bg-color);
}

/* Spezifische Link-Farben für die dunklen Unterseiten */
body.subpage .legal-text-block a {
    color: var(--bg-creme) !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    /* Dezente goldene Linie */
    transition: all 0.3s ease;
}

body.subpage .legal-text-block a:hover {
    color: #EFE5DA !important;
    /* Wechselt zu Creme-Weiss beim Hover */
    border-bottom: 1px solid #EFE5DA;
    opacity: 1;
}

body.subpage .inspiration-body p {
    color: #EFE5DA !important;
    /* Erzwingt hellen Text auf dunklem Grund */
    opacity: 0.9;
}

/* ==========================================================================
   GESAMTE MOBILE & DESKTOP OPTIMIERUNG (Final mit Footer-Fix)
   ========================================================================== */
/* A. DESKTOP-LOGIK: Cursor auf Unterseiten nur für Maus-Nutzer */
@media (hover: hover) and (pointer: fine) {
    .subpage #cursor {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* B. MOBILE-LOGIK: Auf Touch-Geräten ALLES verstecken (Letztes Wort im CSS) */
@media (hover: none),
(pointer: coarse) {

    #cursor,
    .subpage #cursor {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* System-Cursor wieder aktivieren, damit man auf dem Handy normal navigieren kann */
    body,
    a,
    button,
    .accordion-header,
    .close-modal,
    .open-modal-btn {
        cursor: auto !important;
    }

    /* Mobile Grid: Erster Tap zeigt Inhalt, Titel bleibt standardmässig sichtbar
    .category-item.mobile-revealed .cat-hover-box {
        background-color: rgba(31, 61, 53, 0.98);
    }

    .category-item.mobile-revealed .hover-title {
        opacity: 0;
        transform: scale(0.9);
        pointer-events: none;
    }

    .category-item.mobile-revealed .hover-box-content {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    } */
}

/* 2. DESKTOP & GROSSE BILDSCHIRME (Trennzeichen-Logik) */
@media (min-width: 601px) {
    .main-footer a::before {
        content: "|";
        margin-right: 15px;
        margin-left: 5px;
        color: var(--text-color) !important;
        /* Nutzt die dynamische Variable */
        opacity: 0.5;
        /* Dezenterer Look */
        pointer-events: none;
        display: inline-block;
    }
}

/* --- RESPONSIVE ANPASSUNG (4-2-1 Strategie) --- */
@media (max-width: 1224px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet: 2 Spalten */
        gap: 20px;
    }
}

/* 3. TABLETS & SMARTPHONES (max-width: 768px) */
@media (max-width: 768px) {
    section {
        padding: 10vh 20px;
        min-height: auto;
    }

    .top-nav {
        top: 20px;
        padding: 0 20px;
    }

    .hero {
        padding: 20vh 20px 4vh;
        justify-content: flex-start;
        min-height: auto;
    }

    .hero-title-wrapper {
        display: flex;
        flex-direction: column;
        /* Sicherstellen, dass NINA und SPRENGER untereinander stehen */
        align-items: center;
        width: 100%;
    }

    .huge-title {
        /* font-size: clamp(5rem, 18vw, 10rem) !important; */
        /* Zeilenhöhe auf 1.1 erhöht, damit sie nicht zusammenkleben */
        line-height: 1.1 !important;
        margin: 0;
        letter-spacing: -0.03em;
        text-align: center !important;
    }

    .marquee-left,
    .marquee-right {
        /* Setzt die Desktop-Ausrichtung für Mobile zurück */
        padding: 0 !important;
        align-self: center !important;
        text-align: center !important;
    }

    .branding-sub {
        margin-top: 40px !important;
        /* Den großen Abstand von 130px auf Mobile reduzieren */
        font-size: 0.75rem !important;
        letter-spacing: 0.2em;
        text-align: center;
        width: 100%;
    }

    /* Neu hinzufügen — vision top padding auf Mobile verkleinern */
    .vision {
        padding: 8vh 20px 5vh;
    }

    .vision .reveal-text {
        font-size: 1.8rem;
    }

    .about-name {
        font-size: 3rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
        /* Nur noch 1 Spalte */
        gap: 40px;
    }

    .hover-desc {
        /* Volle Lesbarkeit auf Mobile */
        font-size: clamp(1.15rem, 4vw, 1.4rem);
        line-height: 1.4;
    }

    /* Key-Icon: auf Mobile komplett entfernen */
    /* (hide passiert jetzt bereits bei 900px — siehe Breakpoint weiter unten) */

    .step-desc {
        font-size: 1.05rem;
        /* passt auf Mobile in den Lese-Fluss */
        line-height: 1.55;
    }
}

/* 4. KLEINE MOBILE GERÄTE (max-width: 600px) */
@media (max-width: 600px) {
    .main-footer {
        padding: 80px 20px 40px;
    }

    .footer-logo {
        max-width: 200px;
    }

    .main-footer p {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-footer a::before {
        display: none;
        /* Trenner auf Mobile entfernen */
    }

    .category-grid {
        grid-template-columns: 1fr;
        /* Mobile: 1 Spalte */
        gap: 15px;
    }

    .category-item {
        aspect-ratio: 4/5;
        /* Etwas höheres Format wirkt mobil oft besser als ein Quadrat */
    }

    .hover-desc {
        /* Volle Lesbarkeit auf Mobile */
        font-size: clamp(1.15rem, 4vw, 1.4rem);
        line-height: 1.4;
    }
}

/* 5. SEHR KLEINE DISPLAYS (max-width: 480px) */
@media (max-width: 480px) {

    .intro-name {
        white-space: normal;
        font-size: 2.5rem;
    }

    .methodik-split-wrapper {
        flex-direction: column-reverse;
        align-items: center;
    }
}


/* Editorial CTA (z.B. "Mehr über mich") — grösser (Punkt 6) */
.editorial-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: var(--fs-body);
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 16px;
    color: #1a2e25;
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 46, 37, 0.3);
    padding-bottom: 4px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 500;
}

/* Der Hover-Effekt */
.editorial-cta:hover {
    border-bottom-color: rgba(26, 46, 37, 1);
    /* Linie wird durchgehend */
}

.editorial-cta .arrow {
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-cta:hover .arrow {
    transform: translateY(5px);
    /* Pfeil gleitet sanft nach rechts */
}

/* Spezifisch für den Aufklapp-Button (Pfeil unten) */
.js-read-more:hover .arrow {
    /* Wenn der Text zu ist, gleitet der Pfeil nach unten */
    transform: translateY(5px);
}

/* Bonus: Wenn offen, gleitet der Pfeil nach oben */
.js-read-more[aria-expanded="true"]:hover .arrow {
    transform: translateY(-5px);
}

/* Der Container für den versteckten Text */
/* 1. Der geschlossene Zustand */
.hidden-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

/* 2. Der geöffnete Zustand */
.hidden-content.is-open {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 20px;
    /* Kleiner Abstand zum Intro */
}

/* 3. Wichtig für den Grid-Trick */
.hidden-inner {
    min-height: 0;
}

/* ==========================================================================
   SERVICES — ACCORDION-LAYOUT (Feedback User-Screenshot 2)
   Links: Title + Accordion + CTA  |  Rechts: Portrait-Bild
   ========================================================================== */

.services-accordion-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: stretch;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.services-accordion-col {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.services-accordion-col .section-label {
    color: var(--bg-creme);
    opacity: 0.9;
}

.services-title {
    color: var(--text-color);
    font-weight: 400;
    font-size: clamp(2.4rem, 4.8vw, 4.4rem);
    line-height: 1;
    margin: 0 0 48px;
    letter-spacing: 0;
}

/* --- Accordion-Liste --- */
.accordion-list {
    border-top: 1px solid rgba(244, 241, 238, 0.18);
    margin-bottom: 48px;
}

.accordion-item {
    border-bottom: 1px solid rgba(244, 241, 238, 0.18);
    transition: border-color 0.4s ease;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--bg-creme);
    font-weight: 500;
    cursor: pointer !important;
    text-align: left;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.accordion-header:hover,
.accordion-item.is-open .accordion-header {
    color: var(--bg-creme);
}

.accordion-label {
    flex: 1;
    line-height: 1.2;
}

/* Plus/Minus-Icon */
.accordion-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.accordion-icon::before {
    /* Horizontale Linie bleibt immer */
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    transform: translateY(-50%);
}

.accordion-icon::after {
    /* Vertikale Linie verschwindet wenn offen → wird zum "–" */
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
}

.accordion-item.is-open .accordion-icon::after {
    transform: translateX(-50%) scaleY(0);
    opacity: 0;
}

/* Panel (Grid-Template-Rows Trick für weiche Animation) */
.accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.is-open .accordion-panel {
    grid-template-rows: 1fr;
}

.accordion-inner {
    overflow: hidden;
    min-height: 0;
}

/* ── ACCORDION INNER TEXT ──────────────────────────────────────────────────
   Abstände identisch zu .about-description p gesetzt:
   - font-size   → var(--fs-body)    [Anpassen: z.B. 1rem für kleiner]
   - line-height → var(--lh-body)    [Anpassen: z.B. 1.8 für mehr Luft]
   - margin-bottom → 18px            [Anpassen: z.B. 24px für mehr Abstand]
   - opacity     → 0.85              [Anpassen: 0.7–1.0 für Lesbarkeit]
   ─────────────────────────────────────────────────────────────────────── */
.accordion-inner p {
    font-family: var(--font-sans);
    font-size: inherit;
    /* identisch zu .about-description p — erbt vom Body */
    line-height: var(--lh-body);
    /* identisch zu .about-description p */
    color: var(--bg-creme);
    opacity: 0.85;
    /* [Anpassen: 0.7–1.0] */
    padding: 0 4px;
    max-width: 600px;
    margin: 0 0 18px;
    /* identisch zu .about-description p */
    font-weight: 400;
}

/* --- CTA Button --- */
.services-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--bg-creme);
    text-decoration: none;
    padding: 22px 42px;
    border: 1px solid rgba(244, 241, 238, 0.5);
    font-weight: 500;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 8px;
    line-height: 1.3;
    max-width: 420px;
    text-align: center;
}

.services-cta:hover {
    background-color: var(--bg-creme);
    border-color: var(--gold);
    color: var(--text-dark);
}

/* --- Bild-Spalte rechts --- */
.services-accordion-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #132b25;
    align-self: stretch;
}

.services-accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.6s ease, transform 6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity;
}

/* --- Responsive (900px): Schlüssel ausblenden + Methodik stacken --- */
@media (max-width: 900px) {

    /* Schlüssel früher verstecken — bei 900px ist er schon auf ~180px
       geschrumpft und trägt nicht mehr zur Komposition bei */
    .methodik-key-visual {
        display: none !important;
    }

    .methodik-split-wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }

    .process-content-wrapper {
        padding-left: 28px;
        max-width: 100%;
    }

    .process-step {
        margin-bottom: 56px;
        gap: 18px;
        /* Kürzere Transition auf Mobile: bei schnellen Fling-Gesten wirkte
           die 1s-Einblendung wie zufällig nachhinkende Schritte */
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .step-desc {
        font-size: 1.05rem;
        line-height: 1.55;
    }
}

/* --- Responsive (Accordion) --- */
@media (max-width: 900px) {
    .services-accordion-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-accordion-image {
        order: -1;
        /* Bild zuerst auf Mobile */
        aspect-ratio: 4/5;
        max-height: 60vh;
    }

    .services-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        margin-bottom: 32px;
    }

    .accordion-header {
        font-size: 0.78rem;
        letter-spacing: 0.22em;
        padding: 18px 2px;
    }

    .services-cta {
        width: 100%;
        max-width: none;
        font-size: 0.72rem;
        padding: 20px 24px;
    }

    .accordion-list {
        margin-bottom: 36px;
    }
}