/* ---------- Self-hosted Schriften (DSGVO-konform, kein Google-CDN) ---------- */
@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url('fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:500; font-display:swap; src:url('fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url('fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:700; font-display:swap; src:url('fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family:'Space Grotesk'; font-style:normal; font-weight:500; font-display:swap; src:url('fonts/space-grotesk-500.woff2') format('woff2'); }
@font-face { font-family:'Space Grotesk'; font-style:normal; font-weight:700; font-display:swap; src:url('fonts/space-grotesk-700.woff2') format('woff2'); }

:root {
    --accent: #0d8f8f;
    --accent-bright: #14b8a6;
    --accent-deep: #075e5e;

    --paper: #f4f1ea;          /* warmes Off-White */
    --paper-2: #ece8df;
    --paper-card: #ffffff;
    --paper-line: rgba(20, 22, 26, 0.10);

    --ink: #111317;            /* Near-Black für dunkle Sektionen */
    --ink-2: #181b21;
    --ink-card: #1c2027;
    --ink-line: rgba(255, 255, 255, 0.10);

    --on-light: #14161a;
    --on-light-soft: #4d525c;
    --on-light-faint: #5f646e;  /* WCAG AA: ≥4.8:1 auf paper & paper-2 */
    --on-dark: #f4f3ef;
    --on-dark-soft: #aab0bb;
    --on-dark-faint: #7c828d;

    --display: 'Space Grotesk', system-ui, sans-serif;
    --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    --maxw: 1200px;
    --radius: 16px;

    /* Erlaubt das Animieren von 0 auf auto (Akkordeon-Übergang) */
    interpolate-size: allow-keywords;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--on-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, .display { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }

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

::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 5px; }

/* ---------- Accessibility ---------- */
.skip-to-content {
    position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
    background: var(--ink); color: #fff; padding: 0.9rem 1.8rem;
    border-radius: 0 0 10px 10px; z-index: 10000; transition: top 0.25s ease;
    text-decoration: none; font-weight: 600;
}
.skip-to-content:focus { top: 0; }

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

/* ---------- Layout-Helfer ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; width: 100%; }

section { scroll-margin-top: 84px; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: var(--display); font-weight: 500;
    font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--accent);
}
.eyebrow::before {
    content: ''; width: 26px; height: 1px; background: currentColor; opacity: 0.6;
}
.section--dark .eyebrow { color: var(--accent-bright); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin: 1.1rem 0 0; }
.section-head p { color: var(--on-light-soft); font-size: 1.1rem; margin-top: 1.1rem; max-width: 60ch; }
.section--dark .section-head p { color: var(--on-dark-soft); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 0.55rem;
    padding: 0.95rem 1.6rem; border-radius: 10px; font-weight: 600; font-size: 0.98rem;
    text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(13, 143, 143, 0.7); }
.btn-ghost-light { border-color: rgba(20,22,26,0.22); color: var(--on-light); background: transparent; }
.btn-ghost-light:hover { border-color: var(--on-light); background: rgba(20,22,26,0.04); }
.btn-ghost-dark { border-color: rgba(255,255,255,0.25); color: #fff; background: transparent; }
.btn-ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.arrow-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-weight: 600; text-decoration: none; color: var(--accent);
    transition: gap 0.25s ease;
}
.section--dark .arrow-link { color: var(--accent-bright); }
.arrow-link svg { width: 18px; height: 18px; }
.arrow-link:hover { gap: 0.85rem; }

/* ---------- Navigation ---------- */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.05rem 0; transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}
#navbar.scrolled {
    background: rgba(244, 241, 234, 0.85);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--paper-line);
    padding: 0.7rem 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.logo {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: var(--display); font-weight: 700; font-size: 1.15rem; text-decoration: none; color: var(--on-light);
    letter-spacing: -0.01em;
}
.logo-mark {
    width: 34px; height: 34px; border-radius: 9px; background: var(--accent); color: #fff;
    display: grid; place-items: center; font-size: 0.85rem; letter-spacing: 0;
}
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: var(--on-light-soft); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s ease; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--on-light); }
.mobile-only { display: none; }
.nav-cta { display: inline-flex; align-items: center; gap: 1.25rem; }
.nav-cta .btn { padding: 0.62rem 1.15rem; font-size: 0.9rem; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: transparent; border: none; }
.menu-toggle span { width: 24px; height: 2px; background: var(--on-light); transition: all 0.3s ease; transform-origin: center; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ---------- */
.hero { padding: clamp(8rem, 16vw, 11rem) 0 clamp(3rem, 6vw, 4.5rem); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-eyebrow { margin-bottom: 1.6rem; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); }
.hero h1 em { font-style: normal; position: relative; white-space: nowrap; }
.hero h1 em::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0.06em; height: 0.16em;
    background: var(--accent); opacity: 0.85; border-radius: 2px; z-index: -1;
}
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--on-light-soft); max-width: 56ch; margin: 1.6rem 0 2.2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-panel {
    background: var(--paper-card); border: 1px solid var(--paper-line); border-radius: var(--radius);
    padding: 1.6rem; box-shadow: 0 30px 60px -40px rgba(20,22,26,0.35);
}
.hero-panel-status { display: flex; align-items: center; gap: 0.55rem; font-size: 0.85rem; font-weight: 600; color: var(--on-light); margin-bottom: 1.4rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; position: relative; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); } 70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
.hero-panel-list { list-style: none; display: flex; flex-direction: column; }
.hero-panel-list li { display: flex; align-items: baseline; gap: 0.8rem; padding: 0.85rem 0; border-top: 1px solid var(--paper-line); font-weight: 600; font-size: 1.02rem; }
.hero-panel-list .idx { font-family: var(--display); font-size: 0.8rem; color: var(--accent); font-weight: 500; }
.hero-panel-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--paper-line); }
.hero-panel-foot strong { display: block; font-family: var(--display); font-size: 1.35rem; }
.hero-panel-foot span { font-size: 0.78rem; color: var(--on-light-faint); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Tech-Strip ---------- */
.techstrip { border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); background: var(--paper-2); }
.techstrip .wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem 1.6rem; padding-top: 1.1rem; padding-bottom: 1.1rem; }
.techstrip .label { font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-light-faint); margin-right: 0.5rem; }
.techstrip .item { font-weight: 600; font-size: 0.92rem; color: var(--on-light-soft); }
.techstrip .dot { color: var(--accent); opacity: 0.6; }

/* ---------- Leistungen (Services) ---------- */
.services-list { display: flex; flex-direction: column; gap: 1.25rem; }
.service {
    display: grid; grid-template-columns: 0.9fr 1.4fr 1.1fr; gap: 2rem;
    background: var(--ink-card); border: 1px solid var(--ink-line); border-radius: var(--radius);
    padding: clamp(1.6rem, 3vw, 2.6rem); transition: border-color 0.3s ease, transform 0.3s ease;
}
.service:hover { border-color: rgba(20,184,166,0.4); transform: translateY(-3px); }
.service-id { font-family: var(--display); font-size: 0.85rem; color: var(--accent-bright); letter-spacing: 0.1em; margin-bottom: 1rem; }
.service-head h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 0.9rem; }
.service-head p { color: var(--on-dark-soft); font-size: 1rem; }
.service-example {
    margin-top: 1.2rem; padding: 0.85rem 1rem; border-left: 2px solid var(--accent-bright);
    background: rgba(20,184,166,0.06); border-radius: 0 8px 8px 0; font-size: 0.88rem; color: var(--on-dark-soft);
}
.service-example b { color: #fff; font-weight: 600; }
.service-deliverables { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.service-deliverables li { display: flex; gap: 0.65rem; font-size: 0.94rem; color: var(--on-dark); }
.service-deliverables svg { width: 18px; height: 18px; color: var(--accent-bright); flex-shrink: 0; margin-top: 2px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.3rem; }
.tag {
    font-family: var(--display); font-size: 0.72rem; padding: 0.28rem 0.65rem; border-radius: 6px;
    background: rgba(255,255,255,0.06); color: var(--on-dark-soft); border: 1px solid var(--ink-line);
}

/* ---------- Arbeiten (Cases) ---------- */
.cases { display: flex; flex-direction: column; gap: clamp(3.5rem, 7vw, 6rem); }
.case { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.case:nth-child(even) .case-visual { order: 2; }
.case-visual { position: relative; }
.mockup {
    border-radius: 14px; overflow: hidden; border: 1px solid var(--paper-line);
    box-shadow: 0 40px 80px -50px rgba(20,22,26,0.55); background: #fff; transition: transform 0.5s ease;
}
.mockup:hover { transform: translateY(-6px); }
.browser-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 0.9rem; background: var(--paper-2); border-bottom: 1px solid var(--paper-line); }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url { flex: 1; background: #fff; border: 1px solid var(--paper-line); border-radius: 6px; padding: 0.35rem 0.8rem; font-family: var(--display); font-size: 0.72rem; color: var(--on-light-faint); margin-left: 0.5rem; }
.mockup-screen { aspect-ratio: 16/10; background: var(--paper-2); position: relative; overflow: hidden; }
.mockup-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.mockup-fallback { position: absolute; inset: 0; display: none; place-items: center; flex-direction: column; gap: 0.5rem; background: var(--ink); color: #fff; font-family: var(--display); }

.case-kicker { display: inline-flex; gap: 0.6rem; align-items: center; font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.case-info h3 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
.case-row { margin-bottom: 1rem; }
.case-row .k { font-family: var(--display); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-light-faint); display: block; margin-bottom: 0.25rem; }
.case-row .v { color: var(--on-light-soft); }
.case-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.4rem 0; }
.chip { font-size: 0.82rem; font-weight: 500; padding: 0.35rem 0.8rem; border-radius: 50px; background: var(--paper-2); border: 1px solid var(--paper-line); color: var(--on-light-soft); }

.cases-note { margin-top: clamp(2.5rem, 5vw, 4rem); text-align: center; color: var(--on-light-soft); font-size: 0.98rem; }

/* ---------- Prozess ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: step; }
.step { background: var(--ink-2); border: 1px solid var(--ink-line); border-radius: var(--radius); padding: 1.8rem 1.5rem; position: relative; }
.step-num { font-family: var(--display); font-size: 2.4rem; color: #fff; line-height: 1; margin-bottom: 1rem; }
.step h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.step p { color: var(--on-dark-soft); font-size: 0.92rem; }

/* ---------- Pakete ---------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.package { background: var(--paper-card); border: 1px solid var(--paper-line); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.package:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -45px rgba(20,22,26,0.5); border-color: rgba(13,143,143,0.4); }
.package.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.package-label { display: inline-block; font-family: var(--display); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.package h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.package > p { color: var(--on-light-soft); font-size: 0.95rem; margin-bottom: 1.4rem; }
.package-model { font-family: var(--display); font-weight: 500; font-size: 0.92rem; color: var(--on-light); padding-bottom: 1.3rem; margin-bottom: 1.3rem; border-bottom: 1px solid var(--paper-line); }
.package-model span { color: var(--on-light-faint); }
.package-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; flex: 1; }
.package-list li { display: flex; gap: 0.6rem; font-size: 0.92rem; color: var(--on-light-soft); }
.package-list svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }

/* ---------- Über mich ---------- */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.4fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-photo { position: relative; max-width: 320px; }
.about-photo img { border-radius: var(--radius); border: 1px solid var(--ink-line); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-photo .badge { position: absolute; bottom: -14px; left: -14px; background: var(--accent); color: #fff; font-family: var(--display); font-weight: 700; padding: 0.7rem 1rem; border-radius: 12px; line-height: 1.1; }
.about-photo .badge span { display: block; font-family: var(--sans); font-weight: 500; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.9; }
.about-content h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin: 1rem 0 1.4rem; }
.about-content p { color: var(--on-dark-soft); font-size: 1.05rem; margin-bottom: 1.1rem; }
.about-content strong { color: #fff; font-weight: 600; }
.principles { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.principle { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; border: 1px solid var(--ink-line); border-radius: 50px; font-size: 0.88rem; font-weight: 500; }
.principle svg { width: 16px; height: 16px; color: var(--accent-bright); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--paper-line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--display); font-weight: 500; font-size: 1.1rem; color: var(--on-light); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform 0.3s ease; }
.faq-item summary .icon::before, .faq-item summary .icon::after { content: ''; position: absolute; background: var(--accent); border-radius: 2px; }
.faq-item summary .icon::before { top: 10px; left: 0; right: 0; height: 2px; }
.faq-item summary .icon::after { left: 10px; top: 0; bottom: 0; width: 2px; transition: transform 0.3s ease; }
.faq-item[open] summary .icon::after { transform: scaleY(0); }
/* Sanftes Auf-/Zuklappen (Progressive Enhancement: ohne Support öffnet es sofort) */
.faq-item::details-content {
    block-size: 0;
    overflow: hidden;
    transition: block-size 0.35s ease, content-visibility 0.35s ease allow-discrete;
}
.faq-item[open]::details-content { block-size: auto; }
.faq-item .answer { padding: 0 0 1.5rem; color: var(--on-light-soft); max-width: 70ch; opacity: 0; transform: translateY(-6px); transition: opacity 0.35s ease, transform 0.35s ease; }
.faq-item[open] .answer { opacity: 1; transform: translateY(0); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-grid--center { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; text-align: center; }
.contact-intro h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 1rem 0 1.2rem; }
.contact-intro p { color: var(--on-dark-soft); font-size: 1.1rem; margin-bottom: 2rem; max-width: 44ch; }
.contact-grid--center .contact-intro p { margin-left: auto; margin-right: auto; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-bottom: 2.6rem; }
#copy-mail { font-family: var(--sans); }
#copy-mail.copied { border-color: var(--accent-bright); color: var(--accent-bright); }
.contact-direct { display: flex; flex-direction: column; gap: 1.1rem; max-width: 360px; margin: 0 auto; text-align: left; }
.contact-direct a, .contact-direct .ci { display: flex; align-items: center; gap: 0.9rem; color: var(--on-dark); text-decoration: none; font-weight: 500; }
.contact-direct .ci-ico { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid var(--ink-line); display: grid; place-items: center; flex-shrink: 0; }
.contact-direct .ci-ico svg { width: 19px; height: 19px; color: var(--accent-bright); }
.contact-direct small { display: block; color: var(--on-dark-faint); font-weight: 400; font-size: 0.78rem; }

/* ---------- Prose (Textseiten / Landingpages) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin: 2.6rem 0 1rem; }
.prose h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); margin: 1.8rem 0 0.7rem; }
.prose p { color: var(--on-light-soft); margin-bottom: 1.1rem; font-size: 1.05rem; }
.section--dark .prose p { color: var(--on-dark-soft); }
.prose ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin: 0 0 1.4rem; }
.prose ul li { display: flex; gap: 0.65rem; color: var(--on-light-soft); font-size: 1.02rem; }
.prose ul li svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.prose a:not(.btn) { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--on-light); font-weight: 600; }

/* Breadcrumb */
.breadcrumb { font-size: 0.85rem; color: var(--on-light-faint); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--on-light-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.6; }

/* ---------- Footer ---------- */
footer { background: var(--paper-2); color: var(--on-light-soft); padding: 3rem 0 2.5rem; font-size: 0.9rem; border-top: 1px solid var(--paper-line); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-brand { font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--on-light); }
.footer-brand p { font-family: var(--sans); font-weight: 400; font-size: 0.9rem; color: var(--on-light-soft); margin-top: 0.4rem; max-width: 34ch; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { color: var(--on-light-soft); text-decoration: none; }
.footer-nav a:hover { color: var(--on-light); }
.footer-legal { border-top: 1px solid var(--paper-line); padding-top: 1.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.footer-legal .legal-title { font-family: var(--display); font-weight: 500; color: var(--on-light); margin-bottom: 0.4rem; font-size: 0.92rem; }
.footer-legal p { font-size: 0.8rem; line-height: 1.65; }
.footer-bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--paper-line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; }
.footer-bottom a { color: var(--accent); text-decoration: none; }

/* ---------- Reveal-Animation (nur bei aktivem JS verstecken) ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.active { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-panel { max-width: 480px; }
    .service { grid-template-columns: 1fr; gap: 1.4rem; }
    .service-deliverables { display: grid; grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .packages { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
    .about-photo { margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .case { grid-template-columns: 1fr; gap: 1.8rem; }
    .case:nth-child(even) .case-visual { order: 0; }
}
@media (max-width: 640px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); backdrop-filter: blur(14px); flex-direction: column; align-items: flex-start; padding: 1.5rem; gap: 1.25rem; border-bottom: 1px solid var(--paper-line); box-shadow: 0 20px 40px -20px rgba(20,22,26,0.25); }
    .nav-links.active { display: flex; }
    .nav-links .mobile-only { display: block; }
    .nav-links .mobile-only a { color: var(--accent); font-weight: 600; }
    .nav-cta .btn { display: none; }
    .menu-toggle { display: flex; }
    .service-deliverables { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-legal { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}
