/* ---------- Global ---------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #080706;
    color: #f5efe5;
    font-family: "Inter", sans-serif;
}

img {
    max-width: 100%;
}

.logo,
h1,
h2 {
    font-family: "Cormorant Garamond", serif;
}


/* ---------- Header ---------- */

body > header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 80px;
    padding: 22px 48px;
    background: #080706;
}

body > header .logo {
    color: #f5efe5;
    font-size: 30px;
    font-weight: 600;
}

body > header nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

body > header nav a {
    color: #d9d3ca;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.25s ease;
}

body > header nav a:hover {
    color: #c99a39;
}


/* ---------- Homepage ---------- */

.home-hero {
    display: grid;
    grid-template-columns: 46% 54%;
    min-height: calc(100vh - 80px);
    background: #080706;
}

.hero-artwork {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #050505;
}

.hero-artwork img {
    width: 100%;
    height: calc(100vh - 80px);
    object-fit: contain;
    display: block;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 8%;
}

.artist-label {
    margin: 0 0 25px;
    color: #c99a39;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: left;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 760px;
    margin: 0;
    color: #f5efe5;
    font-size: clamp(58px, 6.5vw, 110px);
    font-weight: 500;
    line-height: 0.88;
    text-align: left;
}

.hero-description {
    max-width: 600px;
    margin: 40px 0 0;
    color: #bcb5ab;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
}

.hero-links {
    display: flex;
    gap: 30px;
    margin-top: 35px;
}

.hero-links a {
    padding-bottom: 7px;
    border-bottom: 1px solid #c99a39;
    color: #f5efe5;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.hero-links a:hover {
    color: #c99a39;
}


/* ---------- Shared Page Introduction ---------- */

.page-intro {
    max-width: 900px;
    margin-bottom: 80px;
}

.page-intro h1 {
    margin: 0;
    font-size: clamp(72px, 10vw, 150px);
    font-weight: 500;
    line-height: 0.9;
    text-align: left;
}

.page-description {
    max-width: 650px;
    margin: 28px 0 0;
    color: #bcb5ab;
    font-size: 17px;
    line-height: 1.7;
    text-align: left;
}


/* ---------- Art Landing Page ---------- */

.art-page {
    min-height: calc(100vh - 80px);
    padding: 90px 6% 120px;
    background: #080706;
    color: #f5efe5;
}

.art-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.art-option {
    min-height: 280px;
    padding: 35px;
    border: 1px solid #3d3934;
    color: #f5efe5;
    text-decoration: none;
    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}

.art-option:hover {
    border-color: #c99a39;
    transform: translateY(-4px);
}

.art-option span {
    color: #c99a39;
    font-size: 13px;
    letter-spacing: 2px;
}

.art-option h2 {
    margin: 55px 0 15px;
    font-size: 54px;
    font-weight: 500;
}

.art-option p {
    max-width: 380px;
    margin: 0;
    color: #bcb5ab;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
}


/* ---------- Portfolio Page ---------- */

.portfolio-page {
    min-height: calc(100vh - 80px);
    padding: 90px 6% 120px;
    background: #080706;
    color: #f5efe5;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px 35px;
    margin-top: 80px;
}

.collection-card {
    width: 100%;
    color: #f5efe5;
    text-decoration: none;
}

/* Nature's Abundance spans the full row */
.collection-card.landscape {
    grid-column: 1 / -1;
}

/* Root to Algorithm sits centred on the final row */
.collection-card.last-card {
    grid-column: 1 / -1;
    width: calc(50% - 18px);
    justify-self: center;
}
/* ---------- Portfolio Cover Images ---------- */

.collection-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #111;
}

.collection-card.landscape .collection-image {
    height: 520px;
}

.collection-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}

.placeholder-image {
    min-height: 420px;
    border: 1px solid #3d3934;
    background:
        linear-gradient(
            135deg,
            #181512 0%,
            #251d17 50%,
            #11100e 100%
        );
}
/* ---------- Portfolio Text ---------- */

.collection-details {
    padding-top: 20px;
}

.collection-details span {
    color: #c99a39;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.collection-details h2 {
    margin: 12px 0 5px;
    color: #f5efe5;
    font-size: 42px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.collection-details p {
    margin: 0;
    color: #9f988f;
    font-size: 14px;
    text-align: left;
}
/* ---------- Portfolio Hover Effects ---------- */

.collection-card:hover .collection-image img {
    transform: scale(1.05);
    opacity: 0.92;
}

.collection-card:hover .collection-details h2 {
    color: #c99a39;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 850px) {

    body > header {
        padding: 20px 24px;
    }

    body > header nav {
        gap: 16px;
    }

    /* Homepage becomes one column */

    .home-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-artwork {
        width: 100%;
        height: clamp(340px, 52vh, 430px);
    }

    .hero-artwork img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        padding: 55px 24px 75px;
    }

    .hero-content h1 {
        max-width: 680px;
        font-size: clamp(48px, 11vw, 72px);
        line-height: 0.94;
    }

    .collection-image,
    .collection-card.landscape .collection-image {
        height: 420px;
    }
}


/* ==================================================
   PORTFOLIO CARD POSITIONS — DESKTOP AND TABLET
================================================== */

.collection-card:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1;
}

.collection-card:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
}

.collection-card:nth-of-type(3) {
    grid-column: 1 / -1;
    grid-row: 2;
}

.collection-card:nth-of-type(4) {
    grid-column: 1;
    grid-row: 3;
}

.collection-card:nth-of-type(5) {
    grid-column: 2;
    grid-row: 3;
}

.collection-card:nth-of-type(6) {
    grid-column: 1 / -1;
    grid-row: 4;
    width: calc(50% - 18px);
    justify-self: center;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 750px) {

    /* Header */

    body > header {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        padding: 24px;
    }

    body > header nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    body > header nav a {
        font-size: 14px;
    }


    /* Homepage */

    .home-hero {
        display: block;
        min-height: auto;
    }

    .hero-artwork {
        width: 100%;
        height: clamp(320px, 48vh, 400px);
        min-height: 0;
        max-height: none;
    }

    .hero-artwork img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        padding: 45px 24px 65px;
    }

    .artist-label {
        display: block;
        margin: 0 0 18px;
        font-size: 11px;
        line-height: 1.5;
        letter-spacing: 2.5px;
    }

    .hero-content h1 {
        width: 100%;
        max-width: none;
        font-size: clamp(42px, 11.5vw, 54px);
        line-height: 0.98;
    }

    .hero-description {
        margin-top: 32px;
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-links {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 18px 26px;
        margin-top: 30px;
    }

    .hero-links a {
        font-size: 12px;
    }


    /* Art and Portfolio */

    .art-page,
    .portfolio-page {
        padding: 60px 24px 90px;
    }

    .art-options,
    .collection-grid {
        grid-template-columns: 1fr;
    }

    .collection-grid {
        gap: 50px;
        margin-top: 60px;
    }

    /* Reset every forced desktop portfolio position */

    .collection-card,
    .collection-card.landscape,
    .collection-card.last-card,
    .collection-card:nth-of-type(1),
    .collection-card:nth-of-type(2),
    .collection-card:nth-of-type(3),
    .collection-card:nth-of-type(4),
    .collection-card:nth-of-type(5),
    .collection-card:nth-of-type(6) {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        justify-self: stretch;
    }

    .collection-image,
    .collection-card.landscape .collection-image {
        height: auto;
    }

    .collection-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .collection-details h2 {
        font-size: 36px;
    }
}
/* ---------- About Page ---------- */

.about-page {
    min-height: calc(100vh - 80px);
    padding: 90px 6% 120px;
    background: #080706;
    color: #f5efe5;
}

.about-intro {
    max-width: 950px;
    margin-bottom: 90px;
}

.about-intro h1 {
    margin: 0;
     font-size: clamp(60px, 8vw, 110px);
    font-weight: 500;
    line-height: 0.9;
}

.about-lead {
    max-width: 760px;
    margin: 30px 0 0;
    color: #bcb5ab;
    font-size: 21px;
    line-height: 1.6;
}

.about-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 80px;
    align-items: start;
}

.about-portrait img {
    display: block;
    width: 100%;
    height: auto;
}

.about-text {
    padding-top: 20px;
}

.about-text p {
    margin: 0 0 28px;
    color: #d3ccc2;
    font-size: 17px;
    line-height: 1.8;
}

.text-link {
    display: inline-block;
    margin-top: 20px;
    padding-bottom: 7px;
    border-bottom: 1px solid #c99a39;
    color: #f5efe5;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link:hover {
    color: #c99a39;
}

@media (max-width: 750px) {

    .about-page {
        padding: 60px 24px 90px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-lead {
        font-size: 18px;
    }
}
/* ---------- Individual Collection Pages ---------- */

.series-page {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 90px 6% 140px;
    background: #080706;
    color: #f5efe5;
}

    .series-intro{
    max-width:780px;
    margin-bottom:120px;
}

.series-intro h1 {
    margin: 0;
    font-size: clamp(68px, 9vw, 135px);
    font-weight: 500;
    line-height: 0.9;
}

.series-description {
    max-width: 720px;
    margin: 35px 0 0;
    color: #bcb5ab;
    font-size: 17px;
    line-height: 1.8;
}

.back-link {
    display: inline-block;
    margin-top: 35px;
    padding-bottom: 6px;
    border-bottom: 1px solid #c99a39;
    color: #f5efe5;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.back-link:hover {
    color: #c99a39;
}


/* ---------- Artwork Gallery ---------- */

.series-gallery {
    display: flex;
    flex-direction: column;
    gap: 140px;
}

.artwork {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    gap: 60px;
    align-items: start;
}

.artwork:nth-child(even) {
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
}

.artwork:nth-child(even) .artwork-image {
    grid-column: 2;
    grid-row: 1;
}

.artwork:nth-child(even) .artwork-info {
    grid-column: 1;
    grid-row: 1;
}

.artwork-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.artwork-image img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 900px;
    object-fit: contain;
}

.artwork-info {
    padding-top: 20px;
}

.artwork-number {
    margin: 0 0 18px;
    color: #c99a39;
    font-size: 12px;
    letter-spacing: 2px;
}

.artwork-info h2 {
    margin: 0 0 12px;
    color: #f5efe5;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 500;
    line-height: 1;
}

.artwork-info .medium {
    margin: 0 0 24px;
    color: #c99a39;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.artwork-info p {
    max-width: 480px;
    margin: 0;
    color: #bcb5ab;
    font-size: 16px;
    line-height: 1.8;
}


/* ---------- Collection Navigation ---------- */

.series-navigation {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 140px;
    padding-top: 45px;
    border-top: 1px solid #2f2b27;
}

.series-navigation a {
    color: #f5efe5;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
}

.series-navigation a:hover {
    color: #c99a39;
}


/* ---------- Collection Page Mobile ---------- */

@media (max-width: 850px) {

    .series-page {
        padding: 60px 24px 100px;
    }

    .series-intro {
        max-width: 780px;
        margin-bottom: 80px;
    }

    .series-gallery {
        gap: 90px;
    }

    .artwork,
    .artwork:nth-child(even) {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .artwork:nth-child(even) .artwork-image,
    .artwork:nth-child(even) .artwork-info {
        grid-column: auto;
        grid-row: auto;
    }

    .artwork-image img {
        width: 100%;
        max-height: none;
    }

    .artwork-info {
        padding-top: 0;
    }

    .series-navigation {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---------- Nature's Abundance Final Polish ---------- */

.nature-intro {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 6% 120px;
}

.nature-intro h1 {
    max-width: 1000px;
    margin: 0;
    color: #f5efe5;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(72px, 9vw, 140px);
    font-weight: 500;
    line-height: 0.9;
}

.nature-intro .series-type {
    margin: 24px 0 0;
    color: #c99a39;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nature-intro .series-description {
    max-width: 780px;
    margin: 38px 0 0;
    color: #bcb5ab;
    font-size: 17px;
    line-height: 1.8;
}

.nature-intro .back-link {
    display: inline-block;
    margin-top: 42px;
    padding-bottom: 7px;
    border-bottom: 1px solid #c99a39;
    color: #f5efe5;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.nature-intro .back-link:hover {
    color: #c99a39;
}


/* Act navigation */

.act-navigation {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #2f2b27;
    border-bottom: 1px solid #2f2b27;
    background: rgba(8, 7, 6, 0.96);
    backdrop-filter: blur(10px);
}

.act-navigation a {
    padding: 22px 24px;
    border-right: 1px solid #2f2b27;
    color: #f5efe5;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    text-align: center;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.act-navigation a:last-child {
    border-right: 0;
}

.act-navigation a span {
    display: block;
    margin-bottom: 5px;
    color: #c99a39;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.act-navigation a:hover {
    background: #15120f;
    color: #c99a39;
}


/* Act introductions */

.nature-act {
    padding: 130px 6% 150px;
}

.act-heading {
    max-width: 760px;
    margin: 0 auto 120px;
    padding-bottom: 60px;
    border-bottom: 1px solid #2f2b27;
}

.act-heading > p:first-child {
    margin: 0 0 15px;
    color: #c99a39;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.act-heading h2 {
    margin: 0;
    color: #f5efe5;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(70px, 8vw, 120px);
    font-weight: 500;
    line-height: 0.9;
}

.act-description {
    max-width: 650px;
    margin: 30px 0 0;
    color: #bcb5ab;
    font-size: 17px;
    line-height: 1.8;
}


/* Mobile */

@media (max-width: 850px) {

    .nature-intro {
        padding: 70px 24px 90px;
    }

    .nature-intro .series-description {
        font-size: 16px;
    }

    .act-navigation {
        position: static;
        grid-template-columns: 1fr;
    }

    .act-navigation a {
        border-right: 0;
        border-bottom: 1px solid #2f2b27;
    }

    .act-navigation a:last-child {
        border-bottom: 0;
    }

    .nature-act {
        padding: 90px 24px 110px;
    }

    .act-heading {
        margin-bottom: 80px;
        padding-bottom: 45px;
    }
}

/* ---------- Fashion Landing Page ---------- */

.fashion-page {
    min-height: calc(100vh - 80px);
    padding: 90px 6% 130px;
    background: #080706;
    color: #f5efe5;
}

.fashion-intro {
    max-width: 950px;
    margin-bottom: 100px;
}

.fashion-intro h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(72px, 10vw, 150px);
    font-weight: 500;
    line-height: 0.9;
}

.fashion-description {
    max-width: 760px;
    margin: 35px 0 0;
    color: #bcb5ab;
    font-size: 17px;
    line-height: 1.8;
}

.fashion-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 38px;
}

.fashion-card {
    width: 100%;
    color: #f5efe5;
    text-decoration: none;
}

.fashion-card-wide {
    grid-column: 1 / -1;
    width: calc(50% - 19px);
    justify-self: center;
}

.fashion-image {
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: #111;
}

.fashion-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}

/* Portrait presentation for the Fashion Illustrations card */

.fashion-card-wide .fashion-image {
    height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fashion-card-wide .fashion-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fashion-details {
    padding-top: 18px;
}

.fashion-details span {
    color: #c99a39;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fashion-details h2 {
    margin: 10px 0 7px;
    color: #f5efe5;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 4vw, 64px);
    font-weight: 500;
    line-height: 1;
    transition: color 0.3s ease;
}

.fashion-details p {
    max-width: 560px;
    margin: 0;
    color: #9f988f;
    font-size: 14px;
    line-height: 1.7;
}

.fashion-card:hover .fashion-image img {
    transform: scale(1.025);
    opacity: 0.94;
}

.fashion-card:hover .fashion-details h2 {
    color: #c99a39;
}


/* ---------- Fashion Landing Mobile ---------- */

@media (max-width: 850px) {

    .fashion-page {
        padding: 60px 24px 100px;
    }

    .fashion-intro {
        margin-bottom: 75px;
    }

    .fashion-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .fashion-card-wide {
        grid-column: auto;
        width: 100%;
    }

    .fashion-image,
    .fashion-card-wide .fashion-image {
        height: auto;
        min-height: 0;
    }

    .fashion-image img,
    .fashion-card-wide .fashion-image img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }
}
/* ---------- Fashion Collection Pages ---------- */

.fashion-collection-page {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 90px 6% 140px;
    background: #080706;
    color: #f5efe5;
}

.fashion-collection-intro {
    max-width: 900px;
    margin-bottom: 150px;
}

.fashion-collection-intro h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(82px, 12vw, 170px);
    font-weight: 500;
    line-height: 0.85;
}

.fashion-collection-subtitle {
    margin: 24px 0 0;
    color: #c99a39;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.fashion-collection-description {
    max-width: 760px;
    margin: 32px 0 0;
    color: #bcb5ab;
    font-size: 17px;
    line-height: 1.8;
}


/* Fashion Sections */

.fashion-section {
    margin-top: 160px;
}

.fashion-section-heading {
    max-width: 780px;
    margin-bottom: 75px;
}

.fashion-section-heading > p:first-child {
    margin: 0 0 14px;
    color: #c99a39;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.fashion-section-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(60px, 8vw, 110px);
    font-weight: 500;
    line-height: 0.9;
}

.fashion-section-heading > p:last-child {
    max-width: 680px;
    margin: 28px 0 0;
    color: #bcb5ab;
    font-size: 17px;
    line-height: 1.8;
}


/* Mood Board */

.fashion-feature-image {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 45px;
    background: #111;
}

.fashion-feature-image img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 950px;
    object-fit: contain;
}


/* Illustrations */

.fashion-illustration-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 90px 40px;
}

.fashion-illustration-card {
    margin: 0;
}

.fashion-illustration-card img {
    display: block;
    width: 100%;
    height: 760px;
    object-fit: contain;
    background: #111;
}

.fashion-illustration-card span {
    display: block;
    margin-top: 17px;
    color: #c99a39;
    font-size: 11px;
    letter-spacing: 2px;
}

.fashion-illustration-card h3 {
    margin: 8px 0 0;
    color: #f5efe5;
    font-family: "Cormorant Garamond", serif;
    font-size: 44px;
    font-weight: 500;
}


/* Finished Looks */

.fashion-look-gallery {
    display: flex;
    flex-direction: column;
    gap: 150px;
}

.fashion-look {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    gap: 60px;
    align-items: start;
}

.fashion-look:nth-child(even) {
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
}

.fashion-look:nth-child(even) .fashion-look-image {
    grid-column: 2;
    grid-row: 1;
}

.fashion-look:nth-child(even) .fashion-look-info {
    grid-column: 1;
    grid-row: 1;
}

.fashion-look-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.fashion-look-image img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 1000px;
    object-fit: contain;
}

.fashion-look-info {
    padding-top: 20px;
}

.fashion-look-info h2 {
    margin: 0 0 12px;
    color: #f5efe5;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;
    line-height: 1;
}

.fashion-look-info .medium {
    margin: 0 0 24px;
    color: #c99a39;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fashion-look-info > p:last-child {
    max-width: 480px;
    margin: 0;
    color: #bcb5ab;
    font-size: 16px;
    line-height: 1.8;
}


/* Runway */

.fashion-runway-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.fashion-runway-grid figure {
    margin: 0;
}

.fashion-runway-grid img {
    display: block;
    width: 100%;
    height: 720px;
    object-fit: contain;
    background: #111;
}


/* Mobile */

@media (max-width: 850px) {

    .fashion-collection-page {
        padding: 60px 24px 100px;
    }

    .fashion-collection-intro {
        margin-bottom: 100px;
    }

    .fashion-section {
        margin-top: 110px;
    }

    .fashion-illustration-grid,
    .fashion-runway-grid {
        grid-template-columns: 1fr;
    }

    .fashion-illustration-card img,
    .fashion-runway-grid img {
        width: 100%;
        height: auto;
        max-height: none;
    }

    .fashion-look,
    .fashion-look:nth-child(even) {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .fashion-look:nth-child(even) .fashion-look-image,
    .fashion-look:nth-child(even) .fashion-look-info {
        grid-column: auto;
        grid-row: auto;
    }

    .fashion-look-image img {
        width: 100%;
        max-height: none;
    }

    .fashion-look-info {
        padding-top: 0;
    }

    .fashion-feature-image {
        padding: 20px;
    }
}
/* ---------- Exhibitions Page ---------- */

.exhibitions-page {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 90px 6% 140px;
    background: #080706;
    color: #f5efe5;
}

.exhibitions-intro {
    max-width: 950px;
    margin-bottom: 150px;
}

.exhibitions-intro h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(72px, 10vw, 150px);
    font-weight: 500;
    line-height: 0.9;
}

.exhibitions-description {
    max-width: 760px;
    margin: 35px 0 0;
    color: #bcb5ab;
    font-size: 17px;
    line-height: 1.8;
}


/* Exhibition Entry */

.exhibition-entry {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: 80px;
    margin-top: 160px;
    padding-top: 80px;
    border-top: 1px solid #2f2b27;
}

.exhibition-header {
    position: sticky;
    top: 50px;
    align-self: start;
}

.exhibition-number {
    margin: 0 0 18px;
    color: #c99a39;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.exhibition-header h2 {
    margin: 0;
    color: #f5efe5;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5vw, 78px);
    font-weight: 500;
    line-height: 0.95;
}

.exhibition-gallery {
    margin: 22px 0 0;
    color: #d7cfc5;
    font-size: 15px;
    line-height: 1.6;
}

.exhibition-works {
    margin-top: 40px;
}

.exhibition-works span {
    display: block;
    margin-bottom: 10px;
    color: #c99a39;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.exhibition-works p {
    max-width: 420px;
    margin: 0;
    color: #bcb5ab;
    font-size: 15px;
    line-height: 1.8;
}

/* ---------- Exhibition Images ---------- */

.exhibition-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.exhibition-image-link {
    display: block;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #080706;
}

.exhibition-image-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.exhibition-image-link:hover img {
    transform: scale(1.025);
}

/* Centre the last image when there is an odd number */

.exhibition-image-link:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 14px);
}

/* ---------- Exhibitions Mobile ---------- */

@media (max-width: 850px) {

    .exhibitions-page {
        padding: 60px 24px 100px;
    }

    .exhibitions-intro {
        margin-bottom: 100px;
    }

    .exhibition-entry {
        display: grid;
        grid-template-columns: 1fr;
        gap: 45px;
        margin-top: 100px;
        padding-top: 55px;
    }

    .exhibition-header {
        position: static;
        width: 100%;
    }

    .exhibition-header h2 {
        font-size: clamp(46px, 13vw, 64px);
    }

    .exhibition-works p {
        max-width: none;
    }

    .exhibition-images {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .exhibition-image-link,
    .exhibition-image-link:last-child:nth-child(odd) {
        display: block;
        grid-column: auto;
        width: 100%;
        height: auto;
        justify-self: stretch;
    }

    .exhibition-image-link img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}
/* ==================================================
   ABOUT PAGE
================================================== */

.about-page {
    width: 100%;
    max-width: 1500px;
    min-height: calc(100vh - 80px);
    margin: 0 auto;
    padding: 100px 6% 140px;
    background: #080706;
    color: #f5efe5;
}


/* Introduction */

.about-intro {
    max-width: 1050px;
    margin-bottom: 160px;
}

.about-intro h1 {
    margin: 0;
    color: #f5efe5;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(82px, 12vw, 170px);
    font-weight: 500;
    line-height: 0.85;
}

.about-lead {
    max-width: 820px;
    margin: 42px 0 0;
    color: #c8c0b6;
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.7;
}


/* Main sections */

.about-section {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 80px;
    margin-top: 130px;
    padding-top: 70px;
    border-top: 1px solid #2f2b27;
}

.about-heading {
    align-self: start;
}

.about-heading p {
    margin: 0;
    color: #c99a39;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.about-content {
    display: block;
    width: 100%;
    max-width: 800px;
    min-width: 0;
}

.about-content p {
    width: 100%;
    margin: 0 0 32px;
    color: #d0c8be;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: normal;
    text-transform: none;
    overflow-wrap: normal;
    word-break: normal;
}

.about-content p:last-child {
    margin-bottom: 0;
}


/* Philosophy */

.about-philosophy .about-content p {
    max-width: 760px;
    color: #f0e9df;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.35;
}


/* Portrait */

.about-portrait-section {
    width: 100%;
    max-width: 850px;
    margin: 150px auto 0;
    padding-top: 70px;
    border-top: 1px solid #2f2b27;
}

.about-portrait-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 950px;
    object-fit: contain;
}

.about-portrait-caption {
    margin-top: 22px;
}

.about-portrait-caption p {
    margin: 0;
    color: #f5efe5;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    line-height: 1.2;
}

.about-portrait-caption span {
    display: block;
    margin-top: 6px;
    color: #9f988f;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
}


/* Navigation */

.about-page .series-navigation {
    margin-top: 150px;
}


/* Mobile */

@media (max-width: 850px) {

    .about-page {
        padding: 70px 24px 100px;
    }

    .about-intro {
        margin-bottom: 100px;
    }

    .about-lead {
        font-size: 18px;
        line-height: 1.7;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 90px;
        padding-top: 50px;
    }

    .about-content {
        max-width: none;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-philosophy .about-content p {
        font-size: clamp(26px, 8vw, 36px);
    }

    .about-portrait-section {
        margin-top: 100px;
        padding-top: 50px;
    }

    .about-page .series-navigation {
        margin-top: 100px;
    }
}
/* ---------- Contact Page ---------- */

.contact-page {
    width: 100%;
    max-width: 1500px;
    min-height: calc(100vh - 80px);
    margin: 0 auto;
    padding: 100px 6% 140px;
    background: #080706;
    color: #f5efe5;
}


/* ---------- Contact Introduction ---------- */

.contact-intro {
    max-width: 1100px;
    margin-bottom: 150px;
}

.contact-intro h1 {
    max-width: 1000px;
    margin: 0;
    color: #f5efe5;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(78px, 11vw, 165px);
    font-weight: 500;
    line-height: 0.86;
}

.contact-lead {
    max-width: 760px;
    margin: 42px 0 0;
    color: #c8c0b6;
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.7;
}


/* ---------- Contact Sections ---------- */

.contact-content {
    display: grid;
    grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
    gap: 80px;
    margin-top: 120px;
    padding-top: 70px;
    border-top: 1px solid #2f2b27;
}

.contact-heading {
    align-self: start;
    position: sticky;
    top: 40px;
}

.contact-heading p {
    margin: 0;
    color: #c99a39;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* ---------- Contact Details ---------- */

.contact-details {
    max-width: 820px;
}

.contact-item {
    margin-bottom: 55px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item span {
    display: block;
    margin-bottom: 12px;
    color: #9f988f;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-item a,
.contact-item p {
    margin: 0;
    color: #f5efe5;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(35px, 4vw, 60px);
    font-weight: 500;
    line-height: 1.1;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-item a:hover {
    color: #c99a39;
}


/* ---------- Areas of Interest ---------- */

.contact-services {
    max-width: 820px;
}

.contact-services p {
    margin: 0;
    padding: 22px 0;
    border-bottom: 1px solid #2f2b27;
    color: #d0c8be;
    font-size: 17px;
    line-height: 1.6;
}

.contact-services p:first-child {
    padding-top: 0;
}


/* ---------- Contact Closing ---------- */

.contact-closing {
    max-width: 950px;
    margin: 150px 0 0 auto;
    padding-top: 70px;
    border-top: 1px solid #2f2b27;
}

.contact-closing p {
    margin: 0;
    color: #f0e9df;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.3;
}


/* ---------- Contact Navigation ---------- */

.contact-page .series-navigation {
    margin-top: 150px;
}


/* ---------- Contact Mobile ---------- */

@media (max-width: 850px) {

    .contact-page {
        padding: 70px 24px 100px;
    }

    .contact-intro {
        margin-bottom: 100px;
    }

    .contact-lead {
        font-size: 18px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 90px;
        padding-top: 50px;
    }

    .contact-heading {
        position: static;
    }

    .contact-item {
        margin-bottom: 45px;
    }

    .contact-item a,
    .contact-item p {
        font-size: clamp(30px, 9vw, 46px);
        overflow-wrap: anywhere;
    }

    .contact-closing {
        margin-top: 100px;
        padding-top: 50px;
    }

    .contact-page .series-navigation {
        margin-top: 100px;
    }
}
/* ---------- About Portrait ---------- */

.about-portrait-section {
    max-width: 900px;
    margin: 150px auto 0;
}

.about-portrait-image {
    display: flex;
    justify-content: center;
}

.about-portrait-image img {
    display: block;
    width: 100%;
    max-width: 700px;
    max-height: 900px;
    object-fit: contain;
}

.about-portrait-caption {
    max-width: 700px;
    margin: 20px auto 0;
}

.about-portrait-caption p {
    margin: 0;
    color: #f5efe5;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
}

.about-portrait-caption span {
    display: block;
    margin-top: 5px;
    color: #9f988f;
    font-size: 13px;
    letter-spacing: 1px;
}
/* ---------- Social Icons ---------- */

.social-icons {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 8px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid #3d3934;
    border-radius: 50%;
    color: #f5efe5;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.social-icons svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.social-icons .icon-fill {
    fill: currentColor;
    stroke: none;
}

.social-icons a:hover {
    color: #c99a39;
    border-color: #c99a39;
    transform: translateY(-3px);
}
/* ==================================================
   SITE FOOTER
================================================== */

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 35px;
    padding: 35px 6%;
    border-top: 1px solid #2f2b27;
    background: #080706;
}

.footer-rights {
    color: #777168;
    font-size: 12px;
    text-align: center;
}

.footer-top {
    text-align: right;
}

.footer-top a {
    color: #777168;
    font-size: 12px;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-top a:hover {
    color: #c99a39;
}
.footer-copyright {
    color: #777168;
    font-size: 12px;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    color: #9f988f;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-social svg {
    display: block;
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social .icon-fill {
    fill: currentColor;
    stroke: none;
}

.footer-social a:hover {
    color: #c99a39;
    transform: translateY(-2px);
}
/* ---------- Footer Mobile ---------- */

@media (max-width: 700px) {

    .site-footer {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .footer-copyright,
    .footer-rights,
    .footer-top {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}