* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f7f4ef;
    --text: #171411;
    --muted: #6f675f;
    --line: rgba(23, 20, 17, 0.12);
    --white: #ffffff;
    --header-light-bg: rgba(247, 244, 239, 0.96);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
}

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

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

/* =========================
   DEFAULT HEADER
========================= */

.top-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 10px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: #f3efe8;
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* =========================
   TRANSPARENT / LIGHT SECTION HEADER MODE
========================= */

.header-shell {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

/* dark hero / video / dark image */
.header-shell .top-bar,
.header-shell .site-header {
    background: transparent;
    color: #ffffff;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.header-shell .top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.header-shell .site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    top: auto;
}

/* light sections */
.header-shell.on-light .top-bar,
.header-shell.on-light .site-header,
.header-shell.scrolled .top-bar,
.header-shell.scrolled .site-header {
    background: var(--header-light-bg);
    color: var(--text);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-shell.on-light .top-bar,
.header-shell.scrolled .top-bar {
    border-bottom: 1px solid var(--line);
}

.header-shell.on-light .site-header,
.header-shell.scrolled .site-header {
    border-bottom: 1px solid var(--line);
}

.header-shell.on-light,
.header-shell.scrolled {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

/* keep same font/style, no underline */
.logo,
.main-nav a,
.icon-link,
.search-wrap,
.account-icon-trigger,
.header-left,
.header-right,
.plain-btn,
.header-icons {
    color: inherit;
    text-decoration: none;
}

.main-nav a:hover,
.logo:hover,
.icon-link:hover,
.search-wrap:hover,
.account-icon-trigger:hover {
    color: inherit;
    text-decoration: none;
}

/* =========================
   OLD HEADER STRUCTURE SUPPORT
========================= */

.header-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 18px 28px;
}

.plain-btn {
    background: transparent;
    border: none;
    font-size: 13px;
    cursor: pointer;
    justify-self: start;
    color: inherit;
}

.header-icons {
    justify-self: end;
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: inherit;
}

/* =========================
   NEW HEADER STRUCTURE SUPPORT
========================= */

.lux-header {
    padding: 0 40px;
}

.header-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 24px 0 18px;
    min-height: 96px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-left {
    justify-self: start;
}

.header-right {
    justify-self: end;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-align: center;
    color: inherit;
}

.icon-link,
.search-wrap,
.account-icon-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.admin-switch-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 28px;
    padding: 0 9px;
    border: 1px solid currentColor;
    border-radius: 8px;
    color: inherit;
    text-decoration: none;
}

.admin-switch-link svg {
    width: 16px;
    height: 16px;
}

.admin-switch-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.icon-link svg,
.search-wrap svg,
.account-icon-trigger svg {
    width: 24px;
    height: 24px;
    display: block;
}

.search-wrap {
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.count-icon {
    position: relative;
}

.count-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #171411;
    color: #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.account-user-label {
    margin-left: 8px;
    font-size: 14px;
    line-height: 1;
}

.main-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 12px 24px 22px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.main-nav a {
    color: inherit;
}

.site-search-modal {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 2300;
    display: none;
}

.site-search-modal.is-visible {
    display: block;
}

.site-search-dialog {
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    background: #f7f4ef;
    border-top: 1px solid rgba(23, 20, 17, 0.14);
    border-bottom: 1px solid rgba(23, 20, 17, 0.12);
    box-shadow: 0 8px 18px rgba(17, 14, 11, 0.08);
    overflow: hidden;
}

.site-search-form {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 12px 0 8px;
}

.site-search-input-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 44px;
    border: 1px solid rgba(23, 20, 17, 0.36);
    border-radius: 999px;
    padding: 0 12px 0 16px;
    background: #f7f4ef;
}

.site-search-input {
    min-width: 0;
    height: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    background: transparent;
    color: #171411;
}

.site-search-input::placeholder {
    color: rgba(23, 20, 17, 0.62);
}

.site-search-input:focus {
    outline: none;
}

.site-search-clear-btn {
    border: 0;
    background: transparent;
    margin: 0;
    padding: 0 6px;
    cursor: pointer;
    color: #171411;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
}

.site-search-clear-btn[hidden] {
    display: none;
}

.site-search-hint {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 4px 2px 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #6c6259;
    background: transparent;
}

.site-search-results {
    list-style: none;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 0 0 10px;
    overflow-y: auto;
    background: transparent;
    max-height: 340px;
}

.site-search-result-item {
    border-top: 0;
}

.site-search-result-link {
    display: block;
    padding: 8px 2px;
    color: #171411;
}

.site-search-result-link:hover {
    background: rgba(23, 20, 17, 0.03);
}

.site-search-result-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.site-search-result-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #1d1a16;
}

.site-search-result-icon svg {
    width: 15px;
    height: 15px;
    display: block;
}

.site-search-result-title {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
}

.site-search-result-tag {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6f675f;
}

.site-search-result-sub {
    margin: 3px 0 0 28px;
    font-size: 12px;
    line-height: 1.35;
    color: #5f554b;
}

.site-search-empty {
    display: none;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 10px 2px 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b6259;
    background: transparent;
    border-top: 0;
}

.site-search-empty.is-visible {
    display: block;
}

@media (max-width: 700px) {
    .admin-switch-link {
        height: 22px;
        width: 22px;
        padding: 0;
        border: none;
    }

    .admin-switch-link svg {
        width: 22px;
        height: 22px;
    }

    .admin-switch-label {
        display: none;
    }

    .site-search-form {
        width: calc(100% - 24px);
        padding: 10px 0 8px;
    }

    .site-search-input-row {
        min-height: 36px;
        padding: 0 12px;
    }

    .site-search-input {
        font-size: 15px;
    }

    .site-search-clear-btn {
        font-size: 12px;
    }

    .site-search-hint {
        width: calc(100% - 24px);
        padding: 3px 0;
    }

    .site-search-result-link {
        padding: 9px 0 8px;
    }

    .site-search-results {
        width: calc(100% - 24px);
    }

    .site-search-result-main {
        gap: 8px;
    }

    .site-search-result-icon {
        width: 16px;
        height: 16px;
    }

    .site-search-result-icon svg {
        width: 14px;
        height: 14px;
    }

    .site-search-result-title {
        font-size: 14px;
    }

    .site-search-result-tag {
        font-size: 10px;
    }

    .site-search-result-sub {
        margin-left: 22px;
        font-size: 11px;
    }

    .site-search-empty {
        width: calc(100% - 24px);
        padding: 10px 0 12px;
    }
}

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

.hero {
    width: 100%;
    position: relative;
}

.hero-media video {
    width: 100%;
    height: 100vh;
    min-height: 520px;
    object-fit: cover;
    display: block;
    background: #543C35;
}

.hero-media img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 100vh;
    min-height: 520px;
}

/* =========================
   REST OF PAGE
========================= */

.landing-search {
    max-width: 1360px;
    margin: 26px auto 10px;
    padding: 0 22px;
}

.landing-search-form {
    width: min(940px, 100%);
    margin: 0 auto;
    min-height: 50px;
    border: 1px solid rgba(23, 20, 17, 0.26);
    border-radius: 999px;
    background: #fffdfa;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 6px 0 14px;
    gap: 8px;
}

.landing-search-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(23, 20, 17, 0.72);
}

.landing-search-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.landing-search-input {
    border: 0;
    background: transparent;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    color: #171411;
    font-size: 15px;
    letter-spacing: 0;
}

.landing-search-input::placeholder {
    color: rgba(23, 20, 17, 0.52);
}

.landing-search-input:focus {
    outline: none;
}

.landing-search-btn {
    min-height: 40px;
    border: 1px solid #171411;
    border-radius: 999px;
    background: #171411;
    color: #fffdfa;
    padding: 0 20px;
    margin: 0;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
}

.landing-search-btn:hover {
    background: #0f0d0b;
    border-color: #0f0d0b;
}

.collection-banner {
    text-align: center;
    padding: 56px 20px 38px;
}

.collection-label {
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 18px;
    color: var(--muted);
}

.collection-banner h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 500;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 0.03em;
}

.double-feature {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 22px 70px;
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 20px;
}

.feature-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    background: #ddd;
}

.large-card {
    min-height: 760px;
}

.small-card {
    min-height: 370px;
}

.feature-card img {
    height: 100%;
    transition: transform 0.8s ease;
}

.feature-card:hover img {
    transform: scale(1.04);
}

.overlay {
    position: absolute;
    left: 24px;
    bottom: 22px;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

/* =========================
   COLLECTION STORY
========================= */

.collection-story {
    width: 100%;
    display: grid;
    grid-template-columns: 48% 52%;
    background: #f4f1ec;
    overflow: hidden;
    align-items: stretch;
}

.collection-story-left {
    background: #f4f1ec;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 110px 55px 70px;
}

.collection-story-copy {
    width: 100%;
    max-width: 460px;
}

.collection-story-quote-wrap {
    margin-bottom: 42px;
}

.collection-story-quote-wrap blockquote {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    line-height: 0.98;
    color: #111;
}

.collection-story-author {
    margin-top: 16px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(17, 17, 17, 0.58);
}

.collection-story-text-block {
    max-width: 390px;
}

.collection-story-label {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #1c1917;
}

.collection-story-text-block p {
    font-size: 17px;
    line-height: 1.85;
    color: #3f3934;
    margin-bottom: 20px;
}

.collection-story-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #1c1917;
}

.collection-story-right {
    height: 860px;
    overflow: hidden;
}

.collection-story-right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.discover-media-section,
.contact-media-hero {
    margin-top: 0;
}

/* =========================
   QUICK LINKS
========================= */

.quick-links {
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 28px 70px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.quick-links a {
    border-bottom: 1px solid var(--text);
    padding-bottom: 3px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* =========================
   EDITORIAL GRID
========================= */
.editorial-grid {
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 20px 90px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.editorial-card {
    display: block;
    width: 100%;
    overflow: hidden;
}

.editorial-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.editorial-card:hover img {
    transform: scale(1.06);
}

.editorial-caption {
    padding-top: 14px;
    text-align: center;
}

.editorial-caption h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    margin: 0;
}
/* =========================
   FOOTER
========================= */

.site-footer {
    border-top: 1px solid var(--line);
    padding: 55px 28px 28px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-grid h4 {
    margin-bottom: 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.footer-grid a {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 14px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    white-space: nowrap;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1280px) {
    .collection-story-left {
        padding: 95px 42px 60px;
    }

    .collection-story-copy {
        max-width: 420px;
    }

    .collection-story-quote-wrap blockquote {
        font-size: clamp(2rem, 3.8vw, 3.8rem);
    }

    .collection-story-right {
        height: 760px;
    }
}

@media (max-width: 1100px) {
    .double-feature,
    .collection-intro,
    .editorial-grid,
    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .double-feature {
        display: block;
    }

    .large-card,
    .small-card {
        min-height: 420px;
        margin-bottom: 20px;
    }

    .editorial-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .editorial-card img {
        height: 420px;
    }
}

@media (max-width: 1024px) {
    .collection-story {
        grid-template-columns: 1fr;
    }

    .collection-story-left {
        padding: 70px 28px 40px;
    }

    .collection-story-copy,
    .collection-story-text-block {
        max-width: 100%;
    }

    .collection-story-quote-wrap {
        margin-bottom: 28px;
    }

    .collection-story-quote-wrap blockquote {
        font-size: clamp(2rem, 7vw, 3.2rem);
        line-height: 1.02;
    }

    .collection-story-right {
        height: 620px;
    }

    .editorial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .editorial-card img {
        height: 360px;
    }
}

@media (max-width: 700px) {
    .top-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .header-top,
    .header-row {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .plain-btn,
    .header-icons {
        justify-self: center;
    }

    .header-left,
    .header-right {
        justify-content: center;
    }

    .logo {
        font-size: 34px;
    }

    .landing-search {
        margin: 18px auto 8px;
        padding: 0 12px;
    }

    .landing-search-form {
        min-height: 44px;
        padding: 0 5px 0 12px;
        gap: 7px;
    }

    .landing-search-input {
        font-size: 14px;
    }

    .landing-search-btn {
        min-height: 34px;
        padding: 0 14px;
        font-size: 10px;
    }

    .collection-banner h1 {
        font-size: 2.5rem;
    }

    .hero-media img,
    .hero-media video {
        height: 62vh;
    }

    .main-nav {
        gap: 14px;
        padding: 12px 12px 16px;
    }

    .collection-story-left {
        padding: 55px 20px 30px;
    }

    .collection-story-quote-wrap blockquote {
        font-size: clamp(1.8rem, 10vw, 2.7rem);
    }

    .collection-story-text-block p {
        font-size: 16px;
        line-height: 1.75;
    }

    .collection-story-right {
        height: 420px;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .editorial-card img {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .editorial-card img {
        height: 300px;
    }

}
