:root {
    --white: #f9f8f6;
    --black: #0d0d0d;
    --mid: rgba(13, 13, 13, 0.46);
    --rule: rgba(13, 13, 13, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--black);
    background: var(--black);
    overflow-x: hidden;
}

/* ─── PHOTO ─── */
.photo {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 42% center;
    display: block;
    filter: grayscale(0.2) contrast(1.18) brightness(0.96);
    transform: scaleX(-1);
}

.photo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 70% 50%, transparent 30%, rgba(0, 0, 0, 0.55) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, transparent 28%, rgba(0, 0, 0, 0.38) 100%);
}

.photo-credit {
    margin-top: 1rem;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 300;
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    padding: 28px clamp(24px, 5vw, 64px);
    mix-blend-mode: difference;
}

.nav a,
.nav-dropbtn {
    color: var(--white);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 400;
    transition: opacity 0.2s;
}

.nav a:hover,
.nav-dropbtn:hover {
    opacity: 0.5;
}

.nav a.active {
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}

.nav-dropdown {
    position: relative;
    line-height: 1;
}

.nav-dropbtn {
    display: block;
    border: none;
    background: none;
    cursor: pointer;
    font-family: "Inter", Arial, sans-serif;
}

.nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    min-width: 200px;
    padding-top: 18px;
}

.nav-menu a {
    padding: 8px 0;
    text-align: right;
    border-top: 1px solid rgba(249, 248, 246, 0.18);
}

.nav-menu a:first-child {
    border-top: none;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu,
.nav-dropdown.open .nav-menu {
    display: flex;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 clamp(32px, 8vw, 120px);
}

.hero-inner {
    max-width: 480px;
}

.home-page .hero-inner {
    max-width: 480px;
}

.collection-page .hero-inner {
    max-width: 560px;
}

.brand-logo {
    display: block;
    height: auto;
    filter: brightness(0) invert(1);
}

.home-page .brand-logo {
    width: min(100%, 420px);
}

.collection-page .brand-logo {
    width: min(100%, 320px);
    margin-bottom: 2.6rem;
}

.hero-sub {
    margin-top: 1.4rem;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(249, 248, 246, 0.55);
    font-weight: 300;
}

.collection-kicker {
    margin-bottom: 1.4rem;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(249, 248, 246, 0.55);
    font-weight: 300;
}

.collection-title {
    font-family: "Bodoni Moda", "Times New Roman", serif;
    font-size: clamp(52px, 8vw, 112px);
    line-height: 0.92;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
}

/* ─── CONTENT BAND ─── */
.content {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: clamp(64px, 10vw, 120px) clamp(24px, 8vw, 120px) 80px;
}

.content::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: var(--rule);
    margin-bottom: clamp(48px, 8vw, 96px);
}

/* ─── SECTIONS ─── */
.section {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0 clamp(32px, 5vw, 80px);
    padding: clamp(32px, 5vw, 56px) 0;
    border-top: 1px solid var(--rule);
    max-width: 860px;
}

.section:last-child {
    border-bottom: 1px solid var(--rule);
}

.section.gallery-section {
    max-width: 100%;
}

.s-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mid);
    padding-top: 6px;
    font-weight: 400;
}

.s-title {
    font-family: "Bodoni Moda", "Times New Roman", serif;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.08;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.4rem;
}

.s-text {
    font-size: 14px;
    line-height: 1.85;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    color: rgba(13, 13, 13, 0.68);
    max-width: 520px;
    font-weight: 300;
}

/* ─── CONTACT LIST ─── */
.c-list {
    list-style: none;
}

.c-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
    font-weight: 300;
    padding: 14px 0;
    border-top: 1px solid var(--rule);
    color: rgba(13, 13, 13, 0.72);
    letter-spacing: 0.02em;
}

.c-list li:first-child {
    border-top: none;
    padding-top: 0;
}

.c-list a {
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.2s;
}

.c-list a:hover {
    opacity: 0.5;
}

.c-key {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
}

/* ─── GALLERY ─── */
.gallery {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1vw, 12px);
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    filter: grayscale(0.2) contrast(1.18) brightness(0.96);
    transition: filter 0.5s ease, transform 0.6s ease;
}

.gallery-item:hover img {
    filter: grayscale(0) contrast(1.08) brightness(1.02);
    transform: scale(1.015);
}

.gallery.creations-grid {
    display: block;
    columns: 2;
    column-gap: clamp(6px, 1vw, 12px);
}

.creations-grid .gallery-item {
    break-inside: avoid;
    margin-bottom: clamp(6px, 1vw, 12px);
}

.gallery.runway-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(6px, 1vw, 12px);
}

.runway-grid .gallery-item img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

/* ─── LIGHTBOX ─── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(13, 13, 13, 0.97);
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
    filter: grayscale(0.2) contrast(1.18) brightness(0.96);
}

.lb-close {
    position: absolute;
    top: 28px;
    right: clamp(24px, 5vw, 64px);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(249, 248, 246, 0.45);
    cursor: pointer;
    background: none;
    border: none;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    transition: opacity 0.2s;
}

.lb-close:hover {
    opacity: 1;
    color: var(--white);
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(249, 248, 246, 0.35);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    transition: color 0.2s;
    padding: 16px;
}

.lb-prev:hover,
.lb-next:hover {
    color: var(--white);
}

.lb-prev {
    left: clamp(12px, 3vw, 48px);
}

.lb-next {
    right: clamp(12px, 3vw, 48px);
}

.lb-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(249, 248, 246, 0.35);
    font-family: "Inter", sans-serif;
}

/* ─── FOOTER ─── */
.foot {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 0 clamp(24px, 8vw, 120px) 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: var(--white);
    border-top: 1px solid var(--rule);
    padding: 22px clamp(24px, 5vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 64px);
    transform: translateY(100%);
    transition: transform 0.45s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-text {
    font-size: 12px;
    line-height: 1.7;
    font-weight: 300;
    color: rgba(13, 13, 13, 0.68);
    max-width: 560px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-shrink: 0;
}

.cookie-actions button {
    background: none;
    border: none;
    font-family: "Inter", Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--black);
    cursor: pointer;
    padding: 4px 0;
    transition: opacity 0.2s;
}

.cookie-actions button:hover {
    opacity: 0.5;
}

.cookie-accept {
    border-bottom: 1px solid var(--black);
}

/* ─── MOBILE ─── */
@media (max-width: 720px) {
    .photo img {
        object-position: 45% center;
    }

    .hero {
        align-items: flex-end;
        padding: 24px 24px 60px;
    }

    .hero-inner {
        max-width: 100%;
    }

    .home-page .brand-logo {
        width: min(100%, 240px);
    }

    .collection-page .brand-logo {
        width: min(100%, 220px);
    }

    .nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.3rem;
        padding: 22px 20px;
    }

    .nav-menu {
        right: 50%;
        transform: translateX(50%);
    }

    .section,
    .section.gallery-section {
        grid-template-columns: 1fr;
        gap: 12px 0;
    }

    .content {
        padding: 56px 20px 64px;
    }

    .foot {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 20px 20px 24px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
