:root {
    --paper: #f7f3ec;
    --paper2: #fbfaf7;
    --ink: #171614;
    --muted: #6d685f;
    --line: #d9d2c7;
    --gold: #b79259;
    --green: #1d493d;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
}

/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper2);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* =========================================
   ANNOUNCEMENT BAR
========================================= */

.announcement {
    height: 34px;
    border-bottom: 1px solid var(--line);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;

    color: #59534b;
    background: #f4efe7;
}

.announcement span {
    padding: 0 12px;
    color: var(--gold);
}

/* =========================================
   HEADER
========================================= */

.site-header {
    height: 94px;
    padding: 0 4.1vw;

    border-bottom: 1px solid var(--line);

    display: grid;
    grid-template-columns: 240px 1fr 210px;
    align-items: center;

    background: rgba(251, 250, 247, .97);

    position: sticky;
    top: 0;
    z-index: 20;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    width: max-content;
    line-height: 1;
}

.brand-name {
    font-family: var(--serif);
    font-size: 32px;
    letter-spacing: .18em;
    font-weight: 600;
}

.brand-line {
    margin-top: 8px;

    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 8px;
    letter-spacing: .25em;
    color: #6f604b;
}

.brand-line i {
    display: block;
    width: 24px;

    border-top: 1px solid var(--gold);
    position: relative;
}

.brand-line i:first-child:after,
.brand-line i:last-child:after {
    content: "";

    position: absolute;

    width: 4px;
    height: 4px;

    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);

    top: -3px;
}

.brand-line i:first-child:after {
    right: 0;
    transform: rotate(45deg);
}

.brand-line i:last-child:after {
    left: 0;
    transform: rotate(225deg);
}

/* =========================================
   NAVIGATION
========================================= */

.nav {
    display: flex;
    justify-content: center;
    gap: 38px;
}

.nav a,
.partner {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.nav a {
    position: relative;
}

.nav a:after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--ink);

    transition: .25s ease;
}

.nav a:hover:after {
    width: 100%;
}

.partner {
    justify-self: end;

    border: 1px solid #bcae9b;

    padding: 14px 18px;

    letter-spacing: .12em;

    transition: .25s ease;
}

.partner:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.partner span {
    padding-left: 16px;
}

.menu {
    display: none;

    border: 0;
    background: none;

    font-size: 20px;
    cursor: pointer;
}

/* =========================================
   COMMON TYPOGRAPHY
========================================= */

.eyebrow {
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;

    color: #806c50;

    margin: 0 0 18px;
}

.intro h2,
.section-head h2,
.craft h2,
.contact h2 {
    font-family: var(--serif);
    font-weight: 500;

    letter-spacing: -.03em;
    line-height: .9;
}

.hero h1 em,
.intro h2 em,
.craft h2 em,
.contact h2 em {
    font-style: italic;
    font-weight: 500;
}

/* =========================================
   BUTTONS
========================================= */

.button {
    display: inline-flex;
    align-items: center;
    gap: 25px;

    padding: 15px 22px;

    font-size: 10px;
    letter-spacing: .13em;

    border: 0;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.button.dark {
    background: #171614;
    color: white;
}

.button.dark:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.text-link {
    display: inline-block;

    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;

    border-bottom: 1px solid #9e978e;

    padding-bottom: 6px;

    transition: border-color .25s ease;
}

.text-link:hover {
    border-color: var(--ink);
}

.text-link span {
    margin-left: 13px;
}

/* =========================================
   HERO
========================================= */

.hero {
    max-width: 1500px;
    margin: auto;

    min-height: 690px;

    padding: 58px 6.5vw 70px;

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 70px;

    align-items: center;
}

.hero-copy {
    padding-left: 2vw;
}

.hero h1 {
    font-family: var(--serif);

    font-size: clamp(65px, 6.2vw, 104px);

    font-weight: 500;

    line-height: .78;

    letter-spacing: -.045em;

    margin: 0 0 38px;
}

.hero-text {
    max-width: 520px;

    color: #625d55;

    font-size: 14px;

    margin-bottom: 30px;
}

.actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* HERO IMAGE */

.hero-media {
    position: relative;

    background: #eee7dc;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    aspect-ratio: 2 / 3;

    max-height: 650px;

    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;
}

.hero-tag {
    position: absolute;

    bottom: 0;
    left: 0;

    background: #ae6b45;
    color: #fff;

    padding: 14px 18px;

    font-size: 9px;
    letter-spacing: .2em;

    line-height: 1.6;
}

/* =========================================
   INTRO
========================================= */

.intro {
    padding: 130px 10vw;

    text-align: center;

    border-top: 1px solid var(--line);

    background: #f3eee6;
}

.intro h2 {
    font-size: 72px;

    margin: 0 auto 28px;
}

.intro > p:last-child {
    max-width: 670px;

    margin: auto;

    color: #6c675f;
}

/* =========================================
   COLLECTION
========================================= */

.collection {
    padding: 120px 5vw;
}

.section-head {
    display: flex;

    justify-content: space-between;
    align-items: end;

    gap: 40px;

    margin-bottom: 50px;
}

.section-head h2 {
    font-size: 64px;

    margin: 0;
}

.section-note {
    max-width: 300px;

    color: var(--muted);

    margin: 0;

    text-align: right;
}

/* =========================================
   COLLECTION GRID
========================================= */

.look-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 52px 24px;
}

.look-card {
    min-width: 0;
}

/*
   Every product image gets exactly
   the same outer box.
*/

.look-image {
    width: 100%;

    aspect-ratio: 2 / 3;

    background: #eee8de;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;
}

/*
   Full garment stays visible.
   No cropping.
*/

.look-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;

    transition:
        transform .5s ease;
}

.look-card:hover .look-image img {
    transform: scale(1.018);
}

.look-info {
    padding: 16px 2px 0;

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 4px;
}

.look-info span {
    grid-column: 1 / -1;

    font-size: 9px;

    letter-spacing: .18em;

    color: #8b7455;
}

.look-info h3 {
    font-family: var(--serif);

    font-size: 27px;

    font-weight: 500;

    margin: 0;
}

.look-info a {
    align-self: end;

    font-size: 9px;

    letter-spacing: .16em;
}

/* =========================================
   CRAFT
========================================= */

.craft {
    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #ece4d8;
}

.craft-media {
    background: #e6ddd0;

    width: 100%;

    aspect-ratio: 2 / 3;

    max-height: 760px;

    display: flex;

    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.craft-media img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.craft-copy {
    padding: 100px 9vw;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.craft h2 {
    font-size: 70px;

    margin: 0 0 28px;
}

.craft-copy p:not(.eyebrow) {
    max-width: 480px;

    color: #666057;

    margin-bottom: 30px;
}

/* =========================================
   LOOKBOOK
========================================= */

.lookbook {
    padding: 120px 5vw;
}

/*
   IMPORTANT:
   All 3 Lookbook columns are EXACTLY equal.
*/

.editorial-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

    align-items: stretch;

    width: 100%;
}

/*
   Every Lookbook image container
   has exactly the same dimensions.
*/

.editorial-grid > div {
    width: 100%;

    aspect-ratio: 2 / 3;

    background: #eee8de;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;
}

/*
   All three actual images use
   exactly the same box.
*/

.editorial-grid img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;
}

/* =========================================
   CONTACT
========================================= */

.contact {
    border-top: 1px solid var(--line);

    padding: 110px 10vw;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    background: #f3eee6;
}

.contact h2 {
    font-size: 65px;

    margin: 0;
}

.contact-email {
    margin-top: 35px;

    letter-spacing: .18em;

    font-size: 11px;
}

.form-wrap {
    align-self: start;
}

.form-wrap > p {
    color: #666057;

    margin: 0 0 30px;
}

.form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

form {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

label {
    font-size: 9px;

    letter-spacing: .14em;

    color: #625b52;
}

input,
textarea {
    display: block;

    width: 100%;

    margin-top: 7px;

    border: 1px solid #cfc5b8;

    background: #fffdfa;

    padding: 13px 14px;

    font: 14px var(--sans);

    color: var(--ink);

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

input:focus,
textarea:focus {
    border-color: #8f7a5d;

    box-shadow: 0 0 0 2px rgba(183, 146, 89, .08);
}

textarea {
    resize: vertical;

    min-height: 145px;
}

.hp {
    position: absolute;

    left: -9999px;

    width: 1px;
    height: 1px;

    opacity: 0;
}

/* =========================================
   FORM STATUS
========================================= */

.form-status {
    margin-bottom: 25px;

    padding: 14px 18px;

    display: none;

    font-size: 12px;

    letter-spacing: .05em;
}

.form-status.success {
    display: block;

    background: #e8f0e9;

    color: #1d493d;

    border: 1px solid #bfd0c2;
}

.form-status.error {
    display: block;

    background: #f7e9e5;

    color: #8b3d2e;

    border: 1px solid #dfc0b7;
}

/* =========================================
   FOOTER
========================================= */

footer {
    background: #171614;

    color: #f6f0e6;

    padding: 55px 5vw 30px;

    display: grid;

    grid-template-columns: 1fr 2fr auto;

    align-items: end;

    gap: 40px;
}

footer .brand-line {
    color: #c7b28e;
}

.footer-links {
    display: flex;

    justify-content: center;

    gap: 28px;
}

.footer-links a {
    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .12em;

    color: #c9c0b3;

    transition: color .2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    font-size: 9px;

    letter-spacing: .1em;

    color: #8f887f;

    text-align: right;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .site-header {
        grid-template-columns: 1fr auto;

        height: 80px;
    }

    .nav,
    .partner {
        display: none;
    }

    .menu {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-top: 55px;
    }

    .hero-copy {
        padding-left: 0;
    }

    .hero h1 {
        font-size: 74px;
    }

    .hero-media {
        max-width: 620px;

        margin: auto;
    }

    /*
       Tablet: still equal columns.
    */

    .look-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    /*
       Lookbook remains equal-sized.
    */

    .editorial-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .craft {
        grid-template-columns: 1fr;
    }

    .craft-media {
        max-width: 620px;

        margin: auto;
    }

    .contact {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    footer {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;

        flex-wrap: wrap;
    }

    .copyright {
        text-align: left;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .announcement {
        font-size: 8px;
    }

    .site-header {
        padding: 0 20px;
    }

    .brand-name {
        font-size: 25px;
    }

    .hero {
        padding: 40px 20px 55px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-media {
        max-width: 100%;
    }

    .intro,
    .collection,
    .lookbook {
        padding: 80px 20px;
    }

    .intro h2,
    .section-head h2,
    .craft h2,
    .contact h2 {
        font-size: 52px;
    }

    .section-head {
        display: block;
    }

    .section-note {
        text-align: left;

        margin-top: 15px;
    }

    .look-grid {
        grid-template-columns: 1fr;
    }

    .actions {
        gap: 20px;

        flex-wrap: wrap;
    }

    .craft-copy {
        padding: 70px 20px;
    }

    .contact {
        padding: 80px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /*
       MOBILE LOOKBOOK:
       Keep all 3 images same size vertically.
       They become one column, one after another.
    */

    .editorial-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .editorial-grid > div {
        width: 100%;

        aspect-ratio: 2 / 3;
    }

    .editorial-grid img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }

    footer {
        padding: 45px 20px 25px;
    }
}