/* ═══════════════════════════════════════════════════════════
   beyer.org — Stylesheet
   Schriften: Cormorant Garamond (Display) · Work Sans (Text)
   Akzent: Cyan aus dem Logo
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   SCHRIFTEN – lokal gehostet (SIL Open Font License 1.1)
   Cormorant Garamond + Work Sans als Variable Fonts, latin + latin-ext
   ═══════════════════════════════════════════ */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400 500;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-italic-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400 500;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('../fonts/work-sans-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('../fonts/work-sans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --primary: #00A5B5;
    --primary-dark: #008A99;
    --primary-soft: rgba(0, 165, 181, 0.12);
    --ink: #0b0c0d;
    --dark: #16181a;
    --light: #ffffff;
    --gray: #f4f4f1;
    --text: #232527;
    --text-light: #6a6d70;
    --line: rgba(0, 0, 0, 0.09);
    --line-light: rgba(255, 255, 255, 0.14);

    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-text: 'Work Sans', 'Helvetica Neue', Arial, sans-serif;

    --container: 1240px;
    --gutter: clamp(1.25rem, 4vw, 4rem);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
    font-family: var(--font-text);
    font-weight: 400;
    color: var(--text);
    background: var(--light);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, video, picture {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* ═══════════════════════════════════════════
   TYPOGRAFIE
   ═══════════════════════════════════════════ */
.kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.4rem, 4.6vw, 3.9rem);
    line-height: 1.02;
    letter-spacing: -0.01em;
    color: var(--dark);
}

.section-title em {
    font-style: italic;
    color: var(--primary);
}

.section-intro {
    max-width: 34rem;
    margin-top: 1.25rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.section-head {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-head--center {
    text-align: center;
}

.section-head--center .section-intro {
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.9rem;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.35s var(--ease), color 0.35s var(--ease),
                border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn svg {
    width: 1.1em;
    height: 1.1em;
    fill: currentColor;
    transition: transform 0.35s var(--ease);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--light);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
    background: var(--light);
    color: var(--dark);
    border-color: var(--light);
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem var(--gutter);
    transition: background 0.45s var(--ease), padding 0.45s var(--ease),
                box-shadow 0.45s var(--ease);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    padding: 0.9rem var(--gutter);
    box-shadow: 0 1px 0 var(--line);
}

.site-header.is-solid {
    position: static;
    background: var(--ink);
}

.logo {
    position: relative;
    z-index: 1002;
    display: block;
    line-height: 0;
}

.logo img {
    height: 42px;
    width: auto;
}

.logo .logo-dark { display: none; }
.logo .logo-light { display: block; }

.site-header.is-scrolled .logo .logo-dark { display: block; }
.site-header.is-scrolled .logo .logo-light { display: none; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.site-nav a {
    position: relative;
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--light);
    transition: color 0.3s var(--ease);
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.2rem;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.site-header.is-scrolled .site-nav a {
    color: var(--dark);
}

.site-nav .nav-cta {
    margin-left: 0.8rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.site-nav .nav-cta::after { display: none; }

.site-nav .nav-cta:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

.site-header.is-scrolled .site-nav .nav-cta {
    border-color: var(--primary);
    color: var(--primary);
}

.site-header.is-scrolled .site-nav .nav-cta:hover {
    color: var(--light);
}

.menu-toggle {
    display: none;
    position: relative;
    z-index: 1002;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--light);
}

.menu-toggle svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }

.site-header.is-scrolled .menu-toggle { color: var(--dark); }
.menu-toggle[aria-expanded="true"] { color: var(--light) !important; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    background: var(--ink);
    color: var(--light);
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media video,
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(11, 12, 13, 0.92) 0%, rgba(11, 12, 13, 0.35) 45%, rgba(11, 12, 13, 0.25) 100%),
        linear-gradient(to right, rgba(11, 12, 13, 0.45) 0%, rgba(11, 12, 13, 0) 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 9rem var(--gutter) clamp(4rem, 10vh, 7rem);
}

.hero .kicker {
    color: rgba(255, 255, 255, 0.75);
    animation: rise 1s var(--ease) both;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(3.4rem, 9.5vw, 8.2rem);
    line-height: 0.95;
    letter-spacing: -0.015em;
    max-width: 12ch;
    animation: rise 1.1s var(--ease) 0.15s both;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
}

.hero-subtitle {
    margin-top: 1.6rem;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    animation: rise 1s var(--ease) 0.35s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2.6rem;
    animation: rise 1s var(--ease) 0.5s both;
}

.scroll-cue {
    position: absolute;
    right: var(--gutter);
    bottom: clamp(2rem, 5vh, 3rem);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    animation: rise 1s var(--ease) 0.9s both;
}

.scroll-cue span:last-child {
    position: relative;
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, 0.25);
    overflow: hidden;
}

.scroll-cue span:last-child::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 40%;
    background: var(--primary);
    animation: cue 2.2s var(--ease) infinite;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes cue {
    0%   { transform: translateY(-100%); }
    60%  { transform: translateY(260%); }
    100% { transform: translateY(260%); }
}

/* ═══════════════════════════════════════════
   KUNDEN / LOGOS
   ═══════════════════════════════════════════ */
.clients {
    background: var(--ink);
    color: var(--light);
    padding: 2.6rem 0;
    border-top: 1px solid var(--line-light);
}

.clients-inner {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
    flex-wrap: wrap;
    justify-content: center;
}

.clients-label {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.4rem;
}

.client-logo {
    height: 32px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.35s var(--ease);
}

.client-logo:hover {
    opacity: 1;
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section {
    padding: clamp(5rem, 10vw, 8.5rem) 0;
}

.section--gray {
    background: var(--gray);
}

.section--dark {
    background: var(--ink);
    color: var(--light);
}

.section--dark .section-title {
    color: var(--light);
}

.section--dark .section-intro {
    color: rgba(255, 255, 255, 0.65);
}

/* ═══════════════════════════════════════════
   STORY HELDEN
   ═══════════════════════════════════════════ */
.heroes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-card {
    display: flex;
    flex-direction: column;
}

.hero-card-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--gray);
}

.hero-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.hero-card:hover .hero-card-media img {
    transform: scale(1.05);
}

.hero-card-index {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1;
    color: var(--light);
    padding: 0.35rem 0.6rem;
    background: rgba(11, 12, 13, 0.55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.hero-card figcaption {
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
    margin-top: 1.4rem;
}

.hero-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.85rem;
    line-height: 1.05;
    color: var(--dark);
}

.hero-card .role {
    display: block;
    margin: 0.4rem 0 0.9rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
}

.hero-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ═══════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
}

.team-member {
    padding-top: 1.75rem;
    border-top: 1px solid var(--dark);
}

.team-member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #e3e3df;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s var(--ease);
}

.team-member:hover .team-member-photo img {
    filter: grayscale(0%);
}

.team-member h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.85rem;
    line-height: 1.05;
    color: var(--dark);
}

.team-member .role {
    display: block;
    margin: 0.4rem 0 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
}

.team-member p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta {
    position: relative;
    padding: clamp(7rem, 14vw, 12rem) 0;
    background: var(--ink);
    color: var(--light);
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: saturate(0.6);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 165, 181, 0.35) 0%, rgba(11, 12, 13, 0.1) 55%),
        linear-gradient(to bottom, rgba(11, 12, 13, 0.75), rgba(11, 12, 13, 0.85));
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-mark {
    width: 64px;
    height: auto;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    line-height: 0.98;
    letter-spacing: -0.01em;
}

.cta-title em {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
}

.cta .btn {
    margin-top: 2.6rem;
}

/* ═══════════════════════════════════════════
   PROJEKTE
   ═══════════════════════════════════════════ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.project-item {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gray);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
    transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
}

.project-item:hover img {
    transform: scale(1.06);
    filter: saturate(1);
}

.project-item::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 0 var(--primary);
    transition: box-shadow 0.4s var(--ease);
    pointer-events: none;
}

.project-item:hover::after {
    box-shadow: inset 0 0 0 3px var(--primary);
}

/* ═══════════════════════════════════════════
   FORMATE / VIDEOS
   ═══════════════════════════════════════════ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}

.video-card {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.video-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    color: var(--light);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0) 100%);
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.video-card.is-playing .video-cover {
    opacity: 0;
    visibility: hidden;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.play-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--light);
    margin-left: 3px;
}

.video-cover:hover .play-btn,
.video-cover:focus-visible .play-btn {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.08);
}

.video-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.7rem;
    line-height: 1.05;
}

.video-sub {
    margin-top: 0.3rem;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

/* ═══════════════════════════════════════════
   KONTAKT
   ═══════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.contact-lead .section-title {
    font-size: clamp(2.8rem, 5.5vw, 4.6rem);
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 1.6rem;
    padding-top: 0.6rem;
}

.contact-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 1.1rem;
    align-items: start;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--line);
}

.contact-list svg {
    width: 26px;
    height: 26px;
    fill: var(--primary);
    margin-top: 0.15rem;
}

.contact-list .label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.contact-list .value {
    font-family: var(--font-display);
    font-size: 1.7rem;
    line-height: 1.15;
    color: var(--dark);
    text-decoration: none;
}

a.contact-list .value:hover,
.contact-list a.value:hover {
    color: var(--primary);
}

.legal-line {
    margin-top: 1.4rem;
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ═══════════════════════════════════════════
   KARTE (Click-to-load)
   ═══════════════════════════════════════════ */
.map-section {
    position: relative;
    height: 420px;
    background: var(--gray);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%);
    transition: filter 0.5s var(--ease);
}

.map-section:hover iframe {
    filter: grayscale(0%);
}

.map-facade {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 2rem;
    text-align: center;
    background:
        linear-gradient(rgba(244, 244, 241, 0.6), rgba(244, 244, 241, 0.6)),
        repeating-linear-gradient(45deg, transparent 0 18px, rgba(0, 0, 0, 0.03) 18px 19px),
        repeating-linear-gradient(-45deg, transparent 0 18px, rgba(0, 0, 0, 0.03) 18px 19px);
}

.map-facade p {
    max-width: 34rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.map-facade a {
    font-size: 0.8rem;
    color: var(--text-light);
}

.map-facade a:hover {
    color: var(--primary);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.6);
    padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line-light);
}

.footer-brand img {
    height: 38px;
    width: auto;
    margin-bottom: 1.4rem;
}

.footer-brand p {
    max-width: 22rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.footer-col p,
.footer-col a {
    display: block;
    font-size: 0.92rem;
    line-height: 2;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s var(--ease);
}

.footer-col a:hover {
    color: var(--light);
}

.social-links {
    display: flex;
    gap: 0.7rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-light);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.8rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 1.8rem;
}

.footer-legal a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s var(--ease);
}

.footer-legal a:hover {
    color: var(--light);
}

/* ═══════════════════════════════════════════
   RECHTSSEITEN (Impressum, Datenschutz)
   ═══════════════════════════════════════════ */
.page-legal .site-nav a {
    color: var(--light);
}

.legal {
    max-width: 780px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 6rem) var(--gutter);
    line-height: 1.8;
}

.legal h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.legal .accent-line {
    width: 56px;
    height: 3px;
    background: var(--primary);
    margin: 1.2rem 0 3rem;
}

.legal h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 1.15;
    color: var(--dark);
    margin: 2.6rem 0 0.9rem;
}

.legal h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 1.6rem 0 0.4rem;
}

.legal p,
.legal li {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal ul {
    margin-left: 1.4rem;
}

.legal a {
    color: var(--primary);
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}

.legal .stand {
    margin-top: 3rem;
    font-size: 0.85rem;
    font-style: italic;
}

.footer-mini {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 2rem var(--gutter);
    font-size: 0.85rem;
}

.footer-mini a {
    color: var(--primary);
    text-decoration: none;
}

/* ═══════════════════════════════════════════
   SCROLL-REVEAL
   ═══════════════════════════════════════════ */
[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    transition-delay: var(--delay, 0s);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .heroes-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .menu-toggle { display: flex; }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 1001;
        flex-direction: column;
        justify-content: center;
        gap: 1.2rem;
        background: var(--ink);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s var(--ease), visibility 0.4s;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
    }

    .site-nav a,
    .site-header.is-scrolled .site-nav a {
        font-family: var(--font-display);
        font-size: 2.2rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        text-transform: none;
        color: var(--light);
    }

    .site-nav .nav-cta,
    .site-header.is-scrolled .site-nav .nav-cta {
        margin: 1rem 0 0;
        font-family: var(--font-text);
        font-size: 0.8rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        border-color: var(--primary);
        color: var(--primary);
    }

    body.nav-open { overflow: hidden; }

    .team-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-content { padding-top: 7rem; }
    .scroll-cue { display: none; }
}

@media (max-width: 560px) {
    .heroes-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-title { font-size: clamp(3rem, 15vw, 4.4rem); }
    .hero-subtitle { letter-spacing: 0.2em; font-size: 0.75rem; }
    .contact-list .value { font-size: 1.4rem; }
    .map-section { height: 340px; }
}

/* ═══════════════════════════════════════════
   REDUZIERTE BEWEGUNG
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
