/*
|--------------------------------------------------------------------------
| KINDA CHIC™
| Vintage + Resale Boutique
|--------------------------------------------------------------------------
|
| Fashion, allegedly.
|
| Visual direction:
| - independent fashion magazine
| - real resale boutique
| - thrift-store price tags
| - editorial photography
| - product inventory grids
| - barcode labels
| - handwritten shop notes
| - imperfect collage composition
|
| Responsive goals:
| - desktop retail layout
| - clean mobile stacking
| - controlled ultrawide width
| - readable display typography
|
*/


/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */

:root {
    --paper: #f1e9dc;
    --paper-light: #fffaf1;
    --paper-dark: #d8cbbb;

    --ink: #141414;
    --muted: #6f675d;

    --red: #d33a35;
    --pink: #ef9dab;
    --blue: #244ec9;
    --yellow: #efd64f;

    --line: rgba(20, 20, 20, 0.18);
    --white-line: rgba(255, 250, 241, 0.28);

    --content-max: 1180px;
    --wide-max: 1260px;

    --display:
        Impact,
        Haettenschweiler,
        "Arial Narrow Bold",
        "Arial Narrow",
        sans-serif;

    --sans:
        Arial,
        Helvetica,
        sans-serif;

    --mono:
        "Courier New",
        Courier,
        monospace;

    --serif:
        Georgia,
        "Times New Roman",
        serif;

    --border:
        2px solid var(--ink);

    --shadow:
        7px 7px 0 var(--ink);
}


/* ==========================================================================
   RESET
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;

    color: var(--ink);
    background: var(--paper);

    font-family: var(--sans);
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

::selection {
    color: var(--paper-light);
    background: var(--blue);
}


/* ==========================================================================
   SHARED UTILITIES
   ========================================================================== */

.eyebrow {
    margin: 0;

    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0.85rem 1.15rem;

    border: var(--border);

    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.07em;
    text-transform: uppercase;

    transition:
        transform 140ms ease,
        box-shadow 140ms ease;
}

.button:hover {
    transform: translate(-2px, -2px);
}

.button-primary {
    color: var(--ink);
    background: var(--yellow);
    box-shadow: 5px 5px 0 var(--ink);
}

.button-secondary {
    color: var(--paper-light);
    background: var(--blue);
    box-shadow: 5px 5px 0 var(--ink);
}

.text-link {
    display: inline-block;

    border-bottom: 2px solid currentColor;

    font-family: var(--mono);
    font-size: 0.73rem;
    font-weight: 700;

    letter-spacing: 0.07em;
    text-transform: uppercase;
}


/* ==========================================================================
   DROP TICKER
   ========================================================================== */

.drop-ticker {
    position: relative;
    z-index: 1200;

    overflow: hidden;

    width: 100%;

    color: var(--ink);
    background: var(--yellow);

    border-bottom: var(--border);
}

.drop-ticker-track {
    display: flex;
    align-items: center;

    width: max-content;
    min-height: 31px;

    white-space: nowrap;

    animation:
        ticker-scroll 32s linear infinite;
}

.drop-ticker-track span {
    display: inline-flex;
    align-items: center;

    min-height: 31px;
    padding-inline: 1rem;

    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.drop-ticker-track span::after {
    margin-left: 2rem;

    content: "✦";
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

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


/* ==========================================================================
   BOUTIQUE MASTHEAD
   ========================================================================== */

.site-header {
    position: sticky;
    z-index: 1100;
    top: 0;

    background: rgba(241, 233, 220, 0.97);

    border-bottom: var(--border);

    backdrop-filter: blur(10px);
}

.header-utility {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: min(
        calc(100% - 40px),
        var(--content-max)
    );

    min-height: 31px;
    margin-inline: auto;

    border-bottom: 1px solid var(--line);

    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 700;

    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.header-utility a {
    border-bottom: 1px solid currentColor;
}

.masthead {
    display: grid;
    grid-template-columns:
        120px
        1fr
        120px;

    align-items: center;

    width: min(
        calc(100% - 40px),
        var(--content-max)
    );

    min-height: 95px;
    margin-inline: auto;
}

.brand {
    grid-column: 2;

    justify-self: center;

    font-family: var(--display);
    font-size: clamp(3.4rem, 5.5vw, 5rem);
    line-height: 0.88;

    letter-spacing: 0.055em;
    text-align: center;
    text-transform: uppercase;
}

.sell-link {
    grid-column: 3;

    justify-self: end;

    padding-bottom: 0.25rem;

    border-bottom: 2px solid var(--ink);

    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-toggle {
    display: none;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.3rem, 2.3vw, 2.5rem);

    min-height: 42px;

    border-top: 1px solid var(--line);

    font-family: var(--mono);
    font-size: 0.67rem;
    font-weight: 700;

    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.site-nav a {
    position: relative;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;

    height: 3px;

    background: var(--red);

    content: "";

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 120ms ease;
}

.site-nav a:hover::after {
    transform: scaleX(1);
}


/* ==========================================================================
   COVER HERO
   ========================================================================== */

.cover-hero {
    position: relative;

    min-height: min(
        860px,
        calc(100vh - 120px)
    );

    overflow: hidden;

    color: var(--paper-light);
    background: var(--ink);

    border-bottom: var(--border);
}

.cover-photo {
    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(239, 157, 171, 0.62),
            transparent 35%
        ),
        linear-gradient(
            125deg,
            rgba(36, 78, 201, 0.78),
            rgba(20, 20, 20, 0.35) 44%,
            rgba(211, 58, 53, 0.65)
        ),
        #252525;
}

.cover-photo::after {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 20, 20, 0.72),
            rgba(20, 20, 20, 0.18) 46%,
            rgba(20, 20, 20, 0.05)
        );

    content: "";
}

.photo-placeholder {
    position: relative;
    z-index: 2;

    padding: 0.65rem 0.85rem;

    color: var(--ink);
    background: var(--paper-light);
    border: var(--border);

    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cover-overlay {
    position: relative;
    z-index: 4;

    width: min(
        calc(100% - 48px),
        var(--content-max)
    );

    min-height: inherit;
    margin-inline: auto;

    padding-top: clamp(5rem, 8vw, 7rem);
    padding-bottom: 6rem;

    pointer-events: none;
}

.cover-issue {
    display: inline-block;

    margin: 0;
    padding: 0.5rem 0.75rem;

    color: var(--ink);
    background: var(--pink);
    border: var(--border);

    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.09em;
    text-transform: uppercase;

    transform: rotate(-1.5deg);
}

.cover-overlay h1 {
    max-width: 850px;

    margin: clamp(2rem, 4vw, 3rem) 0 0;

    font-family: var(--display);
    font-size: clamp(6.4rem, 11vw, 10rem);
    line-height: 0.82;

    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.cover-overlay h1 span {
    display: block;

    margin-left: clamp(3rem, 8vw, 7rem);
    padding-top: 0.15em;

    color: var(--yellow);
}

.cover-tagline {
    margin: 2rem 0 0;

    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.5vw, 2.5rem);
    font-style: italic;
}

.cover-sticker {
    position: absolute;
    z-index: 5;
    top: 19%;
    right: max(
        4%,
        calc((100vw - var(--content-max)) / 2)
    );

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 145px;
    aspect-ratio: 1;

    color: var(--ink);
    background: var(--yellow);

    border: 3px solid var(--ink);
    border-radius: 50%;

    text-align: center;

    transform: rotate(9deg);
}

.cover-sticker span {
    font-family: var(--display);
    font-size: 3.3rem;
    line-height: 1;

    letter-spacing: 0.045em;
}

.cover-sticker small {
    width: 75%;

    margin-top: 0.35rem;

    font-family: var(--mono);
    font-size: 0.55rem;
    font-weight: 700;
    line-height: 1.25;

    letter-spacing: 0.04em;
}

.cover-note {
    position: absolute;
    z-index: 5;
    right: max(
        4%,
        calc((100vw - var(--content-max)) / 2)
    );
    bottom: 16%;

    padding: 1rem 1.1rem;

    color: var(--ink);
    background: var(--paper-light);

    border: var(--border);

    font-family: var(--display);
    font-size: clamp(1.8rem, 2.6vw, 2.8rem);
    line-height: 1;

    letter-spacing: 0.055em;
    text-transform: uppercase;

    box-shadow:
        6px 6px 0 var(--red);

    transform: rotate(-3deg);
}

.cover-cta {
    position: absolute;
    z-index: 5;
    right: max(
        4%,
        calc((100vw - var(--content-max)) / 2)
    );
    bottom: 5%;

    padding: 0.85rem 1rem;

    color: var(--paper-light);
    background: var(--blue);

    border: var(--border);

    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    box-shadow:
        5px 5px 0 var(--yellow);
}


/* ==========================================================================
   NEW ARRIVALS
   ========================================================================== */

.new-arrivals {
    width: min(
        calc(100% - 48px),
        var(--wide-max)
    );

    margin-inline: auto;

    padding-block:
        clamp(5rem, 7vw, 7rem);
}

.retail-heading {
    display: grid;
    grid-template-columns:
        minmax(270px, 0.8fr)
        minmax(320px, 1.1fr)
        auto;

    align-items: end;

    gap: 2rem;

    margin-bottom: 3.5rem;
    padding-bottom: 1.5rem;

    border-bottom: var(--border);
}

.retail-heading h2 {
    margin: 0.65rem 0 0;

    font-family: var(--display);
    font-size: clamp(4rem, 5.8vw, 5.7rem);
    line-height: 0.95;

    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.retail-heading-copy {
    max-width: 530px;

    margin: 0;

    font-family: var(--serif);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.6;
}

.product-grid {
    display: grid;
    grid-template-columns:
        repeat(12, minmax(0, 1fr));

    gap:
        clamp(1rem, 1.7vw, 1.5rem);

    align-items: start;
}

.product-card {
    grid-column: span 4;

    min-width: 0;
}

.product-card-tall {
    grid-row: span 2;
}

.product-card-wide {
    grid-column: span 8;
}

.product-photo {
    position: relative;

    display: grid;
    place-items: center;

    min-height: 360px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(239, 157, 171, 0.48),
            rgba(36, 78, 201, 0.28)
        ),
        var(--paper-dark);

    border: var(--border);
}

.product-card-tall .product-photo {
    min-height: 540px;
}

.product-card-wide .product-photo {
    min-height: 390px;
}

.product-photo > span {
    color: rgba(20, 20, 20, 0.5);

    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.product-sticker {
    position: absolute;
    top: 18px;
    left: -6px;

    padding: 0.5rem 0.8rem;

    color: var(--ink);
    background: var(--yellow);

    border: var(--border);

    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    transform: rotate(-2deg);
}

.product-sticker-blue {
    color: var(--paper-light);
    background: var(--blue);
}

.product-sticker-red {
    color: var(--paper-light);
    background: var(--red);
}

.product-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 1rem;

    padding: 1rem 0 0.85rem;

    border-bottom:
        1px solid var(--line);
}

.product-info h3 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(1.55rem, 2vw, 2.15rem);
    line-height: 1.05;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-info p {
    margin: 0.4rem 0 0;

    color: var(--muted);

    font-family: var(--serif);
    font-size: 0.83rem;
    font-style: italic;
}

.product-info > strong {
    flex: 0 0 auto;

    font-family: var(--mono);
    font-size: 1.05rem;
}

.product-meta {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    margin: 0;

    border-bottom: var(--border);
}

.product-meta div {
    padding: 0.65rem;

    border-right:
        1px solid var(--line);
}

.product-meta div:last-child {
    border-right: 0;
}

.product-meta dt {
    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.55rem;
    font-weight: 700;

    letter-spacing: 0.07em;
}

.product-meta dd {
    margin: 0.25rem 0 0;

    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 700;
}


/* ==========================================================================
   CATEGORY RAIL
   ========================================================================== */

.category-section {
    overflow: hidden;

    color: var(--paper-light);
    background: var(--blue);

    border-block: var(--border);
}

.category-header {
    display: flex;
    justify-content: space-between;

    gap: 2rem;

    width: min(
        calc(100% - 48px),
        var(--content-max)
    );

    margin-inline: auto;

    padding-block:
        2rem 1.4rem;

    border-bottom:
        1px solid var(--white-line);

    font-family: var(--mono);
    font-size: 0.73rem;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-rail {
    display: grid;
    grid-template-columns:
        1fr
        0.9fr
        1fr
        0.9fr
        1.1fr;

    width: min(
        calc(100% - 48px),
        var(--wide-max)
    );

    margin-inline: auto;

    border-inline: var(--border);
}

.category-tile {
    position: relative;

    display: block;

    min-width: 0;

    border-right:
        2px solid var(--ink);

    transition:
        transform 150ms ease;
}

.category-tile:last-child {
    border-right: 0;
}

.category-tile:hover {
    z-index: 2;

    transform:
        translateY(-6px);
}

.category-photo {
    display: grid;
    place-items: center;

    min-height: 360px;

    color: rgba(20, 20, 20, 0.5);
    background: var(--paper-dark);

    border-bottom: var(--border);

    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.category-denim .category-photo {
    background:
        linear-gradient(
            rgba(36, 78, 201, 0.36),
            rgba(36, 78, 201, 0.12)
        ),
        var(--paper-dark);
}

.category-dresses .category-photo {
    background:
        linear-gradient(
            rgba(239, 157, 171, 0.54),
            rgba(239, 157, 171, 0.14)
        ),
        var(--paper-dark);
}

.category-jackets .category-photo {
    background:
        linear-gradient(
            rgba(239, 214, 79, 0.5),
            rgba(239, 214, 79, 0.12)
        ),
        var(--paper-dark);
}

.category-bags .category-photo {
    background:
        linear-gradient(
            rgba(211, 58, 53, 0.38),
            rgba(211, 58, 53, 0.12)
        ),
        var(--paper-dark);
}

.category-weird .category-photo {
    background:
        linear-gradient(
            135deg,
            rgba(239, 157, 171, 0.42),
            rgba(239, 214, 79, 0.35),
            rgba(36, 78, 201, 0.3)
        ),
        var(--paper-dark);
}

.category-label {
    min-height: 118px;

    padding: 1rem;

    color: var(--ink);
    background: var(--paper-light);
}

.category-label strong {
    display: block;

    overflow-wrap: anywhere;

    font-family: var(--display);
    font-size: clamp(1.55rem, 2vw, 2.4rem);
    line-height: 1.03;

    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.category-label span {
    display: block;

    margin-top: 0.65rem;

    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 700;

    letter-spacing: 0.07em;
}


/* ==========================================================================
   LOOKBOOK
   ========================================================================== */

.lookbook {
    position: relative;

    overflow: hidden;

    min-height: 1120px;

    color: var(--paper-light);

    background:
        linear-gradient(
            rgba(255, 250, 241, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 250, 241, 0.045) 1px,
            transparent 1px
        ),
        var(--ink);

    background-size:
        34px 34px,
        34px 34px;

    border-bottom: var(--border);
}

.lookbook-title {
    position: relative;
    z-index: 4;

    width: min(
        calc(100% - 48px),
        var(--content-max)
    );

    margin-inline: auto;

    padding-top:
        clamp(5rem, 7vw, 7rem);
}

.lookbook-title p {
    margin: 0;

    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.11em;
}

.lookbook-title h2 {
    margin: 1rem 0 0;

    font-family: var(--display);
    font-size: clamp(5.7rem, 9vw, 8.8rem);
    line-height: 0.82;

    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.lookbook-title h2 span {
    display: block;

    margin-left:
        clamp(3rem, 9vw, 8rem);

    padding-top: 0.16em;

    color: var(--pink);
}

.lookbook-canvas {
    position: relative;

    width: min(
        calc(100% - 48px),
        var(--content-max)
    );

    min-height: 760px;

    margin-inline: auto;
}

.look-photo {
    position: absolute;

    margin: 0;

    color: var(--ink);
    background: var(--paper-light);

    border: var(--border);

    box-shadow:
        9px 9px 0 rgba(211, 58, 53, 0.9);
}

.look-photo .photo-placeholder {
    display: grid;
    place-items: center;

    min-height: inherit;

    border: 0;
}

.look-photo figcaption {
    padding: 0.8rem;

    border-top: var(--border);

    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.45;

    letter-spacing: 0.05em;
}

.look-photo-one {
    top: 60px;
    left: 4%;

    width: 32%;

    transform: rotate(-4deg);
}

.look-photo-one .photo-placeholder {
    min-height: 400px;

    background:
        linear-gradient(
            rgba(239, 157, 171, 0.4),
            rgba(36, 78, 201, 0.25)
        ),
        var(--paper-dark);
}

.look-photo-two {
    top: -30px;
    left: 38%;

    z-index: 2;

    width: 30%;

    transform: rotate(3deg);
}

.look-photo-two .photo-placeholder {
    min-height: 490px;

    background:
        linear-gradient(
            rgba(239, 214, 79, 0.4),
            rgba(211, 58, 53, 0.22)
        ),
        var(--paper-dark);
}

.look-photo-three {
    top: 150px;
    right: 1%;

    width: 28%;

    transform: rotate(-2deg);
}

.look-photo-three .photo-placeholder {
    min-height: 370px;

    background:
        linear-gradient(
            rgba(36, 78, 201, 0.45),
            rgba(239, 157, 171, 0.2)
        ),
        var(--paper-dark);
}

.lookbook-note {
    position: absolute;
    z-index: 5;

    padding: 0.7rem 0.9rem;

    color: var(--ink);

    border: var(--border);

    font-family: var(--display);
    font-size: clamp(1.7rem, 2.5vw, 2.8rem);
    line-height: 1;

    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.lookbook-note-red {
    top: 350px;
    left: 29%;

    color: var(--paper-light);
    background: var(--red);

    transform: rotate(7deg);
}

.lookbook-note-yellow {
    top: 510px;
    right: 17%;

    background: var(--yellow);

    transform: rotate(-5deg);
}

.lookbook-barcode {
    position: absolute;
    top: 510px;
    left: 8%;

    padding: 0.7rem 1rem;

    color: var(--ink);
    background: var(--paper-light);

    border: var(--border);

    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: 0.06em;

    transform: rotate(3deg);
}

.lookbook blockquote {
    position: absolute;
    right: 3%;
    bottom: 10px;

    max-width: 530px;

    margin: 0;

    font-family: var(--serif);
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    font-style: italic;
    line-height: 1.08;

    transform: rotate(-2deg);
}

.lookbook blockquote span {
    display: block;

    margin-top: 1rem;

    color:
        rgba(255, 250, 241, 0.65);

    font-family: var(--mono);
    font-size: 0.7rem;
    font-style: normal;
    line-height: 1.4;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* ==========================================================================
   DROP BOARD
   ========================================================================== */

.drop-board {
    width: min(
        calc(100% - 48px),
        var(--content-max)
    );

    margin-inline: auto;

    padding-block:
        clamp(5rem, 7vw, 7rem);
}

.drop-board-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 2rem;

    margin-bottom: 2rem;
}

.drop-board-heading h2 {
    margin: 0.6rem 0 0;

    font-family: var(--display);
    font-size: clamp(4rem, 5.8vw, 5.7rem);
    line-height: 0.95;

    letter-spacing: 0.055em;
}

.drop-table {
    border: var(--border);
    box-shadow: var(--shadow);
}

.drop-row {
    display: grid;
    grid-template-columns:
        1.2fr
        0.4fr
        0.85fr
        1.2fr;

    align-items: center;

    min-height: 82px;

    border-bottom:
        1px solid var(--ink);
}

.drop-row:last-child {
    border-bottom: 0;
}

.drop-row > * {
    min-width: 0;

    padding: 1rem;

    border-right:
        1px solid var(--ink);
}

.drop-row > *:last-child {
    border-right: 0;
}

.drop-row-head {
    min-height: 42px;

    color: var(--paper-light);
    background: var(--ink);

    font-family: var(--mono);
    font-size: 0.61rem;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.drop-row:not(.drop-row-head) {
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 700;
}

.drop-row:nth-child(odd):not(.drop-row-head) {
    background:
        rgba(239, 214, 79, 0.2);
}

.status-live {
    color: var(--blue);
}

.status-gone {
    color: var(--red);

    text-decoration: line-through;
}

.status-weird {
    color: var(--ink);
    background: var(--pink);
}

.drop-warning {
    display: inline-block;

    margin: 2rem 0 0;

    padding: 0.65rem 0.85rem;

    color: var(--paper-light);
    background: var(--red);

    border: var(--border);

    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    transform: rotate(-1deg);
}


/* ==========================================================================
   SELL TO US
   ========================================================================== */

.sell-section {
    padding-block:
        clamp(6rem, 8vw, 8rem);

    background: var(--pink);

    border-block: var(--border);
}

.sell-intro,
.sell-layout {
    width: min(
        calc(100% - 48px),
        var(--content-max)
    );

    margin-inline: auto;
}

.sell-intro {
    display: grid;
    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(260px, 0.6fr);

    gap: 3rem;

    align-items: end;

    margin-bottom: 4rem;
}

.sell-intro .eyebrow {
    grid-column: 1 / -1;
}

.sell-intro h2 {
    margin: 0;

    font-family: var(--display);
    font-size: clamp(4.7rem, 7vw, 6.8rem);
    line-height: 0.86;

    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.sell-intro h2 span {
    display: block;

    padding-top: 0.16em;

    color: var(--blue);
}

.sell-intro > p:last-child {
    max-width: 360px;

    margin:
        0 0 0.5rem;

    font-family: var(--serif);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.5;
}

.sell-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.7fr)
        minmax(0, 0.7fr)
        minmax(360px, 1.1fr);

    gap: 1.25rem;

    align-items: start;
}

.sell-buy-list,
.sell-no-list,
.sell-process {
    background: var(--paper-light);
    border: var(--border);
}

.sell-buy-list {
    transform: rotate(-1deg);
}

.sell-no-list {
    margin-top: 42px;

    transform: rotate(1deg);
}

.sell-list-heading,
.sell-process-head {
    padding: 0.7rem 0.85rem;

    color: var(--paper-light);
    background: var(--ink);

    border-bottom: var(--border);

    font-family: var(--mono);
    font-size: 0.67rem;
    font-weight: 700;

    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.sell-buy-list ul,
.sell-no-list ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.sell-buy-list li,
.sell-no-list li {
    padding: 1rem;

    border-bottom:
        1px solid var(--line);

    font-family: var(--serif);
    font-size: 1rem;
    line-height: 1.35;
}

.sell-buy-list li:last-child,
.sell-no-list li:last-child {
    border-bottom: 0;
}

.sell-buy-list li::before {
    margin-right: 0.65rem;

    color: var(--blue);

    content: "✓";

    font-family: var(--mono);
    font-weight: 700;
}

.sell-no-list li::before {
    margin-right: 0.65rem;

    color: var(--red);

    content: "×";

    font-family: var(--mono);
    font-weight: 700;
}

.sell-process {
    box-shadow:
        9px 9px 0 var(--ink);
}

.sell-process ol {
    margin: 0;
    padding: 0;

    list-style: none;
}

.sell-process li {
    display: grid;
    grid-template-columns:
        72px 1fr;

    min-height: 130px;

    border-bottom:
        1px dashed var(--ink);
}

.sell-process li:last-child {
    border-bottom: 0;
}

.sell-process li > span {
    display: grid;
    place-items: center;

    border-right: var(--border);

    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 700;
}

.sell-process li > div {
    padding: 1.15rem;
}

.sell-process strong {
    font-family: var(--display);
    font-size: clamp(1.7rem, 2vw, 2.25rem);

    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sell-process p {
    margin: 0.6rem 0 0;

    color: var(--muted);

    font-family: var(--serif);
    font-size: 0.85rem;
    line-height: 1.5;
}


/* ==========================================================================
   STORE VISIT
   ========================================================================== */

.visit-section {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(400px, 0.9fr);

    min-height: 700px;

    background: var(--paper-light);

    border-bottom: var(--border);
}

.visit-photo {
    display: grid;
    place-items: center;

    min-height: inherit;

    background:
        linear-gradient(
            145deg,
            rgba(36, 78, 201, 0.35),
            rgba(239, 157, 171, 0.35)
        ),
        var(--paper-dark);

    border-right: var(--border);
}

.visit-card {
    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 600px;

    padding:
        clamp(3rem, 5vw, 5rem);
}

.visit-card h2 {
    margin: 1.2rem 0 0;

    font-family: var(--display);
    font-size: clamp(3.8rem, 5vw, 5rem);
    line-height: 0.94;

    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.visit-card h2 span {
    display: block;

    padding-top: 0.17em;

    color: var(--red);
}

.visit-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    margin-top: 3rem;

    border-block: var(--border);
}

.visit-grid > div {
    padding: 1rem;

    border-right:
        1px solid var(--line);
}

.visit-grid > div:last-child {
    border-right: 0;
}

.visit-grid span {
    font-family: var(--mono);
    font-size: 0.57rem;
    font-weight: 700;

    letter-spacing: 0.07em;
}

.visit-grid p {
    margin: 0.65rem 0 0;

    font-family: var(--serif);
    font-size: 0.9rem;
    line-height: 1.5;
}

.visit-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 1rem;

    margin-top: 2rem;
}


/* ==========================================================================
   FINAL STRIP
   ========================================================================== */

.final-strip {
    display: grid;
    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 2rem;

    min-height: 150px;

    padding-inline:
        max(
            24px,
            calc(
                (100vw - var(--content-max)) / 2
            )
        );

    color: var(--paper-light);
    background: var(--red);

    border-bottom: var(--border);
}

.final-strip > span {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.final-strip > span:last-child {
    text-align: right;
}

.final-strip strong {
    font-family: var(--display);
    font-size: clamp(3.8rem, 5vw, 5rem);
    line-height: 0.9;

    letter-spacing: 0.055em;
    text-align: center;
    text-transform: uppercase;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    color: var(--paper-light);
    background: var(--ink);
}

.footer-top,
.footer-bottom {
    width: min(
        calc(100% - 48px),
        var(--content-max)
    );

    margin-inline: auto;
}

.footer-top {
    display: grid;
    grid-template-columns:
        minmax(280px, 2fr)
        repeat(3, 1fr);

    gap: 3rem;

    padding-block: 4rem;
}

.footer-brand {
    align-self: start;

    font-family: var(--display);
    font-size: clamp(2.8rem, 4vw, 4rem);
    line-height: 0.95;

    letter-spacing: 0.055em;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 0.65rem;

    font-family: var(--mono);
    font-size: 0.68rem;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-column strong {
    margin-bottom: 0.5rem;

    color: var(--yellow);
}

.footer-column a {
    color:
        rgba(255, 250, 241, 0.68);
}

.footer-column a:hover {
    color: var(--paper-light);
}

.footer-bottom {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 1rem;

    padding-block:
        1.4rem 2rem;

    color:
        rgba(255, 250, 241, 0.5);

    border-top:
        1px solid
        rgba(255, 250, 241, 0.18);

    font-family: var(--mono);
    font-size: 0.59rem;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-bottom span:nth-child(2) {
    text-align: center;
}

.footer-bottom > span:last-child {
    text-align: right;
}


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

@media (max-width: 1100px) {

    :root {
        --content-max: 1040px;
        --wide-max: 1080px;
    }

    .cover-overlay h1 {
        font-size:
            clamp(6rem, 12vw, 8.5rem);
    }

    .product-card {
        grid-column: span 6;
    }

    .product-card-wide {
        grid-column: span 12;
    }

    .category-rail {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .category-tile:nth-child(3) {
        border-right: 0;
    }

    .category-tile:nth-child(-n + 3) {
        border-bottom: var(--border);
    }

    .category-tile:nth-child(4),
    .category-tile:nth-child(5) {
        border-bottom: 0;
    }

    .sell-layout {
        grid-template-columns:
            1fr
            1fr;
    }

    .sell-process {
        grid-column:
            1 / -1;

        max-width: 760px;

        margin:
            2rem auto 0;
    }

    .visit-section {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(390px, 1.1fr);
    }

}


/* ==========================================================================
   MOBILE NAV / TABLET STACK
   ========================================================================== */

@media (max-width: 980px) {

    .header-utility {
        width:
            calc(100% - 28px);
    }

    .masthead {
        grid-template-columns:
            90px
            1fr
            90px;

        width:
            calc(100% - 28px);

        min-height: 78px;
    }

    .brand {
        font-size:
            clamp(2.6rem, 7vw, 3.8rem);

        letter-spacing: 0.05em;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        justify-self: start;

        min-height: 38px;

        padding:
            0.55rem 0.65rem;

        color: var(--paper-light);
        background: var(--ink);

        border: var(--border);

        font-family: var(--mono);
        font-size: 0.62rem;
        font-weight: 700;

        letter-spacing: 0.07em;
    }

    .sell-link {
        font-size: 0.61rem;
    }

    .site-nav {
        position: fixed;
        z-index: 20000;

        inset: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;

        gap: 0;

        width: 100%;
        height: 100dvh;

        padding:
            5.5rem 1.5rem 2rem;

        color: var(--paper-light);
        background: var(--blue);

        border: 0;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform:
            translateY(-10px);

        transition:
            opacity 150ms ease,
            transform 150ms ease,
            visibility 150ms ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform:
            translateY(0);
    }

    .site-nav a {
        padding:
            0.75rem 0;

        border-bottom:
            2px solid
            rgba(255, 250, 241, 0.35);

        font-family: var(--display);
        font-size:
            clamp(2.4rem, 7vw, 3.6rem);

        line-height: 1.05;

        letter-spacing: 0.055em;
    }

    .site-nav a::after {
        display: none;
    }

    .cover-sticker {
        right: 4%;
    }

    .cover-note {
        right: 3%;
    }

    .retail-heading {
        grid-template-columns:
            1fr
            1fr;
    }

    .retail-heading .text-link {
        grid-column:
            1 / -1;

        justify-self: start;
    }

    .lookbook {
        min-height: 1320px;
    }

    .lookbook-canvas {
        min-height: 950px;
    }

    .look-photo-one {
        width: 40%;
    }

    .look-photo-two {
        left: 43%;

        width: 38%;
    }

    .look-photo-three {
        top: 515px;
        right: 4%;

        width: 42%;
    }

    .lookbook-note-red {
        top: 420px;
        left: 20%;
    }

    .lookbook-note-yellow {
        top: 700px;
        right: 25%;
    }

    .lookbook-barcode {
        top: 630px;
        left: 5%;
    }

    .lookbook blockquote {
        right: auto;
        bottom: 30px;
        left: 3%;

        max-width: 600px;
    }

    .visit-section {
        grid-template-columns: 1fr;
    }

    .visit-photo {
        min-height: 500px;

        border-right: 0;
        border-bottom: var(--border);
    }

    .visit-card {
        max-width: none;
    }

}


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

@media (max-width: 680px) {

    body {
        width: 100%;
        overflow-x: hidden;
    }

    .drop-ticker-track span {
        font-size: 0.58rem;
    }

    .header-utility {
        display: none;
    }

    .masthead {
        grid-template-columns:
            58px
            minmax(0, 1fr)
            58px;

        width:
            calc(100% - 20px);

        min-height: 68px;
    }

    .brand {
        min-width: 0;

        font-size:
            clamp(1.85rem, 9.5vw, 2.65rem);

        letter-spacing: 0.05em;

        white-space: nowrap;
    }

    .sell-link {
        justify-self: end;

        font-size: 0;

        border-bottom: 0;
    }

    .sell-link::after {
        content: "SELL";

        font-family: var(--mono);
        font-size: 0.57rem;
        font-weight: 700;

        letter-spacing: 0.05em;
    }

    .menu-toggle {
        min-height: 34px;

        padding:
            0.45rem 0.5rem;

        font-size: 0.55rem;
    }


    /* ----------------------------------------------------------------------
       COVER
       ---------------------------------------------------------------------- */

    .cover-hero {
        min-height: 700px;
    }

    .cover-overlay {
        width:
            calc(100% - 28px);

        padding-top: 4.5rem;
    }

    .cover-overlay h1 {
        max-width: 100%;

        margin-top: 2rem;

        font-size:
            clamp(4.6rem, 19vw, 6rem);

        line-height: 0.88;

        letter-spacing: 0.055em;
    }

    .cover-overlay h1 span {
        margin-left: 1rem;

        padding-top: 0.16em;
    }

    .cover-tagline {
        font-size: 1.45rem;
    }

    .cover-sticker {
        top: auto;
        right: 18px;
        bottom: 145px;

        width: 108px;
    }

    .cover-sticker span {
        font-size: 2.4rem;
    }

    .cover-note {
        right: auto;
        bottom: 68px;
        left: 15px;

        max-width:
            calc(100% - 30px);

        font-size: 1.45rem;

        letter-spacing: 0.05em;
    }

    .cover-cta {
        right: 15px;
        bottom: 18px;

        font-size: 0.62rem;
    }


    /* ----------------------------------------------------------------------
       NEW ARRIVALS
       ---------------------------------------------------------------------- */

    .new-arrivals {
        width:
            calc(100% - 28px);

        padding-block:
            4.5rem;
    }

    .retail-heading {
        grid-template-columns: 1fr;

        gap: 1.25rem;
    }

    .retail-heading h2 {
        font-size:
            clamp(3.25rem, 14vw, 4.3rem);

        line-height: 1;

        letter-spacing: 0.055em;
    }

    .retail-heading .text-link {
        grid-column: auto;
    }

    .product-grid {
        grid-template-columns: 1fr;

        gap: 2.8rem;
    }

    .product-card,
    .product-card-wide,
    .product-card-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .product-photo,
    .product-card-wide .product-photo,
    .product-card-tall .product-photo {
        min-height: 380px;
    }

    .product-info h3 {
        font-size: 1.9rem;

        line-height: 1.08;

        letter-spacing: 0.055em;
    }


    /* ----------------------------------------------------------------------
       SHOP BY MOOD

       Mobile deliberately becomes a normal vertical retail browse.
       No giant sideways cards and no horizontal scrollbar.
       ---------------------------------------------------------------------- */

    .category-header {
        flex-direction: column;

        width:
            calc(100% - 28px);

        gap: 0.9rem;

        padding-block:
            2.5rem 1.5rem;
    }

    .category-rail {
        display: grid;
        grid-template-columns: 1fr;

        width:
            calc(100% - 28px);

        margin-inline: auto;

        overflow: visible;

        border:
            var(--border);
    }

    .category-tile,
    .category-tile:nth-child(n) {
        width: 100%;

        border-right: 0 !important;
        border-bottom:
            var(--border) !important;

        transform: none;
    }

    .category-tile:last-child {
        border-bottom: 0 !important;
    }

    .category-tile:hover {
        transform: none;
    }

    .category-photo {
        min-height: 300px;
    }

    .category-label {
        min-height: auto;

        padding: 1.1rem;
    }

    .category-label strong {
        max-width: 100%;

        font-size:
            clamp(2rem, 10vw, 2.9rem);

        line-height: 1.05;

        letter-spacing: 0.06em;
    }


    /* ----------------------------------------------------------------------
       LOOKBOOK
       ---------------------------------------------------------------------- */

    .lookbook {
        min-height: auto;

        padding-bottom: 5rem;
    }

    .lookbook-title {
        width:
            calc(100% - 28px);

        padding-top: 4.5rem;
    }

    .lookbook-title h2 {
        font-size:
            clamp(4.5rem, 19vw, 5.8rem);

        line-height: 0.88;

        letter-spacing: 0.055em;
    }

    .lookbook-title h2 span {
        margin-left: 1.2rem;

        padding-top: 0.17em;
    }

    .lookbook-canvas {
        display: flex;
        flex-direction: column;

        gap: 1.5rem;

        width:
            calc(100% - 28px);

        min-height: 0;

        margin-top: 3rem;
    }

    .look-photo,
    .look-photo-one,
    .look-photo-two,
    .look-photo-three {
        position: relative;

        inset: auto;

        width: 92%;

        margin: 0;

        transform: none;
    }

    .look-photo:nth-of-type(even) {
        align-self: flex-end;
    }

    .look-photo-one .photo-placeholder,
    .look-photo-two .photo-placeholder,
    .look-photo-three .photo-placeholder {
        min-height: 390px;
    }

    .lookbook-note,
    .lookbook-note-red,
    .lookbook-note-yellow,
    .lookbook-barcode {
        position: relative;

        inset: auto;

        align-self: flex-start;

        transform:
            rotate(-2deg);
    }

    .lookbook-note {
        font-size:
            clamp(1.7rem, 8vw, 2.4rem);

        letter-spacing: 0.055em;
    }

    .lookbook-note-yellow {
        align-self: flex-end;

        transform:
            rotate(2deg);
    }

    .lookbook blockquote {
        position: relative;

        inset: auto;

        margin-top: 2rem;

        font-size: 2.1rem;

        transform: none;
    }


    /* ----------------------------------------------------------------------
       DROP BOARD
       ---------------------------------------------------------------------- */

    .drop-board {
        width:
            calc(100% - 28px);

        padding-block:
            4.5rem;
    }

    .drop-board-heading {
        display: block;
    }

    .drop-board-heading h2 {
        font-size:
            clamp(3.2rem, 14vw, 4.3rem);

        letter-spacing: 0.055em;
    }

    .drop-table {
        overflow-x: auto;

        scrollbar-width: none;
    }

    .drop-table::-webkit-scrollbar {
        display: none;
    }

    .drop-row {
        grid-template-columns:
            minmax(145px, 1.2fr)
            65px
            minmax(145px, 0.9fr)
            minmax(180px, 1.2fr);

        min-width: 620px;
    }


    /* ----------------------------------------------------------------------
       SELL
       ---------------------------------------------------------------------- */

    .sell-section {
        padding-block: 5rem;
    }

    .sell-intro,
    .sell-layout {
        width:
            calc(100% - 28px);
    }

    .sell-intro {
        grid-template-columns: 1fr;

        gap: 1.5rem;
    }

    .sell-intro h2 {
        font-size:
            clamp(3.9rem, 17vw, 5rem);

        line-height: 0.92;

        letter-spacing: 0.055em;
    }

    .sell-intro > p:last-child {
        margin: 0;
    }

    .sell-layout {
        grid-template-columns: 1fr;
    }

    .sell-buy-list,
    .sell-no-list {
        margin-top: 0;

        transform: none;
    }

    .sell-process {
        grid-column: auto;

        width: 100%;

        margin-top: 0;
    }

    .sell-process li {
        grid-template-columns:
            56px
            1fr;
    }

    .sell-process strong {
        font-size:
            clamp(1.55rem, 7vw, 2rem);

        line-height: 1.08;

        letter-spacing: 0.055em;
    }


    /* ----------------------------------------------------------------------
       VISIT
       ---------------------------------------------------------------------- */

    .visit-photo {
        min-height: 400px;
    }

    .visit-card {
        padding:
            4.5rem 1.4rem;
    }

    .visit-card h2 {
        font-size:
            clamp(3.2rem, 14vw, 4.2rem);

        line-height: 1;

        letter-spacing: 0.055em;
    }

    .visit-grid {
        grid-template-columns: 1fr;
    }

    .visit-grid > div {
        border-right: 0;

        border-bottom:
            1px solid var(--line);
    }

    .visit-grid > div:last-child {
        border-bottom: 0;
    }

    .visit-actions {
        flex-direction: column;
    }

    .visit-actions .button {
        width: 100%;
    }


    /* ----------------------------------------------------------------------
       FINAL STRIP
       ---------------------------------------------------------------------- */

    .final-strip {
        grid-template-columns: 1fr;

        min-height: 240px;

        padding:
            2.5rem 1.4rem;

        text-align: center;
    }

    .final-strip > span:last-child {
        text-align: center;
    }

    .final-strip strong {
        font-size:
            clamp(3.2rem, 15vw, 4.5rem);

        line-height: 1;

        letter-spacing: 0.055em;
    }


    /* ----------------------------------------------------------------------
       FOOTER
       ---------------------------------------------------------------------- */

    .footer-top,
    .footer-bottom {
        width:
            calc(100% - 28px);
    }

    .footer-top {
        grid-template-columns:
            1fr
            1fr;

        gap:
            2.5rem 1.5rem;
    }

    .footer-brand {
        grid-column:
            1 / -1;

        font-size: 3rem;

        letter-spacing: 0.055em;
    }

    .footer-bottom {
        grid-template-columns: 1fr;

        gap: 0.7rem;
    }

    .footer-bottom span:nth-child(2),
    .footer-bottom > span:last-child {
        text-align: left;
    }

}


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

@media (max-width: 390px) {

    .masthead {
        width:
            calc(100% - 16px);
    }

    .brand {
        font-size: 1.75rem;

        letter-spacing: 0.045em;
    }

    .cover-overlay {
        width:
            calc(100% - 22px);
    }

    .cover-overlay h1 {
        font-size:
            clamp(4.1rem, 21vw, 5rem);
    }

    .product-meta {
        grid-template-columns: 1fr;
    }

    .product-meta div {
        display: flex;
        justify-content: space-between;

        border-right: 0;

        border-bottom:
            1px solid var(--line);
    }

    .product-meta div:last-child {
        border-bottom: 0;
    }

    .product-meta dd {
        margin-top: 0;
    }

    .category-photo {
        min-height: 270px;
    }

    .look-photo,
    .look-photo-one,
    .look-photo-two,
    .look-photo-three {
        width: 96%;
    }

}


/* ==========================================================================
   ULTRAWIDE CONTROL
   ========================================================================== */

@media (min-width: 1500px) {

    :root {
        --content-max: 1160px;
        --wide-max: 1240px;
    }

    .masthead,
    .header-utility,
    .cover-overlay,
    .lookbook-title,
    .lookbook-canvas,
    .drop-board,
    .sell-intro,
    .sell-layout,
    .footer-top,
    .footer-bottom {
        max-width:
            var(--content-max);
    }

    .new-arrivals,
    .category-rail {
        max-width:
            var(--wide-max);
    }

    .brand {
        font-size: 4.6rem;
    }

    .cover-overlay h1 {
        font-size: 9rem;
    }

    .retail-heading h2,
    .drop-board-heading h2 {
        font-size: 5.4rem;
    }

    .lookbook-title h2 {
        font-size: 8.2rem;
    }

    .sell-intro h2 {
        font-size: 6.5rem;
    }

    .visit-card h2 {
        font-size: 4.7rem;
    }

    .final-strip strong {
        font-size: 4.8rem;
    }

}


/* ==========================================================================
   VERY WIDE MONITORS
   ========================================================================== */

@media (min-width: 1900px) {

    :root {
        --content-max: 1160px;
        --wide-max: 1240px;
    }

    .cover-hero {
        min-height: 790px;
    }

    .cover-overlay h1 {
        font-size: 8.7rem;
    }

    .product-photo {
        min-height: 350px;
    }

    .product-card-tall .product-photo {
        min-height: 520px;
    }

    .category-photo {
        min-height: 340px;
    }

}


/* KINDA CHIC ACTUAL IMAGE SUPPORT */


/* ==========================================================================
   EDITORIAL COVER IMAGE
   ========================================================================== */

.cover-photo-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/*
| Keep the dark editorial treatment above the actual photograph.
*/

.cover-photo::after {
    z-index: 1;
}


/* ==========================================================================
   PRODUCT PHOTOGRAPHY
   ========================================================================== */

.product-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/*
| Price/drop stickers must remain above product photography.
*/

.product-sticker {
    z-index: 3;
}


/* END KINDA CHIC ACTUAL IMAGE SUPPORT */


/* KINDA CHIC FINAL IMAGE SLOT SUPPORT */


/* ==========================================================================
   ALL FINAL PHOTOGRAPHY SLOTS
   ========================================================================== */

.cover-photo,
.product-photo,
.category-photo,
.look-photo .photo-placeholder,
.visit-photo {
    position: relative;
    overflow: hidden;
}


/* ==========================================================================
   HERO
   ========================================================================== */

.cover-photo-image {
    position: absolute;
    z-index: 0;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}

.cover-photo::after {
    z-index: 1;
}


/* ==========================================================================
   FRESH RACK
   ========================================================================== */

.product-image {
    position: absolute;
    z-index: 1;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}

.product-sticker {
    z-index: 3;
}


/* ==========================================================================
   SHOP BY MOOD
   ========================================================================== */

.category-image {
    position: absolute;
    z-index: 1;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* ==========================================================================
   LOOKBOOK
   ========================================================================== */

.look-photo .photo-placeholder {
    padding: 0;
}

.lookbook-image {
    position: absolute;
    z-index: 1;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* ==========================================================================
   STORE VISIT
   ========================================================================== */

.visit-image {
    position: absolute;
    z-index: 1;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* ==========================================================================
   MISSING IMAGE BEHAVIOR
   ========================================================================== */

/*
| Every future IMG has:
|
|     onerror="this.hidden=true"
|
| Until a PNG exists, the original styled placeholder/background remains
| visible instead of displaying an ugly broken-image icon.
|
| As soon as the correctly named PNG is saved into assets/images/,
| a refresh automatically fills the slot.
*/


/* END KINDA CHIC FINAL IMAGE SLOT SUPPORT */


/* KINDA CHIC IMAGE WIRING REPAIR */


/* ==========================================================================
   HERO — MUST REMAIN FULL COVER
   ========================================================================== */

.cover-photo {
    position: absolute !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 100% !important;

    overflow: hidden !important;
}


.cover-photo-image {
    position: absolute !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;
}


/*
|--------------------------------------------------------------------------
| Hero Overlay
|--------------------------------------------------------------------------
*/

.cover-photo::after {
    position: absolute !important;
    z-index: 1 !important;

    inset: 0 !important;
}


/* ==========================================================================
   PRODUCT IMAGES
   ========================================================================== */

.product-photo {
    position: relative !important;
    overflow: hidden !important;
}


.product-image {
    position: absolute !important;
    z-index: 1 !important;

    inset: 0 !important;

    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;
}


.product-sticker {
    position: absolute;
    z-index: 5 !important;
}


/* ==========================================================================
   CATEGORY IMAGES
   ========================================================================== */

.category-photo {
    position: relative !important;
    overflow: hidden !important;
}


.category-image {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
}


/* ==========================================================================
   LOOKBOOK IMAGES
   ========================================================================== */

.look-photo .photo-placeholder {
    position: relative !important;
    overflow: hidden !important;
    padding: 0 !important;
}


.lookbook-image {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
}


/* ==========================================================================
   STORE IMAGE
   ========================================================================== */

.visit-photo {
    position: relative !important;
    overflow: hidden !important;
}


.visit-image {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
}


/* END KINDA CHIC IMAGE WIRING REPAIR */
