/* Fashionhouse: editorial typography, monochrome surfaces and one sharp accent. */
:root {
    --ink: #101010;
    --paper: #fff;
    --pink: #fa296b;
    --muted: #686868;
    --gutter: clamp(24px, 5vw, 88px);
    --display: Didot, 'Bodoni MT', 'Times New Roman', serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 78px;
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--paper);
    font: 16px/1.5 Arial, sans-serif;
}

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

button {
    color: inherit;
    font: inherit;
    cursor: pointer;
    border: 0;
    background: none;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

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

img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

h1, h2, p {
    margin: 0;
}

h1, h2 {
    font-weight: 400;
}

em {
    font-family: var(--display);
    font-weight: 400;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 100;
    padding: 12px;
    background: white;
    color: black;
}

.skip-link:focus {
    top: 10px;
}

.progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: left;
    z-index: 40;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px var(--gutter);
    border-bottom: 1px solid #ffffff55;
}

.brand {
    font-family: var(--display);
    font-size: 36px;
    line-height: 1;
    letter-spacing: -2px;
}

.brand span {
    font: 12px Arial, sans-serif;
    vertical-align: top;
    margin-left: 4px;
}

.desktop-nav {
    display: flex;
    gap: 34px;
}

.desktop-nav a, .menu-toggle {
    font-size: 14px;
}

.desktop-nav a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 44px;
    padding: 0;
}

.menu-lines {
    width: 25px;
    height: 9px;
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

/* Cover: image stays dominant;
text sits at the bottom away from the face. */
.hero {
    position: relative;
    min-height: 760px;
    height: 100svh;
    isolation: isolate;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-image img {
    height: 100%;
    width: 100%;
    object-position: 50% 36%;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0005, transparent 30%, #0002 50%, #000b);
    z-index: -1;
}

.hero-topline {
    position: absolute;
    top: 114px;
    left: var(--gutter);
    right: var(--gutter);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-copy {
    position: absolute;
    bottom: 112px;
    left: var(--gutter);
    right: var(--gutter);
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(72px, 8.5vw, 144px);
    line-height: .92;
    letter-spacing: -4px;
}

.hero-copy .eyebrow {
    margin-bottom: 18px;
}

.hero-copy .button {
    margin-top: 32px;
}

.button {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    padding: 16px 24px;
    font-size: 14px;
    min-height: 52px;
    transition: background .2s, color .2s;
}

.button-light {
    background: white;
    color: var(--ink);
}

.button-dark {
    background: var(--ink);
    color: white;
}

.button:hover {
    background: var(--pink);
    color: white;
}

.hero-bottom {
    position: absolute;
    bottom: 28px;
    left: var(--gutter);
    right: var(--gutter);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.intro {
    background: white;
    color: var(--ink);
    text-align: center;
    padding: 110px var(--gutter);
}

.intro h2 {
    font-family: var(--display);
    font-size: clamp(46px, 6vw, 88px);
    line-height: 1;
    letter-spacing: -2px;
}

.intro h2 span {
    font-style: italic;
}

.intro > p:last-child {
    max-width: 410px;
    margin: 30px auto 0;
    color: #555;
}

/* Full-bleed editorials: native scrolling with inexpensive transforms. */
.story {
    position: relative;
    min-height: 800px;
    height: 110svh;
    overflow: hidden;
    isolation: isolate;
}

.story-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.story-media img {
    width: 100%;
    height: 100%;
    object-position: 50% 48%;
}

.story::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, #0009, transparent 65%), linear-gradient(0deg, #0006, transparent 40%);
}

.story-copy {
    position: absolute;
    left: var(--gutter);
    bottom: 10%;
}

.story h2 {
    font-family: var(--display);
    font-size: clamp(64px, 8vw, 124px);
    line-height: .95;
    letter-spacing: -3px;
    margin-bottom: 30px;
}

.text-link {
    padding: 10px 0;
    border-bottom: 1px solid;
    font-size: 14px;
}

.edge-label {
    position: absolute;
    right: 28px;
    top: 45%;
    writing-mode: vertical-rl;
    font-size: 12px;
    letter-spacing: 2px;
}

.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.feature {
    position: relative;
    height: 850px;
    overflow: hidden;
    isolation: isolate;
}

.feature > img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -2;
    transition: transform 1s;
}

.feature::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, #000b, transparent 70%);
}

.feature > div {
    position: absolute;
    left: var(--gutter);
    right: 24px;
    bottom: 55px;
}

.feature h2 {
    font-family: var(--display);
    font-size: clamp(46px, 4.8vw, 76px);
    line-height: 1;
    margin-bottom: 25px;
}

.feature:hover > img {
    transform: scale(1.035);
}

.jewellery img {
    object-position: 38% 50%;
}

/* The lookbook uses an offset editorial grid on desktop and full-screen looks on phones. */
.lookbook {
    background: white;
    color: var(--ink);
    padding: 110px var(--gutter) 90px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 46px;
}

.section-heading h2 {
    font-family: var(--display);
    font-size: clamp(48px, 5vw, 76px);
    line-height: 1;
    letter-spacing: -2px;
}

.section-heading h2 span {
    font-family: Arial, sans-serif;
    font-size: .7em;
    margin-left: 28px;
}

.section-heading > p {
    color: #666;
    font-size: 14px;
}

.filter-bar {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid #ddd;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-bar button {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 2px solid transparent;
}

.filter-bar button.active {
    color: var(--ink);
    border-color: var(--pink);
}

#look-count {
    margin-left: auto;
    font-size: 12px;
    color: #666;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 24px;
    align-items: start;
}

.look-card {
    text-align: left;
    padding: 0;
    width: 100%;
}

.look-image {
    display: block;
    overflow: hidden;
    background: #ededed;
    aspect-ratio: 3 / 4;
    position: relative;
}

.look-image img {
    width: 100%;
    height: 100%;
    transition: transform .8s, filter .8s;
}

.look-card:hover img {
    transform: scale(1.055);
    filter: contrast(1.04);
}

.look-image::after {
    content: 'View look ↗';
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 10px 14px;
    background: white;
    color: black;
    font-size: 12px;
}

.look-label {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    font-size: 14px;
}

.look-label span:last-child {
    color: #777;
    font-size: 12px;
}

.colour-story {
    position: relative;
    height: 100svh;
    min-height: 760px;
    overflow: hidden;
    isolation: isolate;
}

.colour-story img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
    object-position: center 35%;
}

.colour-story::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0008, transparent 70%), linear-gradient(0deg,#0008,transparent 60%);
    z-index: -1;
}

.colour-story > div {
    position: absolute;
    bottom: 10%;
    left: var(--gutter);
}

.colour-story h2 {
    font-family: var(--display);
    font-size: clamp(70px, 9vw, 140px);
    line-height: .9;
    margin-bottom: 35px;
}

.films {
    padding: 100px var(--gutter);
}

.films .section-heading > p {
    color: #aaa;
}

.film-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    align-items: center;
}

.film-stage {
    position: relative;
    background: #191919;
}

.film-stage video {
    width: 100%;
    height: min(80svh, 760px);
    display: block;
    object-fit: contain;
}

.film-caption {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 16px;
}

.film-list button {
    width: 100%;
    display: flex;
    text-align: left;
    align-items: center;
    gap: 25px;
    padding: 28px 0;
    border-top: 1px solid #444;
}

.film-list button strong {
    font-family: var(--display);
    font-size: clamp(25px, 2.5vw, 42px);
    font-weight: 400;
}

.film-list button span {
    font-size: 12px;
}

.film-list button span:last-child {
    margin-left: auto;
    font-size: 24px;
}

.film-list button.selected {
    color: #ff739d;
}

.closing {
    padding: 110px var(--gutter);
    text-align: center;
    background: var(--pink);
    color: var(--ink);
}

.closing h2 {
    font-family: var(--display);
    font-size: clamp(44px, 6vw, 88px);
    line-height: 1;
    margin-bottom: 35px;
}

.closing .button:hover {
    background: white;
    color: black;
}

footer {
    padding: 75px var(--gutter) 30px;
}

.footer-brand {
    display: block;
    font-family: var(--display);
    font-size: clamp(50px, 13vw, 200px);
    line-height: 1;
    letter-spacing: -.06em;
}

.footer-brand span {
    font: 16px Arial, sans-serif;
    vertical-align: top;
}

footer > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 0 24px;
    border-bottom: 1px solid #444;
    font-size: 14px;
    align-items: center;
}

footer > p {
    color: #999;
    font-size: 12px;
    margin-top: 20px;
}

/* Native dialogs keep keyboard focus inside and support Escape automatically. */
dialog {
    color: white;
    background: var(--ink);
    border: 0;
    padding: 0;
}

dialog::backdrop {
    background: #000c;
}

body:has(dialog[open]) {
    overflow: hidden;
}

#menu-dialog {
    width: 100%;
    max-width: none;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: 25px var(--gutter);
}

.menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-head > span {
    font-family: var(--display);
    font-size: 30px;
}

.menu-head button {
    min-height: 44px;
}

#menu-dialog nav {
    margin: 10svh 0 6svh;
}

#menu-dialog nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--display);
    font-size: clamp(54px, 8vw, 120px);
    line-height: 1.2;
    border-bottom: 1px solid #555;
    padding: 15px 0;
}

#menu-dialog nav a:hover {
    color: #ff739d;
}

#menu-dialog nav span {
    font: 14px Arial, sans-serif;
}

#menu-dialog > p {
    font-size: 14px;
    color: #aaa;
}

#lightbox {
    width: 100%;
    height: 100dvh;
    max-width: none;
    max-height: none;
    margin: 0;
}

#lightbox-image {
    width: 100%;
    height: calc(100dvh - 110px);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    padding: 12px 16px;
    background: #101010dd;
    z-index: 2;
}

.lightbox-bottom {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    text-align: center;
}

.lightbox-bottom button {
    font-size: 28px;
    min-width: 48px;
    min-height: 48px;
}

.lightbox-bottom h2 {
    font-family: var(--display);
    font-size: 26px;
}

.lightbox-bottom p {
    font-size: 12px;
    color: #aaa;
}

/* Effects progressively enhance visible content;
nothing depends on animation to appear. */
@keyframes imageReveal {
    from {
        clip-path: inset(7% 4%);
        transform: scale(.97);
    }
    to {
        clip-path: inset(0);
        transform: scale(1);
    }
}

.reveal.in-view {
    animation: imageReveal 1s cubic-bezier(.2,.65,.3,1) both;
}

@media (min-width: 1000px) {
    .hero-image img {
        object-position: 50% 42%;
    }
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }
    .hero {
        min-height: 680px;
    }
    .hero h1 {
        font-size: 90px;
    }
    .feature {
        height: 720px;
    }
    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .look-card:nth-child(3n + 2) {
        margin-top: 0;
    }
    .section-heading > p {
        max-width: 210px;
    }
}

@media (max-width: 600px) {
    :root {
        --gutter: 22px;
    }
    .site-header {
        padding-top: 19px;
        padding-bottom: 17px;
    }
    .brand {
        font-size: 31px;
    }
    .hero {
        height: 100svh;
        min-height: 650px;
    }
    .hero-image img {
        object-position: 48% 30%;
    }
    .hero-topline {
        top: 95px;
        font-size: 10px;
        letter-spacing: 1px;
    }
    .hero-topline span:last-child {
        display: none;
    }
    .hero-copy {
        bottom: 78px;
    }
    .hero h1 {
        font-size: clamp(56px, 14vw, 82px);
        letter-spacing: -2px;
        line-height: .94;
    }
    .hero-copy .eyebrow {
        font-size: 10px;
    }
    .hero-copy .button {
        margin-top: 24px;
    }
    .hero-bottom {
        bottom: 22px;
        font-size: 10px;
    }
    .hero-bottom span {
        max-width: 130px;
    }
    .intro {
        padding: 72px 25px;
    }
    .intro h2 {
        font-size: 45px;
    }
    .intro > p:last-child {
        font-size: 15px;
    }
    .story {
        height: 100svh;
        min-height: 650px;
    }
    .story-media img {
        object-position: 52% center;
    }
    .story-copy {
        bottom: 45px;
    }
    .story h2 {
        font-size: 57px;
        letter-spacing: -2px;
    }
    .edge-label {
        right: 12px;
        top: 22%;
        font-size: 10px;
    }
    .duo {
        display: block;
    }
    .feature {
        height: 100svh;
        min-height: 650px;
    }
    .feature > div {
        bottom: 45px;
    }
    .feature h2 {
        font-size: 54px;
    }
    .lookbook {
        padding: 70px 0 0;
    }
    .section-heading {
        padding: 0 var(--gutter);
        display: block;
        margin-bottom: 28px;
    }
    .section-heading h2 {
        font-size: 48px;
    }
    .section-heading > p {
        margin-top: 20px;
        max-width: none;
    }
    .section-heading > p br {
        display: none;
    }
    .filter-bar {
        margin: 0;
        padding: 16px var(--gutter);
        gap: 8px 19px;
    }
    .filter-bar button {
        font-size: 13px;
    }
    #look-count {
        width: 100%;
        margin: 0;
    }
    .gallery {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 12px;
        padding: 0 12px 40px;
    }
    .look-card, .look-card:nth-child(even) {
        display: block;
        position: relative;
        margin: 0;
    }
    .look-image {
        height: auto;
        min-height: 0;
        aspect-ratio: 3 / 4;
    }
    .look-image img {
        object-position: center;
    }
    .look-image::after {
        bottom: 8px;
        right: 8px;
        padding: 6px 8px;
        font-size: 12px;
    }
    .look-label {
        position: static;
        padding: 10px 0 0;
        color: var(--ink);
        flex-direction: column;
        gap: 2px;
        font-size: 14px;
    }
    .look-label span:last-child {
        color: #666;
    }
    .colour-story {
        min-height: 650px;
    }
    .colour-story img {
        object-position: 60% center;
    }
    .colour-story h2 {
        font-size: 70px;
    }
    .films {
        padding: 70px 0 40px;
    }
    .film-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .film-stage {
        width: 100%;
    }
    .film-stage video {
        height: 85svh;
    }
    .film-list {
        width: 100%;
        padding: 0 var(--gutter);
    }
    .film-list button {
        padding: 20px 0;
    }
    .film-list button strong {
        font-size: 32px;
    }
    .closing {
        padding: 80px 22px;
    }
    .closing h2 {
        font-size: 44px;
    }
    footer {
        padding-top: 48px;
    }
    .footer-brand {
        font-size: 14vw;
    }
    footer > div {
        font-size: 12px;
        gap: 10px;
    }
    footer > div > span {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}

body.motion-off *, body.motion-off *::before, body.motion-off *::after {
    animation: none !important;
    transition: none !important;
}

html:has(body.motion-off) {
    scroll-behavior: auto;
}

/* Expressive movement: layout remains stable;
photographs animate within their tiles. */
@keyframes coverEntrance {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fashionTicker {
    to {
        transform: translateX(-50%);
    }
}

@keyframes underlineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.hero-copy .eyebrow {
    animation: coverEntrance .75s .1s both;
}

.hero h1 {
    animation: coverEntrance 1s .2s both;
}

.hero h1 em {
    position: relative;
    display: inline-block;
}

.hero h1 em::after {
    content: '';
    position: absolute;
    height: 4px;
    background: var(--pink);
    left: 2%;
    right: 0;
    bottom: -8px;
    transform-origin: left;
    animation: underlineGrow .8s .8s both;
}

.hero-copy .button {
    animation: coverEntrance 1s .4s both;
}

.fashion-ticker {
    overflow: hidden;
    background: var(--pink);
    color: var(--ink);
    padding: 20px 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: fashionTicker 32s linear infinite;
}

.ticker-track > span {
    display: block;
    flex-shrink: 0;
    padding-right: 46px;
    white-space: nowrap;
    font-family: var(--display);
    font-size: clamp(24px, 3.6vw, 54px);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticker-track i {
    font-weight: normal;
    margin: 0 22px;
}

.fashion-ticker:hover .ticker-track {
    animation-play-state: paused;
}

.button {
    transition: background .25s, color .25s, box-shadow .25s, transform .25s;
}

.button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 0 var(--pink);
}

.button-light:hover {
    background: white;
    color: var(--ink);
}

.text-link {
    transition: color .25s, padding .25s;
}

.text-link:hover {
    color: #ff739d;
    padding-left: 12px;
}

.look-card .look-image img {
    transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .6s;
}

.look-card:hover .look-image img {
    transform: scale(1.09) rotate(-1.5deg);
    filter: contrast(1.08) saturate(1.12);
}

.look-card:focus-visible .look-image img {
    transform: scale(1.05);
}

.look-card .look-image::after {
    transition: background .25s, color .25s;
}

.look-card:hover .look-image::after {
    background: var(--pink);
    color: var(--ink);
}

.film-list button {
    transition: color .25s, padding .25s;
}

.film-list button:hover {
    padding-left: 16px;
    color: #ff739d;
}

#menu-dialog[open] nav a {
    animation: coverEntrance .6s both;
}

#menu-dialog[open] nav a:nth-child(2) {
    animation-delay: .1s;
}

#menu-dialog[open] nav a:nth-child(3) {
    animation-delay: .2s;
}

.heading-reveal.in-view {
    animation: coverEntrance .85s both;
}

.look-card.in-view .look-image {
    animation: imageReveal .8s cubic-bezier(.2,.65,.3,1) both;
}

/* Respect both the operating-system preference and the site's Motion toggle. */
@media (prefers-reduced-motion: reduce) {
    .ticker-track, .hero-copy *, .hero h1 em::after, .heading-reveal.in-view, .look-card.in-view .look-image {
        animation: none !important;
    }
    .look-card:hover .look-image img, .button:hover { transform: none; }
}
body.motion-off .look-card:hover .look-image img,
body.motion-off .button:hover { transform: none; }
