:root {
    --void: #07080a;
    --ink: #0d0e11;
    --panel: #12141a;
    --ivory: #efe8dc;
    --mute: #a39b8f;
    --line: rgba(239, 232, 220, 0.14);
    --gold: #c2a06a;
    --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    --display: "Italiana", "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--void);
    color: var(--ivory);
    font-family: var(--font);
    line-height: 1.65;
    overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul, dl { margin: 0; padding: 0; list-style: none; }

::selection {
    background: var(--gold);
    color: var(--void);
}

.grain {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 80;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.masthead {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 32px;
    mix-blend-mode: normal;
}

.mast-logo img {
    height: 42px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.mast-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.mast-nav > a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mute);
}

.mast-nav > a:hover,
.mast-nav > a.is-active { color: var(--ivory); }

.mast-panel { display: none; }

.mast-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mast-whats {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    color: var(--gold);
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    color: var(--ivory);
    font-family: inherit;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
}

.stage {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) 1.15fr;
    min-height: 100vh;
    background: var(--void);
}

.stage-copy {
    padding: 140px 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.eyebrow {
    margin: 0 0 18px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
}

.stage-copy h1 {
    margin: 0;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(4.2rem, 9vw, 8.5rem);
    line-height: 0.86;
    letter-spacing: -0.03em;
}

.stage-copy h1 span { display: block; }

.manifesto {
    max-width: 420px;
    margin: 28px 0 32px;
    color: var(--mute);
    font-size: 1.02rem;
}

.stage-cta,
.story-copy .stage-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.btn-fill,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 0;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-fill {
    background: var(--ivory);
    color: var(--void);
}

.btn-fill:hover { background: #fff; }

.btn-ghost {
    background: transparent;
    color: var(--ivory);
    border-color: var(--line);
}

.btn-ghost:hover { border-color: var(--ivory); }

.stage-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.stage-facts dt {
    font-family: var(--display);
    font-size: 2.4rem;
    line-height: 1;
}

.stage-facts dd {
    margin: 6px 0 0;
    color: var(--mute);
    font-size: 0.8rem;
}

.stage-view {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

.stage-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s ease, visibility 1.1s ease;
}

.stage-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.stage-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.05);
    transform: scale(1.08);
    transition: transform 8s ease;
}

.stage-slide.is-active img { transform: scale(1); }

.stage-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 8, 10, 0.05) 0%, rgba(7, 8, 10, 0.55) 100%);
}

.stage-slide figcaption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 92px;
    z-index: 2;
    display: grid;
    gap: 8px;
}

.stage-slide figcaption span {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.stage-slide figcaption strong {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.05;
}

.stage-slide figcaption a {
    width: max-content;
    margin-top: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--ivory);
    padding-bottom: 4px;
}

.stage-nav {
    position: absolute;
    z-index: 3;
    left: 28px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
}

.stage-nav button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ivory);
    cursor: pointer;
}

.stage-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: rgba(239, 232, 220, 0.12);
    z-index: 3;
}

.stage-bar i {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold);
}

.ticker {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    background: var(--ink);
}

.ticker-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: ticker 42s linear infinite;
    font-family: var(--display);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: var(--mute);
}

.ticker-track span { white-space: nowrap; }

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.atelier { padding: 0 0 40px; }

.atelier-head,
.gallery-block .atelier-head {
    padding: 88px 32px 28px;
    max-width: 760px;
}

.atelier-head h2,
.maison-copy h2,
.visit-copy h2,
.story-copy h2,
.pillars h2,
.invite h2,
.page-stage h1 {
    margin: 0 0 12px;
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 0.96;
}

.atelier-head p:last-child,
.maison-copy p,
.visit-copy p,
.story-copy p,
.invite p {
    color: var(--mute);
}

.lookbook { display: grid; }

.look {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 72vh;
    color: inherit;
    border-top: 1px solid var(--line);
}

.look--flip .look-media { order: 2; }

.look-media { overflow: hidden; background: #000; }

.look-media img {
    width: 100%;
    height: 100%;
    min-height: 72vh;
    object-fit: cover;
    transition: transform 1.1s ease, filter 0.6s ease;
    filter: grayscale(0.15);
}

.look:hover .look-media img {
    transform: scale(1.04);
    filter: grayscale(0);
}

.look-copy {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--ink);
}

.look-copy span {
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    color: var(--gold);
}

.look-copy h3 {
    margin: 12px 0 16px;
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1;
}

.look-copy p {
    color: var(--mute);
    max-width: 420px;
}

.look-copy em {
    margin-top: 28px;
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold);
    width: max-content;
    padding-bottom: 4px;
}

.maison,
.story,
.visit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.maison-photo,
.story-photo {
    min-height: 80vh;
    overflow: hidden;
}

.maison-photo img,
.story-photo img,
.page-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.maison-copy,
.story-copy,
.visit-copy,
.visit-form {
    padding: 80px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit { background: var(--panel); }
.visit--page { min-height: auto; }

.visit-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.visit-list a {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    color: var(--ivory);
}

.lux-form {
    display: grid;
    gap: 22px;
}

.lux-form label { display: grid; gap: 8px; }

.lux-form span {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mute);
}

.lux-form input,
.lux-form textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--ivory);
    font-family: inherit;
    font-size: 1rem;
    padding: 8px 0 12px;
}

.lux-form input:focus,
.lux-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.note {
    padding: 12px 0;
    font-size: 0.92rem;
}

.note--ok { color: #cde3c8; }
.note--err { color: #e3c8c8; }

.page-stage {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
}

.page-stage--short { min-height: 48vh; }

.page-stage img {
    position: absolute;
    inset: 0;
    height: 100%;
}

.page-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 8, 10, 0.15), rgba(7, 8, 10, 0.78));
}

.page-stage-copy {
    position: relative;
    z-index: 1;
    padding: 0 48px 56px;
    max-width: 920px;
}

.page-stage p { color: rgba(239, 232, 220, 0.78); }

.pillars {
    padding: 88px 48px;
    border-top: 1px solid var(--line);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.pillar-grid span {
    color: var(--gold);
    letter-spacing: 0.2em;
    font-size: 0.75rem;
}

.pillar-grid h3 {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 400;
    margin: 10px 0;
}

.pillar-grid p { color: var(--mute); }

.invite {
    padding: 100px 48px;
    text-align: center;
    border-top: 1px solid var(--line);
}

.virtues {
    display: grid;
    gap: 10px;
    margin: 24px 0 32px;
}

.virtues li {
    padding-left: 18px;
    position: relative;
    color: var(--mute);
}

.virtues li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 1px;
    background: var(--gold);
}

.gallery-block { padding: 0 0 80px; }

.mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 0 6px;
}

.mosaic-item {
    padding: 0;
    border: 0;
    background: #111;
    height: 220px;
    overflow: hidden;
    cursor: zoom-in;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mosaic-item:hover img { transform: scale(1.06); }

.map-block iframe {
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(1) contrast(1.05);
}

.colophon {
    padding: 72px 48px 28px;
    border-top: 1px solid var(--line);
    background: #050506;
}

.colo-brand strong {
    font-family: var(--display);
    font-size: 3rem;
    font-weight: 400;
}

.colo-brand p {
    max-width: 360px;
    color: var(--mute);
}

.colo-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 48px 0;
}

.colo-cols h3 {
    margin: 0 0 14px;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.colo-cols a {
    display: block;
    padding: 5px 0;
    color: var(--mute);
    font-size: 0.92rem;
}

.colo-cols a:hover { color: var(--ivory); }

.colo-end {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--mute);
    font-size: 0.78rem;
}

.float-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 85;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 1.6rem;
    border-radius: 50%;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(7, 8, 10, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox[hidden] { display: none; }

.lightbox img {
    max-width: min(1100px, 100%);
    max-height: 82vh;
}

.lightbox-x,
.lightbox-p,
.lightbox-n {
    position: absolute;
    background: none;
    border: 0;
    color: var(--ivory);
    cursor: pointer;
    font-family: inherit;
}

.lightbox-x { top: 24px; right: 28px; letter-spacing: 0.16em; text-transform: uppercase; }
.lightbox-p, .lightbox-n { top: 50%; font-size: 1.6rem; }
.lightbox-p { left: 24px; }
.lightbox-n { right: 24px; }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .masthead { padding: 16px 20px; }

    .menu-btn { display: inline-flex; align-items: center; gap: 8px; }

    .mast-nav {
        position: fixed;
        inset: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 18px;
        padding: 100px 32px 40px;
        background: rgba(7, 8, 10, 0.96);
    }

    .nav-open .mast-nav { display: flex; }

    .mast-nav > a {
        font-family: var(--display);
        font-size: 2.4rem;
        letter-spacing: 0;
        text-transform: none;
        color: var(--ivory);
    }

    .mast-panel {
        display: grid;
        gap: 8px;
        margin-top: 20px;
        max-height: 40vh;
        overflow: auto;
    }

    .mast-panel p {
        color: var(--gold);
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
    }

    .mast-whats { display: none; }

    .stage,
    .look,
    .maison,
    .story,
    .visit,
    .pillar-grid,
    .colo-cols,
    .mosaic {
        grid-template-columns: 1fr;
    }

    .stage { min-height: auto; }
    .stage-copy { padding: 110px 24px 36px; }
    .stage-view, .look-media img, .maison-photo, .story-photo { min-height: 70vh; }
    .look--flip .look-media { order: 0; }
    .look-copy, .maison-copy, .story-copy, .visit-copy, .visit-form, .page-stage-copy, .pillars, .invite, .colophon {
        padding-left: 24px;
        padding-right: 24px;
    }
    .mosaic { grid-template-columns: 1fr 1fr; }
    .colo-end { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track, .stage-slide, .stage-slide img, .reveal { animation: none; transition: none; }
}
