/* ====================================================
   Marv Fan Shop — EDITORIAL DESIGN SYSTEM
   Designed to feel human. Not a template.
   ==================================================== */

:root {
    --ink: #F2EEE8;
    --ink-dim: #9B9B8A;
    --ink-mute: #5C5C50;
    --paper: #080810;
    --paper-2: #0C0C18;
    --paper-3: #111122;
    --paper-4: #18182A;
    --red: #CC2936;
    --red-hi: #FF3B4A;
    --red-dim: rgba(204, 41, 54, 0.15);
    --gold: #D4A017;
    --blue: #2563EB;
    --green: #16A34A;
    --rule: rgba(242, 238, 232, 0.08);
    --rule-hi: rgba(242, 238, 232, 0.15);
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --t: 0.25s var(--ease);
    --ff-disp: 'Bebas Neue', Impact, sans-serif;
    --ff-serif: 'Playfair Display', Georgia, serif;
    --ff-body: 'Inter', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ff-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--t);
}

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

input,
textarea {
    font-family: inherit;
}

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

::-webkit-scrollbar {
    width: 6px;
    background: var(--paper);
}

::-webkit-scrollbar-thumb {
    background: var(--paper-4);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

/* ====================================================
   PRELOADER
   ==================================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: opacity .6s ease, visibility .6s ease;
}

.preloader.out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pl-word {
    display: flex;
    gap: 6px;
}

.pl-word span {
    font-family: var(--ff-disp);
    font-size: 3.5rem;
    letter-spacing: 8px;
    color: var(--ink);
    opacity: 0;
    transform: translateY(20px);
    animation: plLetter .6s var(--ease) forwards;
}

.pl-word span:nth-child(1) {
    animation-delay: .0s
}

.pl-word span:nth-child(2) {
    animation-delay: .06s
}

.pl-word span:nth-child(3) {
    animation-delay: .12s
}

.pl-word span:nth-child(4) {
    animation-delay: .18s
}

.pl-word span:nth-child(5) {
    animation-delay: .24s
}

.pl-word span:nth-child(6) {
    animation-delay: .30s
}

@keyframes plLetter {
    to {
        opacity: 1;
        transform: none
    }
}

.pl-bar {
    width: 180px;
    height: 2px;
    background: var(--rule-hi);
}

.pl-fill {
    width: 0;
    height: 100%;
    background: var(--red);
    animation: plFill 1.4s var(--ease) .4s forwards;
}

@keyframes plFill {
    to {
        width: 100%
    }
}

/* ====================================================
   TOPBAR
   ==================================================== */
.topbar {
    position: relative;
    z-index: 100;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 48px;
    font-size: .8rem;
    gap: 8px;
    text-align: center;
}

.topbar button {
    position: absolute;
    right: 16px;
    font-size: 1rem;
    opacity: .7;
}

.topbar button:hover {
    opacity: 1;
}

.topbar.gone {
    display: none;
}

/* ====================================================
   HEADER
   ==================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(8, 8, 16, .97);
    border-bottom: 1px solid var(--rule);
    transition: var(--t);
}

/* backdrop-filter only on desktop — on mobile it breaks position:fixed children */
@media (min-width: 769px) {
    .site-header {
        backdrop-filter: blur(16px) saturate(1.4);
        background: rgba(8, 8, 16, .92);
    }
}

/* Inner pages use solid header (no sticky top offset from announcement bar) */
.header--solid {
    background: rgba(8, 8, 16, .98) !important;
    border-bottom: 1px solid var(--rule);
}

.site-header__wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 24px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    z-index: 10;
}

.site-logo__mark {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-disp);
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0;
}

.site-logo__text strong {
    display: block;
    font-family: var(--ff-disp);
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--ink);
    line-height: 1;
}

.site-logo__text em {
    display: block;
    font-style: normal;
    font-size: .65rem;
    letter-spacing: 2px;
    color: var(--ink-mute);
    text-transform: uppercase;
    margin-top: 1px;
}

.main-nav {
    display: flex;
    gap: 4px;
}

.main-nav__link {
    padding: 7px 14px;
    border-radius: 4px;
    font-size: .83rem;
    font-weight: 500;
    color: var(--ink-dim);
    letter-spacing: .3px;
}

.main-nav__link:hover,
.main-nav__link.active {
    color: var(--ink);
    background: var(--rule);
}

.main-nav__link.active {
    color: var(--red-hi);
}

.site-header__right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-btn,
.bag-btn {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--ink-dim);
}

.icon-btn:hover,
.bag-btn:hover {
    background: var(--rule);
    color: var(--ink);
}

.bag-btn__num {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 16px;
    height: 16px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    font-size: .6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: var(--t);
}

.bag-btn__num.show {
    opacity: 1;
    transform: scale(1);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    z-index: 1100;
    position: relative;
    /* above the nav overlay */
    padding: 8px 0;
    margin: -8px 0;
    /* larger tap target */
}

.burger span {
    width: 100%;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--t);
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Search drop */
.search-drop {
    border-top: 1px solid var(--rule);
    padding: 20px 28px;
    max-width: 1320px;
    margin: 0 auto;
    display: none;
}

.search-drop.on {
    display: block;
}

.search-drop__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--rule-hi);
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.search-drop__inner input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--ink);
    font-size: 1.1rem;
}

.search-drop__inner input::placeholder {
    color: var(--ink-mute);
}

kbd {
    padding: 3px 8px;
    border: 1px solid var(--rule-hi);
    border-radius: 3px;
    font-size: .7rem;
    color: var(--ink-mute);
}

.search-drop__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.stag {
    padding: 5px 12px;
    border: 1px solid var(--rule);
    border-radius: 20px;
    font-size: .75rem;
    color: var(--ink-dim);
    cursor: pointer;
}

.stag:hover {
    border-color: var(--red);
    color: var(--red-hi);
}

.search-drop__results {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-res-item {
    display: block;
    padding: 8px 10px;
    border: 1px solid var(--rule);
    border-radius: 4px;
    font-size: .83rem;
    color: var(--ink-dim);
    background: var(--paper-2);
}

.search-res-item:hover {
    border-color: var(--red);
    color: var(--ink);
}

/* ====================================================
   SHARED UTILITIES
   ==================================================== */
.section-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.section-kicker span {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--ink-mute);
    white-space: nowrap;
}

.kicker-line {
    flex: 1;
    height: 1px;
    background: var(--rule);
}

.section-kicker+* {
    margin-top: 0;
}

.tag-chip {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 3px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: var(--red-dim);
    color: var(--red-hi);
}

.tag-chip--blue {
    background: rgba(37, 99, 235, .15);
    color: #60A5FA;
}

.tag-chip--gold {
    background: rgba(212, 160, 23, .15);
    color: var(--gold);
}

.tag-chip--red {
    background: var(--red);
    color: #fff;
}

.ed-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.ed-meta time,
.ed-meta span {
    font-size: .75rem;
    color: var(--ink-mute);
}

.ed-meta .tag-chip {
    font-size: .65rem;
}

.ed-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.ed-author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.ed-author strong {
    font-size: .78rem;
}

.ed-author span {
    font-size: .73rem;
    color: var(--ink-mute);
    margin-left: auto;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.dot--live {
    background: var(--red);
    box-shadow: 0 0 0 3px rgba(204, 41, 54, .2);
    animation: blink 2s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(204, 41, 54, .2)
    }

    50% {
        box-shadow: 0 0 0 6px rgba(204, 41, 54, .05)
    }
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22C55E;
    display: inline-block;
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 0;
}

.hero__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--ff-disp);
    font-size: clamp(10rem, 22vw, 22rem);
    color: rgba(255, 255, 255, .02);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 20px;
    line-height: 1;
    user-select: none;
}

.hero__rule-top {
    height: 3px;
    background: var(--red);
}

.hero__main {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: 78vh;
    border-bottom: 1px solid var(--rule);
}

.hero__left-col {
    padding: 56px 48px 56px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--rule);
    position: relative;
}

.hero__issue {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink-mute);
    margin-bottom: 28px;
}

.hero__headline {
    font-family: var(--ff-serif);
    font-style: normal;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero__headline em {
    font-style: italic;
    color: var(--red-hi);
}

.hero__headline-strike {
    position: relative;
    display: inline-block;
}

.hero__headline-strike::after {
    content: '';
    position: absolute;
    left: 0;
    top: 52%;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: rotate(-2deg);
}

.hero__deck {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-dim);
    max-width: 420px;
    margin-bottom: 32px;
}

.hero__byline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero__byline img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.hero__byline div strong {
    display: block;
    font-size: .83rem;
}

.hero__byline div span {
    font-size: .73rem;
    color: var(--ink-mute);
}

.btn-pill {
    margin-left: auto;
    padding: 9px 20px;
    background: var(--red);
    color: #fff;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 600;
    transition: var(--t);
    white-space: nowrap;
}

.btn-pill:hover {
    background: var(--red-hi);
}

.hero__right-col {
    position: relative;
    overflow: hidden;
}

.hero__cover {
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.hero__cover:hover img {
    transform: scale(1.03);
}

.hero__cover-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(transparent, rgba(8, 8, 16, .85));
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero__cover-caption p {
    font-size: .83rem;
    color: rgba(255, 255, 255, .75);
}

.hero__sub-row {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.subpost {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    border-right: 1px solid var(--rule);
    transition: var(--t);
}

.subpost:last-child {
    border-right: none;
}

.subpost:hover {
    background: rgba(255, 255, 255, .02);
}

.subpost strong {
    font-size: .88rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.subpost em {
    font-style: normal;
    font-size: .72rem;
    color: var(--ink-mute);
}

/* ====================================================
   TICKER
   ==================================================== */
.ticker-wrap {
    overflow: hidden;
    background: var(--paper-2);
    border-bottom: 1px solid var(--rule);
    padding: 12px 0;
}

.ticker-track {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    animation: tick 28s linear infinite;
    font-family: var(--ff-disp);
    font-size: .95rem;
    letter-spacing: 3px;
    color: var(--ink-mute);
}

.ticker-track .bull {
    color: var(--red);
}

@keyframes tick {
    from {
        transform: translateX(0)
    }

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

/* ====================================================
   EDITORIAL
   ==================================================== */
.editorial {
    max-width: 1320px;
    margin: 0 auto;
    padding: 56px 28px;
    border-bottom: 1px solid var(--rule);
}

.ed-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
}

.ed-feature__img {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 18px;
    position: relative;
}

.ed-feature__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

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

.img-label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(8, 8, 16, .7);
    backdrop-filter: blur(6px);
    border-radius: 3px;
    font-size: .7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
}

.ed-feature h2 {
    font-family: var(--ff-serif);
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.ed-feature h2 a:hover {
    color: var(--red-hi);
}

.ed-feature p {
    font-size: .9rem;
    color: var(--ink-dim);
    line-height: 1.65;
}

.ed-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ed-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
}

.ed-card:first-child {
    border-top: 1px solid var(--rule);
}

.ed-card__img {
    display: block;
    border-radius: 3px;
    overflow: hidden;
    aspect-ratio: 1;
}

.ed-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.ed-card:hover .ed-card__img img {
    transform: scale(1.07);
}

.ed-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ed-card h3 {
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.35;
}

.ed-card h3 a:hover {
    color: var(--red-hi);
}

/* ====================================================
   BLOG LIST
   ==================================================== */
.blog-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 56px 28px;
    border-bottom: 1px solid var(--rule);
}

.blog-section__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.blog-filters {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.filt {
    padding: 6px 16px;
    border-radius: 3px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--ink-mute);
    border: 1px solid transparent;
}

.filt:hover {
    color: var(--ink);
    background: var(--rule);
}

.filt.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bpost {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--rule);
    transition: var(--t);
}

.bpost:first-child {
    border-top: 1px solid var(--rule);
}

.bpost:hover {
    background: rgba(255, 255, 255, .015);
    margin: 0 -28px;
    padding: 28px;
}

.bpost__img {
    display: block;
    aspect-ratio: 16/10;
    border-radius: 3px;
    overflow: hidden;
}

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

.bpost:hover .bpost__img img {
    transform: scale(1.06);
}

.bpost__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bpost h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.bpost h3 a:hover {
    color: var(--red-hi);
}

.bpost p {
    font-size: .88rem;
    color: var(--ink-dim);
    line-height: 1.6;
}

.bpost--hidden {
    display: none;
}

.blog-more {
    padding: 32px 0;
    text-align: center;
}

.btn-more {
    padding: 12px 36px;
    border: 1px solid var(--rule-hi);
    border-radius: 4px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--ink-dim);
    transition: var(--t);
}

.btn-more:hover {
    border-color: var(--ink);
    color: var(--ink);
}

/* ====================================================
   PHASES
   ==================================================== */
.phases {
    padding: 56px 0;
    border-bottom: 1px solid var(--rule);
    background: var(--paper-2);
}

.phases .section-kicker {
    max-width: 1320px;
    margin: 0 auto 28px;
    padding: 0 28px;
}

.phases__scroll {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 28px;
    max-width: 1320px;
    margin: 0 auto;
    scrollbar-width: none;
}

.phases__scroll::-webkit-scrollbar {
    display: none;
}

.phase-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    border-right: 1px solid var(--rule);
    padding: 24px 24px 24px 0;
    margin-right: 24px;
    transition: var(--t);
}

.phase-card:last-child {
    border-right: none;
    margin-right: 0;
}

.phase-num {
    font-family: var(--ff-disp);
    font-size: 4rem;
    line-height: 1;
    color: var(--rule-hi);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.phase-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink-mute);
}

.phase-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 4px 0 2px;
}

.phase-body>p {
    font-size: .78rem;
    color: var(--ink-mute);
    margin-bottom: 12px;
}

.phase-body ul {
    list-style: none;
    padding: 0;
}

.phase-body li {
    font-size: .8rem;
    color: var(--ink-dim);
    padding: 3px 0;
    border-bottom: 1px solid var(--rule);
}

.phase-body li:last-child {
    border-bottom: none;
}

.phase-card--current .phase-num {
    color: rgba(204, 41, 54, .4);
}

.phase-card--upcoming {
    background: rgba(204, 41, 54, .04);
    border-radius: 4px;
    border: 1px solid rgba(204, 41, 54, .2);
    padding: 24px;
    margin: 0;
    border-right: 1px solid rgba(204, 41, 54, .2);
}

.phase-card--upcoming .phase-num {
    color: rgba(204, 41, 54, .7);
}

.phase-card--upcoming h3 {
    color: var(--red-hi);
}

/* ====================================================
   SHOP
   ==================================================== */
.shop {
    max-width: 1320px;
    margin: 0 auto;
    padding: 56px 28px;
    border-bottom: 1px solid var(--rule);
}

.shop__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.shop-title {
    font-family: var(--ff-disp);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 2px;
    line-height: 1.1;
}

.shop-title span {
    color: var(--red-hi);
}

.shop-cats {
    display: flex;
    gap: 4px;
}

.sc {
    padding: 7px 16px;
    border-radius: 3px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--ink-mute);
    border: 1px solid transparent;
}

.sc:hover {
    color: var(--ink);
    background: var(--rule);
}

.sc.active {
    background: var(--paper-4);
    color: var(--ink);
    border-color: var(--rule-hi);
}

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

.scard {
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--t);
    display: flex;
    flex-direction: column;
}

.scard:hover {
    border-color: var(--rule-hi);
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(0, 0, 0, .45);
}

.scard.gone {
    display: none;
}

/* No more scard--tall — all cards uniform height */

.scard__img {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--paper-3);
    flex-shrink: 0;
}

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

.scard:hover .scard__img img {
    transform: scale(1.07);
}

.scard__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 9px;
    background: var(--red);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 2;
}

.scard__badge--new {
    background: var(--green);
}

.scard__badge--sale {
    background: var(--gold);
    color: #000;
}

.scard__hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 14px 14px;
    background: linear-gradient(transparent, rgba(8, 8, 16, .8));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px);
    transition: var(--t);
}

.scard:hover .scard__hover {
    opacity: 1;
    transform: none;
}

.scard__hover button {
    width: 100%;
    padding: 10px;
    background: #fff;
    color: #000;
    font-size: .8rem;
    font-weight: 700;
    border-radius: 3px;
    transition: var(--t);
}

.scard__hover button:hover {
    background: var(--red);
    color: #fff;
}

.scard__info {
    padding: 14px;
}

.scard__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.scard__top h4 {
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.3;
}

.scard__top h4 a:hover {
    color: var(--red-hi);
}

.scard__wish {
    font-size: 1.1rem;
    color: var(--ink-mute);
    flex-shrink: 0;
    transition: var(--t);
}

.scard__wish:hover {
    color: var(--red);
}

.scard__bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.scard__price {
    font-size: .95rem;
    font-weight: 700;
}

.scard__old {
    font-size: .78rem;
    color: var(--ink-mute);
    text-decoration: line-through;
}

.scard__rating {
    font-size: .72rem;
    color: var(--ink-mute);
    margin-left: auto;
}

.scard__rating {
    color: var(--gold);
}

.scard__rating em {
    font-style: normal;
    color: var(--ink-mute);
}

.shop-trust {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.trust-pill {
    padding: 8px 18px;
    border: 1px solid var(--rule);
    border-radius: 20px;
    font-size: .75rem;
    color: var(--ink-dim);
}

/* ====================================================
   NEWSLETTER
   ==================================================== */
.nl-section {
    background: var(--paper-2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.nl-section__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-left: 1px solid var(--rule);
}

.nl-left {
    padding: 64px 48px 64px 28px;
    border-right: 1px solid var(--rule);
}

.nl-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--ink-mute);
    margin-bottom: 16px;
}

.nl-left h2 {
    font-family: var(--ff-serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
}

.nl-right {
    padding: 64px 28px 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.nl-right p {
    font-size: .95rem;
    color: var(--ink-dim);
    line-height: 1.7;
    max-width: 440px;
}

.nl-form {
    display: flex;
    gap: 8px;
}

.nl-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--paper-3);
    border: 1px solid var(--rule-hi);
    border-radius: 4px;
    color: var(--ink);
    font-size: .9rem;
}

.nl-form input:focus {
    outline: none;
    border-color: var(--red);
}

.nl-form button {
    padding: 12px 24px;
    background: var(--red);
    color: #fff;
    border-radius: 4px;
    font-size: .85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--t);
}

.nl-form button:hover {
    background: var(--red-hi);
}

.nl-right small {
    font-size: .72rem;
    color: var(--ink-mute);
}

.nl-right small a {
    color: var(--ink-dim);
    text-decoration: underline;
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
    background: var(--paper-2);
    border-top: 1px solid var(--rule);
    max-width: 100%;
}

.site-footer__top {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--rule);
}

.site-logo--footer .site-logo__text strong {
    color: var(--ink);
}

.site-footer__top>p {
    font-size: .82rem;
    color: var(--ink-mute);
    max-width: 420px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid var(--rule);
    color: var(--ink-mute);
    transition: var(--t);
}

.footer-social a:hover {
    border-color: var(--red);
    color: var(--red-hi);
}

.site-footer__mid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 36px 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    border-bottom: 1px solid var(--rule);
}

.footer-col h5 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink-mute);
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: .82rem;
    color: var(--ink-dim);
    padding: 4px 0;
}

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

.site-footer__bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer__bottom p {
    font-size: .75rem;
    color: var(--ink-mute);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: .75rem;
    color: var(--ink-mute);
}

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

/* ====================================================
   BAG DRAWER
   ==================================================== */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(3px);
    z-index: 1800;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.drawer-overlay.on {
    opacity: 1;
    pointer-events: all;
}

.bag-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 92vw;
    height: 100dvh;
    background: var(--paper-2);
    border-left: 1px solid var(--rule);
    z-index: 1900;
    display: flex;
    flex-direction: column;
    transition: right .35s var(--ease);
}

.bag-drawer.on {
    right: 0;
}

.bag-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--rule);
}

.bag-drawer__head h3 {
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .5px;
}

.bag-drawer__head button {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--ink-dim);
}

.bag-drawer__head button:hover {
    background: var(--rule);
    color: var(--ink);
}

.bag-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.bag-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 10px;
    color: var(--ink-mute);
    text-align: center;
}

.bag-empty a {
    color: var(--red-hi);
    font-size: .85rem;
}

.bag-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
}

.bag-item__name {
    font-size: .85rem;
    font-weight: 600;
    flex: 1;
}

.bag-item__price {
    font-size: .82rem;
    color: var(--red-hi);
    font-weight: 600;
}

.bag-item__rm {
    color: var(--ink-mute);
    font-size: .8rem;
    padding: 4px;
}

.bag-item__rm:hover {
    color: var(--red);
}

.bag-drawer__foot {
    padding: 18px 20px;
    border-top: 1px solid var(--rule);
}

.bag-totals {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    background: var(--red);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--t);
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-btn:hover {
    background: var(--red-hi);
    transform: translateY(-1px);
}

.checkout-btn::before {
    content: '🔒';
    font-size: .85rem;
}

.bag-drawer__foot p {
    font-size: .72rem;
    color: var(--ink-mute);
    text-align: center;
}

/* ====================================================
   CHAT
   ==================================================== */
.chat {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1500;
}

.chat__btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(204, 41, 54, .35);
    position: relative;
    transition: var(--t);
}

.chat__btn:hover {
    background: var(--red-hi);
    transform: scale(1.05);
}

.chat__ico-off {
    display: none;
}

.chat.on .chat__ico-on {
    display: none;
}

.chat.on .chat__ico-off {
    display: block;
}

.chat__dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--green);
    border-radius: 50%;
    border: 2px solid var(--paper);
    font-size: .6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat.on .chat__dot {
    display: none;
}

.chat__win {
    position: absolute;
    bottom: 62px;
    right: 0;
    width: 340px;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(.96);
    transition: var(--t);
    pointer-events: none;
}

.chat.on .chat__win {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: all;
}

.chat__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: var(--red);
}

.chat__agent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    color: #fff;
}

.chat__agent-info strong {
    display: block;
    font-size: .8rem;
    color: #fff;
}

.chat__agent-info span {
    font-size: .68rem;
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat__x {
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
}

.chat__x:hover {
    color: #fff;
}

.chat__msgs {
    height: 260px;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cmsg {
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.cmsg--you {
    flex-direction: row-reverse;
}

.cmsg__av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--paper-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .55rem;
    font-weight: 700;
    color: var(--ink-dim);
}

.cmsg--you .cmsg__av {
    background: var(--red);
    color: #fff;
}

.cmsg__bub {
    padding: 9px 12px;
    border-radius: 10px 10px 10px 2px;
    background: var(--paper-3);
    font-size: .82rem;
    line-height: 1.5;
    max-width: 85%;
}

.cmsg--you .cmsg__bub {
    background: var(--red);
    color: #fff;
    border-radius: 10px 10px 2px 10px;
}

.cmsg__bub p {
    margin-bottom: 4px;
}

.cmsg__bub span {
    font-size: .62rem;
    color: var(--ink-mute);
}

.cmsg--you .cmsg__bub span {
    color: rgba(255, 255, 255, .6);
}

.chat__quick {
    padding: 0 12px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.qr {
    padding: 5px 10px;
    background: var(--red-dim);
    border: 1px solid rgba(204, 41, 54, .25);
    border-radius: 20px;
    font-size: .72rem;
    color: var(--red-hi);
    transition: var(--t);
}

.qr:hover {
    background: rgba(204, 41, 54, .25);
}

.chat__input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid var(--rule);
}

.chat__input-row input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--ink);
    font-size: .83rem;
}

.chat__input-row input::placeholder {
    color: var(--ink-mute);
}

.chat__input-row button {
    width: 32px;
    height: 32px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--t);
    flex-shrink: 0;
}

.chat__input-row button:hover {
    background: var(--red-hi);
}

/* ====================================================
   TOASTS
   ==================================================== */
.toast-wrap {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 2500;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: var(--paper-3);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--red);
    border-radius: 4px;
    min-width: 260px;
    max-width: 340px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    position: relative;
    animation: tIn .35s var(--ease);
}

.toast.out {
    animation: tOut .3s var(--ease) forwards;
}

@keyframes tIn {
    from {
        transform: translateX(-20px);
        opacity: 0
    }

    to {
        transform: none;
        opacity: 1
    }
}

@keyframes tOut {
    to {
        transform: translateX(-20px);
        opacity: 0
    }
}

.toast__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.toast__txt strong {
    display: block;
    font-size: .8rem;
    margin-bottom: 1px;
}

.toast__txt span {
    font-size: .73rem;
    color: var(--ink-mute);
}

.toast__x {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: .85rem;
    color: var(--ink-mute);
}

.toast__x:hover {
    color: var(--ink);
}

.toast__prog {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: var(--red);
    border-radius: 0 0 0 3px;
    animation: tProg 5s linear forwards;
    transform-origin: left;
}

@keyframes tProg {
    to {
        transform: scaleX(0)
    }
}

/* ====================================================
   COOKIE
   ==================================================== */
.cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    background: var(--paper-3);
    border-top: 1px solid var(--rule);
    padding: 16px 0;
    transform: translateY(100%);
    transition: transform .4s var(--ease);
}

.cookie.show {
    transform: none;
}

.cookie__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie__inner p {
    font-size: .82rem;
    color: var(--ink-dim);
    margin: 0;
}

.cookie__inner a {
    color: var(--red-hi);
    text-decoration: underline;
}

.cookie__btns {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie__btns button {
    padding: 8px 18px;
    border-radius: 3px;
    font-size: .78rem;
    font-weight: 600;
    border: 1px solid var(--rule);
    color: var(--ink-dim);
    transition: var(--t);
}

.cookie__btns button:hover {
    border-color: var(--rule-hi);
    color: var(--ink);
}

.cookie__accept {
    background: var(--red) !important;
    color: #fff !important;
    border-color: var(--red) !important;
}

/* ====================================================
   GO TOP
   ==================================================== */
.go-top {
    position: fixed;
    bottom: 84px;
    right: 28px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--rule);
    border-radius: 4px;
    background: var(--paper-3);
    color: var(--ink-dim);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: var(--t);
}

.go-top.show {
    opacity: 1;
    pointer-events: all;
    transform: none;
}

.go-top:hover {
    border-color: var(--red);
    color: var(--red-hi);
}

/* ====================================================
   ARTICLE PAGE
   ==================================================== */
.art-hero {
    position: relative;
    padding-top: 60px;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.art-hero__bg {
    position: absolute;
    inset: 0;
}

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

.art-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 8, 16, .3) 0%, rgba(8, 8, 16, .85) 70%, var(--paper) 100%);
}

.art-hero__inner {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px 48px;
    width: 100%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    color: var(--ink-mute);
    margin-bottom: 20px;
}

.breadcrumb a:hover {
    color: var(--red-hi);
}

.art-hero__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    font-size: .78rem;
    color: var(--ink-mute);
}

.art-hero__inner h1 {
    font-family: var(--ff-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 800px;
}

.art-hero__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.art-hero__author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.art-hero__author strong {
    display: block;
    font-size: .85rem;
}

.art-hero__author span {
    font-size: .75rem;
    color: var(--ink-mute);
}

.art-layout {
    display: grid;
    grid-template-columns: 56px 1fr 260px;
    gap: 36px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 28px 80px;
}

.share-col {
    position: sticky;
    top: 80px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.share-col span {
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-mute);
}

.share-a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rule);
    border-radius: 3px;
    color: var(--ink-dim);
    transition: var(--t);
}

.share-a:hover {
    border-color: var(--red);
    color: var(--red-hi);
}

.art-toc {
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 18px;
    margin-bottom: 28px;
}

.art-toc h4 {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-mute);
    margin-bottom: 12px;
}

.art-toc ol {
    padding-left: 18px;
}

.art-toc li {
    padding: 3px 0;
}

.art-toc a {
    font-size: .82rem;
    color: var(--ink-dim);
}

.art-toc a:hover {
    color: var(--red-hi);
}

.prose {
    max-width: 680px;
}

.prose h2 {
    font-family: var(--ff-serif);
    font-size: 1.55rem;
    font-weight: 900;
    margin: 36px 0 14px;
}

.prose h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 24px 0 10px;
}

.prose p {
    font-size: .97rem;
    color: var(--ink-dim);
    line-height: 1.82;
    margin-bottom: 16px;
}

.prose strong {
    color: var(--ink);
}

.prose ul {
    padding-left: 22px;
    margin-bottom: 16px;
}

.prose li {
    color: var(--ink-dim);
    padding: 4px 0;
    line-height: 1.6;
}

.prose blockquote {
    border-left: 3px solid var(--red);
    padding: 14px 20px;
    margin: 24px 0;
    background: rgba(204, 41, 54, .04);
    border-radius: 0 4px 4px 0;
}

.prose blockquote p {
    margin: 0 0 6px;
    font-style: italic;
    color: var(--ink);
}

.prose cite {
    font-size: .8rem;
    color: var(--ink-mute);
    font-style: normal;
}

.art-fig {
    margin: 28px 0;
}

.art-fig img {
    border-radius: 4px;
    width: 100%;
}

.art-fig figcaption {
    margin-top: 8px;
    font-size: .75rem;
    color: var(--ink-mute);
}

.art-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid var(--rule);
    margin-top: 28px;
}

.art-tags span {
    font-size: .75rem;
    color: var(--ink-mute);
    font-weight: 600;
}

.art-tags a {
    padding: 4px 10px;
    border: 1px solid var(--rule);
    border-radius: 20px;
    font-size: .73rem;
    color: var(--ink-dim);
}

.art-tags a:hover {
    border-color: var(--red);
    color: var(--red-hi);
}

.author-box {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 4px;
    margin: 28px 0;
}

.author-box img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-box h4 {
    font-size: .92rem;
    margin-bottom: 2px;
}

.author-box>div>span {
    font-size: .75rem;
    color: var(--red-hi);
}

.author-box p {
    font-size: .82rem;
    color: var(--ink-dim);
    line-height: 1.6;
    margin-top: 6px;
}

.pnav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0;
}

.pnav-a {
    display: block;
    padding: 18px;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 4px;
    transition: var(--t);
}

.pnav-a:hover {
    border-color: var(--rule-hi);
}

.pnav-a span {
    display: block;
    font-size: .72rem;
    color: var(--ink-mute);
    margin-bottom: 4px;
}

.pnav-a strong {
    font-size: .87rem;
    line-height: 1.3;
}

.pnav-a--next {
    text-align: right;
}

.comments h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.comments h3 em {
    font-style: normal;
    font-size: .8rem;
    color: var(--ink-mute);
}

.cform {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

.cform__ico {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--paper-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-mute);
}

.cform textarea {
    width: 100%;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 10px 12px;
    color: var(--ink);
    font-size: .87rem;
    resize: vertical;
}

.cform textarea:focus {
    outline: none;
    border-color: var(--red);
}

.cform__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.cform__foot small {
    font-size: .72rem;
    color: var(--ink-mute);
}

.clist {
    display: flex;
    flex-direction: column;
}

.cmt {
    display: flex;
    gap: 10px;
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
}

.cmt__av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.cmt__hd {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.cmt__hd strong {
    font-size: .82rem;
}

.cmt__hd time {
    font-size: .72rem;
    color: var(--ink-mute);
}

.cmt__author-tag {
    padding: 1px 7px;
    background: var(--red-dim);
    color: var(--red-hi);
    border-radius: 2px;
    font-size: .62rem;
    font-weight: 700;
}

.cmt p {
    font-size: .85rem;
    color: var(--ink-dim);
    line-height: 1.6;
}

.cmt__acts {
    display: flex;
    gap: 10px;
    margin-top: 7px;
}

.cmt__acts button {
    font-size: .73rem;
    color: var(--ink-mute);
}

.cmt__acts button:hover {
    color: var(--ink);
}

.cmt--reply {
    margin-top: 12px;
    padding-left: 16px;
    border-left: 2px solid var(--rule);
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-block {
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 18px;
    margin-bottom: 18px;
}

.sidebar-block h4 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-mute);
    margin-bottom: 14px;
}

.srel {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--rule);
}

.srel:last-of-type {
    border-bottom: none;
}

.srel img {
    width: 52px;
    height: 52px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}

.srel strong {
    display: block;
    font-size: .78rem;
    line-height: 1.3;
}

.srel span {
    font-size: .68rem;
    color: var(--ink-mute);
}

.srel:hover strong {
    color: var(--red-hi);
}

.sprod {
    display: block;
    text-align: center;
}

.sprod img {
    border-radius: 3px;
    margin-bottom: 8px;
    width: 100%;
}

.sprod strong {
    display: block;
    font-size: .83rem;
    margin-bottom: 4px;
}

.sprod span {
    color: var(--red-hi);
    font-weight: 700;
    font-size: .9rem;
}

.snl input {
    width: 100%;
    padding: 10px 12px;
    background: var(--paper-3);
    border: 1px solid var(--rule);
    border-radius: 3px;
    color: var(--ink);
    font-size: .82rem;
    margin-bottom: 8px;
}

.snl input:focus {
    outline: none;
    border-color: var(--red);
}

/* ====================================================
   PRODUCT PAGE
   ==================================================== */
.ppage {
    padding-top: 60px;
}

.ppage .breadcrumb {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 28px 0;
}

.pdetail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 28px 28px 60px;
}

.pgal__main {
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    margin-bottom: 10px;
    position: relative;
}

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

.pgal__thumbs {
    display: flex;
    gap: 8px;
}

.pthumb {
    width: 68px;
    height: 68px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--rule);
    cursor: pointer;
    transition: var(--t);
}

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

.pthumb.on,
.pthumb:hover {
    border-color: var(--red);
}

.pinfo__brand {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink-mute);
    margin-bottom: 6px;
    display: block;
}

.pinfo h1 {
    font-family: var(--ff-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 12px;
}

.prating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: .85rem;
    color: var(--gold);
}

.prating span {
    color: var(--ink-dim);
    font-size: .78rem;
}

.prating a {
    color: var(--ink-mute);
    font-size: .75rem;
}

.pprice {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.pprice-note {
    font-size: .75rem;
    color: var(--ink-mute);
    margin-bottom: 18px;
}

.pdesc {
    font-size: .88rem;
    color: var(--ink-dim);
    line-height: 1.7;
    margin-bottom: 20px;
}

.popts {
    margin-bottom: 18px;
}

.popts label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.ppills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ppill {
    padding: 9px 16px;
    background: var(--paper-3);
    border: 1px solid var(--rule);
    border-radius: 3px;
    font-size: .8rem;
    color: var(--ink-dim);
    transition: var(--t);
}

.ppill:hover {
    border-color: var(--rule-hi);
}

.ppill.on {
    border-color: var(--red);
    color: var(--ink);
    background: var(--red-dim);
}

.pqty {
    margin-bottom: 18px;
}

.pqty label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.qty-row {
    display: flex;
    align-items: center;
    border: 1px solid var(--rule);
    border-radius: 3px;
    width: fit-content;
}

.qty-row button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--ink-dim);
}

.qty-row button:hover {
    color: var(--ink);
    background: var(--rule);
}

.qty-row input {
    width: 48px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--ink);
    font-weight: 600;
    font-size: .9rem;
}

.pcta {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.pcta .main-cta {
    flex: 1;
    padding: 14px;
    background: var(--red);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    border-radius: 3px;
    transition: var(--t);
}

.pcta .main-cta:hover {
    background: var(--red-hi);
}

.pcta .wish-cta {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rule);
    border-radius: 3px;
    font-size: 1.3rem;
    color: var(--ink-dim);
    transition: var(--t);
}

.pcta .wish-cta:hover {
    border-color: var(--red);
    color: var(--red);
}

.ptrust {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 16px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 16px;
}

.ptrust-i {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    color: var(--ink-dim);
}

.ptrust-i svg {
    color: var(--green);
    flex-shrink: 0;
}

.acc {
    border-bottom: 1px solid var(--rule);
}

.acc__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 13px 0;
    font-size: .87rem;
    font-weight: 600;
}

.acc__btn svg {
    transition: transform var(--t);
}

.acc.open .acc__btn svg {
    transform: rotate(180deg);
}

.acc__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
}

.acc.open .acc__body {
    max-height: 300px;
}

.acc__body ul {
    padding: 0 0 14px 18px;
}

.acc__body li {
    font-size: .82rem;
    color: var(--ink-dim);
    padding: 3px 0;
}

.acc__body p {
    font-size: .82rem;
    color: var(--ink-dim);
    padding-bottom: 14px;
    line-height: 1.6;
}

.rev-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px 48px;
    border-top: 1px solid var(--rule);
    padding-top: 40px;
}

.rev-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.rev-overview {
    display: flex;
    gap: 36px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.rev-score {
    text-align: center;
    flex-shrink: 0;
}

.rev-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
}

.rev-score>span {
    font-size: .75rem;
    color: var(--ink-mute);
}

.rev-bars {
    flex: 1;
    max-width: 280px;
}

.rbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
}

.rbar span {
    font-size: .73rem;
    color: var(--ink-mute);
    min-width: 28px;
}

.bar-track {
    flex: 1;
    height: 6px;
    background: var(--paper-4);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
}

.rev-list {
    display: flex;
    flex-direction: column;
}

.rev {
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
}

.rev__hd {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.rev__hd img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.rev__hd strong {
    font-size: .83rem;
}

.rev__hd .veri {
    font-size: .68rem;
    color: var(--green);
}

.rev__hd time {
    font-size: .72rem;
    color: var(--ink-mute);
    margin-left: auto;
}

.rev h4 {
    font-size: .9rem;
    margin-bottom: 4px;
}

.rev p {
    font-size: .83rem;
    color: var(--ink-dim);
    line-height: 1.6;
}

.rev__hlp {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.rev__hlp span,
.rev__hlp button {
    font-size: .72rem;
    color: var(--ink-mute);
}

.rel-prods {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px 60px;
    border-top: 1px solid var(--rule);
    padding-top: 40px;
}

.rel-prods h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

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

.related-section-art {
    padding: 56px 0;
    background: var(--paper-2);
    border-top: 1px solid var(--rule);
}

.related-section-art h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.related-section-art .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

.rel-art-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rel-card {
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--t);
}

.rel-card:hover {
    border-color: var(--rule-hi);
}

.rel-card__img {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.rel-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

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

.rel-card__body {
    padding: 14px;
}

.rel-card h3 {
    font-size: .9rem;
    line-height: 1.35;
    font-weight: 600;
}

.rel-card h3 a:hover {
    color: var(--red-hi);
}

.footer-simple {
    background: var(--paper-2);
    border-top: 1px solid var(--rule);
}

.footer-simple__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-simple__inner p {
    font-size: .75rem;
    color: var(--ink-mute);
}

.footer-simple__links {
    display: flex;
    gap: 18px;
}

.footer-simple__links a {
    font-size: .75rem;
    color: var(--ink-mute);
}

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

/* ====================================================
   RESPONSIVE — TABLET (≤1100px)
   ==================================================== */
@media (max-width: 1100px) {
    .hero__main {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero__left-col {
        border-right: none;
        border-bottom: 1px solid var(--rule);
        padding: 48px 32px;
    }

    .hero__right-col {
        height: 56vw;
        max-height: 480px;
    }

    .hero__sub-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .nl-section__inner {
        grid-template-columns: 1fr;
    }

    .nl-left {
        padding: 40px 28px 24px;
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }

    .nl-right {
        padding: 24px 28px 40px;
    }

    .site-footer__top,
    .site-footer__mid,
    .site-footer__bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pdetail {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    .share-col {
        flex-direction: row;
        position: static;
        margin-bottom: 12px;
    }

    .rel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .co-body {
        grid-template-columns: 1fr;
    }

    .co-summary {
        position: static;
    }

    .co-row,
    .co-row--3 {
        grid-template-columns: 1fr;
    }
}

/* ====================================================
   RESPONSIVE — MOBILE (≤768px)
   ==================================================== */
@media (max-width: 768px) {

    /* ── BURGER & NAV OVERLAY ───────────────────── */
    .burger {
        display: flex;
    }

    .main-nav {
        /* Fixed overlay — works correctly because on mobile
           the header has no backdrop-filter (see above) */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        background: #080810;
        /* solid — no rgba leaking */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding-top: 60px;
        /* push content below the header */
        /* hidden state */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .25s ease, visibility .25s ease;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .main-nav__link {
        font-size: 1.3rem;
        padding: 14px 36px;
        border-radius: 6px;
        width: auto;
        text-align: center;
        color: var(--ink-dim);
    }

    .main-nav__link:hover,
    .main-nav__link.active {
        color: var(--ink);
        background: rgba(255, 255, 255, .06);
    }

    /* Keep logo + bag button visible above the nav overlay */
    .site-logo {
        z-index: 1100;
        position: relative;
    }

    .site-header__right {
        z-index: 1100;
        position: relative;
    }

    /* ── GENERAL ────────────────────────────────── */
    .site-header__wrap {
        padding: 0 16px;
    }

    .site-header__right .icon-btn {
        display: none;
    }

    /* ── TOPBAR ─────────────────────────────────── */
    .topbar {
        font-size: .72rem;
        padding: 8px 40px 8px 16px;
    }

    /* ── HERO ───────────────────────────────────── */
    .hero__main {
        grid-template-columns: 1fr;
    }

    .hero__left-col {
        padding: 36px 16px 32px;
    }

    .hero__headline {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .hero__deck {
        font-size: .9rem;
    }

    .hero__right-col {
        height: 52vw;
        min-height: 200px;
        max-height: 340px;
    }

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

    .subpost {
        padding: 16px;
    }

    .subpost strong {
        font-size: .82rem;
    }

    .hero__byline {
        flex-wrap: wrap;
        gap: 8px;
    }

    .btn-pill {
        margin-left: 0;
    }

    /* ── EDITORIAL ──────────────────────────────── */
    .editorial {
        padding: 36px 16px;
    }

    .ed-grid {
        gap: 24px;
    }

    .ed-feature h2 {
        font-size: 1.35rem;
    }

    .ed-card {
        grid-template-columns: 90px 1fr;
        gap: 12px;
    }

    /* ── BLOG ───────────────────────────────────── */
    .blog-section {
        padding: 36px 16px;
    }

    .blog-section__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .bpost {
        grid-template-columns: 110px 1fr;
        gap: 14px;
        padding: 20px 0;
    }

    .bpost:hover {
        margin: 0;
        padding: 20px 0;
        background: none;
    }

    .bpost__img {
        aspect-ratio: 1;
    }

    .bpost h3 {
        font-size: .95rem;
    }

    .bpost p {
        display: none;
    }

    /* hide excerpt on mobile to save space */

    /* ── PHASES ─────────────────────────────────── */
    .phases {
        padding: 36px 0;
    }

    .phases__scroll {
        gap: 0;
        padding: 0 16px;
    }

    .phase-card {
        flex: 0 0 220px;
    }

    .phase-num {
        font-size: 3rem;
    }

    /* ── SHOP ───────────────────────────────────── */
    .shop {
        padding: 36px 16px;
    }

    .shop__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .shop-title {
        font-size: 2rem;
    }

    .shop-cats {
        flex-wrap: wrap;
        gap: 6px;
    }

    .sc {
        padding: 6px 14px;
        font-size: .75rem;
    }

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

    .shop-trust {
        gap: 8px;
    }

    .trust-pill {
        font-size: .7rem;
        padding: 6px 14px;
    }

    /* ── NEWSLETTER ─────────────────────────────── */
    .nl-section__inner {
        grid-template-columns: 1fr;
    }

    .nl-left {
        padding: 32px 16px 20px;
    }

    .nl-right {
        padding: 20px 16px 32px;
    }

    .nl-left h2 {
        font-size: 2rem;
    }

    .nl-form {
        flex-direction: column;
        gap: 10px;
    }

    .nl-form input,
    .nl-form button {
        width: 100%;
    }

    /* ── FOOTER ─────────────────────────────────── */
    .site-footer__top {
        padding: 32px 16px 24px;
    }

    .site-footer__mid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 28px 16px;
    }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 16px;
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-simple__inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 16px;
    }

    /* ── CHAT ───────────────────────────────────── */
    .chat {
        bottom: 16px;
        right: 16px;
    }

    .chat__btn {
        width: 48px;
        height: 48px;
    }

    .chat__win {
        width: calc(100vw - 32px);
        right: 0;
        bottom: 60px;
    }

    /* ── TOASTS ─────────────────────────────────── */
    .toast-wrap {
        left: 12px;
        right: 12px;
        bottom: 16px;
    }

    .toast {
        min-width: auto;
        max-width: 100%;
    }

    /* ── COOKIE ─────────────────────────────────── */
    .cookie__inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cookie__btns {
        justify-content: center;
    }

    /* ── GO TOP ─────────────────────────────────── */
    .go-top {
        bottom: 72px;
        right: 16px;
    }

    /* ── ARTICLE ────────────────────────────────── */
    .art-hero {
        padding-top: 60px;
    }

    .art-hero__inner {
        padding: 0 16px 36px;
    }

    .art-hero__inner h1 {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .art-layout {
        padding: 28px 16px 56px;
        gap: 0;
        grid-template-columns: 1fr;
    }

    .article-sidebar--right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

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

    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .prose h2 {
        font-size: 1.3rem;
    }

    .prose p {
        font-size: .9rem;
    }

    .rel-art-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* ── PRODUCT ────────────────────────────────── */
    .pgal__thumbs {
        gap: 6px;
    }

    .pthumb {
        width: 60px;
        height: 60px;
    }

    .pinfo h1 {
        font-size: 1.5rem;
    }

    .pprice {
        font-size: 1.4rem;
    }

    .pcta {
        flex-direction: row;
    }

    .ptrust {
        gap: 7px;
    }

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

    .rev-overview {
        flex-direction: column;
    }

    /* ── STORE ──────────────────────────────────── */
    .store-body {
        grid-template-columns: 1fr;
    }

    #map {
        height: 380px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* ── CONTACT ────────────────────────────────── */
    .contact-body {
        grid-template-columns: 1fr;
    }

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

    /* ── CHECKOUT ───────────────────────────────── */
    .co-body {
        grid-template-columns: 1fr;
        padding: 20px 16px 60px;
        gap: 24px;
    }

    .co-summary {
        position: static;
        order: -1;
    }

    .co-row,
    .co-row--3 {
        grid-template-columns: 1fr;
    }

    .co-steps {
        display: none;
    }

    .co-header__inner {
        padding: 0 16px;
    }

    .co-header__inner .site-logo {
        order: 1;
    }

    .co-header__inner>a:last-child {
        display: none;
    }

    /* ── FAQ ────────────────────────────────────── */
    .faq-body {
        grid-template-columns: 1fr;
        padding: 28px 16px 56px;
    }

    .faq-cats {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 8px;
    }

    .faq-cat-link {
        padding: 5px 12px;
        font-size: .75rem;
        background: var(--paper-2);
        border: 1px solid var(--rule);
        border-radius: 20px;
    }

    /* ── ABOUT ──────────────────────────────────── */
    .about-hero__wrap {
        grid-template-columns: 1fr;
    }

    .about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ====================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ==================================================== */
@media (max-width: 480px) {

    /* ── CONTAINER ──────────────────────────────── */
    .site-header__wrap {
        padding: 0 14px;
    }

    .editorial,
    .blog-section,
    .shop,
    .phases .section-kicker {
        padding-left: 14px;
        padding-right: 14px;
    }

    /* ── HERO ───────────────────────────────────── */
    .hero__headline {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

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

    .subpost {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }

    .subpost:last-child {
        border-bottom: none;
    }

    /* ── SHOP ───────────────────────────────────── */
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .scard--tall .scard__img {
        aspect-ratio: 16/10;
    }

    /* ── BLOG ───────────────────────────────────── */
    .bpost {
        grid-template-columns: 1fr;
    }

    .bpost__img {
        aspect-ratio: 16/10;
    }

    .bpost h3 {
        font-size: .95rem;
    }

    /* ── EDITORIAL ──────────────────────────────── */
    .ed-card {
        grid-template-columns: 80px 1fr;
    }

    /* ── FOOTER ─────────────────────────────────── */
    .site-footer__mid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* ── NEWSLETTER ─────────────────────────────── */
    .nl-left h2 {
        font-size: 1.7rem;
    }

    /* ── ARTICLE ────────────────────────────────── */
    .rel-art-grid {
        grid-template-columns: 1fr;
    }

    .article-sidebar--right {
        grid-template-columns: 1fr;
    }

    /* ── PRODUCT ────────────────────────────────── */
    .ppills {
        flex-direction: column;
    }

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

    /* ── STORE ──────────────────────────────────── */
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-img:first-child {
        grid-row: span 1;
    }

    /* ── MODAL ──────────────────────────────────── */
    .co-modal__box {
        padding: 28px 16px;
    }

    /* ── CHECKOUT ───────────────────────────────── */
    .delivery-opt {
        flex-wrap: wrap;
        gap: 8px;
    }

    .delivery-opt__price {
        width: 100%;
    }
}

/* ====================================================
   COMPATIBILITY — OLD CLASS NAME ALIASES
   article / product use older class names
   ==================================================== */

/* Article page aliases */
.article-hero {
    position: relative;
    padding-top: 60px;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.article-hero__bg {
    position: absolute;
    inset: 0;
}

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

.article-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 8, 16, .3) 0%, rgba(8, 8, 16, .85) 70%, var(--paper) 100%);
}

.article-hero__content {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px 48px;
    width: 100%;
}

.article-hero__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    font-size: .78rem;
    color: var(--ink-mute);
}

.article-hero__content h1 {
    font-family: var(--ff-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 800px;
}

.article-hero__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-hero__author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.article-hero__author strong {
    display: block;
    font-size: .85rem;
}

.article-hero__author span {
    font-size: .75rem;
    color: var(--ink-mute);
}

.article-layout {
    display: grid;
    grid-template-columns: 56px 1fr 260px;
    gap: 36px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 28px 80px;
}

.article-sidebar--left {
    position: sticky;
    top: 80px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.share-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.share-bar span {
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-mute);
}

.share-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rule);
    border-radius: 3px;
    color: var(--ink-dim);
    transition: var(--t);
}

.share-btn:hover {
    border-color: var(--red);
    color: var(--red-hi);
}

.article-sidebar--right {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 18px;
    margin-bottom: 18px;
}

.sidebar-widget h4 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-mute);
    margin-bottom: 14px;
}

.sidebar-widget p {
    font-size: .82rem;
    color: var(--ink-dim);
    margin-bottom: 10px;
}

.sidebar-post {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--rule);
}

.sidebar-post:last-of-type {
    border-bottom: none;
}

.sidebar-post img {
    width: 52px;
    height: 52px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-post strong {
    display: block;
    font-size: .78rem;
    line-height: 1.3;
}

.sidebar-post span {
    font-size: .68rem;
    color: var(--ink-mute);
}

.sidebar-post:hover strong {
    color: var(--red-hi);
}

.sidebar-product {
    display: block;
    text-align: center;
}

.sidebar-product img {
    border-radius: 3px;
    margin-bottom: 8px;
    width: 100%;
}

.sidebar-product strong {
    display: block;
    font-size: .85rem;
    margin-bottom: 4px;
}

.sidebar-product span {
    color: var(--red-hi);
    font-weight: 700;
    font-size: .9rem;
}

.sidebar-newsletter input {
    width: 100%;
    padding: 10px 12px;
    background: var(--paper-3);
    border: 1px solid var(--rule);
    border-radius: 3px;
    color: var(--ink);
    font-size: .82rem;
    margin-bottom: 8px;
}

.sidebar-newsletter input:focus {
    outline: none;
    border-color: var(--red);
}

.article-toc {
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 18px;
    margin-bottom: 28px;
}

.article-toc h4 {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ink-mute);
    margin-bottom: 12px;
}

.article-toc ol {
    padding-left: 18px;
}

.article-toc li {
    padding: 3px 0;
}

.article-toc a {
    font-size: .82rem;
    color: var(--ink-dim);
}

.article-toc a:hover {
    color: var(--red-hi);
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid var(--rule);
    margin-top: 28px;
}

.article-tags span {
    font-size: .75rem;
    color: var(--ink-mute);
    font-weight: 600;
}

.article-tags a {
    padding: 4px 10px;
    border: 1px solid var(--rule);
    border-radius: 20px;
    font-size: .73rem;
    color: var(--ink-dim);
}

.article-tags a:hover {
    border-color: var(--red);
    color: var(--red-hi);
}

.author-bio {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 4px;
    margin: 28px 0;
}

.author-bio img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-bio h4 {
    font-size: .92rem;
    margin-bottom: 2px;
}

.author-bio>div>span {
    font-size: .75rem;
    color: var(--red-hi);
}

.author-bio p {
    font-size: .82rem;
    color: var(--ink-dim);
    line-height: 1.6;
    margin-top: 6px;
}

.author-bio__social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.author-bio__social a {
    font-size: .82rem;
    color: var(--ink-mute);
    font-weight: 500;
}

.author-bio__social a:hover {
    color: var(--red-hi);
}

.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0;
}

.post-nav__item {
    display: block;
    padding: 18px;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 4px;
    transition: var(--t);
}

.post-nav__item:hover {
    border-color: var(--rule-hi);
}

.post-nav__prev span,
.post-nav__next span {
    display: block;
    font-size: .72rem;
    color: var(--ink-mute);
    margin-bottom: 4px;
}

.post-nav__item strong {
    font-size: .87rem;
    line-height: 1.3;
}

.post-nav__next {
    text-align: right;
}

.comments {
    padding: 32px 0;
}

.comments h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.comments__count {
    font-size: .85rem;
    color: var(--ink-mute);
    font-weight: 400;
}

.comment-form {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

.comment-form__avatar {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--paper-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-mute);
}

.comment-form__body {
    flex: 1;
}

.comment-form__body textarea {
    width: 100%;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 10px 12px;
    color: var(--ink);
    font-size: .87rem;
    resize: vertical;
}

.comment-form__body textarea:focus {
    outline: none;
    border-color: var(--red);
}

.comment-form__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.comment-form__actions small {
    font-size: .72rem;
    color: var(--ink-mute);
}

.comments__list {
    display: flex;
    flex-direction: column;
}

.comment {
    display: flex;
    gap: 10px;
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
}

.comment--reply {
    margin-top: 14px;
    padding-left: 16px;
    border-left: 2px solid var(--rule);
    padding-bottom: 0;
    border-bottom: none;
}

.comment__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment__body {
    flex: 1;
}

.comment__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.comment__header strong {
    font-size: .82rem;
}

.comment__header time {
    font-size: .72rem;
    color: var(--ink-mute);
}

.comment__badge {
    padding: 1px 7px;
    background: var(--red-dim);
    color: var(--red-hi);
    border-radius: 2px;
    font-size: .62rem;
    font-weight: 700;
}

.comment__body p {
    font-size: .85rem;
    color: var(--ink-dim);
    line-height: 1.6;
}

.comment__actions {
    display: flex;
    gap: 10px;
    margin-top: 7px;
}

.comment__actions button {
    font-size: .73rem;
    color: var(--ink-mute);
}

.comment__actions button:hover {
    color: var(--ink);
}

.related-section {
    padding: 56px 0;
    background: var(--paper-2);
    border-top: 1px solid var(--rule);
}

.related-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.related-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

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

/* Product page aliases */
.product-page {
    padding-top: 60px;
}

.product-page .breadcrumb {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 28px 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 28px 28px 60px;
}

.product-gallery__main {
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    margin-bottom: 10px;
    position: relative;
}

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

.product-gallery__zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    border: none;
    cursor: pointer;
}

.product-gallery__thumbs {
    display: flex;
    gap: 8px;
}

.thumb {
    width: 68px;
    height: 68px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--rule);
    cursor: pointer;
    transition: var(--t);
}

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

.thumb.active,
.thumb:hover,
.pthumb.on,
.pthumb:hover {
    border-color: var(--red);
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-info__brand {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink-mute);
    margin-bottom: 6px;
    display: block;
}

.product-info__title,
.pinfo h1 {
    font-family: var(--ff-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 12px;
}

.product-info__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: .85rem;
}

.product-info__price {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.price-current {
    font-size: 1.7rem;
    font-weight: 800;
}

.price-note {
    font-size: .75rem;
    color: var(--ink-mute);
    margin-bottom: 18px;
    display: block;
}

.product-info__desc p,
.pdesc {
    font-size: .88rem;
    color: var(--ink-dim);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-options,
.popts {
    margin-bottom: 18px;
}

.product-options label,
.popts label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.option-pills,
.ppills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pill,
.ppill {
    padding: 9px 16px;
    background: var(--paper-3);
    border: 1px solid var(--rule);
    border-radius: 3px;
    font-size: .8rem;
    color: var(--ink-dim);
    transition: var(--t);
    cursor: pointer;
}

.pill:hover,
.ppill:hover {
    border-color: var(--rule-hi);
}

.pill.active,
.ppill.on {
    border-color: var(--red);
    color: var(--ink);
    background: var(--red-dim);
}

.product-info__quantity,
.pqty {
    margin-bottom: 18px;
}

.product-info__quantity label,
.pqty label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.qty-selector,
.qty-row {
    display: flex;
    align-items: center;
    border: 1px solid var(--rule);
    border-radius: 3px;
    width: fit-content;
}

.qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--ink-dim);
    cursor: pointer;
}

.qty-btn:hover {
    color: var(--ink);
    background: var(--rule);
}

.qty-selector input,
.qty-row input {
    width: 48px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--ink);
    font-weight: 600;
    font-size: .9rem;
}

.product-info__cta,
.pcta {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.product-trust,
.ptrust {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 16px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 16px;
}

.product-trust__item,
.ptrust-i {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    color: var(--ink-dim);
}

.product-trust__item svg,
.ptrust-i svg {
    color: var(--green);
    flex-shrink: 0;
}

.accordion,
.acc {
    border-bottom: 1px solid var(--rule);
}

.accordion__trigger,
.acc__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 13px 0;
    font-size: .87rem;
    font-weight: 600;
    cursor: pointer;
}

.accordion__trigger svg,
.acc__btn svg {
    transition: transform var(--t);
}

.accordion.open .accordion__trigger svg,
.acc.open .acc__btn svg {
    transform: rotate(180deg);
}

.accordion__content,
.acc__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
}

.accordion.open .accordion__content,
.acc.open .acc__body {
    max-height: 300px;
}

.accordion__content ul,
.acc__body ul {
    padding: 0 0 14px 18px;
}

.accordion__content li,
.acc__body li {
    font-size: .82rem;
    color: var(--ink-dim);
    padding: 3px 0;
}

.accordion__content p,
.acc__body p {
    font-size: .82rem;
    color: var(--ink-dim);
    padding-bottom: 14px;
    line-height: 1.6;
}

.reviews-section {
    padding: 48px 0;
    border-top: 1px solid var(--rule);
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

.reviews-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.reviews-overview {
    display: flex;
    gap: 36px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.reviews-score {
    text-align: center;
    flex-shrink: 0;
}

.reviews-score__number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
}

.reviews-bars {
    flex: 1;
    max-width: 280px;
}

.review-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
}

.review-bar span {
    font-size: .73rem;
    color: var(--ink-mute);
    min-width: 28px;
}

.bar {
    flex: 1;
    height: 6px;
    background: var(--paper-4);
    border-radius: 3px;
    overflow: hidden;
}

.bar__fill {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
}

.review {
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
}

.review__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.review__header img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.review__header strong {
    font-size: .83rem;
}

.review__verified {
    font-size: .68rem;
    color: var(--green);
}

.review__header time {
    font-size: .72rem;
    color: var(--ink-mute);
    margin-left: auto;
}

.review h4 {
    font-size: .9rem;
    margin-bottom: 4px;
}

.review p {
    font-size: .83rem;
    color: var(--ink-dim);
    line-height: 1.6;
}

.review__helpful {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.review__helpful span,
.review__helpful button {
    font-size: .72rem;
    color: var(--ink-mute);
    cursor: pointer;
}

.related-products {
    padding: 0 28px 60px;
    border-top: 1px solid var(--rule);
    padding-top: 40px;
    max-width: 1320px;
    margin: 0 auto;
}

.related-products h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

/* Buttons used on inner pages (old system) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: .88rem;
    transition: var(--t);
    white-space: nowrap;
    cursor: pointer;
}

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

.btn--primary:hover {
    background: var(--red-hi);
}

.btn--outline {
    border: 1px solid var(--rule-hi);
    color: var(--ink-dim);
}

.btn--outline:hover {
    border-color: var(--red);
    color: var(--red-hi);
}

.btn--secondary {
    background: var(--paper-3);
    color: var(--ink);
    border: 1px solid var(--rule);
}

.btn--secondary:hover {
    background: var(--paper-4);
}

.btn--sm {
    padding: 8px 16px;
    font-size: .8rem;
}

.btn--full {
    width: 100%;
}

/* container on inner pages */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Responsive fixes for old-class pages */
@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
        padding: 28px 16px 56px;
    }

    .article-sidebar--left {
        position: static;
        flex-direction: row;
    }

    .article-sidebar--right {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .article-hero__content {
        padding: 0 16px 32px;
    }

    .product-detail {
        grid-template-columns: 1fr;
        padding: 20px 16px 40px;
    }

    .related-section .container,
    .reviews-section,
    .related-products {
        padding-left: 16px;
        padding-right: 16px;
    }

    .related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .post-nav {
        grid-template-columns: 1fr;
    }

    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .reviews-overview {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .article-sidebar--right {
        grid-template-columns: 1fr;
    }

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

/* ====================================================
   CASINO / TOURNAMENTS
   ==================================================== */
.casino-hero {
    position: relative;
    padding: 100px 28px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 50vh;
}

.casino-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 8, 16, 0.6) 0%, rgba(8, 8, 16, 0.95) 100%);
}

.casino-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.casino-hero__content h1 {
    font-family: var(--ff-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--gold);
    text-transform: uppercase;
}

.casino-hero__content p {
    font-size: 1.1rem;
    color: var(--ink-dim);
    line-height: 1.6;
}

.casino-hero__content strong {
    color: var(--red-hi);
    font-weight: 700;
}

.casino-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 28px;
    border-bottom: 1px solid var(--rule);
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.casino-card {
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--t);
    padding: 20px;
}

.casino-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.1);
    transform: translateY(-5px);
}

.casino-card__header {
    font-family: var(--ff-disp);
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 15px;
}

.casino-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--rule-hi);
    background: #000;
}

.casino-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.casino-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.casino-btn:hover {
    background: var(--red-hi);
}

.casino-info {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 28px;
    border-bottom: 1px solid var(--rule);
}

.casino-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 16, 0.85);
}

.casino-info__content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.casino-info__content h2 {
    font-family: var(--ff-serif);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.casino-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.casino-info-card {
    background: rgba(17, 17, 34, 0.7);
    border: 1px solid var(--rule);
    padding: 24px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.casino-info-card h3 {
    color: #fff;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--red);
    padding-bottom: 8px;
    display: inline-block;
}

.casino-info-card p {
    font-size: 0.9rem;
    color: var(--ink-dim);
    line-height: 1.6;
}

/* Modal 18+ for Casino */
.modal-18 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-18.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-18__inner {
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-top: 4px solid var(--red);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-18__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--red);
    color: var(--red);
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-18 h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.modal-18 p {
    font-size: 0.95rem;
    color: var(--ink-dim);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-18__btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-18__btns button {
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: var(--t);
}

.modal-18__btn-yes {
    background: var(--red);
    color: #fff;
}

.modal-18__btn-yes:hover {
    background: var(--red-hi);
}

.modal-18__btn-no {
    background: transparent;
    border: 1px solid var(--rule-hi);
    color: var(--ink-dim);
}

.modal-18__btn-no:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.casino-footer-disclaimer {
    background: var(--paper-3);
    padding: 40px 28px;
    text-align: center;
    border-top: 1px solid var(--rule);
}

.casino-footer-disclaimer .partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.casino-footer-disclaimer .partners img {
    height: 35px;
    filter: invert(1) opacity(0.7);
    transition: filter 0.3s;
}

.casino-footer-disclaimer .partners img:hover {
    filter: invert(1) opacity(1);
}

.casino-footer-disclaimer p {
    color: var(--ink-mute);
    font-size: 0.85rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .casino-info__grid {
        grid-template-columns: 1fr;
    }
}