/* ============================================================================
   Elif Elik-Gülen — premium one-pager  ·  "quiet luxury / editorial sanctuary"
   Brand: terracotta #c44536 · indigo #3c405a · warm paper / evening indigo
   Fonts: Cormorant Garamond (display) · Space Grotesk (labels) · Inter (body)
   Dual theme: light (default) + dark (data-theme="dark" on <html>)
   ========================================================================== */

@layer base, components, utilities;

/* ============================================================ design tokens */
:root {
    /* brand constants — never flip */
    --brand-terracotta:      #c44536;
    --brand-terracotta-deep: #a8392b;
    --brand-terracotta-soft: #d98a7e;
    --brand-indigo:          #3c405a;
    --brand-indigo-deep:     #2b2e44;

    /* fonts */
    --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-label:   'Space Grotesk', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;

    /* geometry */
    --container: 1440px;
    --container-wide: 1660px;
    --gutter: clamp(1.25rem, 4vw, 3.25rem);
    --radius: 16px;
    --radius-lg: 26px;
    --radius-xl: 34px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
    --section-y: clamp(5rem, 11vw, 10rem);

    /* ---- light theme (default) ---- */
    --bg:            #faf8f1;
    --bg-tint:       #f6f4f1;
    --surface:       #ffffff;
    --surface-2:     #f4f1ea;
    --surface-3:     #f4f0de;
    --panel:         #34384f;   /* feature "ink" sections */
    --panel-grad:    linear-gradient(165deg, #3c405a 0%, #2f3346 60%, #2b2e44 100%);
    --panel-2:       #2b2e44;   /* footer */

    --text:          #2f3247;
    --heading:       #24273a;
    --muted:         rgba(53, 56, 79, 0.62);
    --line:          rgba(53, 56, 79, 0.12);
    --line-strong:   rgba(53, 56, 79, 0.22);

    --accent:        #c44536;
    --accent-deep:   #a8392b;
    --accent-soft:   #d98a7e;
    --accent-glow:   rgba(196, 69, 54, 0.42);
    --accent-tint:   rgba(196, 69, 54, 0.10);

    /* logo-mark colours (re-tint per theme so indigo stays visible on dark) */
    --sig-terracotta: #c44536;
    --sig-indigo:     #3c405a;

    --on-panel:        rgba(246, 244, 241, 0.92);
    --on-panel-muted:  rgba(246, 244, 241, 0.60);
    --on-panel-line:   rgba(246, 244, 241, 0.16);
    --on-panel-accent: #e8a99c;

    --glass-bg:      rgba(255, 255, 255, 0.60);
    --glass-border:  rgba(255, 255, 255, 0.75);
    --glass-hi:      rgba(255, 255, 255, 0.9);
    --field-bg:      rgba(255, 255, 255, 0.72);
    --header-bg:     rgba(250, 248, 241, 0.78);
    --menu-bg:       rgba(250, 248, 241, 0.97);
    --chip-bg:       rgba(53, 56, 79, 0.03);

    --motif-accent:  #c44536;
    --motif-ink:     #3c405a;

    --aurora-1:      rgba(196, 69, 54, 0.30);
    --aurora-2:      rgba(60, 64, 90, 0.20);

    --grain-blend:   multiply;
    --grain-opacity: 0.045;

    --success:       #2f7d4f;

    --shadow-soft: 0 22px 60px -34px rgba(36, 39, 58, 0.42);
    --shadow-card: 0 36px 80px -46px rgba(36, 39, 58, 0.55);
    --shadow-float: 0 50px 110px -50px rgba(36, 39, 58, 0.5);
}

/* ---- dark theme · "evening" — warm deep indigo, terracotta embers ---- */
:root[data-theme="dark"] {
    /* dark theme built on Elif's "Independence" indigo #3c405a (her only dark
       brand colour) — deepened base, exact #3c405a as the elevated surface */
    --bg:            #20233a;
    --bg-tint:       #262a42;
    --surface:       #2b2f48;
    --surface-2:     #24273d;
    --surface-3:     #323658;
    --panel:         #3c405a;
    --panel-grad:    linear-gradient(165deg, #444a68 0%, #3c405a 58%, #31354f 100%);
    --panel-2:       #181b2b;

    --text:          rgba(238, 232, 226, 0.82);
    --heading:       #f3ede6;
    --muted:         rgba(238, 232, 226, 0.52);
    --line:          rgba(238, 232, 226, 0.11);
    --line-strong:   rgba(238, 232, 226, 0.20);

    /* CI accent stays Elif's exact terracotta in dark mode — no lightening */
    --accent:        #c44536;
    --accent-deep:   #a8392b;
    --accent-soft:   #d98a7e;
    --accent-glow:   rgba(196, 69, 54, 0.45);
    --accent-tint:   rgba(196, 69, 54, 0.16);

    --sig-terracotta: #c44536;
    --sig-indigo:     rgba(244, 239, 233, 0.88);

    --on-panel:        rgba(244, 239, 233, 0.90);
    --on-panel-muted:  rgba(244, 239, 233, 0.55);
    --on-panel-line:   rgba(244, 239, 233, 0.14);
    --on-panel-accent: #c44536;

    --glass-bg:      rgba(60, 64, 90, 0.55);
    --glass-border:  rgba(244, 239, 233, 0.10);
    --glass-hi:      rgba(244, 239, 233, 0.14);
    --field-bg:      rgba(244, 239, 233, 0.045);
    --header-bg:     rgba(28, 31, 50, 0.78);
    --menu-bg:       rgba(26, 29, 47, 0.97);
    --chip-bg:       rgba(244, 239, 233, 0.04);

    --motif-accent:  #c44536;
    --motif-ink:     rgba(244, 239, 233, 0.46);

    --aurora-1:      rgba(196, 69, 54, 0.26);
    --aurora-2:      rgba(60, 64, 90, 0.32);

    --grain-blend:   soft-light;
    --grain-opacity: 0.06;

    --success:       #6dd29a;

    --shadow-soft: 0 24px 64px -34px rgba(0, 0, 0, 0.7);
    --shadow-card: 0 40px 90px -48px rgba(0, 0, 0, 0.8);
    --shadow-float: 0 56px 120px -50px rgba(0, 0, 0, 0.78);
}

/* ----------------------------------------------------------------- reset */
@layer base {
    *, *::before, *::after { box-sizing: border-box; }
    * { margin: 0; }

    html {
        -webkit-text-size-adjust: 100%;
        scroll-behavior: smooth;
        scroll-padding-top: 96px;
        color-scheme: light;
    }
    html[data-theme="dark"] { color-scheme: dark; }
    @media (prefers-reduced-motion: reduce) {
        html { scroll-behavior: auto; }
    }

    body {
        font-family: var(--font-body);
        font-size: clamp(1rem, 0.97rem + 0.2vw, 1.075rem);
        line-height: 1.72;
        color: var(--text);
        background: var(--bg);
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
        overflow-x: hidden;
        transition: background 0.6s var(--ease), color 0.6s var(--ease);
    }

    img, svg { display: block; max-width: 100%; }
    img { height: auto; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
    input, textarea, select { font: inherit; color: inherit; }
    ul, ol { list-style: none; padding: 0; }
    h1, h2, h3, h4 { font-weight: 400; line-height: 1.08; letter-spacing: -0.02em; color: var(--heading); }

    /* film-grain overlay — texture in both themes */
    body::after {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 9999;
        pointer-events: none;
        opacity: var(--grain-opacity);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        mix-blend-mode: var(--grain-blend);
    }

    :focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 3px;
        border-radius: 4px;
    }

    ::selection { background: var(--accent-tint); color: var(--accent-deep); }
}

/* ----------------------------------------------------------------- layout */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container-wide); }

.section { padding-block: var(--section-y); position: relative; }

/* feature "ink" panels */
.section--ink {
    background: var(--panel);
    background-image: var(--panel-grad);
    color: var(--on-panel);
    position: relative;
    isolation: isolate;
}
.section--ink::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(90% 70% at 85% -10%, var(--accent-tint), transparent 60%),
        radial-gradient(70% 60% at 0% 110%, rgba(255,255,255,0.05), transparent 55%);
    pointer-events: none;
    z-index: -1;
}
.section--ink .section__title,
.section--ink .section__index { color: #fff; }

.skip-link {
    position: absolute;
    left: -9999px; top: 0;
    background: var(--panel);
    color: #fff;
    padding: 0.75rem 1.25rem;
    z-index: 200;
    border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ----------------------------------------------------------------- type */
.display { font-family: var(--font-display); font-optical-sizing: auto; font-weight: 500; }

.eyebrow {
    font-family: var(--font-label);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}
.eyebrow::before {
    content: "";
    width: 30px; height: 1px;
    background: var(--accent);
    transform-origin: left;
}
.eyebrow--accent { color: var(--accent-deep); }
.eyebrow--on-ink { color: var(--on-panel-muted); }
.eyebrow--on-ink::before { background: var(--on-panel-accent); }

.section__head { max-width: 58rem; margin-bottom: clamp(2.75rem, 5vw, 4.5rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__index {
    display: block;
    font-family: var(--font-label);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 1.1rem;
}
.section__title {
    font-size: clamp(1.9rem, 1.3rem + 2.7vw, 3.3rem);
    font-weight: 600;
    margin-top: 1.1rem;
    color: var(--heading);
    text-wrap: balance;
    letter-spacing: -0.02em;
    line-height: 1.12;
}
.lead { font-size: clamp(1.1rem, 1.04rem + 0.45vw, 1.34rem); color: var(--muted); line-height: 1.55; }

/* ----------------------------------------------------------------- buttons */
@layer components {
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    padding: 0.9rem 1.7rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background-origin: border-box;
    transition: transform 0.45s var(--ease), background 0.35s var(--ease),
                box-shadow 0.45s var(--ease), color 0.35s var(--ease),
                border-color 0.35s var(--ease);
    will-change: transform;
}
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 16px 34px -16px var(--accent-glow);
}
.btn--primary:hover {
    background: var(--accent-deep);
    transform: translateY(-3px);
    box-shadow: 0 26px 48px -18px var(--accent-glow);
}
.btn--outline {
    border-color: var(--line-strong);
    color: var(--heading);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-3px); }

.btn--text {
    font-family: var(--font-label);
    font-weight: 600;
    color: var(--heading);
    padding: 0.9rem 0.4rem;
    letter-spacing: 0.02em;
}
.btn--text__arrow { transition: transform 0.45s var(--ease); }
.btn--text:hover { color: var(--accent-deep); }
.btn--text:hover .btn--text__arrow { transform: translateY(4px); }

.section--ink .btn--outline { border-color: var(--on-panel-line); color: var(--on-panel); }
.section--ink .btn--outline:hover { border-color: var(--on-panel-accent); color: #fff; }
}

/* ----------------------------------------------------------------- header */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding-block: 1.1rem;
    transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease),
                padding 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.site-header.is-elevated {
    background: var(--header-bg);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow: 0 1px 0 var(--line), 0 18px 44px -34px rgba(36, 39, 58, 0.5);
    padding-block: 0.6rem;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    z-index: 120; /* keeps logo + toggle above the open drawer (z 99), so the menu can be closed */
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.brand__mark {
    width: 44px; height: auto;
    transition: transform 0.6s var(--ease);
}
html[data-theme="dark"] .brand__mark { filter: brightness(0) invert(1) brightness(0.96) sepia(0.12); }
.brand:hover .brand__mark { transform: rotate(-10deg) scale(1.04); }
.brand__word { display: flex; flex-direction: column; line-height: 1.05; }
.brand__wordmark { height: 23px; width: auto; display: block; align-self: flex-start; flex: 0 0 auto; }
.brand__wordmark--dark { display: none; }
html[data-theme="dark"] .brand__wordmark--light { display: none; }
html[data-theme="dark"] .brand__wordmark--dark { display: block; }
.brand__role {
    font-size: 0.6rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 3px;
}

.site-nav__list { display: flex; flex-wrap: nowrap; gap: clamp(1rem, 2vw, 2.1rem); }
.site-nav__link {
    white-space: nowrap;
    font-family: var(--font-label);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding-block: 0.3rem;
}
.site-nav__link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1.5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
}
.site-nav__link:hover { color: var(--accent-deep); }
.site-nav__link:hover::after,
.site-nav__link.is-current::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: clamp(0.7rem, 1.4vw, 1.25rem); }

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-label);
    font-size: 0.82rem;
    font-weight: 600;
}
.lang-switch__opt { color: var(--muted); letter-spacing: 0.06em; transition: color 0.3s; }
.lang-switch__opt.is-active { color: var(--heading); }
.lang-switch__opt:hover { color: var(--accent-deep); }
.lang-switch__sep { color: var(--line-strong); }

/* theme toggle */
.theme-toggle {
    position: relative;
    width: 42px; height: 42px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--heading);
    transition: border-color 0.4s var(--ease), color 0.4s var(--ease),
                background 0.4s var(--ease), transform 0.5s var(--ease);
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.theme-toggle svg { width: 20px; height: 20px; transition: opacity 0.4s var(--ease), transform 0.5s var(--ease); }
.theme-toggle__moon { position: absolute; }
html:not([data-theme="dark"]) .theme-toggle__moon { opacity: 0; transform: rotate(-40deg) scale(0.6); }
html:not([data-theme="dark"]) .theme-toggle__sun { opacity: 1; transform: none; }
html[data-theme="dark"] .theme-toggle__sun { opacity: 0; transform: rotate(40deg) scale(0.6); }
html[data-theme="dark"] .theme-toggle__moon { opacity: 1; transform: none; }
.section--ink .theme-toggle { border-color: var(--on-panel-line); color: var(--on-panel); }

.nav-toggle { display: block; width: 44px; height: 44px; position: relative; }
.nav-toggle__bar {
    position: absolute; left: 11px; right: 11px; height: 2px; background: var(--heading);
    transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav-toggle__bar:nth-child(1) { top: 17px; }
.nav-toggle__bar:nth-child(2) { bottom: 17px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--menu-bg);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 6rem var(--gutter) 3rem;
    opacity: 0;
    visibility: hidden;          /* when closed: invisible, no a11y/tab reach */
    pointer-events: none;        /* CRITICAL: don't capture clicks while closed */
    transform: translateY(-10px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0s linear 0.45s;
}
.mobile-menu:not([hidden]) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0s;
}
.mobile-menu__nav { display: flex; flex-direction: column; gap: 0.3rem; }
.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 2.1rem;
    color: var(--heading);
    padding-block: 0.4rem;
    transition: color 0.3s, transform 0.4s var(--ease);
}
.mobile-menu__link:hover { color: var(--accent-deep); transform: translateX(6px); }
.mobile-menu__cta { margin-top: 1rem; align-self: flex-start; }
.mobile-menu__lang { display: flex; gap: 1.2rem; font-family: var(--font-label); margin-top: 0.6rem; }
.mobile-menu__lang a { color: var(--muted); }
.mobile-menu__lang a.is-active { color: var(--heading); font-weight: 600; }

/* ============================================================ hero */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background:
        radial-gradient(125% 90% at 82% -5%, var(--bg-tint), transparent 58%),
        var(--bg);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.7;
}
.hero__aurora--1 {
    width: 52vw; height: 52vw; max-width: 680px; max-height: 680px;
    top: -14%; right: -6%;
    background: radial-gradient(circle, var(--aurora-1), transparent 70%);
    animation: auroraDrift 22s ease-in-out infinite alternate;
}
.hero__aurora--2 {
    width: 48vw; height: 48vw; max-width: 600px; max-height: 600px;
    bottom: -18%; left: -12%;
    background: radial-gradient(circle, var(--aurora-2), transparent 70%);
    animation: auroraDrift 28s ease-in-out infinite alternate-reverse;
}
@keyframes auroraDrift {
    from { transform: translate3d(0,0,0) scale(1); }
    to   { transform: translate3d(3%, 4%, 0) scale(1.08); }
}
.hero__motif { display: none; }

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    width: 100%;
}
.hero__copy { max-width: 40rem; }
.hero__headline {
    font-size: clamp(2.1rem, 1.3rem + 2.2vw, 2.95rem);
    line-height: 1.12;
    color: var(--heading);
    margin-top: 1.6rem;
    text-wrap: balance;
    letter-spacing: -0.022em;
    font-weight: 600;
}
.hero__lead { margin-top: 2rem; max-width: 40rem; display: grid; gap: 1rem; }
.hero__para { color: var(--muted); font-size: clamp(1.04rem, 1rem + 0.35vw, 1.2rem); }
.hero__para--accentline {
    color: var(--heading);
    font-weight: 500;
    padding-left: 1.2rem;
    border-left: 2px solid var(--accent);
}
.hero__tagline {
    margin-top: 1.9rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.25rem, 1rem + 0.9vw, 1.7rem);
    color: var(--accent-deep);
    font-weight: 380;
}
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }

.hero__assurance {
    margin-top: 2.6rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.6rem;
}
.hero__assurance-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-label);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--muted);
}
.hero__assurance-item::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    border: 1px solid var(--accent);
}

/* hero interactive signature */
.hero__signature {
    position: relative;
    justify-self: center;
    width: min(40vw, 560px);
    aspect-ratio: 704 / 569;
    color: var(--accent);
}

.hero__scrollcue {
    position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%);
    width: 1px; height: 56px; overflow: hidden; z-index: 2;
}
.hero__scrollcue-line {
    display: block; width: 1px; height: 100%;
    background: linear-gradient(var(--accent), transparent);
    animation: scrollcue 2.4s var(--ease) infinite;
}
@keyframes scrollcue {
    0% { transform: translateY(-100%); }
    60%, 100% { transform: translateY(100%); }
}

/* ============================================================ story (01, Volltext)
   Die vollständige Startseiten-Passage — ruhige Lesespalte direkt unter dem
   Hero, ab 1025px mit Foto von Elif als sticky Begleit-Spalte daneben.
   Kein eigener Menüpunkt, Kennung nur über die Sektions-Nummer. */
.section--story { padding-block: clamp(4.5rem, 6vw + 2rem, 8rem); }
.story__inner { max-width: 65ch; margin-inline: auto; }
.story__body { margin-top: 2.2rem; display: grid; gap: 1.45rem; }
.story__para {
    color: var(--muted);
    font-size: clamp(1.05rem, 1rem + 0.4vw, 1.24rem);
    line-height: 1.75;
}
.story__para--lead {
    font-family: var(--font-display);
    color: var(--heading);
    font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
}
.story__para--accentline {
    color: var(--heading);
    font-weight: 500;
    padding-left: 1.2rem;
    border-left: 2px solid var(--accent);
}
.story__para--tagline {
    margin-top: 0.7rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.3rem, 1.05rem + 1vw, 1.8rem);
    line-height: 1.45;
    color: var(--accent-deep);
    font-weight: 380;
}
.story__media {
    margin-top: 1.9rem;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}
.story__media::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(80% 55% at 50% 112%, var(--accent-tint), transparent 62%);
    pointer-events: none;
}
.story__img { display: block; width: 100%; height: auto; }
/* Tablet: Bild kompakt und leicht eingerückt zwischen Kennung und Text */
@media (min-width: 761px) and (max-width: 1024px) {
    .story__media { max-width: 440px; margin-left: clamp(1rem, 6vw, 3.5rem); }
}
/* Desktop: zweispaltig — Lesespalte links (~62ch), Foto sticky rechts */
@media (min-width: 1025px) {
    .story__inner {
        max-width: 1120px;
        display: grid;
        grid-template-columns: minmax(0, 62ch) minmax(300px, 400px);
        justify-content: space-between;
        column-gap: clamp(3rem, 6vw, 6.5rem);
        align-items: start;
    }
    .story__eyebrow { grid-column: 1; grid-row: 1; }
    .story__body { grid-column: 1; grid-row: 2; }
    .story__media {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: start;
        position: sticky;
        top: 6.5rem;
        margin-top: 0;
    }
}

/* ============================================================ logo-mark signature
   Elif's full logo (terracotta φ-mark + "ELİF ELİK GÜLEN" wordmark), as an
   image so it's 100% faithful. Floats, breathes, glows; parallax-follows the
   cursor; swaps to a cream variant in dark mode so the wordmark stays legible. */
.sig {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    --sig-px: 0px;
    --sig-py: 0px;
}
.sig__glow {
    position: absolute;
    inset: 4% 2% 8%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 44%, var(--accent-glow), transparent 64%);
    filter: blur(54px);
    opacity: 0.5;
    z-index: 0;
    animation: sigGlow 7s ease-in-out infinite;
}
@keyframes sigGlow {
    0%, 100% { opacity: 0.36; transform: scale(0.95); }
    50%      { opacity: 0.6; transform: scale(1.06); }
}
.sig__mark {
    position: relative;
    z-index: 1;
    width: 84%;
    transform: translate3d(var(--sig-px), var(--sig-py), 0);
    transition: transform 0.5s var(--ease-soft);
}
.sig__breathe {
    transform-origin: center;
    animation: sigFloat 7.5s ease-in-out infinite;
}
@keyframes sigFloat {
    0%, 100% { transform: translateY(0) scale(0.99); }
    50%      { transform: translateY(-2.2%) scale(1.012); }
}
.sig__img { width: 100%; height: auto; display: block; }
.sig__img--dark { display: none; }
html[data-theme="dark"] .sig__img--light { display: none; }
html[data-theme="dark"] .sig__img--dark { display: block; }

.sig:hover .sig__glow { opacity: 0.72; }

/* ============================================================ recognition */
.recognition__grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(2rem, 5vw, 5.5rem);
    align-items: start;
}
.recognition__intro .lead { color: var(--text); }
.recognition__intro .recognition__cue {
    margin-top: 1.4rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--heading);
    font-style: italic;
}
.feeling-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.4rem; }
.feeling-list__item {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
    padding-block: 0.95rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.06rem;
    color: var(--text);
    transition: color 0.35s var(--ease), padding-left 0.4s var(--ease);
}
.feeling-list__item:hover { color: var(--accent-deep); padding-left: 0.4rem; }
.feeling-list__dot {
    flex: none;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    transform: translateY(-2px);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feeling-list__item:hover .feeling-list__dot { transform: translateY(-2px) scale(1.5); box-shadow: 0 0 0 4px var(--accent-tint); }
.recognition__closing {
    margin-top: clamp(2.75rem, 5vw, 4.5rem);
    max-width: 48rem;
    font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
    line-height: 1.5;
}
.recognition__closing p { color: var(--muted); }
.recognition__accent {
    margin-top: 0.9rem;
    font-family: var(--font-display);
    color: var(--heading) !important;
    font-weight: 400;
    font-style: italic;
}

/* ============================================================ themes */
.themes__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5.5rem);
    align-items: start;
}
.themes__intro { margin-top: 1.4rem; color: var(--on-panel-muted); font-size: 1.12rem; }
.theme-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; align-content: start; }
.theme-chips__item {
    font-size: 0.95rem;
    padding: 0.62rem 1.15rem;
    border: 1px solid var(--on-panel-line);
    border-radius: 999px;
    color: var(--on-panel);
    background: rgba(246, 244, 241, 0.04);
    transition: border-color 0.35s, background 0.35s, transform 0.4s var(--ease), color 0.35s;
}
.theme-chips__item:hover {
    border-color: var(--on-panel-accent);
    background: var(--accent-tint);
    color: #fff;
    transform: translateY(-3px);
}
.themes__note {
    margin-top: clamp(3rem, 6vw, 5rem);
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid var(--on-panel-line);
    max-width: 54rem;
}
.themes__note-text {
    font-size: clamp(1.25rem, 1rem + 0.9vw, 1.75rem);
    color: var(--on-panel);
    font-family: var(--font-display);
    line-height: 1.4;
    font-weight: 360;
}
.themes__note-accent { margin-top: 1.1rem; color: var(--on-panel-accent); font-family: var(--font-label); font-weight: 600; letter-spacing: 0.05em; }

/* ============================================================ process */
.section--process { background: var(--surface-2); }
.process__steps { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); max-width: 64rem; margin-inline: auto; }
.step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1.2rem, 3vw, 2.8rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.7rem, 3vw, 3rem);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.5s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.step__index {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 2rem + 2.2vw, 3.8rem);
    color: var(--accent);
    line-height: 1;
    opacity: 0.92;
    font-weight: 340;
    transition: transform 0.55s var(--ease), color 0.4s var(--ease), opacity 0.4s var(--ease);
}
.step:hover .step__index { transform: translateY(-2px); color: var(--accent-deep); opacity: 1; }
.step__title { font-family: var(--font-display); font-size: clamp(1.35rem, 1.1rem + 0.85vw, 1.8rem); color: var(--heading); margin-bottom: 0.9rem; }
.step__text { color: var(--muted); margin-bottom: 0.7rem; }
.step__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.1rem 0 1.4rem;
}
.step__list li {
    font-size: 0.9rem;
    line-height: 1.2;
    padding: 0.55rem 1.1rem;
    color: var(--text);
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: border-color 0.35s var(--ease), color 0.35s var(--ease),
                background 0.35s var(--ease), transform 0.4s var(--ease);
}
.step__list li:hover {
    border-color: var(--accent);
    color: var(--accent-deep);
    background: var(--accent-tint);
    transform: translateY(-2px);
}
.step__cta { margin-top: 0.9rem; }

/* ============================================================ method */
.method__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}
.method__paras { margin-top: 1.9rem; display: grid; gap: 1.15rem; max-width: 39rem; }
.method__paras p { color: var(--muted); font-size: 1.08rem; }
.method__paras p:nth-child(3) { color: var(--heading); font-weight: 500; }

.method__sens {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 3.2rem);
    border-radius: var(--radius-lg);
    position: sticky;
    top: 110px;
}
.method__sens-motif { position: absolute; right: -28%; top: -22%; width: 92%; opacity: 0.4; color: var(--accent); }
.method__sens-title {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 1.2rem + 0.9vw, 2rem);
    color: var(--heading);
    margin-bottom: 1.4rem;
    position: relative;
}
.method__sens-lines { display: grid; gap: 1rem; position: relative; }
.method__sens-line { color: var(--muted); font-size: 1.06rem; }
.method__sens-line--final {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent-deep);
    font-size: 1.2rem;
}

/* ============================================================ outcomes */
.outcomes__intro { margin-top: 1.2rem; color: var(--on-panel-muted); font-size: 1.12rem; }
.outcomes__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 3rem;
    max-width: 52rem;
    margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.outcome {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding-block: 0.95rem;
    border-bottom: 1px solid var(--on-panel-line);
    color: var(--on-panel);
    transition: padding-left 0.4s var(--ease);
}
.outcome:hover { padding-left: 0.35rem; }
.outcome__mark {
    flex: none;
    width: 19px; height: 19px;
    border-radius: 50%;
    border: 1.5px solid var(--on-panel-accent);
    position: relative;
    transition: box-shadow 0.4s var(--ease);
}
.outcome__mark::after {
    content: "";
    position: absolute;
    left: 5px; top: 5px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--on-panel-accent);
}
.outcome:hover .outcome__mark { box-shadow: 0 0 0 4px rgba(255,255,255,0.06); }
.outcomes__closing {
    margin-top: clamp(2.75rem, 5vw, 4.5rem);
    text-align: center;
    max-width: 46rem;
    margin-inline: auto;
}
.outcomes__closing p { color: var(--on-panel-muted); font-size: clamp(1.1rem, 1rem + 0.5vw, 1.38rem); }
.outcomes__accent {
    margin-top: 0.8rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.3rem, 1.1rem + 0.85vw, 1.8rem) !important;
    color: #fff !important;
    line-height: 1.35;
}

/* ============================================================ about */
.section--about { background: var(--surface-3); }
html[data-theme="dark"] .section--about { background: var(--surface-3); }
.about__grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(2rem, 5vw, 5.5rem);
    align-items: center;
}
.portrait-frame { position: relative; }
.portrait-frame__media {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    background: radial-gradient(120% 90% at 50% 0%, var(--bg-tint), var(--surface));
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    position: relative;
}
.portrait-frame__media::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(80% 60% at 50% 110%, var(--accent-tint), transparent 60%);
    pointer-events: none;
}
.portrait-frame__mark { width: 44%; opacity: 0.82; position: relative; z-index: 1; }
html[data-theme="dark"] .portrait-frame__mark { filter: brightness(0) invert(1) brightness(0.95); }
.portrait-frame__hint {
    font-family: var(--font-label);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative; z-index: 1;
}
.portrait-frame__cap { margin-top: 1.3rem; display: flex; flex-direction: column; gap: 0.25rem; }
.portrait-frame__name { font-family: var(--font-display); font-size: 1.35rem; color: var(--heading); }
.portrait-frame__role { font-size: 0.76rem; letter-spacing: 0.11em; text-transform: uppercase; color: var(--muted); }

.about__paras { margin-top: 1.9rem; display: grid; gap: 1.1rem; max-width: 41rem; }
.about__paras p { color: var(--muted); }
.about__paras p:nth-child(3) { color: var(--heading); font-weight: 500; }
.about__signoff {
    margin-top: 1.7rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--accent-deep);
}

/* ============================================================ cta + form */
.section--cta {
    position: relative;
    /* Nils 28.07.: der Aurora-Klecks darf oben NICHT hart an der Sektionskante
       abreissen, er soll in die Sektion darueber auslaufen. `overflow-x: clip`
       haelt die horizontale Begrenzung (kein Seiten-Scroll durch cta__motif),
       erlaubt aber vertikales Ueberstehen — `hidden` wuerde beide Achsen clippen. */
    overflow-x: clip;
    overflow-y: visible;
    /* Der Kreis unten rechts ragt 133px unter die Sektionskante. Ohne z-index
       wuerde ihn die NACHFOLGENDE Kontakt-Sektion uebermalen (spaeter im DOM =
       spaeter gemalt) — deshalb hebt sich diese Sektion eine Ebene an. */
    z-index: 1;
    background:
        radial-gradient(100% 100% at 0% 0%, var(--surface-3), transparent 52%),
        radial-gradient(90% 90% at 100% 100%, var(--accent-tint), transparent 60%),
        var(--bg);
}
.cta__bg { position: absolute; inset: 0; pointer-events: none; overflow: visible; }
.cta__aurora {
    position: absolute;
    width: 52vw; height: 52vw; max-width: 620px; max-height: 620px;
    /* laeuft bewusst ueber die obere Sektionskante in die Sektion darueber */
    top: -26%; left: -8%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--aurora-1), transparent 70%);
    filter: blur(80px);
    opacity: 0.6;
}
.cta__motif { position: absolute; right: -4%; bottom: -12%; width: min(50vw, 580px); opacity: 0.36; color: var(--accent); }

.cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5.5rem);
    align-items: center;
}
.cta__headline {
    font-size: clamp(1.9rem, 1.3rem + 2.9vw, 3.3rem);
    font-weight: 600;
    color: var(--heading);
    margin-top: 1.2rem;
    line-height: 1.1;
    text-wrap: balance;
    letter-spacing: -0.02em;
}
.cta__line { margin-top: 1.7rem; font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem); color: var(--muted); }
.cta__line-accent { color: var(--accent-deep); font-family: var(--font-display); font-style: italic; }
.cta__micro { margin-top: 0.9rem; font-family: var(--font-label); font-size: 0.88rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); }
.cta__closing { margin-top: 1.9rem; max-width: 31rem; color: var(--muted); }
.cta__direct {
    margin-top: 2.3rem;
    padding-top: 1.7rem;
    border-top: 1px solid var(--line);
    max-width: 29rem;
}
.cta__direct-title { font-family: var(--font-label); font-weight: 600; letter-spacing: 0.04em; color: var(--heading); }
.cta__direct p { color: var(--muted); margin-top: 0.4rem; font-size: 0.98rem; }
.cta__mail { display: inline-block; margin-top: 0.6rem; color: var(--accent-deep); font-weight: 500; border-bottom: 1px solid currentColor; }

/* glass cards */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
    position: relative;
}
.glass::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(150deg, var(--glass-hi), transparent 40%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.8;
}
.cta__form-wrap {
    border-radius: var(--radius-xl);
    padding: clamp(1.7rem, 3vw, 2.8rem);
}
.cta__form-title { font-family: var(--font-display); font-size: clamp(1.45rem, 1.2rem + 0.85vw, 2rem); color: var(--heading); }
.cta__form-sub { margin-top: 0.6rem; color: var(--muted); font-size: 0.96rem; }

.contact-form { margin-top: 1.7rem; display: grid; gap: 1rem; }
.field { display: grid; gap: 0.45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field__label { font-family: var(--font-label); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text); }
.req { color: var(--accent); }
.field__input {
    width: 100%;
    padding: 0.85rem 1.05rem;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--field-bg);
    color: var(--text);
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.field__input::placeholder { color: var(--muted); }
.field__input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-tint);
}
.field__input--area { resize: vertical; min-height: 112px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent-field {
    display: flex; gap: 0.7rem; align-items: flex-start;
    font-size: 0.86rem; color: var(--muted); line-height: 1.5;
}
.consent-field input { margin-top: 0.25rem; flex: none; width: 18px; height: 18px; accent-color: var(--accent); }
.consent-field a { color: var(--accent-deep); border-bottom: 1px solid currentColor; }
.form-status { font-size: 0.92rem; min-height: 1.2em; margin-top: 0.2rem; }
.form-status.is-success { color: var(--success); font-weight: 500; }
.form-status.is-error { color: var(--accent-deep); font-weight: 500; }

/* ============================================================ footer */
.site-footer { background: var(--panel-2); color: var(--on-panel); }
.site-footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-block: clamp(3rem, 6vw, 5rem);
}
.site-footer__logo { width: 90px; margin-bottom: 1.25rem; }
.site-footer__tagline { color: var(--on-panel-muted); max-width: 27rem; font-size: 0.98rem; }
.site-footer__title {
    font-family: var(--font-label);
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--on-panel-muted);
    margin-bottom: 1.1rem;
}
.site-footer__col ul { display: grid; gap: 0.65rem; }
.site-footer__col a { color: var(--on-panel); transition: color 0.3s; }
.site-footer__col a:hover { color: var(--on-panel-accent); }
.site-footer__lang { margin-top: 1.5rem; display: flex; gap: 0.6rem; font-family: var(--font-label); font-size: 0.85rem; }
.site-footer__lang a { color: var(--on-panel-muted); }
.site-footer__lang a.is-active { color: #fff; }
.site-footer__base { border-top: 1px solid var(--on-panel-line); }
.site-footer__base-inner {
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem;
    padding-block: 1.5rem;
    font-size: 0.82rem;
    color: var(--on-panel-muted);
}
.site-footer__credit a { color: var(--on-panel); border-bottom: 1px solid var(--on-panel-line); }
.site-footer__credit a:hover { color: var(--on-panel-accent); }

/* ============================================================ consent banner */
.consent-banner {
    position: fixed;
    left: 1.25rem; bottom: 1.25rem; right: auto; top: auto;
    z-index: 9000;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.15rem 1.25rem 1.2rem;
    border-radius: 18px;
    background: rgba(34, 29, 46, 0.82);
    backdrop-filter: blur(26px) saturate(180%);
    -webkit-backdrop-filter: blur(26px) saturate(180%);
    border: 1px solid rgba(246, 244, 241, 0.12);
    box-shadow: 0 18px 50px rgba(0,0,0,0.42), 0 2px 6px rgba(0,0,0,0.18);
    color: rgba(246,244,241,0.92);
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.consent-banner.is-visible { transform: none; opacity: 1; }
.consent-banner__title { font-family: var(--font-display); font-size: 0.98rem; color: #fff; }
.consent-banner__text { font-size: 0.85rem; line-height: 1.55; color: rgba(246,244,241,0.82); }
.consent-banner__link { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.consent-banner__link:hover { color: var(--on-panel-accent); }
.consent-banner__actions { display: flex; gap: 0.6rem; }
.consent-banner__btn { flex: 1 1 0; padding: 0.6rem 0.9rem; font-size: 0.82rem; border-radius: 999px; }
.consent-banner .btn--primary { background: var(--accent); color: #fff; box-shadow: none; }
.consent-banner .btn--primary:hover { background: var(--accent-deep); transform: none; }
.consent-banner .btn--ghost {
    background: transparent;
    color: rgba(246,244,241,0.85);
    border: 1px solid rgba(246,244,241,0.22);
}
.consent-banner .btn--ghost:hover { border-color: rgba(246,244,241,0.5); }

/* ============================================================ legal pages */
.legal-header { border-bottom: 1px solid var(--line); padding-block: 1rem; background: var(--bg); }
/* Auf sehr schmalen Geraeten (320px) passten Sprachumschalter und
   "Zur Startseite" nicht nebeneinander und liefen 27px ueber. */
.legal-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem 1.5rem; flex-wrap: wrap; }
.legal-header .lang-switch { display: inline-flex; }
.legal { padding-block: clamp(3rem, 6vw, 5rem); background: var(--bg); min-height: 60vh; }
.legal__inner { max-width: 52rem; }
/* "Datenschutzerklaerung" ist EIN unteilbares Wort von 11.43em Breite (gemessen).
   Bei 360px lief es 53px ueber die Spalte und erzeugte 20px Seiten-Scroll —
   deshalb ist die Groesse zusaetzlich an die verfuegbare Breite gekoppelt. */
.legal__title {
    font-size: min(clamp(2rem, 1.5rem + 2.4vw, 3rem), calc((100vw - 2 * var(--gutter)) / 11.7));
    color: var(--heading);
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
}
.legal__notice {
    background: var(--accent-tint);
    border: 1px solid var(--accent-soft);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    font-size: 0.92rem;
    color: var(--accent-deep);
    margin-bottom: 2.5rem;
}
.legal__block { margin-bottom: 2rem; }
.legal__block h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--heading);
    margin-bottom: 0.7rem;
}
.legal__block p { color: var(--muted); margin-bottom: 0.7rem; }
.legal__block a { color: var(--accent-deep); border-bottom: 1px solid currentColor; }
.legal__block code { font-family: ui-monospace, monospace; font-size: 0.9em; background: var(--surface-2); padding: 0.1em 0.4em; border-radius: 5px; }

/* ============================================================ custom cursor
   A soft trailing ring that AUGMENTS the native cursor (never hides it, so the
   text I-beam over form fields is preserved). Fine pointers only. */
.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--accent-soft);
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s var(--ease), width 0.35s var(--ease),
                height 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}
body.cursor-ready .cursor-ring { opacity: 0.75; }
.cursor-ring.is-hover {
    width: 56px; height: 56px;
    background: var(--accent-tint);
    border-color: var(--accent);
    opacity: 1;
}

/* ============================================================ reveal */
@layer utilities {
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
    will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-stagger].is-in > * {
    animation: revealChild 0.75s var(--ease) backwards;
}
[data-reveal-stagger].is-in > *:nth-child(1) { animation-delay: 0.04s; }
[data-reveal-stagger].is-in > *:nth-child(2) { animation-delay: 0.09s; }
[data-reveal-stagger].is-in > *:nth-child(3) { animation-delay: 0.14s; }
[data-reveal-stagger].is-in > *:nth-child(4) { animation-delay: 0.19s; }
[data-reveal-stagger].is-in > *:nth-child(5) { animation-delay: 0.24s; }
[data-reveal-stagger].is-in > *:nth-child(6) { animation-delay: 0.29s; }
[data-reveal-stagger].is-in > *:nth-child(7) { animation-delay: 0.34s; }
[data-reveal-stagger].is-in > *:nth-child(8) { animation-delay: 0.39s; }
[data-reveal-stagger].is-in > *:nth-child(n+9) { animation-delay: 0.44s; }
@keyframes revealChild { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* kinetic split-text headlines — words rise + fade, staggered (no clip mask, so
   descenders are never cut). JS adds .split + the per-word spans. */
.split .split__w { display: inline-block; }
.split .split__i {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.42em);
    transition: opacity 0.7s var(--ease), transform 0.8s var(--ease);
    will-change: opacity, transform;
}
.split.is-revealed .split__i { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; animation: none !important; }
    .split .split__i { opacity: 1 !important; transform: none !important; transition: none !important; }
    .hero__scrollcue-line, .hero__aurora, .sig__glow, .sig__breathe, .sig__orbit { animation: none !important; }
    .sig__orbit { opacity: 1 !important; }
}
}

/* ============================================================ responsive */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; }
    /* signature becomes a faint corner watermark — never behind the headline */
    .hero__signature {
        position: absolute;
        right: -15%;
        bottom: -6%;
        top: auto;
        width: min(76vw, 480px);
        height: auto;
        aspect-ratio: 704 / 569;
        justify-self: auto;
        opacity: 0.16;
        z-index: 0;
        pointer-events: none;
    }
    .hero__signature .sig { transform: none; }
    .hero__copy { max-width: 46rem; }
    .recognition__grid, .themes__layout, .method__grid, .about__grid, .cta__inner { grid-template-columns: 1fr; }
    .method__sens { position: static; }
    .about__portrait { max-width: 440px; }
}
@media (max-width: 860px) {
    .site-nav, .site-header__cta, .lang-switch { display: none; }
    .nav-toggle { display: block; }
    .feeling-list { grid-template-columns: 1fr; }
    .site-footer__inner { grid-template-columns: 1fr 1fr; }
    .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .outcomes__grid { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 540px) {
    .field-row { grid-template-columns: 1fr; }
    .site-footer__inner { grid-template-columns: 1fr; }
    .consent-banner { left: 0.85rem; right: 0.85rem; max-width: none; }
    .hero { min-height: auto; padding-top: 7rem; }
    .hero__assurance { gap: 0.5rem 1.1rem; }
}

/* pointer: coarse → never custom cursor */
@media (hover: none), (pointer: coarse) {
    body.has-cursor { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }
}

/* ================================================================
   FINAL CONTENT SECTIONS (2026-07-21) — thoughts, guidance, process
   intro, about extensions, testimonials, selbsterfahrung, faq,
   cta/kontakt, hinweis. Calm presentation per Elif's wish.
   ================================================================ */

.container--narrow { max-width: 880px; }

/* full menu drawer — 12 items, keep calm + scrollable */
.mobile-menu { justify-content: flex-start; overflow-y: auto; gap: 1.2rem; }
.mobile-menu__nav { max-width: 720px; }
.mobile-menu__link { font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.45rem); line-height: 1.35; }

/* ------------------------------------------------ 02 | Gedanken */
.section--thoughts { background: var(--surface-3); }
.thoughts__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.1rem, 2vw, 1.8rem);
}
.thought-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 2.6vw, 2.3rem);
    box-shadow: var(--shadow-card);
}
.thought-card__quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.7rem);
    color: var(--accent-deep);
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.thought-card__body { margin-top: 1rem; display: grid; gap: 0.75rem; }
.thought-card__body p { color: var(--muted); font-size: 1.02rem; }
.thoughts__closing {
    margin-top: clamp(2.2rem, 4vw, 3.4rem);
    max-width: 46rem;
    margin-inline: auto;
    text-align: center;
    display: grid;
    gap: 0.7rem;
}
.thoughts__closing p { color: var(--heading); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); }

/* ------------------------------------------------ 03 | Begleitung */
.guidance__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}
.guidance__paras { margin-top: 1.9rem; display: grid; gap: 1.05rem; max-width: 42rem; }
.guidance__paras p { color: var(--muted); font-size: 1.06rem; }
.guidance__paras p:first-child { color: var(--heading); font-weight: 500; }
.guidance__media {
    position: sticky;
    top: 7rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}
.guidance__media img { display: block; width: 100%; height: auto; }

/* ------------------------------------------------ 04 | Ablauf intro */
.process__intro { margin-top: 1.4rem; display: grid; gap: 0.55rem; }
.process__intro p { color: var(--muted); font-size: 1.08rem; }

/* ------------------------------------------------ 05 | Über mich */
.about__grid { align-items: start; }
.about__portrait { position: sticky; top: 6.5rem; }
.portrait-frame__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.about__quote {
    margin-top: 1.9rem;
    padding: 1.4rem 1.7rem;
    border-left: none;
    border-radius: var(--radius-xl);
    background: var(--accent-tint);
}
.about__quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.55rem);
    color: var(--accent-deep);
    line-height: 1.4;
}
.about__quals { margin-top: 2.4rem; }
.about__quals-title {
    font-family: var(--font-label);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.86rem;
    color: var(--heading);
}
.qual-list { margin-top: 1.1rem; display: grid; gap: 0.55rem; }
.qual-list__item {
    display: flex; align-items: baseline; gap: 0.7rem;
    color: var(--muted); font-size: 0.99rem;
}
.qual-list__dot {
    flex: 0 0 auto;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    transform: translateY(-2px);
}
.about__video {
    margin-top: 1.6rem;
    border-radius: var(--radius-xl);
    padding: 1.5rem 1.6rem;
}
.about__video-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--heading); }
.about__video-text { margin-top: 0.6rem; color: var(--muted); font-size: 0.97rem; }
.about__video-cta { margin-top: 1.1rem; }

.photo-strip {
    margin-top: clamp(2.6rem, 5vw, 4.2rem);
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: clamp(0.8rem, 1.6vw, 1.4rem);
}
.photo-strip img {
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}

/* ------------------------------------------------ 06 | Stimmen */
.testimonials__sub { margin-top: 1rem; color: var(--on-panel-muted); font-family: var(--font-label); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.82rem; }
.testimonials__grid {
    columns: 2;
    column-gap: clamp(1.1rem, 2vw, 1.8rem);
}
.testimonial {
    break-inside: avoid;
    margin: 0 0 clamp(1.1rem, 2vw, 1.8rem);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--on-panel-line);
    border-radius: var(--radius-xl);
    padding: clamp(1.4rem, 2.4vw, 2rem);
}
.testimonial__text {
    color: var(--on-panel);
    font-family: var(--font-display);
    font-size: clamp(1.02rem, 0.98rem + 0.25vw, 1.16rem);
    line-height: 1.65;
}
.testimonial__author {
    margin-top: 0.9rem;
    color: var(--on-panel-accent);
    font-family: var(--font-label);
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 0.82rem;
}

/* ------------------------------------------------ 07 | Selbsterfahrung */
.section--selbst { background: var(--surface-3); }
.selbst__lead {
    margin-top: 1.3rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.7rem);
    color: var(--accent-deep);
    max-width: 40rem;
    line-height: 1.4;
}
.selbst__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}
.selbst__intro { display: grid; gap: 1rem; max-width: 42rem; }
.selbst__intro p { color: var(--muted); font-size: 1.05rem; }
.selbst__media {
    position: sticky;
    top: 7rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}
.selbst__media img { display: block; width: 100%; height: auto; }
.selbst__blocks {
    margin-top: clamp(2.4rem, 4vw, 3.6rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.1rem, 2vw, 1.8rem);
}
.selbst-block { border-radius: var(--radius-xl); padding: clamp(1.4rem, 2.4vw, 2rem); }
.selbst-block__title { font-family: var(--font-display); font-size: 1.22rem; color: var(--heading); margin-bottom: 0.9rem; }
.selbst-block p { color: var(--muted); font-size: 0.98rem; }
.selbst-block p + p { margin-top: 0.65rem; }
.selbst__cta { margin-top: clamp(2.2rem, 4vw, 3.2rem); text-align: center; }

/* ------------------------------------------------ 08 | FAQ */
.faq__list { display: grid; gap: 0.75rem; }
.faq__item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq__item[open] { border-color: var(--accent); }
.faq__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.4rem;
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--heading);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__chevron {
    flex: 0 0 auto;
    width: 10px; height: 10px;
    border-right: 2px solid var(--accent-deep);
    border-bottom: 2px solid var(--accent-deep);
    transform: rotate(45deg);
    transition: transform 0.3s var(--ease);
    margin-right: 2px;
}
.faq__item[open] .faq__chevron { transform: rotate(225deg); }
.faq__a { padding: 0 1.4rem 1.3rem; display: grid; gap: 0.6rem; }
.faq__a p { color: var(--muted); font-size: 0.99rem; }

/* ------------------------------------------------ 09 | Erster Schritt + Kontakt */
.cta__paras { margin-top: 1.7rem; display: grid; gap: 0.7rem; max-width: 36rem; }
.cta__paras p { color: var(--muted); font-size: 1.05rem; }
.cta__actions { margin-top: 2rem; }
.cta__media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    max-width: 460px;
    justify-self: end;
}
.cta__media img { display: block; width: 100%; height: auto; }

.section--contact { background: var(--surface-3); }
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5.5rem);
    align-items: start;
}
.contact__intro { margin-top: 1.5rem; display: grid; gap: 0.6rem; max-width: 33rem; }
.contact__intro p { color: var(--muted); font-size: 1.02rem; }
.contact__details { margin-top: 1.9rem; display: grid; gap: 0.85rem; }
.contact__row { display: grid; grid-template-columns: 9.5rem 1fr; gap: 1rem; align-items: baseline; }
.contact__row dt {
    font-family: var(--font-label);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
.contact__row dd { color: var(--heading); font-size: 1.02rem; }
.contact__row dd a { color: var(--accent-deep); font-weight: 500; }
.contact__row dd a:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact__closing {
    margin-top: 2.4rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.3rem, 1.1rem + 0.85vw, 1.8rem);
    color: var(--accent-deep);
    line-height: 1.35;
    max-width: 26rem;
}

/* ------------------------------------------------ 11 | Wichtiger Hinweis */
.section--hinweis { padding-block: clamp(2.5rem, 4vw, 4rem); }
.hinweis__box {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--surface);
    padding: clamp(1.5rem, 2.6vw, 2.2rem);
}
.hinweis__title {
    font-family: var(--font-label);
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--heading);
}
.hinweis__text { margin-top: 0.8rem; color: var(--muted); font-size: 0.95rem; }
.hinweis__text + .hinweis__text { margin-top: 0.6rem; }

.site-footer__ig { margin-top: 1rem; }
.site-footer__ig a { color: var(--on-panel-muted); font-size: 0.95rem; border-bottom: 1px solid transparent; transition: color 0.3s; }
.site-footer__ig a:hover { color: #fff; }

/* ------------------------------------------------ responsive for new sections */
@media (max-width: 1024px) {
    .thoughts__grid { grid-template-columns: 1fr; }
    .guidance__grid, .selbst__grid, .contact__inner { grid-template-columns: 1fr; }
    .guidance__media, .selbst__media { position: static; max-width: 560px; }
    .about__portrait { position: static; }
    .selbst__blocks { grid-template-columns: 1fr; }
    .testimonials__grid { columns: 1; }
    .cta__media { justify-self: start; max-width: 420px; }
}
@media (max-width: 600px) {
    .contact__row { grid-template-columns: 1fr; gap: 0.15rem; }
}

/* ------------------------------------------------ 02 | Gedanken — full-width
   pill card (odd last card). Desktop + tablet only; inside the mobile carousel
   (≤760px) it renders as a normal card. */
@media (min-width: 761px) {
    .thought-card--wide {
        grid-column: 1 / -1;
        border-radius: clamp(2.6rem, 5vw, 4.25rem);
        padding: clamp(2rem, 3.2vw, 2.9rem) clamp(2.4rem, 5.5vw, 4.5rem);
    }
}
@media (min-width: 1025px) {
    .thought-card--wide {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        gap: clamp(1.8rem, 4vw, 3.75rem);
        align-items: center;
    }
    .thought-card--wide .thought-card__quote { max-width: 24rem; }
    .thought-card--wide .thought-card__body { margin-top: 0; }
}

/* ------------------------------------------------ mobile carousels (≤760px)
   Scroll-snap swipe rows for card stacks. Horizontal scroll belongs ONLY to
   the [data-carousel] wrapper — never html/body. */
.carousel-dots { display: none; }

@media (max-width: 760px) {
    [data-carousel] {
        display: flex;
        grid-template-columns: none;
        columns: auto;
        gap: 0.9rem;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        padding-bottom: 0.35rem;
        margin-top: 0;
    }
    [data-carousel]::-webkit-scrollbar { display: none; height: 0; }
    [data-carousel] > * {
        flex: 0 0 85%;
        min-width: 0;
        scroll-snap-align: center;
        margin: 0;
    }
    /* reveal exemption: side slides must never sit at opacity:0 — the vertical
       IntersectionObserver can't see them. Slides are always visible here. */
    [data-carousel] > [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .testimonials__grid[data-carousel] .testimonial {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .selbst__blocks[data-carousel] { margin-top: clamp(2.4rem, 4vw, 3.6rem); }
    .photo-strip[data-carousel] { margin-top: clamp(2.6rem, 5vw, 4.2rem); }
    .photo-strip[data-carousel] img { flex: 0 0 78%; }
    /* Nils 28.07.: Ablauf-Schritte sind KEIN Karussell mehr — die Texte sind zu
       lang, im 85%-Slide wurden die Karten 298px schmal und 1243px hoch (alle auf
       gleiche Hoehe gestreckt = grosse Leerflaeche). Sie stapeln jetzt wie am
       Desktop ueber die volle Breite; zusaetzlich faellt die Ziffern-Spalte weg,
       damit der Text nicht in einer ~237px-Rinne haengt. */
    .step { grid-template-columns: 1fr; gap: 0.35rem; }
    .step__index { line-height: 1; }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.05rem;
    }
    .carousel-dots button {
        width: 7px;
        height: 7px;
        padding: 0;
        border-radius: 50%;
        background: var(--line-strong);
        transition: background 0.3s var(--ease), transform 0.3s var(--ease);
    }
    .carousel-dots button.is-active {
        background: var(--accent);
        transform: scale(1.35);
    }
    .section--ink .carousel-dots button { background: rgba(255, 255, 255, 0.28); }
    .section--ink .carousel-dots button.is-active { background: var(--on-panel-accent); }
}
