:root {
    --ink: #2B0E26;
    --plum: #561046;
    --plum-soft: #94317C;
    --mag: #CB6CE6;
    --mag-deep: #9B30C4;
    --mag-soft: #D89AEC;
    --mag-faint: #E9C6F5;
    --mag-pale: #F6EAFB;
    --ivory: #FFFBFE;
    --cream: #F8F0F5;
    --line: #EBDAE6;
    --muted: #7A6674;
    --gold: #E8B931;
    --green: #2E9E5B;
    --serif: 'Fraunces', serif;
    --sans: 'Instrument Sans', sans-serif;
    --mono: 'Spline Sans Mono', monospace;
    --maxw: 1320px;
    --pad: clamp(20px, 4vw, 48px);
    --sec: clamp(80px, 9vw, 124px);
    --r: 18px;
    --sh: 0 1px 2px rgba(43, 14, 38, .05), 0 12px 32px -16px rgba(43, 14, 38, .14);
    --sh-lift: 0 2px 4px rgba(43, 14, 38, .06), 0 28px 60px -20px rgba(43, 14, 38, .3);
    --ease: cubic-bezier(.22, .8, .24, 1);
}

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

html {
    scroll-behavior: smooth
}

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

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--ivory);
    font-size: 16px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    color: inherit
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad)
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: -.015em;
    line-height: 1.05
}

:focus-visible {
    outline: 3px solid var(--mag);
    outline-offset: 3px;
    border-radius: 4px
}

::selection {
    background: var(--mag);
    color: #fff
}

.skip {
    position: absolute;
    left: -9999px;
    background: var(--mag);
    color: #fff;
    padding: 10px 18px;
    font-weight: 700;
    z-index: 400
}

.skip:focus {
    left: 14px;
    top: 14px
}

.eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--plum-soft);
    display: inline-flex;
    align-items: center;
    gap: 12px
}

.eyebrow::before {
    content: "◆";
    font-size: 7px;
    color: var(--mag)
}

.h-sec {
    font-size: clamp(32px, 4vw, 56px)
}

.h-sec em,
.it {
    font-style: italic;
    font-weight: 500;
    color: var(--mag-deep)
}

.lede {
    font-size: clamp(16px, 1.3vw, 19px);
    color: var(--muted);
    line-height: 1.7
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 999px;
    padding: 15px 30px;
    border: none;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
    line-height: 1;
    white-space: nowrap
}

.btn .ar {
    transition: transform .25s var(--ease);
    font-family: var(--mono)
}

.btn:hover .ar {
    transform: translateX(4px)
}

.btn-mag {
    background: var(--mag);
    color: #fff
}

.btn-mag:hover {
    background: var(--mag-deep);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -12px rgba(216, 50, 190, .55)
}

.btn-ink {
    background: var(--ink);
    color: #fff
}

.btn-ink:hover {
    background: var(--plum);
    transform: translateY(-2px)
}

.btn-line {
    background: transparent;
    border: 1.5px solid var(--line)
}

.btn-line:hover {
    border-color: var(--mag);
    color: var(--mag-deep)
}

.btn-glass {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .35);
    backdrop-filter: blur(8px)
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .24);
    border-color: #fff
}

.btn-sm {
    padding: 11px 20px;
    font-size: 13.5px
}

.rv {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.rv.in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }

    .rv {
        opacity: 1;
        transform: none
    }
}

/* ===== header ===== */
header.site {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: background .35s, box-shadow .35s, border-color .35s;
    border-bottom: 1px solid transparent
}

header.site.solid {
    background: rgba(255, 251, 254, .9);
    backdrop-filter: blur(16px) saturate(1.3);
    border-color: var(--line)
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
    height: 80px;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad)
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo .mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--mag);
    display: grid;
    place-items: center
}

.logo .mark span {
    font-family: var(--serif);
    font-weight: 700;
    color: #fff;
    font-size: 16px
}

.logo .word b {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 18px;
    display: block;
    line-height: 1.05;
    letter-spacing: -.01em;
    color: #fff;
    transition: color .35s
}

.logo .word small {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    transition: color .35s
}

header.solid .logo .word b {
    color: var(--ink)
}

header.solid .logo .word small {
    color: var(--plum-soft)
}

nav.links {
    display: flex;
    gap: 2px;
    margin-left: auto
}

nav.links button {
    background: none;
    border: none;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    padding: 9px 13px;
    border-radius: 99px;
    transition: all .2s
}

nav.links button:hover {
    color: #fff;
    background: rgba(255, 255, 255, .12)
}

nav.links button.active {
    color: #fff;
    font-weight: 600;
    background: rgba(255, 255, 255, .14)
}

header.solid nav.links button {
    color: var(--muted)
}

header.solid nav.links button:hover {
    color: var(--ink);
    background: var(--mag-pale)
}

header.solid nav.links button.active {
    color: var(--ink);
    background: var(--mag-pale);
    font-weight: 600
}

@media(max-width:1060px) {
    nav.links {
        display: none
    }
}

/* ===== search ===== */
.search-btn {
    position: relative;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    font-size: 16px;
    transition: all .25s;
    flex-shrink: 0
}

.search-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .2)
}

header.solid .search-btn {
    border-color: var(--line);
    background: #fff
}

header.solid .search-btn:hover {
    border-color: var(--mag)
}

@media(max-width:560px) {
    .search-btn {
        width: 42px;
        height: 42px;
        font-size: 15px
    }
}

.search-scrim {
    position: fixed;
    inset: 0;
    background: rgba(43, 14, 38, .55);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
    z-index: 370
}

.search-scrim.open {
    opacity: 1;
    pointer-events: auto
}

.search-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--ivory);
    z-index: 380;
    transform: translateY(-100%);
    transition: transform .4s var(--ease);
    box-shadow: 0 30px 80px -30px rgba(43, 14, 38, .5);
    max-height: 88vh;
    display: flex;
    flex-direction: column
}

.search-panel.open {
    transform: none
}

.sp-top {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
    width: 100%;
    padding: 24px var(--pad)
}

.sp-top .ic {
    font-size: 22px;
    color: var(--mag-deep)
}

.sp-top input {
    flex: 1;
    border: none;
    background: none;
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 500;
    color: var(--ink);
    padding: 6px 0
}

.sp-top input::placeholder {
    color: var(--muted);
    opacity: .6
}

.sp-top input:focus {
    outline: none
}

.sp-top .x {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: #fff;
    font-size: 14px;
    flex-shrink: 0;
    transition: all .2s
}

.sp-top .x:hover {
    border-color: var(--mag);
    transform: rotate(90deg)
}

.sp-body {
    border-top: 1px solid var(--line);
    overflow-y: auto;
    max-width: 880px;
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--pad)
}

.sp-hint {
    padding: 18px 0 8px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted)
}

.sp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 0 0 28px
}

.sp-chips button {
    border: 1.5px solid var(--line);
    background: #fff;
    border-radius: 99px;
    padding: 9px 16px;
    font-size: 13.5px;
    font-weight: 600;
    transition: all .18s
}

.sp-chips button:hover {
    border-color: var(--mag);
    color: var(--mag-deep);
    background: var(--mag-pale)
}

.sp-res {
    padding: 8px 0 28px;
    display: grid;
    gap: 4px
}

.sp-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background .15s;
    text-align: left;
    background: none;
    border: none;
    width: 100%
}

.sp-item:hover {
    background: var(--cream)
}

.sp-item img {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0
}

.sp-item .nm {
    font-weight: 600;
    font-size: 14.5px
}

.sp-item .meta {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em
}

.sp-item .pr {
    margin-left: auto;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 16px
}

.sp-item .pr s {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 11px;
    color: var(--muted);
    margin-left: 6px
}

.sp-empty {
    padding: 40px 0 50px;
    text-align: center;
    color: var(--muted)
}

.sp-empty b {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--ink);
    display: block;
    margin-bottom: 8px
}

.sp-empty .src {
    color: var(--mag-deep);
    font-weight: 600;
    text-decoration: underline;
    background: none;
    border: none;
    font-size: 14px;
    margin-top: 6px
}

/* ===== hamburger + mobile menu ===== */
.burger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    flex-shrink: 0;
    position: relative;
    padding: 0;
    box-sizing: border-box
}

header.solid .burger {
    border-color: var(--line);
    background: #fff
}

.burger i {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    margin-left: -10px;
    background: #fff;
    border-radius: 9px;
    transition: transform .3s var(--ease), opacity .2s var(--ease), background .35s
}

header.solid .burger i {
    background: var(--ink)
}

.burger i:nth-child(1) {
    transform: translateY(-7px)
}

.burger i:nth-child(2) {
    transform: translateY(-1px)
}

.burger i:nth-child(3) {
    transform: translateY(5px)
}

.burger.x i:nth-child(1) {
    transform: translateY(-1px) rotate(45deg)
}

.burger.x i:nth-child(2) {
    opacity: 0
}

.burger.x i:nth-child(3) {
    transform: translateY(-1px) rotate(-45deg)
}

@media(max-width:1060px) {
    .burger {
        display: block
    }
}

.m-scrim {
    position: fixed;
    inset: 0;
    background: rgba(43, 14, 38, .5);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
    z-index: 250
}

.m-scrim.open {
    opacity: 1;
    pointer-events: auto
}

.m-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 86vw);
    background: var(--ivory);
    z-index: 260;
    transform: translateX(105%);
    transition: transform .4s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: -30px 0 80px -30px rgba(43, 14, 38, .4);
    overflow-y: auto
}

.m-menu.open {
    transform: none
}

.m-menu .mh {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line)
}

.m-menu .mh b {
    font-family: var(--serif);
    font-size: 18px
}

.m-menu .mh .x {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: #fff;
    font-size: 14px;
    transition: all .2s
}

.m-menu .mh .x:hover {
    border-color: var(--mag);
    transform: rotate(90deg)
}

.m-menu nav {
    display: flex;
    flex-direction: column;
    padding: 12px 0
}

.m-menu nav button {
    background: none;
    border: none;
    text-align: left;
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
    color: var(--ink);
    padding: 13px 24px;
    transition: all .18s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    margin: 0 12px
}

.m-menu nav button:hover,
.m-menu nav button.active {
    color: var(--mag-deep);
    background: var(--mag-pale)
}

.m-menu nav button .ar {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--mag);
    opacity: .6
}

.m-menu nav button:hover .ar {
    opacity: 1
}

.m-menu .msub {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--plum-soft);
    font-weight: 600;
    padding: 22px 24px 12px;
    display: flex;
    align-items: center;
    gap: 10px
}

.m-menu .msub::before {
    content: "◆";
    font-size: 6px;
    color: var(--mag)
}

.m-menu .mcats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 16px 8px
}

.m-menu .mcats button {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.25;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 12px;
    text-align: left;
    transition: all .18s;
    min-height: 48px;
    display: flex;
    align-items: center
}

.m-menu .mcats button:hover {
    color: var(--mag-deep);
    background: var(--mag-pale);
    border-color: var(--mag-soft);
    transform: translateY(-1px)
}

.m-menu .mcats button:first-child {
    grid-column: 1/-1;
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 600
}

.m-menu .mcats button:first-child:hover {
    background: var(--plum);
    color: #fff
}

.m-menu .mfoot {
    margin-top: auto;
    padding: 22px 24px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 12px
}

.m-menu .mfoot .btn {
    width: 100%
}

.m-menu .mfoot .ph {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--muted);
    text-align: center
}

.m-menu .mfoot .ph b {
    color: var(--mag-deep)
}

@media(max-width:560px) {
    .nav {
        height: 68px;
        gap: 8px;
        padding: 0 14px
    }

    .logo {
        gap: 9px
    }

    .logo .mark {
        width: 36px;
        height: 36px
    }

    .logo .mark span {
        font-size: 14px
    }

    .logo .word small {
        display: none
    }

    .logo .word b {
        font-size: 15px;
        white-space: nowrap
    }

    .nav .btn-sm {
        display: none
    }

    .search-btn,
    .burger {
        width: 40px;
        height: 40px
    }

    .search-btn {
        font-size: 14px
    }

    .burger i {
        width: 18px;
        margin-left: -9px
    }

    .burger i:nth-child(1) {
        transform: translateY(-6px)
    }

    .burger i:nth-child(2) {
        transform: translateY(-1px)
    }

    .burger i:nth-child(3) {
        transform: translateY(4px)
    }

    .burger.x i:nth-child(1) {
        transform: translateY(-1px) rotate(45deg)
    }

    .burger.x i:nth-child(3) {
        transform: translateY(-1px) rotate(-45deg)
    }

    .pad-hdr {
        padding-top: 68px
    }

    .sp-top {
        padding: 16px 14px
    }

    .sp-top .x {
        width: 38px;
        height: 38px
    }
}

/* ===== pages ===== */
.page {
    display: none
}

.page.active {
    display: block;
    animation: pi .4s var(--ease)
}

@keyframes pi {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.pad-hdr {
    padding-top: 80px
}

.page-hero.pad-hdr {
    padding-top: clamp(120px, 12vw, 164px)
}

/* ===== hero (home) ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden
}

@media(max-height:760px) {
    .hero {
        min-height: 0;
        align-items: flex-start
    }

    .hero-inner {
        padding-top: 150px
    }
}

.hero .bg {
    position: absolute;
    inset: 0
}

.hero .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    will-change: transform
}

.hero .bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43, 14, 38, .45) 0%, rgba(43, 14, 38, .25) 35%, rgba(43, 14, 38, .86) 100%)
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 130px;
    padding-bottom: clamp(64px, 10vh, 110px)
}

.hero .since {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--mag-pale);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px
}

.hero .since::after {
    content: "";
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, .45)
}

.hero h1 {
    font-size: clamp(38px, 5.6vw, 84px);
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1;
    max-width: 14ch
}

.hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: #F3A8E6
}

.hero .sub-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 48px;
    margin-top: 34px;
    flex-wrap: wrap
}

@media(min-width:901px) {
    .hero .sub-row {
        max-width: calc(100% - 380px)
    }
}

.hero .lede {
    color: rgba(255, 255, 255, .82);
    max-width: 460px
}

.hero .cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-stats {
    position: relative;
    z-index: 2;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, .22);
    margin-top: clamp(32px, 5vh, 56px)
}

.hero-stats .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.hstat {
    padding: 24px 28px 28px 0;
    border-right: 1px solid rgba(255, 255, 255, .18)
}

.hstat:last-child {
    border: none
}

.hstat b {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(24px, 2.6vw, 38px);
    display: block;
    letter-spacing: -.01em
}

.hstat span {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .62);
    display: block;
    margin-top: 5px
}

@media(max-width:860px) {
    .hero {
        min-height: 88vh
    }
}

/* ===== sku strip ===== */
.sku-strip {
    background: var(--ink);
    overflow: hidden
}

.sku-strip .track {
    display: flex;
    width: max-content;
    animation: tick 50s linear infinite
}

.sku-strip:hover .track {
    animation-play-state: paused
}

.sku-strip span {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .16em;
    color: #B98AAE;
    padding: 13px 0;
    white-space: nowrap
}

.sku-strip span i {
    font-style: normal;
    color: var(--mag);
    margin: 0 24px
}

@keyframes tick {
    to {
        transform: translateX(-50%)
    }
}

/* ===== sections ===== */
section.sec {
    padding: var(--sec) 0
}

.sec-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: clamp(36px, 4vw, 60px)
}

.sec-head .l {
    max-width: 680px
}

.sec-head h2 {
    margin-top: 18px
}

.sec-head .sub {
    color: var(--muted);
    margin-top: 16px;
    font-size: 16.5px;
    max-width: 520px
}

.sec-link {
    font-weight: 600;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mag-deep);
    white-space: nowrap;
    background: none;
    border: none
}

.sec-link .ar {
    font-family: var(--mono);
    transition: transform .25s var(--ease)
}

.sec-link:hover .ar {
    transform: translateX(5px)
}

@media(max-width:760px) {
    .sec-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }
}

/* ===== bento ===== */
.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px
}

.tile {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    cursor: pointer;
    background: var(--cream);
    border: none;
    padding: 0;
    text-align: left
}

.tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease)
}

.tile:hover img {
    transform: scale(1.06)
}

.tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(43, 14, 38, .82))
}

.tile .t-cap {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff
}

.tile .t-cap b {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(17px, 1.6vw, 22px);
    letter-spacing: -.01em;
    line-height: 1.15
}

.tile .t-cap small {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    color: #F3A8E6;
    display: block;
    margin-bottom: 6px
}

.tile .t-cap .go {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .4);
    backdrop-filter: blur(6px);
    display: grid;
    place-items: center;
    font-family: var(--mono);
    font-size: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s var(--ease);
    flex-shrink: 0
}

.tile:hover .t-cap .go {
    opacity: 1;
    transform: none
}

.tile.big {
    grid-column: span 2;
    grid-row: span 2
}

.tile.wide {
    grid-column: span 2
}

.tile.all {
    background: var(--ink);
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff
}

.tile.all::after {
    display: none
}

.tile.all b {
    font-family: var(--serif);
    font-size: clamp(19px, 1.8vw, 24px);
    font-weight: 600;
    display: block
}

.tile.all small {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .2em;
    color: #F3A8E6;
    display: block;
    margin-top: 8px
}

.tile.all .circ {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px dashed var(--mag);
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    font-family: var(--mono);
    color: var(--mag);
    transition: transform .35s var(--ease)
}

.tile.all:hover .circ {
    transform: rotate(45deg)
}

@media(max-width:1020px) {
    .bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px
    }

    .tile.big {
        grid-column: span 2;
        grid-row: span 1
    }
}

@media(max-width:560px) {
    .bento {
        grid-template-columns: 1fr
    }

    .tile.big,
    .tile.wide {
        grid-column: span 1
    }
}

/* ===== product cards ===== */
.feat-band {
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.pgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.pcard {
    background: #fff;
    border-radius: var(--r);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    position: relative;
    box-shadow: var(--sh)
}

.pcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lift)
}

.pcard .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: #fff;
    color: var(--ink);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    padding: 6px 12px;
    border-radius: 99px;
    box-shadow: var(--sh)
}

.pcard .badge.deal {
    background: var(--mag);
    color: #fff
}

.pcard .badge.best {
    background: var(--gold);
    color: var(--ink)
}

.pcard .badge.best:hover {
    background: #f3d04e
}

.pcard .vat {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: .04em;
    color: var(--muted);
    margin-left: 6px
}

/* ===== nav dropdown ===== */
.has-mega {
    position: relative
}

.mega {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: min(640px, 90vw);
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--sh-lift);
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    z-index: 120
}

.has-mega:hover .mega,
.has-mega:focus-within .mega {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%)
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px
}

.mega a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
    transition: all .15s
}

.mega a:hover {
    background: var(--mag-pale);
    color: var(--mag-deep)
}

.mega a .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mag);
    flex-shrink: 0;
    opacity: .5
}

.mega-foot {
    border-top: 1px solid var(--line);
    margin-top: 12px;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.mega-foot a {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--mag-deep);
    font-weight: 600
}

.mega-foot span {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted)
}

/* ===== top filter bar ===== */
.filterbar {
    position: sticky;
    top: 80px;
    z-index: 90;
    background: rgba(255, 251, 254, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 14px 0
}

.filterbar .wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.fb-group {
    position: relative
}

.fb-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1.5px solid var(--line);
    background: #fff;
    border-radius: 99px;
    padding: 10px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    transition: all .18s
}

.fb-btn:hover {
    border-color: var(--mag)
}

.fb-btn.has {
    border-color: var(--mag);
    background: var(--mag-pale);
    color: var(--mag-deep)
}

.fb-btn .cv {
    font-family: var(--mono);
    font-size: 10px;
    background: var(--mag);
    color: #fff;
    border-radius: 99px;
    min-width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    padding: 0 4px
}

.fb-btn .cv[hidden] {
    display: none
}

.fb-btn .ch {
    font-family: var(--mono);
    font-size: 10px;
    transition: transform .2s
}

.fb-group.open .fb-btn .ch {
    transform: rotate(180deg)
}

.fb-pop {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 280px;
    max-width: calc(100vw - 24px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--sh-lift);
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    z-index: 95;
    max-height: min(340px, 60vh);
    overflow-y: auto;
    overscroll-behavior: contain
}

.fb-group.open .fb-pop {
    opacity: 1;
    pointer-events: auto;
    transform: none
}

.fb-pop h5 {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 6px 0 10px
}

.fb-pop label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 4px;
    font-size: 13.5px;
    cursor: pointer;
    border-radius: 8px;
    transition: background .12s
}

.fb-pop label:hover {
    background: var(--cream)
}

.fb-pop label input {
    accent-color: var(--mag);
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.fb-pop label.exc input {
    accent-color: #C0392B
}

.fb-sort .fb-pop label {
    font-weight: 500
}

.fb-spacer {
    flex: 1
}

.fb-count {
    font-size: 13px;
    color: var(--muted);
    font-family: var(--mono)
}

.fb-count b {
    color: var(--ink)
}

@media(max-width:860px) {
    .filterbar {
        top: 80px
    }

    .fb-spacer {
        display: none
    }

    .fb-count {
        width: 100%;
        order: 5
    }
}

@media(max-width:560px) {
    .filterbar {
        top: 68px
    }
}

/* applied filter chips */
.applied {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    padding: 18px 0 0
}

.applied .lbl {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted)
}

.fchip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mag-pale);
    border: 1px solid var(--mag-soft);
    color: var(--plum);
    border-radius: 99px;
    padding: 6px 8px 6px 14px;
    font-size: 12.5px;
    font-weight: 600;
    animation: ciIn .3s var(--ease)
}

.fchip.exc {
    background: #FBEAE8;
    border-color: #E6B0AA;
    color: #B03A2E
}

.fchip .pre {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .06em;
    opacity: .7;
    text-transform: uppercase
}

.fchip button {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, .08);
    font-size: 11px;
    display: grid;
    place-items: center;
    transition: background .15s
}

.fchip button:hover {
    background: rgba(0, 0, 0, .18)
}

.fchip-clear {
    background: none;
    border: none;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--mag-deep);
    text-decoration: underline;
    font-weight: 600
}

/* view-all bar */
.viewall {
    text-align: center;
    margin-top: 40px
}

.no-res {
    text-align: center;
    padding: 70px 20px;
    color: var(--muted)
}

.no-res b {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    display: block;
    margin-bottom: 8px
}

/* ===== product card WhatsApp button ===== */
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 999px;
    padding: 13px 22px;
    text-decoration: none;
    font-family: var(--sans);
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .35);
    white-space: nowrap
}

.btn-wa:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(37, 211, 102, .45);
    color: #fff
}

.btn-wa svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    flex-shrink: 0
}

.btn-wa-sm {
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 999px;
    gap: 8px;
    box-shadow: 0 3px 12px rgba(37, 211, 102, .3)
}

.btn-wa-sm svg {
    width: 20px;
    height: 20px
}

.pcard .im {
    height: 200px;
    overflow: hidden;
    cursor: pointer
}

.pcard .im img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease)
}

.pcard:hover .im img {
    transform: scale(1.07)
}

.pc-b {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1
}

.pc-brand {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--plum-soft);
    font-weight: 600
}

.pc-name {
    font-weight: 600;
    font-size: 15.5px;
    line-height: 1.4;
    cursor: pointer
}

.pc-name:hover {
    color: var(--mag-deep)
}

.pc-pack {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted)
}

.pc-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line)
}

.pc-price {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 21px;
    letter-spacing: -.01em
}

.pc-price s {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 12.5px;
    color: var(--muted);
    margin-left: 8px
}

.pc-add {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    font-family: var(--sans);
    cursor: pointer;
    transition: background .2s, transform .15s;
    box-shadow: 0 3px 12px rgba(37, 211, 102, .3);
    white-space: nowrap
}

.pc-add:hover {
    background: #1DA851;
    transform: translateY(-1px);
    color: #fff
}

.pc-add svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    flex-shrink: 0
}

@media(max-width:1020px) {
    .pgrid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:560px) {
    .pgrid {
        grid-template-columns: 1fr
    }
}

/* ===== pillars + wide photo ===== */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px)
}

.pillar {
    position: relative;
    padding-top: 30px
}

.pillar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 3px;
    background: var(--mag);
    border-radius: 99px
}

.pillar h3 {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 600;
    margin-bottom: 12px
}

.pillar p {
    color: var(--muted);
    font-size: 15.5px;
    max-width: 340px
}

.pillar .pm {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--plum-soft);
    display: block;
    margin-bottom: 14px
}

@media(max-width:860px) {
    .pillars {
        grid-template-columns: 1fr
    }
}

.wide-photo {
    position: relative;
    border-radius: calc(var(--r) + 8px);
    overflow: hidden;
    margin-top: clamp(40px, 5vw, 72px);
    height: clamp(300px, 42vw, 520px);
    box-shadow: var(--sh-lift)
}

.wide-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.wide-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(43, 14, 38, .55) 0%, transparent 55%)
}

.wide-photo .wp-copy {
    position: absolute;
    left: clamp(22px, 4vw, 52px);
    bottom: clamp(22px, 4vw, 48px);
    z-index: 2;
    color: #fff;
    max-width: 420px
}

.wide-photo .wp-copy h3 {
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 600;
    margin-bottom: 10px
}

.wide-photo .wp-copy p {
    font-size: 15px;
    color: rgba(255, 255, 255, .85)
}

.wp-chip {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border-radius: 99px;
    padding: 11px 20px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--ink);
    box-shadow: var(--sh-lift);
    display: flex;
    align-items: center;
    gap: 9px
}

.wp-chip::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green)
}

@media(max-width:700px) {
    .wp-chip {
        display: none
    }
}

/* ===== sourcing promise ===== */
.promise {
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center
}

.promise .inner {
    max-width: 880px;
    margin: 0 auto
}

.promise h2 {
    font-size: clamp(30px, 4.6vw, 62px);
    line-height: 1.1
}

.promise h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--mag-deep)
}

.promise p {
    color: var(--muted);
    font-size: 17px;
    max-width: 560px;
    margin: 22px auto 34px
}

.promise .seal-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px
}

.promise .seal-line::before,
.promise .seal-line::after {
    content: "";
    width: 64px;
    height: 1px;
    background: var(--line)
}

.promise .seal-line span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1.5px dashed var(--plum-soft);
    display: grid;
    place-items: center;
    font-size: 22px;
    color: var(--plum-soft)
}

/* ===== retail split ===== */
.retail-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(36px, 5vw, 84px);
    align-items: center
}

.retail-img {
    position: relative;
    border-radius: calc(var(--r) + 6px);
    overflow: hidden;
    aspect-ratio: 4/3.2;
    box-shadow: var(--sh-lift)
}

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

.retail-img .open-chip {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    border-radius: 99px;
    padding: 11px 20px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: var(--sh-lift)
}

.retail-img .open-chip::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green)
}

.retail-copy h2 {
    font-size: clamp(28px, 3.4vw, 48px);
    margin: 18px 0 16px
}

.retail-copy p {
    color: var(--muted);
    max-width: 460px;
    margin-bottom: 14px
}

.retail-copy .pts {
    list-style: none;
    margin: 22px 0 30px;
    display: grid;
    gap: 12px
}

.retail-copy .pts li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 15px
}

.retail-copy .pts li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--mag-pale);
    color: var(--mag-deep);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px
}

@media(max-width:900px) {
    .retail-grid {
        grid-template-columns: 1fr
    }
}

/* ===== golden chef ===== */
.gc-band {
    background: var(--ink);
    color: #fff;
    overflow: hidden
}

.gc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 90px);
    align-items: center
}

.gc-img {
    position: relative;
    border-radius: calc(var(--r) + 6px);
    overflow: hidden;
    aspect-ratio: 4/3.4;
    box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .6)
}

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

.gc-img .seal {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--mag);
    display: grid;
    place-items: center;
    text-align: center;
    font-family: var(--mono);
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: .14em;
    line-height: 1.5;
    color: #fff;
    transform: rotate(-12deg);
    padding: 12px
}

.gc-copy .eyebrow {
    color: #F3A8E6
}

.gc-copy h2 {
    font-size: clamp(30px, 3.6vw, 52px);
    margin: 18px 0 16px;
    color: #fff
}

.gc-copy h2 em {
    font-style: italic;
    font-weight: 500;
    color: #F3A8E6
}

.gc-copy p {
    color: #CFA8C5;
    max-width: 440px;
    margin-bottom: 28px
}

.gc-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px
}

.gc-logos span {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .12em;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 99px;
    padding: 9px 18px;
    color: #CFA8C5;
    transition: all .2s
}

.gc-logos span:hover {
    border-color: var(--mag);
    color: #fff
}

@media(max-width:900px) {
    .gc-grid {
        grid-template-columns: 1fr
    }
}

/* ===== quotes ===== */
.q-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2.4vw, 30px);
    align-items: start
}

.qcard {
    background: #fff;
    border-radius: var(--r);
    padding: clamp(26px, 2.6vw, 38px);
    box-shadow: var(--sh);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease)
}

.qcard:nth-child(1) {
    transform: rotate(-1.4deg)
}

.qcard:nth-child(2) {
    transform: translateY(26px) rotate(.8deg)
}

.qcard:nth-child(3) {
    transform: rotate(1.2deg)
}

.qcard:hover {
    transform: translateY(-6px) rotate(0deg);
    box-shadow: var(--sh-lift)
}

.qcard .qm {
    font-family: var(--serif);
    font-size: 54px;
    line-height: .4;
    color: var(--mag);
    display: block;
    margin-bottom: 24px
}

.qcard blockquote {
    font-family: var(--serif);
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -.01em
}

.qcard .who {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 12px
}

.qcard .who .av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--mag-pale);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-weight: 600;
    color: var(--plum);
    font-size: 14px
}

.qcard .who b {
    font-size: 13.5px;
    display: block
}

.qcard .who span {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted)
}

.qcard .stars {
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 12px;
    margin-top: 6px
}

@media(max-width:880px) {
    .q-grid {
        grid-template-columns: 1fr
    }

    .qcard:nth-child(n) {
        transform: none
    }
}

/* ===== certs ===== */
.cert-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.cert {
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 30px;
    background: #fff;
    transition: all .25s var(--ease);
    text-align: center
}

.cert:hover {
    box-shadow: var(--sh);
    transform: translateY(-4px);
    border-color: var(--mag-pale)
}

.cert .seal {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px dashed var(--plum-soft);
    display: grid;
    place-items: center;
    font-size: 23px;
    margin: 0 auto 18px;
    color: var(--plum-soft)
}

.cert b {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    display: block
}

.cert span {
    font-size: 13px;
    color: var(--muted);
    display: block;
    margin-top: 7px;
    line-height: 1.55
}

.cert .tag {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .22em;
    color: var(--mag-deep);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px
}

@media(max-width:1020px) {
    .cert-row {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:560px) {
    .cert-row {
        grid-template-columns: 1fr
    }
}

/* ===== CTA ===== */
.cta {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--r) + 10px);
    background: var(--ink);
    color: #fff
}

.cta .bgimg {
    position: absolute;
    inset: 0;
    opacity: .16
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 50% 100%, rgba(216, 50, 190, .16), transparent 60%);
    z-index: 1
}

.cta .bgimg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cta .inner {
    position: relative;
    z-index: 2;
    padding: clamp(48px, 7vw, 100px) clamp(24px, 5vw, 80px);
    text-align: center
}

.cta h2 {
    font-size: clamp(34px, 5vw, 72px);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.02
}

.cta h2 em {
    font-style: italic;
    font-weight: 500;
    color: #F3A8E6
}

.cta p {
    color: rgba(255, 255, 255, .8);
    margin: 22px auto 38px;
    max-width: 460px;
    font-size: 17px
}

.cta .row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.cta .app {
    margin-top: 30px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .16em;
    color: #B98AAE;
    text-transform: uppercase
}

.cta .app b {
    color: #F3A8E6
}

/* ===== inner page shells ===== */
.page-hero {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: clamp(44px, 6vw, 76px) 0
}

.crumbs {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--plum);
    margin-bottom: 18px;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    line-height: 1.7;
    font-weight: 500
}

.crumbs a,
.crumbs b,
.crumbs span {
    display: inline-block
}

.crumbs a {
    color: var(--plum-soft);
    transition: color .15s
}

.crumbs a:hover {
    color: var(--mag-deep);
    text-decoration: underline
}

.crumbs span {
    color: var(--mag);
    opacity: .55;
    font-weight: 600
}

.crumbs b {
    color: var(--mag-deep);
    font-weight: 700
}

.page-hero h1 {
    font-size: clamp(32px, 4.4vw, 58px);
    font-weight: 600
}

.page-hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--mag-deep)
}

.page-hero p {
    color: var(--muted);
    margin-top: 14px;
    max-width: 580px;
    font-size: 16.5px
}

/* shop */
.shop {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    padding-top: 48px
}

.side-card {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: #fff;
    overflow: hidden;
    margin-bottom: 20px
}

.side-card h4 {
    font-size: 10.5px;
    font-family: var(--mono);
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--cream)
}

.side-list {
    list-style: none;
    padding: 8px 0
}

.side-list button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 9px 20px;
    font-size: 13.5px;
    color: var(--muted);
    font-weight: 500;
    transition: all .15s;
    text-align: left
}

.side-list button:hover {
    color: var(--mag-deep)
}

.side-list button.on {
    color: var(--mag-deep);
    font-weight: 700;
    box-shadow: inset 3px 0 0 var(--mag);
    background: var(--mag-pale)
}

.side-list button small {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted)
}

.check-list {
    padding: 14px 20px;
    display: grid;
    gap: 11px
}

.check-list label {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13.5px;
    color: var(--muted);
    cursor: pointer
}

.check-list input {
    accent-color: var(--mag);
    width: 16px;
    height: 16px
}

.side-promo {
    background: var(--ink);
    border-radius: var(--r);
    color: #fff;
    padding: 22px;
    text-align: center
}

.side-promo img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 12px
}

.side-promo b {
    font-family: var(--serif);
    font-size: 16px;
    display: block;
    margin: 14px 0 4px
}

.side-promo p {
    font-size: 12.5px;
    color: #CFA8C5;
    margin-bottom: 14px
}

.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    gap: 14px;
    flex-wrap: wrap
}

.sort-bar .res {
    font-size: 13.5px;
    color: var(--muted)
}

.sort-bar .res b {
    color: var(--ink)
}

.sort-bar select {
    border: 1.5px solid var(--line);
    border-radius: 99px;
    padding: 10px 16px;
    font-family: var(--sans);
    font-size: 13.5px;
    background: #fff
}

.shop .pgrid {
    grid-template-columns: repeat(3, 1fr)
}

.shop .pcard .im {
    height: 175px
}

@media (max-width:1220px) {
    .pd-g .main {
        height: auto !important;
    }
}

@media(max-width:1020px) {
    .shop {
        grid-template-columns: 1fr
    }
}

@media(max-width:880px) {
    .shop .pgrid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:560px) {
    .shop .pgrid {
        grid-template-columns: 1fr
    }
}

/* product detail */
.pd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 64px);
    padding-top: 48px
}

.pd-g .main {
    height: 440px;
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--sh)
}

.pd-g .main img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pd-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

.pd-thumbs .th {
    height: 84px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .18s
}

.pd-thumbs .th img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.pd-thumbs .th:hover,
.pd-thumbs .th.sel {
    border-color: var(--mag)
}

.pd-i h1 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 600;
    margin: 10px 0 12px
}

.pd-i .lede {
    font-size: 15.5px;
    margin-bottom: 22px
}

.pd-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px;
    flex-wrap: wrap
}

.pd-price .now {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -.02em
}

.pd-price .old {
    font-size: 16px;
    color: var(--muted);
    text-decoration: line-through
}

.pd-price .save {
    background: var(--mag-pale);
    color: var(--plum);
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .1em;
    padding: 6px 14px;
    border-radius: 99px
}

.pd-price .unit {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--muted);
    margin-left: auto
}

.pd-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px
}

.pp-card {
    border: 1.5px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
    background: #fff;
    transition: border-color .2s, box-shadow .2s
}

.pp-card:first-child {
    border-color: var(--mag-soft);
    background: var(--mag-pale)
}

.pp-lbl {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--plum-soft);
    font-weight: 600;
    display: block;
    margin-bottom: 6px
}

.pp-now {
    font-family: var(--serif);
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 600;
    letter-spacing: -.02em;
    display: block;
    line-height: 1
}

.pp-unit {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    display: block;
    margin-top: 6px
}

.pp-save {
    grid-column: 1/-1;
    background: var(--ink);
    color: #fff;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    padding: 9px 14px;
    border-radius: 99px;
    text-align: center
}

@media(max-width:480px) {
    .pd-prices {
        grid-template-columns: 1fr
    }
}

.spec {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 22px 0
}

.spec td {
    padding: 10px 0;
    border-bottom: 1px solid var(--line)
}

.spec td:first-child {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    width: 40%
}

.spec td:last-child {
    font-weight: 600
}

.pack-row {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin: 8px 0 24px
}

.pack-opt {
    border: 1.5px solid var(--line);
    border-radius: 99px;
    padding: 11px 18px;
    font-family: var(--mono);
    font-size: 12.5px;
    font-weight: 600;
    background: #fff;
    transition: all .16s
}

.pack-opt:hover {
    border-color: var(--mag-pale)
}

.pack-opt.sel {
    border-color: var(--mag);
    background: var(--mag-pale);
    color: var(--plum)
}

.qty {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--line);
    border-radius: 99px;
    overflow: hidden
}

.qty button {
    width: 44px;
    height: 48px;
    border: none;
    background: none;
    font-size: 18px;
    font-weight: 700;
    transition: background .15s
}

.qty button:hover {
    background: var(--mag-pale)
}

.qty span {
    width: 48px;
    text-align: center;
    font-family: var(--mono);
    font-weight: 600
}

.pd-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.stock {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--green);
    margin-top: 18px;
    font-weight: 600
}

.stock::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(46, 158, 91, .18)
}

.origin-note {
    margin-top: 24px;
    background: var(--cream);
    border: 1px dashed var(--line);
    border-radius: var(--r);
    padding: 18px 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.origin-note .ic {
    font-size: 22px
}

.origin-note p {
    font-size: 13.5px;
    color: var(--muted)
}

.origin-note b {
    color: var(--ink)
}

@media(max-width:880px) {
    .pd {
        grid-template-columns: 1fr
    }

    .pd-g .main {
        height: 320px;
        touch-action: pan-y
    }

    .pd-thumbs {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding: 2px 2px 10px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: thin
    }

    .pd-thumbs .th {
        flex: 0 0 100px;
        height: 76px;
        scroll-snap-align: start
    }
}

/* about */
.about-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    color: #fff;
    overflow: hidden
}

.about-hero .bg {
    position: absolute;
    inset: 0
}

.about-hero .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-hero .bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43, 14, 38, .5) 0%, rgba(43, 14, 38, .3) 35%, rgba(43, 14, 38, .88) 100%)
}

.about-hero .inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: clamp(36px, 6vh, 72px)
}

.about-hero h1 {
    font-size: clamp(38px, 5.6vw, 80px);
    font-weight: 600;
    max-width: 16ch;
    line-height: 1
}

.about-hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: #F3A8E6
}

.story {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(36px, 5vw, 90px);
    align-items: start
}

.story .sticky {
    position: sticky;
    top: 110px
}

.story-copy p {
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.75;
    color: var(--ink);
    margin-bottom: 26px
}

.story-copy p.muted {
    color: var(--muted)
}

.story-copy .drop::first-letter {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 3.4em;
    float: left;
    line-height: .86;
    margin: 4px 12px 0 0;
    color: var(--mag-deep)
}

.cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 30px 0
}

.cloud span {
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .14em;
    border: 1px solid var(--line);
    border-radius: 99px;
    padding: 9px 16px;
    color: var(--plum);
    transition: all .2s;
    background: #fff
}

.cloud span:hover {
    border-color: var(--mag);
    color: var(--mag-deep);
    transform: translateY(-2px)
}

.cloud span.hero-sku {
    background: var(--mag);
    border-color: var(--mag);
    color: #fff
}

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

    .story .sticky {
        position: static
    }
}

.timeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto
}

.timeline::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 8px;
    bottom: 8px;
    width: 1.5px;
    background: var(--line)
}

.tl {
    position: relative;
    padding: 0 0 44px 70px
}

.tl:last-child {
    padding-bottom: 0
}

.tl .yr {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: #F3A8E6;
    display: grid;
    place-items: center;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    border: 4px solid var(--ivory);
    box-shadow: 0 0 0 1.5px var(--line)
}

.tl h3 {
    font-size: 21px;
    margin-bottom: 6px
}

.tl h3 span {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .12em;
    color: var(--mag-deep);
    font-weight: 600;
    margin-right: 10px
}

.tl p {
    color: var(--muted);
    font-size: 15px;
    max-width: 540px
}

.stat-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px
}

.stat {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 28px;
    text-align: center
}

.stat b {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 600;
    display: block
}

.stat span {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted)
}

@media(max-width:760px) {
    .stat-band {
        grid-template-columns: 1fr 1fr
    }
}

/* contact */
.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 32px;
    padding-top: 48px;
    align-items: start
}

.info-card {
    background: var(--ink);
    color: #fff;
    border-radius: var(--r);
    padding: clamp(26px, 3vw, 40px)
}

.info-card h3 {
    font-size: 23px;
    margin-bottom: 22px
}

.irow {
    display: flex;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    align-items: flex-start
}

.irow:last-of-type {
    border: none
}

.irow .ic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(216, 50, 190, .2);
    display: grid;
    place-items: center;
    font-size: 16px;
    flex-shrink: 0
}

.irow b {
    display: block;
    font-size: 10px;
    color: #F3A8E6;
    font-family: var(--mono);
    font-weight: 600;
    letter-spacing: .16em;
    margin-bottom: 3px
}

.irow span {
    font-size: 14.5px;
    color: #EBD3E5
}

.hours {
    margin-top: 18px;
    background: rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 18px 20px
}

.hours .hr {
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 12px;
    padding: 5px 0;
    color: #C99CBD
}

.hours .hr b {
    color: #fff
}

.reach-cards {
    display: grid;
    gap: 12px
}

.reach-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 18px 20px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s
}

.reach-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-lift);
    border-color: var(--mag-pale)
}

.reach-card .rc-ic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--mag-pale);
    display: grid;
    place-items: center;
    font-size: 20px;
    flex-shrink: 0
}

.reach-card .rc-k {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--plum-soft);
    font-weight: 600;
    display: block
}

.reach-card .rc-v {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin: 3px 0 2px;
    letter-spacing: -.01em
}

.reach-card small {
    font-size: 12.5px;
    color: var(--muted)
}

.reach-card .rc-ar {
    margin-left: auto;
    font-family: var(--mono);
    color: var(--mag-deep);
    font-size: 16px;
    transition: transform .25s var(--ease)
}

.reach-card:hover .rc-ar {
    transform: translateX(5px)
}

.map-frame {
    width: 100%;
    height: 340px;
    border: none;
    border-radius: var(--r);
    box-shadow: var(--sh);
    filter: grayscale(.3) contrast(1.04)
}

@media(max-width:880px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

/* faq / zones / ticket / cat-grid */
.faq {
    max-width: 760px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--line)
}

.faq-item summary {
    padding: 24px 6px;
    font-weight: 600;
    font-size: 18px;
    font-family: var(--serif);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    transition: color .15s
}

.faq-item summary:hover {
    color: var(--mag-deep)
}

.faq-item summary::after {
    content: "+";
    font-family: var(--mono);
    font-size: 21px;
    color: var(--mag);
    transition: transform .25s var(--ease);
    flex-shrink: 0
}

.faq-item[open] summary::after {
    transform: rotate(45deg)
}

.faq-item .fb {
    padding: 0 6px 24px;
    color: var(--muted);
    font-size: 15px;
    max-width: 620px
}

.zone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.zone {
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 30px;
    background: #fff;
    transition: all .25s var(--ease)
}

.zone:hover {
    box-shadow: var(--sh-lift);
    transform: translateY(-3px);
    border-color: var(--mag-pale)
}

.zone .zl {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--mag-deep);
    font-weight: 600
}

.zone h3 {
    font-size: 21px;
    margin: 10px 0 7px
}

.zone p {
    font-size: 14px;
    color: var(--muted)
}

@media(max-width:760px) {
    .zone-grid {
        grid-template-columns: 1fr
    }
}

.ticket {
    background: var(--cream);
    border: 1px dashed var(--line);
    border-radius: var(--r);
    padding: 22px 26px
}

.ticket .tk {
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 12px;
    padding: 7px 0;
    border-bottom: 1px solid var(--line)
}

.ticket .tk:last-child {
    border: none
}

.ticket .tk span:first-child {
    color: var(--muted)
}

.ticket .tk span:last-child {
    font-weight: 600
}

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

@media(max-width:1020px) {
    .cat-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:640px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.cat-grid .tile {
    height: 220px
}

.brand-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.brand-tile {
    border: 1px solid var(--line);
    border-radius: var(--r);
    height: 84px;
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 17px;
    color: var(--muted);
    transition: all .2s;
    background: #fff
}

.brand-tile:hover {
    color: var(--ink);
    border-color: var(--mag-pale);
    box-shadow: var(--sh)
}

/* footer */
footer {
    background: var(--ink);
    color: #B98AAE;
    margin-top: var(--sec);
    padding-top: clamp(60px, 7vw, 96px)
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: clamp(28px, 4vw, 60px);
    padding-bottom: 56px
}

.foot-grid h4 {
    color: #fff;
    font-size: 10.5px;
    font-family: var(--mono);
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px
}

.foot-grid ul {
    list-style: none;
    display: grid;
    gap: 11px;
    font-size: 14.5px
}

.foot-grid a:hover {
    color: #F3A8E6
}

.foot-grid p {
    font-size: 14.5px;
    max-width: 300px;
    margin-top: 16px;
    line-height: 1.7
}

.flogo {
    display: flex;
    align-items: center;
    gap: 12px
}

.flogo .mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--mag);
    display: grid;
    place-items: center
}

.flogo .mark span {
    font-family: var(--serif);
    font-weight: 700;
    color: #fff;
    font-size: 16px
}

.flogo b {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    display: block;
    line-height: 1.05
}

.flogo small {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #B98AAE
}

.foot-mark {
    overflow: hidden;
    line-height: 1;
    user-select: none;
    padding-bottom: 8px
}

.foot-mark b {
    display: block;
    font-family: var(--serif);
    font-weight: 600;
    font-style: italic;
    font-size: clamp(48px, 11vw, 168px);
    letter-spacing: -.03em;
    color: rgba(216, 50, 190, .16);
    white-space: nowrap;
    line-height: 1.05
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
    font-family: var(--mono);
    letter-spacing: .08em
}

@media(max-width:880px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr
    }

    .foot-bottom {
        flex-direction: column
    }
}

/* ===== hero refinements ===== */
.hero .badge-ring {
    position: absolute;
    top: 118px;
    right: calc(var(--pad) + 6px);
    z-index: 3;
    width: 112px;
    height: 112px;
    animation: ringspin 22s linear infinite;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .35))
}

@keyframes ringspin {
    to {
        transform: rotate(360deg)
    }
}

.hero .badge-ring svg {
    width: 100%;
    height: 100%;
    overflow: visible
}

.hero .badge-ring text {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .32em;
    fill: #fff
}

.hero .badge-ring .c {
    fill: none;
    stroke: rgba(255, 255, 255, .6);
    stroke-dasharray: 2 5
}

.hero-deal {
    position: absolute;
    right: var(--pad);
    bottom: clamp(36px, 7vh, 72px);
    z-index: 3;
    background: rgba(255, 251, 254, .94);
    backdrop-filter: blur(14px);
    border-radius: var(--r);
    padding: 14px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .5);
    max-width: 330px;
    transform: rotate(1.2deg);
    transition: transform .35s var(--ease)
}

.hero-deal:hover {
    transform: rotate(0)
}

.hero-deal .th {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0
}

.hero-deal .th img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-deal .dk {
    font-family: var(--mono);
    font-size: 8.5px;
    letter-spacing: .18em;
    color: var(--mag-deep);
    font-weight: 600;
    display: block;
    margin-bottom: 3px
}

.hero-deal .nm {
    font-weight: 600;
    font-size: 13.5px;
    line-height: 1.3;
    color: var(--ink)
}

.hero-deal .pr {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
    margin-top: 3px
}

.hero-deal .pr s {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 11px;
    color: var(--muted);
    margin-left: 6px
}

.hero-deal .add {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--mag);
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all .2s;
    display: grid;
    place-items: center
}

.hero-deal .add:hover {
    background: var(--mag-deep);
    transform: scale(1.1)
}

@keyframes cue {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    70% {
        transform: translateY(14px);
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@media(max-width:900px) {

    .hero-deal,
    .hero .badge-ring {
        display: none
    }
}

/* ===== smooth animations ===== */
@keyframes heroUp {
    from {
        opacity: 0;
        transform: translateY(34px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes dealIn {
    from {
        opacity: 0;
        transform: translateY(26px) rotate(5deg)
    }

    to {
        opacity: 1;
        transform: rotate(1.2deg)
    }
}

@keyframes softIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.hero .since {
    animation: heroUp .8s var(--ease) .15s backwards
}

.hero h1 {
    animation: heroUp .95s var(--ease) .3s backwards
}

.hero .lede {
    animation: heroUp .9s var(--ease) .5s backwards
}

.hero .cta-row {
    animation: heroUp .9s var(--ease) .65s backwards
}

.hero-deal {
    animation: dealIn .9s var(--ease) 1.05s backwards
}

.hero .badge-ring {
    animation: ringspin 22s linear infinite, softIn 1.2s var(--ease) 1.2s backwards
}

.sku-strip {
    animation: softIn .8s var(--ease) .9s backwards
}

/* staggered grid reveals (delays set per-child by JS) */
.rv-stagger>* {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.rv-stagger.in>* {
    opacity: 1;
    transform: none
}

.rv-stagger.in .qcard:nth-child(2) {
    transform: translateY(26px) rotate(.8deg)
}

.rv-stagger.in .qcard:nth-child(1) {
    transform: rotate(-1.4deg)
}

.rv-stagger.in .qcard:nth-child(3) {
    transform: rotate(1.2deg)
}

.rv-stagger.in .qcard:hover {
    transform: translateY(-6px) rotate(0)
}

/* cinematic image settle on reveal */
.wide-photo.rv img,
.gc-img.rv img,
.retail-img.rv img {
    transform: scale(1.12);
    transition: transform 1.6s var(--ease)
}

.wide-photo.rv.in img,
.gc-img.rv.in img,
.retail-img.rv.in img {
    transform: scale(1)
}

/* FAQ open */
@keyframes faqIn {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.faq-item[open] .fb {
    animation: faqIn .45s var(--ease)
}

/* cart item entrance */
@keyframes ciIn {
    from {
        opacity: 0;
        transform: translateX(24px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.ci {
    animation: ciIn .4s var(--ease)
}

/* page swap: slightly longer, softer */
@keyframes pi2 {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.page.active {
    animation: pi2 .55s var(--ease)
}

@media (prefers-reduced-motion:reduce) {
    .rv-stagger>* {
        opacity: 1;
        transform: none;
        transition: none
    }

    .hero .bg img {
        transform: none
    }
}

#toast {
    position: fixed;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--ink);
    color: #fff;
    padding: 13px 16px 13px 22px;
    border-radius: 99px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: all .35s var(--ease);
    z-index: 400;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, .4);
    display: flex;
    gap: 14px;
    align-items: center
}

#toast.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%)
}

#toast .tmsg {
    display: flex;
    gap: 9px;
    align-items: center
}

#toast .tmsg::before {
    content: "✓";
    color: var(--mag-faint);
    font-weight: 700
}

#toast.warn .tmsg::before {
    content: "🗑";
    font-size: 13px
}

#toast .tact {
    background: var(--mag);
    color: #fff;
    border: none;
    border-radius: 99px;
    padding: 7px 15px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    font-weight: 600;
    transition: background .18s
}

#toast .tact:hover {
    background: var(--mag-soft)
}

#toast .tact[hidden] {
    display: none
}