:root {
    --ink: #0b0d0e;
    --foam: #f4f6f5;
    --teal: #2fb7a6;
    --deep: #0f2e2b;
    --grey-dim: rgba(244, 246, 245, 0.6);
    --font-display: 'Big Shoulders Display', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--ink);
    color: var(--foam);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
}

/* --- HEADER & NAV --- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(11, 13, 14, 0.82);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(244, 246, 245, 0.08);
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

/* Einzige Logo-Mark-Regel. Grösse hier ändern, nirgendwo sonst -
   keine Inline-Styles mehr im HTML, damit es nicht wieder auseinanderläuft. */
.logo-mark {
    height: 48px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-mark:hover { transform: scale(1.05); }

nav { display: flex; align-items: center; }

nav a {
    color: var(--grey-dim);
    text-decoration: none;
    margin-left: 34px;
    font-weight: 500;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: color 0.3s ease;
}

nav a:hover, nav a.is-active { color: var(--foam); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span { width: 24px; height: 2px; background: var(--foam); }

/* --- Sprachumschalter --- */
.lang-switch {
    background: var(--teal) !important;
    color: var(--ink) !important;
    padding: 4px 12px;
    margin-left: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: all 0.25s ease-in-out;
}

.lang-switch:hover {
    background: var(--foam) !important;
    color: var(--ink) !important;
}

/* --- Instagram-Icon in der Navbar --- */
.nav-insta {
    display: flex;
    align-items: center;
    margin-left: 20px;
    color: var(--grey-dim);
    transition: color 0.3s ease;
}

.nav-insta svg { width: 20px; height: 20px; display: block; }
.nav-insta:hover { color: var(--teal); }

@media (max-width: 800px) {
    .nav-toggle { display: flex; }
    nav {
        position: fixed; top: 0; right: 0; height: 100vh;
        width: min(75vw, 300px);
        background: var(--ink);
        flex-direction: column; align-items: flex-start; justify-content: center; gap: 30px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        border-left: 1px solid rgba(244, 246, 245, 0.08);
    }
    nav.open { transform: translateX(0); }
    nav a { margin-left: 0; font-size: 1.1rem; }
    .lang-switch { margin-left: 0; }
    .nav-insta { margin-left: 0; margin-top: 6px; }
}

/* --- STATEMENT: das einzige Baustein-Muster der Seite ---
   grosses Foto, eine kurze fette Zeile, ein Satz. Sonst nichts. */
.statement {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.statement.short { height: 80vh; }

.statement img {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    object-position: var(--focus, center);
    will-change: transform;
}

@media (max-width: 800px) {
    /* Schmaler Rahmen -> es wird seitlich beschnitten. Ohne genaueren
       Fokuspunkt pro Bild ist "leicht oberhalb der Mitte" der beste
       Standard-Kompromiss, weil Gesichter/Action meist im oberen Drittel
       eines Actionfotos sitzen. Einzelne Bilder per --focus überschreiben. */
    .statement img {
        object-position: var(--focus, center 30%);
    }
    .statement-text h1, .statement-text h2 {
        font-size: clamp(1.6rem, 8vw, 2.7rem);
    }
    .statement-text p {
        font-size: 0.95rem;
    }
}

.statement::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,13,14,0.15) 40%, rgba(11,13,14,0.92) 100%);
}

.statement-text {
    position: relative;
    z-index: 2;
    padding: 0 6% 90px;
    max-width: 720px;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.statement-text.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .statement-text { opacity: 1; transform: none; transition: none; }
    .statement img { transform: none !important; }
}

.statement-text .eyebrow {
    display: block;
    color: var(--teal);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.statement-text h1, .statement-text h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 800;
    font-size: clamp(2.2rem, 6.5vw, 5rem);
    line-height: 0.95;
    margin-bottom: 18px;
}

.statement-text p {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(244, 246, 245, 0.85);
    max-width: 520px;
}

.statement-text .btn { margin-top: 26px; }

/* --- BUTTON --- */
.btn {
    display: inline-block;
    padding: 15px 36px;
    background: var(--teal);
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

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

/* --- GALERIE: Slider mit unterschiedlich breiten Bildern --- */
.slider-page { padding-top: 100px; }

.slider-wrapper { width: 100%; overflow: hidden; position: relative; padding-bottom: 30px; }
.slider-track { display: flex; gap: 16px; will-change: transform; }

.slide {
    min-width: 340px;
    height: 70vh;
    flex-shrink: 0;
    overflow: hidden;
}

.slide img {
    width: auto;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.slide:hover img { transform: scale(1.04); }

/* Weg B: einheitliche, fest zugeschnittene Kachel-Optik mit Fokuspunkt —
   NUR auf Mobile, wo sonst die Seiten beschnitten werden und Lorin
   verschwinden kann. Am Desktop bleibt das ganze Foto sichtbar (contain). */
@media (max-width: 800px) {
    .slide.wide {
        width: 85vw;
        min-width: 85vw;
    }

    .slide.wide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: var(--focus, center);
    }
}

.arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: var(--teal); color: var(--ink); border: none;
    font-size: 1.1rem; width: 48px; height: 48px; cursor: pointer; z-index: 10;
    display: flex; justify-content: center; align-items: center;
    transition: background 0.3s ease;
}
.arrow.prev { left: 20px; }
.arrow.next { right: 20px; }
.arrow:hover { background: var(--foam); }

.dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.dot { height: 3px; width: 24px; background-color: rgba(244, 246, 245, 0.2); cursor: pointer; }
.dot.active { background-color: var(--teal); }

/* --- KONTAKT: Partner-Streifen unten --- */
.partners-block { padding: 70px 6% 90px; }

.partners-label {
    display: block;
    color: var(--teal);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.partners {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(20px, 5vw, 90px);
    align-items: center;
    width: 100%;
}

.partners a {
    display: flex;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    transition: transform 0.3s ease;
}

.partners a:hover { transform: translateY(-4px); }

.partners img {
    width: 100%;
    height: auto;
    max-height: 140px;
    object-fit: contain;
    opacity: 0.92;
    transition: opacity 0.3s;
}

.partners a:hover img { opacity: 1; }

/* --- FOOTER --- */
footer {
    display: flex;
    justify-content: space-between;
    padding: 30px 6%;
    background: var(--ink);
    font-size: 0.75rem;
    color: var(--grey-dim);
    border-top: 1px solid rgba(244, 246, 245, 0.08);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 800px) {
    footer { flex-direction: column; gap: 8px; }
}