/* ================================================
   ERSAHIN FLIESEN – Hauptstylesheet
   Design: Premium Dark Craft Studio
   ================================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--cream);
    overflow-x: hidden;
    cursor: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }

/* ----- VARIABLES ----- */
:root {
    --black:     #0D0B09;
    --dark:      #181410;
    --surface:   #241F19;
    --surface2:  #302820;
    --gold:      #8EC4D8;
    --gold-l:    #C2E0EE;
    --blue:      #8EC4D8;
    --blue-l:    #C2E0EE;
    --blue-d:    #5A9AB8;
    --cream:     #EDE7DD;
    --text:      #C8BFB4;
    --muted:     #7A6F66;
    --white:     #ffffff;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

    --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-quart: cubic-bezier(0.76, 0, 0.24, 1);

    --tile-bg: url('../images/fliese.png');

    --nav-h:   80px;
    --pad-x:   clamp(20px, 5vw, 80px);
    --pad-sec: clamp(80px, 10vw, 140px);
    --max-w:   1320px;
}

/* ----- UTILITIES ----- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.label--gold { color: var(--gold-l); }

.section-header { margin-bottom: clamp(48px, 6vw, 80px); }

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
}

/* ----- CURSOR ----- */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .3s var(--ease-expo), height .3s var(--ease-expo), background .3s;
}

.cursor-follower {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(142,196,216,.4);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .5s var(--ease-expo), height .5s var(--ease-expo);
}

body.c-hover .cursor          { width: 14px; height: 14px; background: var(--gold-l); }
body.c-hover .cursor-follower { width: 56px; height: 56px; }

/* ----- NAV ----- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    transition: background .5s, border-color .5s, backdrop-filter .5s;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(13,11,9,.9);
    backdrop-filter: blur(20px);
    border-color: rgba(142,196,216,.12);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--pad-x);
}

.nav__logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.nav__logo-main {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .18em;
    color: var(--cream);
}

.nav__logo-sub {
    font-size: 8.5px;
    font-weight: 400;
    letter-spacing: .32em;
    color: var(--gold);
    text-transform: uppercase;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav__link {
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--text);
    position: relative;
    transition: color .3s;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .35s var(--ease-expo);
}

.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
    padding: 8px 20px;
    border: 1px solid rgba(142,196,216,.4);
    border-radius: 2px;
    color: var(--gold-l);
    transition: background .3s, color .3s, border-color .3s;
}

.nav__cta::after { display: none; }
.nav__cta:hover  { background: var(--gold); color: var(--black); border-color: var(--gold); }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: none;
    padding: 6px;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream);
    transition: transform .3s var(--ease-expo), opacity .3s;
}

/* ----- MOBILE MENU ----- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path .75s var(--ease-expo);
    pointer-events: none;
}

.mobile-menu.open {
    clip-path: circle(170% at calc(100% - 44px) 44px);
    pointer-events: all;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: clamp(42px, 9vw, 72px);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: -.02em;
    transition: color .3s;
    display: block;
    padding: 4px 0;
}

.mobile-link:hover { color: var(--gold); }

.mobile-menu__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

.mobile-menu__contact a { transition: color .3s; }
.mobile-menu__contact a:hover { color: var(--cream); }

/* ----- BUTTONS ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 15px 32px;
    border-radius: 2px;
    border: none;
    cursor: none;
    transition: all .35s var(--ease-expo);
}

.btn--gold {
    background: var(--gold);
    color: var(--black);
}

.btn--gold:hover {
    background: var(--gold-l);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(237,231,221,.25);
}

.btn--ghost:hover {
    border-color: rgba(237,231,221,.6);
    background: rgba(237,231,221,.06);
    transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; padding: 18px 32px; }

/* ----- TILE TEXTURE UTILITY ----- */
.tile-texture {
    position: relative;
}

.tile-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--tile-bg);
    background-repeat: repeat;
    background-size: 220px;
    opacity: 0.13;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: luminosity;
}

.tile-texture > * {
    position: relative;
    z-index: 1;
}

/* ----- HERO ----- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--black);
    background-image: var(--tile-bg);
    background-repeat: repeat;
    background-size: 220px;
}

.hero__grid { display: none; }

.hero__vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at center, rgba(13,11,9,.60) 0%, rgba(13,11,9,.88) 100%),
        linear-gradient(to bottom, rgba(13,11,9,.50) 0%, transparent 30%, transparent 70%, rgba(13,11,9,.68) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero__eyebrow {
    display: block;
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: clamp(20px, 3vw, 36px);
    opacity: 0;
    animation: fadeUp .9s var(--ease-expo) .5s both;
}

.hero__title {
    display: flex;
    flex-direction: column;
    line-height: .88;
    margin-bottom: clamp(20px, 3vw, 36px);
}

.hero__line {
    font-family: var(--font-display);
    font-size: clamp(76px, 14vw, 210px);
    font-weight: 300;
    letter-spacing: -.02em;
    display: block;
    opacity: 0;
}

.hero__line--filled {
    color: var(--cream);
    animation: fadeUp .9s var(--ease-expo) .7s both;
}

.hero__line--outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--cream);
    letter-spacing: .04em;
    opacity: 1;
    animation: none;
}

.hero__fliesen-svg {
    height: clamp(76px, 14vw, 210px);
    width: auto;
    max-width: 100%;
    display: block;
    overflow: visible;
}

.hero__sub {
    font-size: clamp(13px, 1.4vw, 17px);
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: clamp(28px, 4vw, 48px);
    opacity: 0;
    animation: fadeUp .9s var(--ease-expo) 1.1s both;
}

.hero__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .9s var(--ease-expo) 1.3s both;
}

.hero__scroll {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease 2.2s both;
    z-index: 2;
}

.hero__scroll-bar {
    width: 1px;
    height: 54px;
    background: linear-gradient(to bottom, rgba(142,196,216,.8), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

.hero__scroll-label {
    font-size: 8.5px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ----- STATEMENT ----- */
.statement {
    background: var(--dark);
    padding: var(--pad-sec) 0;
}

.statement__grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
    gap: 70px;
}

.statement__quote {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.3;
    color: var(--cream);
}

.statement__quote em {
    font-style: italic;
    color: var(--blue-l);
}

.statement__divider {
    width: 1px;
    height: 110px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    justify-self: center;
}

.statement__body {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.9;
    color: var(--muted);
}

/* ----- ABOUT ----- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.about__visual {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    min-height: 520px;
}

.about__img-wrap {
    position: absolute;
    inset: 0;
}

.about__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s;
}

.about__img.loaded { opacity: 1; }

.about__placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--surface) 0%, var(--surface2) 100%);
    background-image: var(--tile-bg), linear-gradient(145deg, var(--surface) 0%, var(--surface2) 100%);
    background-blend-mode: luminosity, normal;
    background-size: 220px, cover;
    background-repeat: repeat, no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__placeholder span {
    font-family: var(--font-display);
    font-size: clamp(120px, 18vw, 220px);
    font-weight: 300;
    color: rgba(142,196,216,.07);
    line-height: 1;
    user-select: none;
}

.about__badge {
    position: absolute;
    bottom: 36px;
    right: 36px;
    width: 110px;
    height: 110px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.about__badge-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
}

.about__badge-plus {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-top: -4px;
}

.about__badge-text {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    margin-top: 4px;
}

.about__content {
    padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--dark);
}

.about__heading {
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--cream);
    margin-bottom: 28px;
}

.about__heading em { font-style: italic; color: var(--gold); }

.about__text {
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 14px;
}

.about__stats {
    display: flex;
    gap: 36px;
    margin-top: 46px;
    padding-top: 36px;
    border-top: 1px solid rgba(142,196,216,.15);
    flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }

.stat__num {
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 62px);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.stat__plus {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--gold);
    display: inline;
}

.stat__label {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
    line-height: 1.6;
}

/* ----- LEISTUNGEN ----- */
.leistungen {
    padding: var(--pad-sec) 0;
    background: var(--black);
}

.leistungen__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(142,196,216,.08);
    border: 1px solid rgba(142,196,216,.08);
}

.service {
    background: var(--dark);
    padding: clamp(28px, 3.5vw, 48px) clamp(22px, 3vw, 38px);
    position: relative;
    overflow: hidden;
    transition: background .4s var(--ease-expo);
}

.service::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(142,196,216,.06) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .4s;
}

.service:hover { background: var(--surface); }
.service:hover::after { opacity: 1; }

.service__num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 300;
    color: rgba(142,196,216,.1);
    line-height: 1;
    transition: color .4s;
}

.service:hover .service__num { color: rgba(142,196,216,.22); }

.service__icon {
    width: 44px;
    height: 44px;
    color: var(--blue);
    margin-bottom: 26px;
    transition: color .4s;
}

.service:hover .service__icon {
    color: var(--blue-l);
}

.service__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.2;
}

.service__text {
    font-size: 13px;
    line-height: 1.85;
    color: var(--muted);
}

/* ----- REFERENZEN ----- */
.referenzen {
    padding: var(--pad-sec) 0;
    background: var(--dark);
}

.referenzen__sub {
    font-size: 14px;
    color: var(--muted);
    margin-top: 14px;
    max-width: 480px;
}

.gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 320px;
    gap: 3px;
    margin-top: 0;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    cursor: none;
}

.gallery__item--wide { grid-row: span 2; }

.gallery__item--cta {
    grid-column: span 2;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery__inner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .5s, transform .7s var(--ease-expo);
}

.gallery__inner img.loaded { opacity: 1; }
.gallery__item:hover .gallery__inner img { transform: scale(1.06); }

.gallery__placeholder {
    position: absolute;
    inset: 0;
    background-image: var(--tile-bg), linear-gradient(145deg, var(--surface) 0%, var(--surface2) 100%);
    background-blend-mode: luminosity, normal;
    background-size: 220px, cover;
    background-repeat: repeat, no-repeat;
    opacity: .7;
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,11,9,.85) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity .3s;
    z-index: 1;
}

.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__cat {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.gallery__name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    color: var(--cream);
}

.gallery__cta-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    color: var(--black);
    text-align: center;
    padding: 30px;
    transition: background .3s;
}

.gallery__cta-link:hover { background: rgba(0,0,0,.08); }

.gallery__cta-text {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 400;
    line-height: 1.2;
}

/* ----- PROZESS ----- */
.prozess {
    padding: var(--pad-sec) 0;
    background: var(--black);
}

.prozess__steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
    position: relative;
}

.prozess__line {
    width: 1px;
    height: 100%;
    min-height: 80px;
    background: linear-gradient(to bottom, rgba(142,196,216,.35), rgba(142,196,216,.05));
    margin: 28px 20px 0;
    align-self: start;
}

.prozess__step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.prozess__num {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(142,196,216,.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--blue);
    margin-bottom: 24px;
    flex-shrink: 0;
    transition: background .3s, border-color .3s;
}

.prozess__step:hover .prozess__num {
    background: rgba(142,196,216,.1);
    border-color: var(--blue);
}

.prozess__content h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 10px;
}

.prozess__content p {
    font-size: 13px;
    line-height: 1.85;
    color: var(--muted);
}

/* ----- KONTAKT ----- */
.kontakt {
    padding: var(--pad-sec) 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.kontakt::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(142,196,216,.05) 0%, transparent 70%);
    pointer-events: none;
}

.kontakt__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(60px, 8vw, 130px);
    align-items: start;
}

.kontakt__heading {
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--cream);
    margin-bottom: 46px;
}

.kontakt__heading em { font-style: italic; color: var(--gold); }

.kontakt__details { display: flex; flex-direction: column; gap: 26px; }

.kontakt__detail-label {
    display: block;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.kontakt__detail-val {
    font-size: clamp(14px, 1.4vw, 17px);
    color: var(--cream);
    font-weight: 300;
    line-height: 1.6;
    transition: color .3s;
}

a.kontakt__detail-val:hover { color: var(--gold); }

/* ----- FORM ----- */
.kontakt__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    position: relative;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(142,196,216,.18);
    border-radius: 2px;
    padding: 20px 15px 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--cream);
    outline: none;
    transition: border-color .3s, background .3s;
    -webkit-appearance: none;
}

.field select {
    padding: 14px 15px;
    cursor: none;
    color: var(--muted);
}

.field select:focus,
.field input:focus,
.field textarea:focus {
    border-color: var(--gold);
    background: rgba(142,196,216,.04);
}

.field label {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 13px;
    color: var(--muted);
    pointer-events: none;
    transition: transform .2s, font-size .2s, color .2s;
}

.field select + label,
.field input:not(:placeholder-shown) + label,
.field input:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field textarea:focus + label {
    transform: translateY(-9px);
    font-size: 9.5px;
    color: var(--gold);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.field--check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.field--check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid rgba(142,196,216,.3);
    border-radius: 2px;
    appearance: none;
    background: transparent;
    cursor: none;
    padding: 0;
    margin-top: 2px;
    transition: background .2s, border-color .2s;
}

.field--check input[type="checkbox"]:checked {
    background: var(--gold);
    border-color: var(--gold);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4.5 8.5L11 1.5' stroke='%230D0B09' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.field--check label {
    position: static;
    font-size: 11.5px;
    color: var(--muted);
    pointer-events: all;
    transform: none;
    cursor: none;
    line-height: 1.65;
}

.field--check label a { color: var(--gold); text-decoration: underline; }

.form__success {
    display: none;
    text-align: center;
    color: var(--gold);
    font-size: 14px;
    padding: 14px;
    border: 1px solid rgba(142,196,216,.3);
    border-radius: 2px;
}

.form__success.show { display: block; }

/* ----- FOOTER ----- */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(142,196,216,.1);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 60px;
    padding: 50px 0;
}

.footer__brand { display: flex; flex-direction: column; gap: 2px; }

.footer__logo-main {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .18em;
    color: var(--cream);
}

.footer__logo-sub {
    font-size: 8.5px;
    font-weight: 400;
    letter-spacing: .32em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer__tagline {
    font-size: 12px;
    color: var(--muted);
}

.footer__nav, .footer__legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__nav a {
    font-size: 13px;
    color: var(--muted);
    transition: color .3s;
}

.footer__nav a:hover { color: var(--cream); }

.footer__legal a {
    font-size: 12px;
    color: var(--muted);
    transition: color .3s;
}

.footer__legal a:hover { color: var(--gold); }

.footer__bar {
    border-top: 1px solid rgba(255,255,255,.04);
    padding: 18px var(--pad-x);
    text-align: center;
    font-size: 11px;
    color: rgba(122,111,102,.5);
}

/* ----- REVEAL CLASSES ----- */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity .85s var(--ease-expo), transform .85s var(--ease-expo);
    transition-delay: var(--delay, 0ms);
}

.reveal       { transform: translateY(36px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal.in,
.reveal-left.in,
.reveal-right.in {
    opacity: 1;
    transform: translate(0);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1200px) {
    .leistungen__grid { grid-template-columns: repeat(2, 1fr); }

    .prozess__steps {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .prozess__line { display: none; }
}

@media (max-width: 960px) {
    .about {
        grid-template-columns: 1fr;
    }

    .about__visual { min-height: 420px; }

    .statement__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .statement__divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 260px;
    }

    .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
    .gallery__item--cta { grid-column: span 1; }

    .kontakt__grid { grid-template-columns: 1fr; }

    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: span 2; }

    .nav__links { display: none; }
    .nav__burger { display: flex; }
}

@media (max-width: 660px) {
    .leistungen__grid { grid-template-columns: 1fr; }

    .prozess__steps { grid-template-columns: 1fr; }

    .gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery__item--wide { grid-column: span 1; }
    .gallery__item--cta { grid-column: span 1; }

    .form-row { grid-template-columns: 1fr; }

    .hero__btns { flex-direction: column; }
    .hero__btns .btn { width: 100%; justify-content: center; }

    .about__stats { flex-wrap: wrap; gap: 24px; }

    .footer__grid { grid-template-columns: 1fr; }
    .footer__brand { grid-column: span 1; }

    body { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
}
