:root {
    --bg: #f6f3ec;
    --surface: #ffffff;
    --surface-soft: #faf8f3;
    --ink: #161616;
    --ink-soft: #525252;
    --line: #e7dfcf;
    --gold: #b48a2f;
    --gold-strong: #8f6b1e;
    --danger: #8f1d1d;
    --radius: 18px;
    --shadow-soft: 0 12px 40px rgba(20, 20, 20, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #f7f4ec 0%, #f6f2ea 45%, #f4efe6 100%);
}

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

.site-chroma {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.5;
    pointer-events: none;
}

.site-chroma-one {
    width: 360px;
    height: 360px;
    right: -120px;
    top: 80px;
    background: rgba(180, 138, 47, 0.28);
}

.site-chroma-two {
    width: 340px;
    height: 340px;
    left: -130px;
    top: 40vh;
    background: rgba(48, 60, 84, 0.14);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 14px 24px;
    backdrop-filter: blur(12px);
    background: rgba(249, 246, 239, 0.9);
    border-bottom: 1px solid rgba(180, 138, 47, 0.22);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
    box-shadow: 0 8px 25px rgba(20, 20, 20, 0.08);
    background: rgba(248, 245, 237, 0.95);
}

.site-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 14px rgba(15, 15, 15, 0.18);
}

.brand-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0.03em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    transition: color 0.18s ease;
}

.desktop-nav a:hover {
    color: var(--gold-strong);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-link {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--ink-soft);
    border: 1px solid transparent;
    transition: all 0.18s ease;
}

.icon-link:hover {
    border-color: var(--line);
    background: var(--surface);
    color: var(--ink);
}

.icon-svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-social {
    width: 16px;
    height: 16px;
    vertical-align: -2px;
    margin-right: 6px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid rgba(180, 138, 47, 0.44);
    color: var(--ink);
    background: var(--surface);
}

.header-cta:hover {
    border-color: var(--gold-strong);
    color: var(--gold-strong);
}

.cart-link {
    position: relative;
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.68rem;
    font-weight: 800;
}

.mobile-toggle,
.mobile-close {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 10px;
    color: var(--ink);
    cursor: pointer;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(7, 7, 7, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: min(86vw, 320px);
    height: 100vh;
    z-index: 1001;
    background: #f8f5ed;
    box-shadow: -12px 0 32px rgba(12, 12, 12, 0.25);
    transition: right 0.2s ease;
    padding: 18px 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-panel.active {
    right: 0;
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mobile-nav {
    display: grid;
    gap: 6px;
}

.mobile-nav a {
    padding: 12px 12px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}

.mobile-nav a:hover {
    background: #f0ebdf;
}

.site-main {
    padding-top: 76px;
}

.site-messages {
    max-width: 1200px;
    margin: 16px auto 0;
    padding: 0 18px;
    display: grid;
    gap: 10px;
}

.site-alert {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.92rem;
}

.site-alert-success {
    border-color: #c6e5c6;
    background: #f3fbf3;
}

.site-alert-warning {
    border-color: #f0dfbd;
    background: #fff8ed;
}

.site-alert-error {
    border-color: #ebc1c1;
    background: #fff1f1;
    color: var(--danger);
}

.site-footer {
    margin-top: 64px;
    border-top: 1px solid var(--line);
    background: #f8f4ea;
    padding: 36px 20px 20px;
}

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

.site-footer-grid h4 {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
}

.site-footer-grid p,
.site-footer-grid a {
    display: block;
    margin: 0 0 8px;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.6;
}

.site-footer-grid a:hover {
    color: var(--ink);
}

.site-footer-bottom {
    max-width: 1240px;
    margin: 16px auto 0;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: #736f65;
    font-size: 0.82rem;
}

.wd-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 20px;
}

.section-kicker {
    display: inline-block;
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid rgba(180, 138, 47, 0.4);
    color: var(--gold-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    margin: 8px 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.1vw, 3rem);
    line-height: 1.04;
}

.section-subtitle {
    margin: 6px 0 0;
    color: var(--ink-soft);
    max-width: 660px;
    line-height: 1.65;
    font-size: 0.99rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.18s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #c79c3f);
    color: #fff;
    border: 1px solid #c79c3f;
    box-shadow: 0 8px 20px rgba(143, 107, 30, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 11px 24px rgba(143, 107, 30, 0.34);
}

.btn-secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid var(--line);
}

.btn-secondary:hover {
    background: #fff;
}

.home-hero {
    margin-top: 18px;
}

.hero-panel {
    min-height: 72vh;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: grid;
    align-items: end;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(180, 138, 47, 0.18);
}

.hero-media {
    position: absolute;
    inset: 0;
    background: url("../assets/lgchbg.674e377e79f2.webp") center/cover no-repeat;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.34) 56%, rgba(10, 10, 10, 0.16) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: clamp(26px, 6vw, 70px);
    max-width: 760px;
    color: #fff;
    animation: liftIn 0.5s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
}

.icon-hero-badge {
    width: 14px;
    height: 14px;
}

.hero-title {
    margin: 14px 0 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 6.8vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    margin: 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-strip {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.trust-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 14px;
    background: var(--surface);
}

.trust-value {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.55rem;
}

.trust-label {
    margin-top: 2px;
    font-size: 0.82rem;
    color: var(--ink-soft);
    line-height: 1.45;
}

.collection-grid,
.product-grid,
.benefit-grid {
    display: grid;
    gap: 16px;
}

.collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-tile {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(18, 18, 18, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.collection-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(18, 18, 18, 0.09);
}

.collection-visual {
    aspect-ratio: 5 / 4;
    width: 100%;
    object-fit: cover;
}

.collection-body {
    padding: 14px;
}

.collection-name {
    margin: 0;
    font-size: 1.12rem;
}

.collection-count {
    margin: 6px 0 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

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

.product-card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 10px 28px rgba(18, 18, 18, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(18, 18, 18, 0.1);
}

.product-card-media {
    aspect-ratio: 4 / 5;
    width: 100%;
    object-fit: cover;
}

.product-card-body {
    padding: 14px;
    display: grid;
    gap: 8px;
}

.product-category {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-strong);
    font-weight: 700;
}

.product-title {
    margin: 0;
    font-size: 1.03rem;
}

.product-price {
    font-size: 1rem;
    font-weight: 800;
}

.price-old {
    text-decoration: line-through;
    color: #838383;
    margin-right: 8px;
    font-weight: 600;
}

.price-current {
    color: var(--gold-strong);
}

.product-actions {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-add {
    flex: 1;
    min-width: 140px;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    height: 42px;
    border-radius: 11px;
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.product-add:hover {
    border-color: var(--gold);
    color: var(--gold-strong);
}

.product-open {
    flex: 1;
    min-width: 120px;
    border: 1px solid var(--line);
    height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: #fff;
}

.product-open:hover {
    border-color: var(--ink);
}

.benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    padding: 18px;
}

.icon-benefit {
    color: var(--gold-strong);
    width: 22px;
    height: 22px;
}

.benefit-card h3 {
    margin: 10px 0 8px;
    font-size: 1.02rem;
}

.benefit-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.65;
    font-size: 0.92rem;
}

.signup-band {
    margin-top: 28px;
    border-radius: 24px;
    padding: clamp(22px, 5vw, 42px);
    background: linear-gradient(125deg, #1d1d1d 0%, #343434 45%, #202020 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 20px 40px rgba(15, 15, 15, 0.22);
}

.signup-band h3 {
    margin: 0 0 6px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.signup-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    max-width: 670px;
}

.shop-hero {
    margin-top: 20px;
    margin-bottom: 24px;
}

.shop-hero-box {
    border-radius: 24px;
    padding: clamp(24px, 5vw, 44px);
    background: linear-gradient(130deg, rgba(16, 16, 16, 0.92) 0%, rgba(38, 38, 38, 0.86) 100%), url("../assets/bigluminy.eee9c5891c10.webp") center/cover no-repeat;
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.shop-hero-box p {
    margin: 10px 0 0;
    max-width: 740px;
    color: rgba(255, 255, 255, 0.87);
    line-height: 1.75;
}

.filter-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 16px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #474747;
    background: #fff;
}

.chip.active,
.chip:hover {
    border-color: var(--gold);
    color: var(--gold-strong);
    background: #faf6eb;
}

.empty-state {
    border: 1px dashed #c6bda9;
    border-radius: 14px;
    padding: 28px 18px;
    text-align: center;
    color: #6b6458;
}

.stack-40 {
    margin-top: 40px;
}

.stack-56 {
    margin-top: 56px;
}

@keyframes liftIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle,
    .mobile-close {
        display: inline-grid;
        place-items: center;
    }

    .header-cta {
        display: none;
    }

    .trust-strip,
    .collection-grid,
    .product-grid,
    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 12px 14px;
    }

    .site-main {
        padding-top: 70px;
    }

    .brand-text {
        font-size: 1.55rem;
    }

    .icon-link {
        width: 36px;
        height: 36px;
    }

    .wd-section {
        padding: 0 14px;
    }

    .hero-panel {
        min-height: 66vh;
        border-radius: 20px;
    }

    .hero-actions {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .trust-strip,
    .collection-grid,
    .product-grid,
    .benefit-grid,
    .site-footer-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: start;
    }

    .signup-band {
        padding: 20px;
    }
}

.page-transition-layer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: linear-gradient(145deg, #121212 0%, #2a2113 52%, #151515 100%);
    pointer-events: none;
    transform: translateY(-100%);
}

.premium-hero {
    margin-top: 20px;
}

.premium-hero-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: clamp(28px, 6vw, 64px);
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, rgba(180, 138, 47, 0.45) 0%, rgba(180, 138, 47, 0) 35%),
        radial-gradient(circle at 80% 0%, rgba(78, 61, 25, 0.45) 0%, rgba(78, 61, 25, 0) 30%),
        linear-gradient(140deg, #111111 0%, #1d1d1d 46%, #151515 100%);
    border: 1px solid rgba(180, 138, 47, 0.26);
    box-shadow: 0 22px 45px rgba(13, 13, 13, 0.3);
}

.premium-hero-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.04), transparent 50%);
    pointer-events: none;
}

.premium-title {
    margin: 12px 0 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.5rem, 6.5vw, 5rem);
    line-height: 0.94;
    letter-spacing: 0.015em;
}

.premium-subtitle {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.87);
    line-height: 1.75;
    font-size: 1rem;
}

.premium-pillars {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.premium-pillar {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
}

.premium-pillar-value {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.55rem;
    line-height: 1;
}

.premium-pillar-label {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.84rem;
    line-height: 1.5;
}

.premium-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: 0 10px 24px rgba(18, 18, 18, 0.06);
}

.premium-card h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
}

.premium-card p {
    margin: 10px 0 0;
    color: var(--ink-soft);
    line-height: 1.68;
    font-size: 0.94rem;
}

.premium-card-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gold-strong);
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.story-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 18px;
}

.story-surface {
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
    padding: clamp(22px, 4vw, 34px);
    box-shadow: 0 10px 25px rgba(15, 15, 15, 0.07);
}

.story-surface p {
    margin: 10px 0 0;
    color: var(--ink-soft);
    line-height: 1.78;
}

.story-media {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(15, 15, 15, 0.1);
}

.story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(14, 14, 14, 0.35), rgba(14, 14, 14, 0.06));
}

.timeline-list {
    display: grid;
    gap: 12px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
}

.timeline-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    height: 32px;
    border: 1px solid rgba(180, 138, 47, 0.4);
    color: var(--gold-strong);
    font-weight: 800;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
}

.timeline-copy h4 {
    margin: 0;
    font-size: 1.02rem;
}

.timeline-copy p {
    margin: 6px 0 0;
    color: var(--ink-soft);
    line-height: 1.62;
    font-size: 0.92rem;
}

.cta-panel {
    border-radius: 24px;
    padding: clamp(22px, 5vw, 42px);
    border: 1px solid rgba(180, 138, 47, 0.34);
    background:
        radial-gradient(circle at 0% 0%, rgba(180, 138, 47, 0.24) 0%, rgba(180, 138, 47, 0) 35%),
        #fff;
    box-shadow: 0 14px 32px rgba(13, 13, 13, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-panel h3 {
    margin: 0 0 6px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.cta-panel p {
    margin: 0;
    color: var(--ink-soft);
    max-width: 700px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.timeline-list-tight {
    margin-top: 10px;
}

.muted-note {
    color: #6b665b;
    font-size: 0.85rem;
    line-height: 1.55;
}

@media (max-width: 1080px) {
    .premium-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-grid,
    .story-split {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .premium-pillars,
    .premium-grid,
    .story-split {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }
}

/* Premium refresh overrides */
:root {
    --bg: #f4efe4;
    --surface: #fffdf8;
    --surface-soft: #f8f3e8;
    --ink: #181715;
    --ink-soft: #4e4b43;
    --line: #ddd1bc;
    --gold: #c99a3a;
    --gold-strong: #a77717;
    --accent-night: #101010;
}

body {
    background:
        radial-gradient(circle at 8% 14%, rgba(201, 154, 58, 0.19) 0%, rgba(201, 154, 58, 0) 34%),
        radial-gradient(circle at 90% 8%, rgba(51, 61, 79, 0.12) 0%, rgba(51, 61, 79, 0) 32%),
        linear-gradient(180deg, #f6f1e7 0%, #f3ede2 52%, #f1eadf 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(17, 17, 17, 0.05) 0.6px, transparent 0.6px);
    background-size: 4px 4px;
    opacity: 0.14;
    z-index: -1;
}

.skip-link {
    position: fixed;
    left: 14px;
    top: -60px;
    z-index: 2100;
    padding: 10px 14px;
    border-radius: 10px;
    background: #121212;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    transition: top 0.2s ease;
}

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

.site-header {
    border-bottom-color: rgba(201, 154, 58, 0.24);
    background:
        linear-gradient(180deg, rgba(250, 246, 238, 0.94) 0%, rgba(248, 243, 234, 0.9) 100%);
}

.desktop-nav a {
    position: relative;
    padding-bottom: 4px;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), #edd29b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
    transform: scaleX(1);
}

.desktop-nav a.is-active {
    color: var(--ink);
}

.mobile-nav a.is-active {
    background: #ece3d1;
    color: var(--ink);
}

.home-hero-panel,
.premium-hero-shell,
.premium-shop-hero {
    isolation: isolate;
    transform-style: preserve-3d;
}

.premium-hero-shell,
.premium-shop-hero {
    overflow: hidden;
}

.premium-hero-shell::before,
.premium-shop-hero::before,
.home-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 35%),
        radial-gradient(circle at 75% 10%, rgba(233, 201, 134, 0.12) 0%, rgba(233, 201, 134, 0) 35%);
}

.premium-hero-shell > *:not(.hero-3d-scene),
.premium-shop-hero > *:not(.hero-3d-scene),
.home-hero-panel > *:not(.hero-3d-scene) {
    position: relative;
    z-index: 2;
}

.hero-3d-scene {
    position: absolute;
    right: clamp(-40px, -2vw, -10px);
    bottom: clamp(-76px, -5vw, -36px);
    width: clamp(220px, 30vw, 420px);
    aspect-ratio: 1 / 1;
    pointer-events: none;
    transform-style: preserve-3d;
    opacity: 0.95;
    filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.28));
}

.hero-orb {
    position: absolute;
    inset: 12% 14% 18% 16%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 32%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 32%),
        radial-gradient(circle at 66% 66%, rgba(52, 40, 16, 0.9) 0%, rgba(52, 40, 16, 0) 38%),
        linear-gradient(145deg, #f4d9a3 0%, #d8aa56 42%, #8b621f 100%);
    border: 1px solid rgba(255, 238, 204, 0.35);
    animation: orbFloat 7s ease-in-out infinite;
    transform: translateZ(36px);
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 235, 197, 0.48);
    transform-style: preserve-3d;
    opacity: 0.86;
}

.hero-ring-a {
    inset: 4%;
    transform: rotateX(67deg) rotateY(-12deg) translateZ(14px);
    animation: ringSpin 8.8s linear infinite;
}

.hero-ring-b {
    inset: 16%;
    border-color: rgba(255, 219, 151, 0.52);
    transform: rotateX(22deg) rotateY(35deg) translateZ(42px);
    animation: ringSpinReverse 11s linear infinite;
}

.hero-grid-plane {
    position: absolute;
    inset: 32% 14% -8% 14%;
    background:
        repeating-linear-gradient(0deg, rgba(255, 236, 203, 0.32) 0 1px, transparent 1px 24px),
        repeating-linear-gradient(90deg, rgba(255, 236, 203, 0.3) 0 1px, transparent 1px 24px);
    transform: rotateX(74deg) translateZ(-38px);
    opacity: 0.52;
    border-radius: 18px;
    animation: gridDrift 6s ease-in-out infinite alternate;
}

body.motion-ready .hero-orb,
body.motion-ready .hero-ring,
body.motion-ready .hero-grid-plane {
    animation: none;
}

.home-hero .hero-3d-scene {
    right: clamp(-110px, -6vw, -44px);
    bottom: clamp(-92px, -7vw, -42px);
    opacity: 0.88;
}

.hero-title,
.premium-title {
    text-shadow: 0 8px 26px rgba(15, 15, 15, 0.34);
}

.hero-badge {
    border-color: rgba(255, 224, 164, 0.44);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(222, 178, 87, 0.14));
    backdrop-filter: blur(5px);
}

.btn-primary {
    background: linear-gradient(137deg, #dda942 0%, #b67d17 48%, #96640f 100%);
    border-color: rgba(233, 185, 93, 0.8);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(8px);
}

.trust-item,
.premium-card,
.collection-tile,
.product-card,
.story-surface,
.timeline-item {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 251, 243, 0.96));
}

.collection-tile,
.product-card,
.premium-card,
.timeline-item,
.story-surface {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.collection-tile:hover,
.product-card:hover,
.premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 154, 58, 0.42);
    box-shadow: 0 18px 38px rgba(19, 19, 19, 0.12);
}

.premium-card-tag {
    color: #986913;
}

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

.premium-grid .premium-card {
    grid-column: span 4;
}

.premium-grid .premium-card:nth-child(4),
.premium-grid .premium-card:nth-child(5),
.premium-grid .premium-card:nth-child(6) {
    grid-column: span 4;
}

.cta-panel {
    background:
        radial-gradient(circle at 92% 8%, rgba(201, 154, 58, 0.26) 0%, rgba(201, 154, 58, 0) 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(250, 244, 230, 0.97));
}

.shop-hero-box {
    border: 1px solid rgba(201, 154, 58, 0.26);
    box-shadow: 0 20px 42px rgba(14, 14, 14, 0.25);
}

.filter-wrap {
    border-color: rgba(201, 154, 58, 0.24);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(251, 246, 235, 0.96));
}

.chip {
    border-color: #dec9a2;
}

.chip.active,
.chip:hover {
    background: linear-gradient(135deg, #fff5dd, #f6e6c3);
}

.site-footer {
    border-top-color: rgba(201, 154, 58, 0.3);
    background:
        linear-gradient(180deg, #181512 0%, #100f0e 100%);
}

.site-footer-grid h4 {
    color: #f2e6cf;
}

.site-footer-grid p,
.site-footer-grid a,
.site-footer-bottom {
    color: rgba(242, 230, 207, 0.78);
}

.site-footer-grid a:hover {
    color: #fff7e8;
}

.site-footer-bottom {
    border-top-color: rgba(242, 230, 207, 0.2);
}

.page-transition-layer {
    background:
        radial-gradient(circle at 20% 12%, rgba(211, 156, 46, 0.36) 0%, rgba(211, 156, 46, 0) 34%),
        linear-gradient(140deg, #0f0f0f 0%, #1f1a14 50%, #0d0d0d 100%);
}

@keyframes orbFloat {
    0% {
        transform: translate3d(0, 0, 34px) rotate(0deg);
    }
    50% {
        transform: translate3d(6px, -10px, 52px) rotate(8deg);
    }
    100% {
        transform: translate3d(0, 0, 34px) rotate(0deg);
    }
}

@keyframes ringSpin {
    from {
        transform: rotateX(67deg) rotateY(-12deg) rotateZ(0deg) translateZ(14px);
    }
    to {
        transform: rotateX(67deg) rotateY(-12deg) rotateZ(360deg) translateZ(14px);
    }
}

@keyframes ringSpinReverse {
    from {
        transform: rotateX(22deg) rotateY(35deg) rotateZ(360deg) translateZ(42px);
    }
    to {
        transform: rotateX(22deg) rotateY(35deg) rotateZ(0deg) translateZ(42px);
    }
}

@keyframes gridDrift {
    from {
        transform: rotateX(74deg) translate3d(0, 0, -38px);
    }
    to {
        transform: rotateX(74deg) translate3d(0, -12px, -28px);
    }
}

@media (max-width: 1080px) {
    .premium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-grid .premium-card {
        grid-column: auto;
    }
}

@media (max-width: 760px) {
    .hero-3d-scene {
        width: 220px;
        right: -82px;
        bottom: -95px;
        opacity: 0.62;
    }

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

    .premium-grid .premium-card {
        grid-column: auto;
    }
}

/* Home reboot + integrated navbar */
.site-header {
    padding: 0;
    border-bottom: 1px solid rgba(201, 154, 58, 0.2);
    box-shadow: none;
}

.site-header.scrolled {
    box-shadow: 0 14px 30px rgba(10, 10, 10, 0.12);
}

.site-header-inner {
    max-width: none;
    width: 100%;
    padding: 12px clamp(14px, 3vw, 52px);
}

.desktop-nav {
    gap: clamp(16px, 1.65vw, 30px);
}

.desktop-nav a {
    font-size: 0.84rem;
    letter-spacing: 0.07em;
}

body[data-page="home"] .site-main {
    padding-top: 0;
}

body[data-page="home"] .site-header {
    background:
        linear-gradient(180deg, rgba(18, 16, 13, 0.82) 0%, rgba(18, 16, 13, 0.58) 72%, rgba(18, 16, 13, 0.06) 100%);
    border-bottom-color: rgba(240, 220, 183, 0.16);
}

body[data-page="home"] .site-header.scrolled {
    background:
        linear-gradient(180deg, rgba(16, 14, 11, 0.96) 0%, rgba(16, 14, 11, 0.94) 100%);
    border-bottom-color: rgba(240, 220, 183, 0.22);
}

body[data-page="home"] .brand-text {
    color: #f6ecd9;
}

body[data-page="home"] .desktop-nav a {
    color: rgba(246, 236, 217, 0.84);
}

body[data-page="home"] .desktop-nav a.is-active,
body[data-page="home"] .desktop-nav a:hover {
    color: #fff4de;
}

body[data-page="home"] .icon-link {
    color: rgba(246, 236, 217, 0.84);
}

body[data-page="home"] .icon-link:hover {
    border-color: rgba(255, 230, 185, 0.26);
    background: rgba(255, 255, 255, 0.08);
    color: #fff8ed;
}

body[data-page="home"] .header-cta {
    background: rgba(255, 248, 235, 0.12);
    border-color: rgba(255, 225, 163, 0.44);
    color: #fff2da;
}

body[data-page="home"] .header-cta:hover {
    background: rgba(255, 248, 235, 0.2);
}

.home-hero.hero-reboot {
    margin-top: 0;
    padding-top: 88px;
}

.hero-reboot-shell {
    position: relative;
    overflow: hidden;
    min-height: min(82vh, 860px);
    border-radius: 30px;
    border: 1px solid rgba(227, 196, 141, 0.26);
    background:
        radial-gradient(circle at 80% 20%, rgba(214, 165, 73, 0.22) 0%, rgba(214, 165, 73, 0) 36%),
        radial-gradient(circle at 18% 70%, rgba(255, 247, 230, 0.1) 0%, rgba(255, 247, 230, 0) 42%),
        linear-gradient(132deg, #16120f 0%, #1f1812 40%, #11110f 100%);
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: clamp(14px, 2.4vw, 38px);
    padding: clamp(24px, 4.8vw, 64px);
    box-shadow: 0 28px 56px rgba(10, 10, 10, 0.34);
}

.hero-reboot-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: radial-gradient(circle at 44% 38%, rgba(0, 0, 0, 0.95) 0%, transparent 72%);
    opacity: 0.28;
}

.hero-reboot-shell::after {
    content: "";
    position: absolute;
    inset: -30% -10% auto auto;
    width: 56%;
    aspect-ratio: 1 / 1;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 242, 216, 0.18), rgba(255, 242, 216, 0));
    transform: rotate(-12deg);
}

.hero-reboot-copy {
    position: relative;
    z-index: 2;
    max-width: 710px;
}

.hero-reboot-title {
    margin-top: 14px;
    margin-bottom: 12px;
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    color: #fff7e6;
    line-height: 0.95;
}

.hero-reboot-subtitle {
    max-width: 620px;
    color: rgba(255, 244, 222, 0.9);
    font-size: clamp(0.97rem, 1.3vw, 1.15rem);
}

.hero-badge.hero-badge-lux {
    border-color: rgba(255, 228, 174, 0.34);
    color: #ffe7bb;
    background: linear-gradient(135deg, rgba(255, 235, 197, 0.2), rgba(199, 142, 41, 0.15));
}

.hero-reboot-visual {
    position: relative;
    min-height: clamp(360px, 48vw, 600px);
    transform-style: preserve-3d;
    perspective: 1400px;
    isolation: isolate;
}

.hero-reboot-visual [data-depth] {
    will-change: transform;
}

.hero-grid-floor {
    position: absolute;
    inset: 38% 6% 0 6%;
    border-radius: 28px;
    border: 1px solid rgba(255, 232, 195, 0.2);
    background:
        repeating-linear-gradient(0deg, rgba(255, 233, 193, 0.2) 0 1px, transparent 1px 26px),
        repeating-linear-gradient(90deg, rgba(255, 233, 193, 0.18) 0 1px, transparent 1px 26px);
    transform: rotateX(76deg) translateZ(-45px);
    opacity: 0.72;
}

.hero-beam {
    position: absolute;
    filter: blur(1px);
}

.beam-a {
    inset: 12% 12% 18% auto;
    width: 170px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 236, 198, 0.56), rgba(255, 236, 198, 0));
    transform: translateZ(18px) rotate(-20deg);
}

.beam-b {
    inset: 24% auto 8% 14%;
    width: 130px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(214, 160, 66, 0.48), rgba(214, 160, 66, 0));
    transform: translateZ(28px) rotate(18deg);
}

.hero-prism {
    position: absolute;
    border-radius: 18px;
    border: 1px solid rgba(255, 230, 186, 0.33);
    background: linear-gradient(145deg, rgba(242, 197, 109, 0.92), rgba(132, 90, 19, 0.88));
    box-shadow: 0 24px 34px rgba(0, 0, 0, 0.35);
}

.prism-a {
    width: clamp(130px, 16vw, 230px);
    height: clamp(130px, 16vw, 230px);
    right: 8%;
    top: 16%;
    transform: rotate(-24deg) skewY(-10deg) translateZ(48px);
}

.prism-b {
    width: clamp(110px, 13vw, 170px);
    height: clamp(110px, 13vw, 170px);
    left: 18%;
    top: 36%;
    transform: rotate(16deg) skewY(6deg) translateZ(66px);
    background: linear-gradient(145deg, rgba(255, 230, 182, 0.92), rgba(168, 120, 36, 0.9));
}

.prism-c {
    width: clamp(96px, 11vw, 150px);
    height: clamp(96px, 11vw, 150px);
    right: 28%;
    bottom: 18%;
    transform: rotate(11deg) skewX(-9deg) translateZ(36px);
}

.hero-floating-card {
    position: absolute;
    min-width: clamp(130px, 14vw, 200px);
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 232, 198, 0.38);
    background: linear-gradient(140deg, rgba(29, 22, 16, 0.78), rgba(49, 37, 22, 0.7));
    backdrop-filter: blur(10px);
    color: #fef2dd;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.32);
}

.hero-floating-card span {
    display: block;
    font-size: 0.63rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 232, 197, 0.72);
}

.hero-floating-card strong {
    display: block;
    margin-top: 4px;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
}

.card-a {
    right: 3%;
    top: 6%;
    transform: rotate(-7deg) translateZ(86px);
}

.card-b {
    left: 6%;
    bottom: 21%;
    transform: rotate(8deg) translateZ(72px);
}

.card-c {
    right: 32%;
    bottom: 6%;
    transform: rotate(-4deg) translateZ(54px);
}

.hero-metric-row {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.hero-metric {
    padding: 14px 14px 13px;
    border-radius: 14px;
    border: 1px solid rgba(190, 154, 87, 0.36);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 234, 0.95));
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.09);
}

.hero-metric-value {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
}

.hero-metric-label {
    margin-top: 4px;
    font-size: 0.91rem;
    color: #5a554c;
    line-height: 1.45;
}

@media (max-width: 1180px) {
    .hero-reboot-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-reboot-visual {
        min-height: 380px;
    }

    .hero-metric-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-header-inner {
        padding: 10px 14px;
    }

    .home-hero.hero-reboot {
        padding-top: 74px;
    }

    .hero-reboot-shell {
        border-radius: 20px;
        padding: 20px 16px;
    }

    .hero-reboot-title {
        font-size: clamp(2.1rem, 14vw, 3.3rem);
    }

    .hero-reboot-visual {
        min-height: 290px;
    }

    .hero-grid-floor {
        inset: 44% 2% -6% 2%;
    }

    .hero-floating-card {
        min-width: 126px;
        padding: 8px 10px;
    }

    .hero-metric-row {
        grid-template-columns: 1fr;
    }
}
