* { cursor: none !important; }

:root {
    --bg:      #f5f2ec;
    --ink:     #0f0e0b;
    --rust:    #b84a2e;
    --ochre:   #c89832;
    --forest:  #1e3a2f;
    --cream:   #f0ebe0;
    --pale:    #e8e2d4;
    --charcoal:#2a2825;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Syne', sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
}

/* CUSTOM CURSOR */
.cursor {
    position: fixed; width: 12px; height: 12px;
    background: var(--rust); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    box-shadow: 0 0 8px 2px rgba(184,74,46,0.55), 0 0 0 1.5px rgba(255,255,255,0.25);
}
.cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1.5px solid var(--rust); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s; opacity: 0.85;
    box-shadow: 0 0 6px 1px rgba(184,74,46,0.25);
}

/* ═══════════════════════════════════
   LANGUAGE SELECTOR PAGE — SPLIT SCREEN
═══════════════════════════════════ */
#lang-screen {
    position: fixed; inset: 0; z-index: 8000;
    display: grid; grid-template-columns: 1fr 1fr;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
#lang-screen.hidden {
    opacity: 0; visibility: hidden; pointer-events: none;
}

/* Left panel — cream/light */
.lang-panel-en {
    background: var(--cream);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 4rem 3rem;
    position: relative; overflow: hidden;
}
/* Right panel — forest/dark */
.lang-panel-de {
    background: var(--forest);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 4rem 3rem;
    position: relative; overflow: hidden;
}

/* Shared WRB watermark across both panels */
.lang-watermark {
    position: absolute; top: 50%; left: 0; right: 0;
    transform: translateY(-50%);
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(10rem, 18vw, 18rem);
    font-weight: 900; letter-spacing: -0.05em;
    white-space: nowrap; pointer-events: none;
    user-select: none; text-align: center;
    width: 200%; left: -50%;
}
.lang-panel-en .lang-watermark { color: rgba(15,14,11,0.04); }
.lang-panel-de .lang-watermark { color: rgba(255,255,255,0.04); }


.lang-name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700; letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.lang-panel-en .lang-name { color: var(--ink); }
.lang-panel-de .lang-name { color: var(--cream); }

.lang-subtitle {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    font-weight: 300; font-style: italic;
    line-height: 1.65; max-width: 380px;
    margin-bottom: 3.5rem;
}
.lang-panel-en .lang-subtitle { color: #5a5651; }
.lang-panel-de .lang-subtitle { color: rgba(240,235,224,0.6); }

.lang-select-label {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.28em;
    text-transform: uppercase; margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.8rem;
}
.lang-panel-en .lang-select-label { color: var(--rust); }
.lang-panel-de .lang-select-label { color: var(--ochre); }
.lang-select-label::before, .lang-select-label::after {
    content: ''; display: block; height: 1px; width: 28px;
}
.lang-panel-en .lang-select-label::before,
.lang-panel-en .lang-select-label::after { background: var(--rust); }
.lang-panel-de .lang-select-label::before,
.lang-panel-de .lang-select-label::after { background: var(--ochre); }

/* Language buttons */
.lang-btn {
    position: relative; overflow: hidden;
    display: inline-flex; flex-direction: column;
    align-items: center; gap: 0.5rem;
    padding: 1.4rem 2.8rem;
    text-decoration: none; border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    pointer-events: all;
}
.lang-btn:hover { transform: translateY(-3px); }

/* EN button — forest green on cream panel */
.lang-btn-en {
    background: var(--forest); color: var(--cream);
    box-shadow: 0 4px 24px rgba(30,58,47,0.25);
}
.lang-btn-en:hover { box-shadow: 0 8px 32px rgba(30,58,47,0.4); }

/* DE button — cream on forest panel */
.lang-btn-de {
    background: var(--cream); color: var(--forest);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.lang-btn-de:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.35); }

.lang-btn-code {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.5rem; font-weight: 900;
    letter-spacing: -0.02em; line-height: 1;
}
.lang-btn-desc {
    font-family: 'Syne', sans-serif;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    opacity: 0.6;
}
.lang-btn-arrow {
    font-size: 0.85rem; margin-top: 0.2rem;
    transition: transform 0.2s;
}
.lang-btn:hover .lang-btn-arrow { transform: translateX(4px); }

/* Divider line between panels */
#lang-screen::after {
    content: '';
    position: absolute; top: 0; left: 50%;
    width: 1px; height: 100%;
    background: rgba(15,14,11,0.12);
    z-index: 10; pointer-events: none;
}

/* Footer strip */
.lang-footer-strip {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 1.2rem;
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; z-index: 20;
    pointer-events: none;
}
.lang-panel-en .lang-footer-strip { color: rgba(15,14,11,0.2); }
.lang-panel-de .lang-footer-strip { color: rgba(240,235,224,0.2); }

/* ═══════════════════════════════════
   MAIN SITE (hidden until lang chosen)
═══════════════════════════════════ */
#main-site {
    opacity: 0; transition: opacity 0.7s ease 0.1s;
}
#main-site.visible { opacity: 1; }

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 3rem;
    background: rgba(245, 242, 236, 0.90);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15,14,11,0.07);
}
.nav-mark {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.05rem; font-weight: 700;
    letter-spacing: 0.02em; color: var(--ink);
    white-space: nowrap;
}
.nav-items { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-items a {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--ink);
    text-decoration: none; transition: color 0.2s;
}
.nav-items a:hover { color: var(--rust); }
.nav-lang-switch {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(15,14,11,0.4);
    border: none; background: none;
    transition: color 0.2s; padding: 0;
}
.nav-lang-switch:hover { color: var(--rust); }
.nav-cta-pill {
    background: var(--rust); color: var(--cream);
    padding: 0.55rem 1.3rem;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; border-radius: 40px;
    transition: background 0.2s, color 0.2s;
}
.nav-cta-pill:hover { background: var(--charcoal); color: var(--cream); }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 0 3rem 5rem;
    position: relative; overflow: hidden;
    background: var(--cream);
}
.hero-graphic {
    position: absolute; top: 0; right: 0;
    width: 55%; height: 100%;
    background: var(--forest);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}
.hero-tagline-vert {
    position: absolute; right: 2.5rem; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.3em;
    text-transform: uppercase; color: rgba(240,235,224,0.35);
    white-space: nowrap; z-index: 2;
}
.hero-nr {
    position: absolute; top: 7rem; left: 3rem;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 16rem; font-weight: 900;
    color: var(--pale); line-height: 1;
    user-select: none; z-index: 0; letter-spacing: -0.05em;
}
.hero-content { position: relative; z-index: 3; max-width: 52%; }
.hero-slash {
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--rust);
    margin-bottom: 1.5rem; white-space: nowrap;
    display: flex; align-items: center; gap: 0.8rem;
}
.hero-slash .slash-line { display: block; flex-shrink: 0; width: 28px; height: 2px; background: var(--rust); }
.hero-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(3.5rem, 7.5vw, 7rem);
    font-weight: 900; line-height: 0.95;
    letter-spacing: -0.03em; color: var(--ink); margin-bottom: 2.5rem;
}
.hero-title .line-2 { font-style: italic; color: var(--rust); }
.hero-title .line-3 { font-weight: 300; font-style: italic; }
.hero-right-content {
    position: absolute; right: 3rem; bottom: 5rem;
    z-index: 3; max-width: 320px; text-align: right;
}
.hero-right-content p {
    font-size: 0.88rem; color: rgba(240,235,224,0.75);
    line-height: 1.75; margin-bottom: 2rem; font-weight: 400;
}
.hero-right-cta {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--ochre);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.6rem;
    transition: gap 0.2s;
}
.hero-right-cta:hover { gap: 1rem; }
.hero-right-cta::after { content: '↗'; }

/* TICKER */
.ticker {
    background: var(--rust); padding: 0.85rem 0;
    overflow: hidden; display: flex;
}
.ticker-inner {
    display: flex; gap: 4rem; white-space: nowrap;
    animation: ticker 22s linear infinite;
}
.ticker-item {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--cream);
    display: flex; align-items: center; gap: 4rem;
}
.ticker-item::after { content: '✦'; font-size: 0.5rem; opacity: 0.6; }
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* SERVICES */
.services-section { padding: 8rem 3rem; background: var(--bg); }
.services-header-row {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 5rem; gap: 3rem;
}
.services-h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900; line-height: 0.95;
    letter-spacing: -0.03em; color: var(--ink);
}
.services-h2 em { font-style: italic; color: var(--rust); }
.services-header-sub {
    font-size: 0.85rem; color: #6b6560;
    line-height: 1.8; max-width: 360px;
}
.services-accordion { border-top: 2px solid var(--ink); }
.accordion-item {
    border-bottom: 1px solid rgba(15,14,11,0.15); overflow: hidden;
}
.accordion-head {
    display: flex; align-items: center;
    padding: 2.2rem 0; gap: 2rem;
}
.accordion-head:hover .accordion-nr { color: var(--rust); }
.accordion-nr {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.1rem; font-weight: 700;
    color: #b8b3ac; transition: color 0.2s; min-width: 2.5rem;
}
.accordion-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 700; letter-spacing: -0.02em; flex: 1;
}
.accordion-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: flex-end; }
.acc-tag {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 30px;
    background: var(--pale); color: var(--charcoal);
}
.accordion-plus {
    font-size: 1.4rem; font-weight: 300; color: var(--rust);
    min-width: 1.5rem; text-align: right; transition: transform 0.3s;
}
.accordion-item.open .accordion-plus { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.accordion-item.open .accordion-body { max-height: 900px; }
.accordion-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; padding: 0 0 3rem 4.5rem;
}
.accordion-desc { font-size: 0.9rem; color: #5a5651; line-height: 1.85; }
.accordion-list { list-style: none; }
.accordion-list li {
    font-size: 0.82rem; color: var(--charcoal);
    padding: 0.7rem 0; border-bottom: 1px solid var(--pale);
    display: flex; align-items: flex-start; gap: 0.8rem; line-height: 1.5;
}
.accordion-list li::before {
    content: ''; display: block;
    width: 18px; height: 2px; background: var(--rust);
    flex-shrink: 0; margin-top: 0.55rem;
}
.li-main { font-weight: 700; display: block; margin-bottom: 0.2rem; }
.li-sub { font-size: 0.76rem; color: #7a7470; display: block; font-weight: 400; }

/* STATEMENT */
.fw-statement {
    background: var(--forest); padding: 7rem 3rem;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    position: relative; overflow: hidden;
}
.fw-bg-text {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18rem; font-weight: 900;
    color: rgba(255,255,255,0.03); white-space: nowrap;
    letter-spacing: -0.05em; pointer-events: none; user-select: none;
}
.fw-label {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--ochre); margin-bottom: 2rem;
}
.fw-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 300; font-style: italic;
    color: var(--cream); line-height: 1.35;
    max-width: 800px; position: relative; z-index: 1;
}

/* PROFILE GRID */
.profile-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--ink);
}
.profile-cell {
    padding: 4rem 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.profile-cell:last-child { border-right: none; }
.cell-label {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--ochre); margin-bottom: 0.8rem;
}
.cell-val {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900; color: var(--cream);
    line-height: 1; margin-bottom: 0.6rem;
}
.cell-sub { font-size: 0.78rem; color: rgba(240,235,224,0.45); line-height: 1.6; }

/* CTA */
.cta-big {
    padding: 8rem 3rem; background: var(--cream);
    display: grid; grid-template-columns: 3fr 2fr;
    gap: 4rem; align-items: center;
}
.cta-title-big {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900; line-height: 0.92; letter-spacing: -0.04em; color: var(--ink);
}
.cta-title-big em { font-style: italic; color: var(--rust); display: block; }
.cta-right-block p {
    font-size: 0.9rem; color: #5a5651; line-height: 1.85; margin-bottom: 2.5rem;
}
.avail-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--forest); color: var(--cream);
    padding: 0.6rem 1.2rem; border-radius: 30px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 2rem;
}
.avail-dot { width: 7px; height: 7px; border-radius: 50%; background: #6dce86; }
.cta-link-big {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 700; color: var(--rust);
    text-decoration: none; letter-spacing: -0.02em;
    border-bottom: 2px solid currentColor;
    padding-bottom: 0.2rem; transition: color 0.2s;
}
.cta-link-big:hover { color: var(--ink); }

/* FOOTER */
footer {
    background: var(--ink); padding: 2.5rem 3rem;
    display: flex; align-items: center; justify-content: space-between;
}
.footer-wm {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1rem; font-weight: 700;
    color: var(--cream); letter-spacing: -0.01em;
}
footer p { font-size: 0.72rem; color: rgba(240,235,224,0.4); }
.footer-lang {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(240,235,224,0.3);
    background: none; border: none;
    transition: color 0.2s;
}
.footer-lang:hover { color: var(--ochre); }

/* ANIMATIONS */
@keyframes rise {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-slash   { animation: rise 0.7s ease 0.1s both; }
.hero-title   { animation: rise 0.7s ease 0.25s both; }
.hero-right-content { animation: rise 0.7s ease 0.5s both; }

.email-block {
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.copy-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--charcoal);
    background: var(--pale); border: none;
    padding: 0.55rem 1rem; cursor: none;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.copy-btn:hover { background: var(--forest); color: var(--cream); }
.copy-btn.copied { background: var(--forest); color: var(--cream); }

/* IMPRESSUM OVERLAY */
#impressum-screen {
    position: fixed; inset: 0; z-index: 7000;
    background: var(--bg);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow-y: auto;
}
#impressum-screen.visible {
    opacity: 1; visibility: visible; pointer-events: all;
}
.imp-inner {
    max-width: 780px; margin: 0 auto;
    padding: 8rem 3rem 6rem;
}
.imp-close {
    cursor: none;
    position: fixed; top: 1.8rem; right: 3rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--rust);
    background: none; border: none;
    display: flex; align-items: center; gap: 0.5rem;
    transition: gap 0.2s; z-index: 10;
}
.imp-close:hover { gap: 0.9rem; }
.imp-close::before { content: '←'; }
.imp-eyebrow {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--rust);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
}
.imp-eyebrow::before {
    content: ''; display: block; width: 28px; height: 2px; background: var(--rust);
}
.imp-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900; line-height: 0.95;
    letter-spacing: -0.03em; color: var(--ink);
    margin-bottom: 3.5rem;
}
.imp-title em { font-style: italic; color: var(--rust); }
.imp-block { margin-bottom: 3rem; }
.imp-block-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--ink); margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--pale);
}
.imp-block p {
    font-size: 0.88rem; color: #5a5651;
    line-height: 1.85; margin-bottom: 0.6rem;
}
.imp-block a {
    color: var(--rust); text-decoration: none;
    border-bottom: 1px solid rgba(184,74,46,0.3);
    transition: border-color 0.2s;
}
.imp-block a:hover { border-color: var(--rust); }
.imp-divider {
    height: 1px; background: var(--pale);
    margin: 2.5rem 0;
}
.imp-footer-note {
    font-size: 0.75rem; color: #8a8580;
    line-height: 1.7; font-style: italic;
}

/* GERMAN CONTENT hidden by default */
[data-lang="de"] { display: none; }

/* HAMBURGER BUTTON */
.nav-burger {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 36px; height: 36px;
    background: none; border: none; padding: 4px;
    z-index: 600;
}
.nav-burger span {
    display: block; width: 22px; height: 2px;
    background: var(--ink);
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(245,242,236,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 550;
    display: flex; flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 3rem;
    gap: 0;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    border-bottom: 1px solid rgba(15,14,11,0.08);
}
.mobile-nav.open { transform: translateY(0); }

.mobile-nav-link {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2rem, 8vw, 2.8rem);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--ink); text-decoration: none;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(15,14,11,0.08);
    width: 100%;
    transition: color 0.2s;
}
.mobile-nav-link:last-of-type { border-bottom: none; }
.mobile-nav-link:hover { color: var(--rust); }

.mobile-nav-cta {
    color: var(--rust);
    margin-top: 0.5rem;
}

.mobile-nav-lang {
    margin-top: 2rem;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: rgba(15,14,11,0.35);
    background: none; border: none; padding: 0;
    transition: color 0.2s;
}
.mobile-nav-lang:hover { color: var(--rust); }

a, button, .accordion-head, .lang-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

@media (hover: none) {
    * { cursor: auto !important; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .ticker-inner { animation: none; }
}

@media (max-width: 900px) {

    /* Lang-Screen */
    #lang-screen {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
    #lang-screen::after {
        top: 50%; left: 0;
        width: 100%; height: 1px;
    }
    .lang-panel-en, .lang-panel-de { padding: 3rem 2rem; }
    .lang-subtitle { margin-bottom: 2rem; }

    /* Nav */
    nav { padding: 1.1rem 2rem; }
    .nav-items { display: none; }
    .nav-burger { display: flex; }

    /* Hero */
    .hero { padding: 0 2rem 4rem; }
    .hero-graphic {
        width: 100%;
        clip-path: polygon(0 58%, 100% 42%, 100% 100%, 0 100%);
    }
    .hero-nr { font-size: 9rem; top: 5.5rem; left: 2rem; }
    .hero-content { max-width: 100%; }
    .hero-tagline-vert { display: none; }
    .hero-right-content {
        position: relative;
        right: auto; bottom: auto;
        text-align: left;
        max-width: 100%;
        margin-top: 2.5rem;
    }
    .hero-right-content p {
        color: rgba(15,14,11,0.6);
    }
    .hero-right-cta { color: var(--rust); }

    /* Services */
    .services-section { padding: 5rem 2rem; }
    .services-header-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
        gap: 1.5rem;
    }
    .services-header-sub { max-width: 100%; }
    .accordion-head { padding: 1.6rem 0; gap: 1rem; }
    .accordion-tags { display: none; }
    .accordion-inner {
        grid-template-columns: 1fr;
        padding: 0 0 2rem 0;
        gap: 1.5rem;
    }

    /* Statement */
    .fw-statement { padding: 5rem 2rem; }
    .fw-bg-text { font-size: 10rem; }

    /* Profile grid: 2 Spalten */
    .profile-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-cell { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .profile-cell:nth-child(even) { border-right: none; }
    .profile-cell { padding: 3rem 2rem; }

    /* CTA */
    .cta-big {
        grid-template-columns: 1fr;
        padding: 5rem 2rem;
        gap: 2.5rem;
    }

    /* Footer */
    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 2rem 2rem;
    }

    /* Impressum */
    .imp-inner { padding: 6rem 2rem 4rem; }
    .imp-close { right: 2rem; }
}

/* ═══════════════════════════════════
   MOBIL — max 480px
═══════════════════════════════════ */
@media (max-width: 480px) {

    /* Lang-Screen */
    .lang-panel-en, .lang-panel-de { padding: 2.5rem 1.5rem; }
    .lang-name { font-size: 1.1rem; }
    .lang-subtitle { font-size: 0.85rem; margin-bottom: 1.5rem; }
    .lang-btn { padding: 1.1rem 2rem; }
    .lang-btn-desc { display: none; }

    /* Nav */
    nav { padding: 1rem 1.2rem; }
    .nav-mark { font-size: 0.9rem; }

    /* Hero */
    .hero { padding: 0 1.2rem 3.5rem; }
    .hero-nr { font-size: 5.5rem; top: 5rem; left: 1.2rem; }
    .hero-title { margin-bottom: 1.5rem; }
    .hero-graphic {
        clip-path: polygon(0 65%, 100% 50%, 100% 100%, 0 100%);
    }

    /* Services */
    .services-section { padding: 4rem 1.2rem; }
    .accordion-title { font-size: 1.2rem; }

    /* Profile: 1 Spalte */
    .profile-grid { grid-template-columns: 1fr; }
    .profile-cell { border-right: none; }
    .profile-cell:last-child { border-bottom: none; }

    /* CTA */
    .cta-big { padding: 4rem 1.2rem; }
    .cta-link-big { font-size: 1.15rem; word-break: break-all; }
    .email-block { flex-direction: column; align-items: flex-start; }

    /* Footer */
    footer { padding: 2rem 1.2rem; }

    /* Impressum */
    .imp-inner { padding: 5rem 1.2rem 3rem; }
    .imp-close { right: 1.2rem; top: 1.2rem; }
}