@import url(
    "https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=Montserrat:wght@300;400;500&display=swap"
);

:root {
    --black: #080808;
    --white: #f3f0eb;
    --gold: #b4975a;
    --grey: #b8b4ae;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    color: var(--white);
    background: var(--black);

    font-family: var(--sans);
}

a {
    color: inherit;
    text-decoration: none;
}

/* Navigation */

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    z-index: 100;

    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 30px;

    padding: 24px 3.5vw;

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}

.header.scrolled {
    padding-top: 14px;
    padding-bottom: 14px;

    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.logo {
    display: flex;
    flex-direction: column;

    width: max-content;
}

.logo-main {

    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-subline {

    margin-top: 6px;
    font-family: var(--sans);
    font-size: 0.48rem;
    font-weight: 400;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255,255,255,.75);
}

.navigation {
    justify-self: center;

    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 46px);
}

.navigation a {
    position: relative;

    padding: 10px 0;

    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.navigation a::after {
    content: "";

    position: absolute;
    right: 100%;
    bottom: 0;
    left: 0;

    height: 1px;

    background: var(--gold);

    transition: right 0.25s ease;
}

.navigation a:hover::after {
    right: 0;
}

.booking-button {
    padding: 14px 22px;

    border: 1px solid rgba(180, 151, 90, 0.75);

    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.booking-button:hover {
    color: var(--black);
    background: var(--gold);
}

.menu-button {
    display: none;
}

/* Hero */

.hero {
    position: relative;

    min-height: 100vh;
    min-height: 100svh;

    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    background-image: url("../assets/images/vera-hero.jpg");
    background-position: center 28%;
    background-size: cover;

    transform: scale(1.02);

    animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.58),
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.75)
        ),
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.4),
            transparent 42%,
            rgba(0, 0, 0, 0.2)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    display: grid;
    place-content: center;
    justify-items: center;

    min-height: 100vh;
    min-height: 100svh;

    padding: 130px 30px 110px;

    text-align: center;
}

.hero-label {
    margin: 0 0 26px;

    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 38px;

    font-family: var(--serif);
    font-size: clamp(3.2rem, 7vw, 7.3rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.035em;

    text-shadow: 0 8px 35px rgba(0, 0, 0, 0.55);
}

.hero-link {
    padding: 8px 0 12px;

    border-bottom: 1px solid var(--gold);

    font-size: 0.68rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;

    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;

    transform: translateX(-50%);

    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.scroll-indicator span {
    width: 1px;
    height: 42px;

    background: linear-gradient(
        to bottom,
        var(--gold),
        transparent
    );
}

/* Platzhalter für den nächsten Abschnitt */

.placeholder-section {
    display: grid;
    place-content: center;

    min-height: 75vh;

    padding: 90px 30px;

    text-align: center;
}

.section-label {
    margin-bottom: 25px;

    color: var(--gold);

    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.placeholder-section h2 {
    margin: 0;

    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 400;
    line-height: 0.92;
}

/* Leichte Bewegung des Hintergrundbildes */

@keyframes heroZoom {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.08);
    }
}

/* Tablet */

@media (max-width: 1050px) {.service-grid {
    grid-template-columns: 1fr;
}

.service-card {
    min-height: 820px;

    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

    .header {
        grid-template-columns: 1fr auto;
    }

    .booking-button {
        display: none;
    }

    .menu-button {
        display: grid;
        gap: 6px;

        width: 42px;

        padding: 8px;

        background: transparent;
        border: 0;

        cursor: pointer;
    }

    .menu-button span {
        display: block;

        height: 1px;

        background: white;
    }

    .navigation {
        position: fixed;
        inset: 0;

        z-index: -1;

        display: flex;
        flex-direction: column;
        justify-content: center;

        background: rgba(8, 8, 8, 0.98);

        opacity: 0;
        visibility: hidden;

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    .navigation.open {
        opacity: 1;
        visibility: visible;
    }

    .navigation a {
        font-size: 1rem;
    }

}

/* Smartphone */

@media (max-width: 650px) {.service-card {
    min-height: 680px;
}

.services-text {
    font-size: 0.86rem;
}

.services-intro {
    padding-right: 24px;
    padding-left: 24px;
}

    .header {
        padding: 18px 20px;
    }

    .logo-main {
        font-size: 1.55rem;
    }

    .logo-subline {
        font-size: 0.44rem;
    }

    .hero-content {
        padding-right: 20px;
        padding-left: 20px;
    }

    h1 {
        font-size: clamp(3rem, 15vw, 5.2rem);
    }

    .hero-label {
        line-height: 1.8;
    }

}

/* Services Intro */

.services-intro {
    padding:
        clamp(80px, 10vw, 140px)
        20px
        60px;

    text-align: center;
}

.services-intro h2 {
    margin: 0 0 24px;

    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 6.2rem);
    font-weight: 400;
    line-height: 0.92;
}

.services-text {
    max-width: 760px;

    margin: 0 auto;

    color: var(--grey);

    font-size: 0.95rem;
    line-height: 1.8;
}

/* Service Grid */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(180, 151, 90, 0.4);
}

.service-card {
    position: relative;

    min-height: 760px;

    overflow: hidden;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card:last-child {
    border-right: 0;
}

.service-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(0.72)
        saturate(0.8);

    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);

    filter:
        brightness(0.88)
        saturate(1);
}

.service-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 20%,
            rgba(0, 0, 0, 0.15) 45%,
            rgba(0, 0, 0, 0.95)
        );
}

.service-content {
    position: absolute;
    right: 9%;
    bottom: 8%;
    left: 9%;

    z-index: 2;

    text-align: center;
}

.service-content h3 {
    margin: 0 0 22px;

    font-family: var(--serif);
    font-size: clamp(2.6rem, 4vw, 4.7rem);
    font-weight: 400;
    line-height: 0.88;
}

.service-content p {
    max-width: 360px;

    margin: 0 auto 30px;

    color: #ddd8d2;

    font-size: 0.84rem;
    line-height: 1.7;
}

.showreel-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;

    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.play-circle {
    display: grid;
    place-content: center;

    width: 58px;
    aspect-ratio: 1;

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.showreel-link:hover .play-circle {
    color: var(--black);
    background: var(--white);

    transform: scale(1.05);
}
/* ========================================
   FASHION PORTFOLIO PAGE
======================================== */

.portfolio-hero {
    position: relative;

    min-height: 72vh;

    overflow: hidden;
}

.portfolio-hero-background {
    position: absolute;
    inset: 0;

    background-image:
        url("../assets/images/vera-hero.jpg");

    background-position: center 30%;
    background-size: cover;
}

.portfolio-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.25) 60%,
            rgba(0, 0, 0, 0.45)
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.62)
        );
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 72vh;
    max-width: 620px;

    padding:
        150px
        7vw
        90px;
}

.portfolio-hero-content h1 {
    margin-bottom: 20px;

    font-size:
        clamp(4rem, 7vw, 7rem);

    text-align: left;
}

.portfolio-hero-content p:last-child {
    max-width: 470px;

    color: var(--grey);

    line-height: 1.8;
}

.portfolio-line {
    display: block;

    width: 48px;
    height: 1px;

    margin: 0 0 25px;

    background: var(--gold);
}

/* Filter */

.portfolio-filter {
    padding:
        34px
        7vw;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.filter-button {
    position: relative;

    padding:
        12px
        0;

    color: var(--grey);
    background: transparent;

    border: 0;

    cursor: pointer;

    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.filter-button::after {
    content: "";

    position: absolute;
    right: 100%;
    bottom: 0;
    left: 0;

    height: 1px;

    background: var(--gold);

    transition: right 0.25s ease;
}

.filter-button:hover,
.filter-button.active {
    color: var(--white);
}

.filter-button:hover::after,
.filter-button.active::after {
    right: 0;
}

/* Reel Portfolio */

.reel-portfolio {
    display: grid;
    grid-template-columns:
        minmax(220px, 0.7fr)
        minmax(0, 2.3fr);

    gap: clamp(40px, 6vw, 100px);

    align-items: center;

    padding:
        clamp(80px, 10vw, 150px)
        5vw;
}

.reel-intro h2 {
    margin-bottom: 24px;

    font-family: var(--serif);
    font-size:
        clamp(2.6rem, 4vw, 4.6rem);

    font-weight: 400;
    line-height: 0.95;
}

.reel-intro > p:last-of-type {
    max-width: 320px;

    margin-bottom: 35px;

    color: var(--grey);

    line-height: 1.8;
}

.reel-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.reel-card {
    position: relative;

    aspect-ratio: 9 / 16;

    overflow: hidden;

    background: #151515;

    border-radius: 4px;
}

.reel-card video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(0.72)
        saturate(0.85);

    transition:
        transform 0.7s ease,
        filter 0.4s ease;
}

.reel-card:hover video {
    transform: scale(1.04);

    filter:
        brightness(0.9)
        saturate(1);
}

.reel-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.05) 45%,
            rgba(0, 0, 0, 0.92)
        );
}

.reel-duration {
    position: absolute;
    top: 18px;
    right: 18px;

    z-index: 3;

    font-size: 0.75rem;
}

.reel-play-button {
    position: absolute;
    top: 50%;
    left: 50%;

    z-index: 3;

    display: grid;
    place-content: center;

    width: 66px;
    aspect-ratio: 1;

    color: white;
    background: rgba(0, 0, 0, 0.25);

    border:
        1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;

    cursor: pointer;

    transform:
        translate(-50%, -50%);

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.reel-play-button:hover {
    color: var(--black);
    background: var(--white);

    transform:
        translate(-50%, -50%)
        scale(1.06);
}

.reel-info {
    position: absolute;
    right: 24px;
    bottom: 25px;
    left: 24px;

    z-index: 3;

    text-align: center;
}

.reel-info h3 {
    margin-bottom: 9px;

    font-size:
        clamp(1.8rem, 2.5vw, 2.7rem);
}

.reel-info p {
    margin: 0;

    color: var(--gold);

    font-size: 0.61rem;
    font-weight: 500;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

/* CTA */

.portfolio-cta {
    padding:
        80px
        25px
        110px;

    text-align: center;
}

.portfolio-cta p {
    margin-bottom: 28px;

    font-size: 0.65rem;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

/* Tablet */

@media (max-width: 1050px) {

    .reel-portfolio {
        grid-template-columns: 1fr;
    }

    .reel-intro {
        max-width: 620px;

        text-align: center;

        margin: 0 auto;
    }

    .reel-intro .portfolio-line {
        margin-right: auto;
        margin-left: auto;
    }

    .reel-intro > p:last-of-type {
        margin-right: auto;
        margin-left: auto;
    }

}

/* Smartphone */

@media (max-width: 760px) {

    .portfolio-hero {
        min-height: 80vh;
    }

    .portfolio-hero-content {
        min-height: 80vh;

        padding:
            140px
            24px
            70px;
    }

    .portfolio-hero-content h1 {
        font-size: 4rem;
    }

    .portfolio-filter {
        padding-right: 24px;
        padding-left: 24px;
    }

    .filter-buttons {
        gap: 20px;
    }

    .reel-portfolio {
        padding-right: 24px;
        padding-left: 24px;
    }

    .reel-grid {
        grid-template-columns: 1fr;
    }

    .reel-card {
        max-width: 420px;

        margin: 0 auto;

        width: 100%;
    }

}
/* ========================================
   VIDEO LIGHTBOX
======================================== */

.reel-card {
    cursor: pointer;
}

.video-lightbox {
    position: fixed;
    inset: 0;

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 90px;

    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(14px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.video-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 460px;
    width: 100%;

    transform: scale(0.96);

    transition: transform 0.3s ease;
}

.video-lightbox.open .lightbox-content {
    transform: scale(1);
}

.lightbox-content video {
    display: block;

    width: auto;
    max-width: 100%;
    height: min(76vh, 850px);

    aspect-ratio: 9 / 16;
    object-fit: contain;

    background: black;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.7);
}

.lightbox-information {
    margin-top: 20px;

    text-align: center;
}

.lightbox-information h2 {
    margin: 0 0 5px;

    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
}

.lightbox-information p {
    margin: 0;

    color: var(--gold);

    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;

    width: 48px;
    height: 48px;

    color: white;
    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;

    cursor: pointer;

    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: 200;
    line-height: 1;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;

    color: white;
    background: transparent;

    border: 0;

    cursor: pointer;

    font-family: Arial, sans-serif;
    font-size: 4rem;
    font-weight: 200;

    transform: translateY(-50%);
}

.lightbox-arrow-left {
    left: 35px;
}

.lightbox-arrow-right {
    right: 35px;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
    color: var(--gold);
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 700px) {

    .video-lightbox {
        padding: 70px 20px 30px;
    }

    .lightbox-content video {
        height: min(70vh, 720px);
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
    }

    .lightbox-arrow {
        top: auto;
        bottom: 18px;

        font-size: 3rem;

        transform: none;
    }

    .lightbox-arrow-left {
        left: 30px;
    }

    .lightbox-arrow-right {
        right: 30px;
    }

}

/* ========================================
   FOOTER
======================================== */

.site-footer {
    padding:
        80px
        7vw
        25px;

    color: var(--white);
    background: #070707;

    border-top:
        1px solid rgba(180, 151, 90, 0.55);
}

.footer-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: clamp(50px, 10vw, 150px);

    max-width: 1200px;

    margin: 0 auto;
    padding-bottom: 70px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 15px;
}

.footer-column h2 {
    position: relative;

    margin: 0 0 20px;
    padding-bottom: 13px;

    color: var(--gold);

    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-column h2::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 0;

    width: 45px;
    height: 1px;

    background: var(--gold);
}

.footer-column a,
.footer-column p,
.footer-cookie-button {
    position: relative;

    margin: 0;
    padding: 3px 0;

    color: rgba(255, 255, 255, 0.72);
    background: transparent;

    border: 0;

    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column a::after,
.footer-cookie-button::after {
    content: "";

    position: absolute;
    right: 100%;
    bottom: 0;
    left: 0;

    height: 1px;

    background: var(--gold);

    transition: right 0.25s ease;
}

.footer-column a:hover,
.footer-cookie-button:hover {
    color: var(--white);

    transform: translateX(4px);
}

.footer-column a:hover::after,
.footer-cookie-button:hover::after {
    right: 0;
}

.footer-cookie-button {
    cursor: pointer;
    text-align: left;
}

.footer-booking-link {
    margin-top: 15px !important;
    padding:
        11px
        18px !important;

    color: var(--gold) !important;

    border:
        1px solid rgba(180, 151, 90, 0.7) !important;

    font-size: 0.68rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-booking-link::after {
    display: none;
}

.footer-booking-link:hover {
    color: var(--black) !important;
    background: var(--gold);

    transform: none !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    max-width: 1200px;

    margin: 0 auto;
    padding-top: 25px;

    color: rgba(255, 255, 255, 0.48);

    border-top:
        1px solid rgba(255, 255, 255, 0.12);

    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-bottom p {
    margin: 0;
}


/* Tablet */

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* Smartphone */

@media (max-width: 650px) {

    .site-footer {
        padding:
            65px
            24px
            25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 50px;

        padding-bottom: 55px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 10px;
    }

}
/* Unterschiedliche Portfolio-Hintergründe */

.portfolio-hero-fashion .portfolio-hero-background {
    background-image:
        url("../assets/images/fashion-hero.png");
}

.portfolio-hero-backstage .portfolio-hero-background {
    background-image:
        url("../assets/images/backstage-hero.png");
}

.portfolio-hero-salons .portfolio-hero-background {
    background-image:
        url("../assets/images/salons-hero.png");
}

/* ========================================
   ART SHOP
======================================== */

.art-shop-page {
    color: #1a1815;
    background: #f5f1e9;
}

.art-shop-page .art-header {
    color: white;
}

.art-shop-page .header.scrolled {
    color: #171512;

    background: rgba(248, 245, 238, 0.92);

    border-bottom:
        1px solid rgba(30, 25, 20, 0.12);
}

.art-shop-page .header.scrolled .menu-button span {
    background: #171512;
}

.art-main {
    background: #f5f1e9;

    animation:
        galleryFadeIn 0.8s ease both;
}


/* ART HERO */

.art-hero {
    position: relative;

    min-height: 92vh;

    overflow: hidden;

    background: #cfc4b5;
}

.art-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.art-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to right,
            rgba(25, 19, 14, 0.68),
            rgba(25, 19, 14, 0.15) 55%,
            rgba(25, 19, 14, 0.1)
        ),
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.22),
            transparent 45%
        );
}

.art-hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 92vh;
    max-width: 730px;

    padding:
        150px
        7vw
        90px;

    color: white;
}

.art-eyebrow {
    margin: 0 0 24px;

    color: #9b7025;

    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.art-hero .art-eyebrow {
    color: #e2b85c;
}

.art-hero h1 {
    margin-bottom: 30px;

    font-size:
        clamp(4rem, 7vw, 7.6rem);

    line-height: 0.9;
}

.art-hero-content > p:not(.art-eyebrow) {
    max-width: 520px;

    margin-bottom: 35px;

    font-size: 1rem;
    line-height: 1.8;
}

.art-primary-button {
    width: max-content;

    padding: 16px 23px;

    color: #171411;
    background: #f5f1e9;

    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.art-primary-button:hover {
    color: white;
    background: #9b7025;
}


/* INTRODUCTION */

.art-introduction {
    max-width: 980px;

    margin: 0 auto;

    padding:
        clamp(90px, 12vw, 170px)
        30px;

    text-align: center;
}

.art-introduction h2,
.art-section-heading h2 {
    margin-bottom: 35px;

    color: #171411;

    font-family: var(--serif);
    font-size:
        clamp(3rem, 5.3vw, 6rem);

    font-weight: 400;
    line-height: 0.95;
}

.art-introduction > p:not(.art-eyebrow) {
    max-width: 770px;

    margin:
        0
        auto
        20px;

    color: #625d55;

    font-size: 1rem;
    line-height: 1.9;
}


/* CATEGORIES */

.art-categories {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 3px;

    padding:
        0
        3px;
}

.art-category-card {
    position: relative;

    min-height: 720px;

    overflow: hidden;
}

.art-category-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}

.art-category-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 35%,
            rgba(20, 15, 10, 0.82)
        );
}

.art-category-card:hover img {
    transform: scale(1.04);
}

.art-category-content {
    position: absolute;
    right: 35px;
    bottom: 40px;
    left: 35px;

    z-index: 2;

    color: white;
}

.art-category-content p {
    margin-bottom: 13px;

    color: #deb357;

    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.art-category-content h2 {
    margin-bottom: 12px;

    font-family: var(--serif);
    font-size:
        clamp(2.5rem, 4vw, 4.5rem);

    font-weight: 400;
}

.art-category-content span {
    font-size: 0.76rem;
    letter-spacing: 0.05em;
}


/* COLLECTION */

.art-collection {
    padding:
        clamp(100px, 12vw, 180px)
        5vw;
}

.art-section-heading {
    max-width: 850px;

    margin:
        0
        auto
        70px;

    text-align: center;
}

.art-section-heading > p:last-child {
    color: #686158;

    line-height: 1.8;
}

.art-product-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        clamp(25px, 3vw, 55px);

    max-width: 1450px;

    margin: 0 auto;
}

.art-product-card {
    color: #171411;
}

.art-product-image {
    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #ded7cc;
}

.art-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.art-product-card:hover .art-product-image img {
    transform: scale(1.035);
}

.art-badge {
    position: absolute;
    top: 18px;
    left: 18px;

    padding: 9px 12px;

    color: #171411;
    background: rgba(248, 245, 238, 0.92);

    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.art-product-information {
    padding:
        24px
        2px;
}

.art-product-information h3 {
    margin-bottom: 6px;

    color: #171411;

    font-size:
        clamp(1.8rem, 2.4vw, 2.8rem);
}

.art-product-information > p {
    color: #716a61;
}

.art-product-meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;

    margin:
        20px
        0;

    padding:
        13px
        0;

    border-top:
        1px solid rgba(30, 25, 20, 0.15);

    border-bottom:
        1px solid rgba(30, 25, 20, 0.15);

    font-size: 0.7rem;
}

.art-product-meta strong {
    color: #8c6525;

    font-weight: 500;
}

.art-price {
    color: #171411 !important;

    font-family: var(--serif);
    font-size: 1.5rem;
}

.art-text-link {
    display: inline-block;

    margin-top: 9px;
    padding-bottom: 7px;

    border-bottom:
        1px solid #9b7025;

    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* ART FOOTER */

.art-footer {
    color: #f4f0e8;
    background: #1b1814;
}


/* ========================================
   PAGE TRANSITION
======================================== */

.page-transition {
    position: fixed;
    inset: 0;

    z-index: 9999;

    pointer-events: none;

    opacity: 0;
    visibility: hidden;

    background: #080808;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

.transition-noise,
.transition-scanlines,
.transition-flash {
    position: absolute;
    inset: 0;
}

.transition-noise {
    opacity: 0;

    background-image:
        repeating-radial-gradient(
            circle at 20% 30%,
            rgba(255, 255, 255, 0.12) 0,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px,
            transparent 3px
        );

    background-size:
        7px
        7px;
}

.transition-scanlines {
    opacity: 0;

    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 3px,
            rgba(255, 255, 255, 0.12) 4px
        );
}

.transition-flash {
    opacity: 0;

    background: white;
}

.page-transition.active .transition-noise {
    animation:
        tvNoise 0.1s steps(2) infinite;
}

.page-transition.active .transition-scanlines {
    animation:
        scanlineFlicker 0.12s steps(2) infinite;
}

.page-transition.active .transition-flash {
    animation:
        whiteFlash 0.85s ease forwards;
}

.art-shop-page.page-entering::before {
    content: "";

    position: fixed;
    inset: 0;

    z-index: 10000;

    pointer-events: none;

    background: white;

    animation:
        pageWhiteFade 0.85s ease forwards;
}


/* ANIMATIONS */

@keyframes tvNoise {

    0% {
        opacity: 0.15;
        transform: translate(0, 0);
    }

    25% {
        opacity: 0.42;
        transform: translate(-2px, 1px);
    }

    50% {
        opacity: 0.22;
        transform: translate(2px, -1px);
    }

    75% {
        opacity: 0.5;
        transform: translate(1px, 2px);
    }

    100% {
        opacity: 0.18;
        transform: translate(-1px, -2px);
    }

}

@keyframes scanlineFlicker {

    0% {
        opacity: 0.08;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        opacity: 0.1;
    }

}

@keyframes whiteFlash {

    0% {
        opacity: 0;
    }

    45% {
        opacity: 0;
    }

    70% {
        opacity: 0.95;
    }

    100% {
        opacity: 1;
    }

}

@keyframes pageWhiteFade {

    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }

}

@keyframes galleryFadeIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* TABLET */

@media (max-width: 1000px) {

    .art-categories {
        grid-template-columns: 1fr;
    }

    .art-category-card {
        min-height: 680px;
    }

    .art-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* SMARTPHONE */

@media (max-width: 700px) {

    .art-hero-content {
        padding:
            140px
            24px
            75px;
    }

    .art-hero h1 {
        font-size:
            clamp(3.3rem, 15vw, 5.3rem);
    }

    .art-introduction {
        padding-right: 24px;
        padding-left: 24px;
    }

    .art-category-card {
        min-height: 580px;
    }

    .art-product-grid {
        grid-template-columns: 1fr;
    }

    .art-collection {
        padding-right: 24px;
        padding-left: 24px;
    }

}

/* ========================================
   ART SHOP HERO VIDEO
======================================== */

.art-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}


/* Das Video füllt den kompletten Hero */

.art-hero-video {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;
}


/* Dunkle Schicht über dem Video,
   damit man die Schrift lesen kann */

.art-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(10, 8, 6, 0.65) 0%,
        rgba(10, 8, 6, 0.30) 45%,
        rgba(10, 8, 6, 0.05) 80%
    );
}


/* Text liegt über Video und Overlay */

.art-hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    height: 100%;

    max-width: 750px;

    padding-left: 7vw;
    padding-right: 30px;

    color: white;
}

.art-category-card {
    cursor: pointer;
}

.art-category-card.active {
    outline: 2px solid #9b7025;
    outline-offset: -2px;
}

.back-to-collections {
    margin: 0 0 24px;
    padding: 0 0 7px;

    color: #9b7025;
    background: transparent;

    border: 0;
    border-bottom: 1px solid #9b7025;

    cursor: pointer;

    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.back-to-collections:hover {
    color: #171411;
    border-color: #171411;
}