*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue: #5b7de8;
    --blue-dim: rgba(91,125,232,0.12);
    --bg: #0d0d0d;
    --surface: #141414;
    --border: rgba(255,255,255,0.08);
    --text: #f0ede8;
    --muted: rgba(240,237,232,0.4);
    --font: 'Satoshi', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

body.custom-cursor {
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    background: var(--blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
    transform: translate(-50%,-50%);
}
.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1px solid rgba(91,125,232,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: transform 0.35s cubic-bezier(.16,1,.3,1), width 0.25s ease, height 0.25s ease, opacity 0.2s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 56px; height: 56px; opacity: 0.6; }

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    background: linear-gradient(to bottom, rgba(13,13,13,0.95), transparent);
}
.nav-logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text);
    text-decoration: none;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 72px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(91,125,232,0.08) 0%, transparent 70%),
    repeating-linear-gradient(
        0deg,
        transparent,
        transparent 39px,
        rgba(255,255,255,0.025) 39px,
        rgba(255,255,255,0.025) 40px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 79px,
        rgba(255,255,255,0.015) 79px,
        rgba(255,255,255,0.015) 80px
    );
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}
.hero-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--blue);
}
.hero-title {
    font-size: clamp(80px, 14vw, 200px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.9s 0.35s forwards;
}
.hero-title .accent { color: var(--blue); }
.hero-sub {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
}
.hero-desc {
    max-width: 360px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}
.hero-scroll {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ── TICKER ── */
.ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 14px 0;
    background: var(--surface);
}
.ticker-inner {
    display: flex;
    gap: 64px;
    animation: ticker 18s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    flex-shrink: 0;
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section { padding: 120px 48px; }
.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ── WORKS ── */
#works { background: var(--bg); }
.works-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
}
.works-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}
.works-count {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.06em;
    padding-bottom: 6px;
}
.works-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}
.work-card {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: none;
}
.work-card:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.work-card:nth-child(2) { grid-column: span 5; }
.work-card:nth-child(3) { grid-column: span 5; }
.work-card:nth-child(4) { grid-column: span 4; }
.work-card:nth-child(5) { grid-column: span 4; }
.work-card:nth-child(6) { grid-column: span 4; }

.work-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.16,1,.3,1);
    background: var(--surface);
}
.work-card:nth-child(1) .work-img { aspect-ratio: 2/3; height: 100%; }
.work-card:hover .work-img { transform: scale(1.04); }

/* placeholder visuals for the cards */
.work-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}
.work-card:nth-child(1) .work-placeholder { aspect-ratio: auto; height: 100%; min-height: 500px; }
.work-placeholder { aspect-ratio: 3/2; }

.work-placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}
.placeholder-icon {
    width: 48px; height: 48px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.placeholder-icon svg { opacity: 0.2; }
.placeholder-label {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.15);
}
/* Subtle grain overlay */
.work-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.work-info {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
}
.work-name { font-size: 13px; font-weight: 500; }
.work-num { font-size: 13px; color: var(--blue); font-weight: 700; letter-spacing: 0.06em; }

/* hover overlay */
.work-overlay {
    position: absolute;
    inset: 0;
    background: rgba(91,125,232,0.06);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.work-card:hover .work-overlay { opacity: 1; }

/* ── ABOUT ── */
#about {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.about-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 32px;
}
.about-title em { color: var(--blue); font-style: normal; }
.about-body p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.stat-box {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 32px 28px;
}
.stat-num {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── CONTACT ── */
#contact { background: var(--bg); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-headline {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.95;
}
.contact-headline .line2 { color: var(--blue); }
.contact-sub {
    font-size: 14px;
    color: var(--muted);
    margin-top: 28px;
    line-height: 1.7;
    max-width: 320px;
}
.contact-details { display: flex; flex-direction: column; gap: 4px; }
.contact-item {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.2s;
}
.contact-item:hover { border-color: rgba(91,125,232,0.4); }
.contact-item-label {
    background: var(--surface);
    padding: 20px 24px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    min-width: 100px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border);
}
.contact-item-value {
    padding: 20px 24px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.contact-item-value a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-item-value a:hover { color: var(--blue); }

.contact-cta {
    margin-top: 28px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--blue);
    color: #fff;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: none;
    transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: #7090f0; transform: translateY(-1px); }
.btn svg { transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

/* ── PAGE HEADER ── */
.page-header {
    padding: 160px 48px 72px;
    border-bottom: 1px solid var(--border);
}
.page-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 24px;
}
.page-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--blue);
}
.page-title {
    font-size: clamp(36px, 7vw, 90px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
}
.page-title span { color: var(--blue); }
.page-meta {
    margin-top: 28px;
    font-size: 13px;
    color: var(--muted);
    display: flex;
    gap: 32px;
}
.page-meta strong { color: var(--text); font-weight: 500; }

/* ── CONTENT ── */
.content {
    max-width: 860px;
    padding: 80px 48px 120px;
}

.block {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}
.block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.block-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
}

.block-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.2;
}

p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 14px;
}
p:last-child { margin-bottom: 0; }

h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 28px 0 10px;
}

ul {
    margin: 0 0 14px 0;
    padding-left: 0;
    list-style: none;
}
ul li {
    display: flex;
    gap: 12px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
ul li::before {
    content: '—';
    color: var(--blue);
    flex-shrink: 0;
    font-weight: 700;
}

.rights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-top: 20px;
}
.right-box {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 20px 22px;
    transition: border-color 0.2s;
}
.right-box:hover { border-color: rgba(91,125,232,0.35); }
.right-box-icon {
    font-size: 18px;
    margin-bottom: 10px;
}
.right-box-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.right-box-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.data-row {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    margin-bottom: 4px;
    overflow: hidden;
}
.data-key {
    background: var(--surface);
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    min-width: 200px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border);
    flex-shrink: 0;
}
.data-val {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    line-height: 1.6;
}
.data-val a {
    color: var(--blue);
    text-decoration: none;
    border-bottom: 1px solid rgba(91,125,232,0.3);
    transition: border-color 0.2s;
}
.data-val a:hover { border-color: var(--blue); }

.notice {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue);
    padding: 20px 24px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 24px;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Bilder in den Work-Cards */
.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(.16,1,.3,1);
}

/* Wrapper für das Seitenverhältnis (Karten 2–6) */
.work-card .img-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

/* Große Karte (Karte 1) braucht feste Höhe statt aspect-ratio */
.work-card:nth-child(1) .img-wrap {
  aspect-ratio: unset;
  height: 100%;
  min-height: 560px;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    padding: 28px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface);
}
.footer-logo {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text);
}
.footer-logo span { color: var(--blue); }
.footer-copy {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.04em;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.06em;
}
.footer-links a:hover { color: var(--blue); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav { padding: 20px 24px; }
    section { padding: 80px 24px; }
    .hero { padding: 0 24px 60px; }
    .works-grid { grid-template-columns: 1fr 1fr; }
    .work-card:nth-child(1) { grid-column: span 2; }
    .work-card:nth-child(n+2) { grid-column: span 1; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
    .nav-links { display: none; }
}

@font-face {
font-family: 'Satoshi';
src: url('fonts/Satoshi-Regular.woff2') format('woff2');
font-weight: 400;
font-display: swap;
}
@font-face {
font-family: 'Satoshi';
src: url('fonts/Satoshi-Medium.woff2') format('woff2');
font-weight: 500;
font-display: swap;
}
@font-face {
font-family: 'Satoshi';
src: url('fonts/Satoshi-Bold.woff2') format('woff2');
font-weight: 700;
font-display: swap;
}
@font-face {
font-family: 'Satoshi';
src: url('fonts/Satoshi-Black.woff2') format('woff2');
font-weight: 900;
font-display: swap;
}

