:root {
    --ink:        #0A0A0F;
    --ink-soft:   #1A1A24;
    --ink-muted:  #2E2E3E;
    --gold:       #B8893A;
    --gold-light: #D4A853;
    --gold-pale:  #F5ECD7;
    --cream:      #FAFAF7;
    --warm-white: #FFFFFF;
    --slate:      #6B6B7E;
    --border:     rgba(184,137,58,0.18);
    --border-soft: rgba(10,10,15,0.08);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-ui:      'Space Grotesk', sans-serif;
    --font-body:    'DM Sans', sans-serif;

    --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
    --ease-circ: cubic-bezier(0.85, 0, 0.15, 1);

    --r-sm:   8px;
    --r-md:   14px;
    --r-lg:   22px;
    --r-xl:   32px;
    --r-full: 9999px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; border: none; outline: none; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- CURSOR GLOW ---- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,137,58,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
    background: var(--ink);
    padding: 9px 0;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.5px;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.topbar-left, .topbar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.topbar-left span, .topbar-right a {
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.topbar-right a:hover { color: var(--gold-light); }
.topbar i { color: var(--gold); font-size: 0.6rem; }
.topbar-marquee {
    flex: 1;
    text-align: center;
    color: var(--gold-light);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
}
.topbar-marquee span {
    display: inline-block;
    animation: marquee 18s linear infinite;
    white-space: nowrap;
}
@keyframes marquee {
    from { transform: translateX(60px); }
    to   { transform: translateX(-100%); }
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(250,250,247,0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-soft);
    transition: box-shadow 0.3s;
}
.header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 2rem;
}
.logo {
    font-family: var(--font-display);
    font-size: 1.95rem;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: -0.3px;
    flex-shrink: 0;
}
.logo i { color: var(--gold); font-size: 1.2rem; }
.logo-dot { color: var(--gold); }

.nav {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}
.nav-item {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--slate);
    position: relative;
    padding: 4px 0;
    transition: color 0.2s;
}
.nav-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.35s var(--ease-out);
}
.nav-item:hover, .nav-item.active { color: var(--ink); }
.nav-item:hover::after, .nav-item.active::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}
.icon-btn {
    position: relative;
    font-size: 1.05rem;
    color: var(--ink-muted);
    padding: 6px;
    transition: color 0.2s, transform 0.2s;
}
.icon-btn:hover { color: var(--gold); transform: translateY(-1px); }
.cart-badge {
    position: absolute;
    top: -3px; right: -5px;
    background: var(--gold);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    min-width: 16px; height: 16px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
}
.menu-btn {
    display: none;
    font-size: 1.4rem;
    color: var(--ink);
    padding: 4px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 95vh;
    background: var(--ink);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* particle canvas background */
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* diagonal split: left dark, right image-peekthrough */
.hero-split {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero-split::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 46%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(184,137,58,0.04) 100%);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* left: text */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: riseIn 0.9s var(--ease-out) 0.1s forwards;
}
.hero-eyebrow-line {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 5.5vw, 5rem);
    font-weight: 600;
    line-height: 1.04;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: riseIn 1s var(--ease-out) 0.25s forwards;
}
.hero-title em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 400;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.85;
    max-width: 420px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: riseIn 1s var(--ease-out) 0.4s forwards;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: riseIn 1s var(--ease-out) 0.55s forwards;
}

.hero-stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    animation: riseIn 1s var(--ease-out) 0.7s forwards;
}
.hero-stat-val {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
}
.hero-stat-key {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-top: 5px;
}

/* right: image stack */
.hero-visual {
    position: relative;
    opacity: 0;
    animation: riseIn 1.1s var(--ease-out) 0.35s forwards;
}
.hero-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: slowZoom 12s ease-in-out infinite alternate;
}
@keyframes slowZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.09); }
}

.hero-pill {
    position: absolute;
    background: rgba(250,250,247,0.96);
    backdrop-filter: blur(12px);
    border-radius: var(--r-full);
    padding: 10px 16px 10px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: floatPill 5s ease-in-out infinite;
}
.hero-pill img {
    width: 38px; height: 38px;
    border-radius: 50%;
    object-fit: cover;
}
.hero-pill-label {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
}
.hero-pill-sub {
    font-size: 0.62rem;
    color: var(--slate);
    display: block;
    margin-top: 1px;
}
.hero-pill-1 { top: 12%; left: -60px; animation-delay: 0s; }
.hero-pill-2 { bottom: 18%; right: -50px; animation-delay: 1.5s; }

@keyframes floatPill {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* gold accent bar behind image */
.hero-accent-bar {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 65%;
    height: 65%;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, var(--gold) 0%, transparent 60%);
    opacity: 0.08;
    z-index: -1;
}

@keyframes riseIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
}
.hero-scroll span {
    font-family: var(--font-ui);
    font-size: 0.58rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}
.hero-scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,100% { transform: scaleY(1); opacity: 0.6; }
    50%      { transform: scaleY(0.5); opacity: 0.2; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 2.1rem;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--r-full);
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }

.btn-gold {
    background: linear-gradient(135deg, #C8963E 0%, #D4AF37 45%, #B8893A 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(184,137,58,0.35);
}
.btn-gold:hover {
    box-shadow: 0 10px 32px rgba(184,137,58,0.5);
}
.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.22);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
}
.btn-dark {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 4px 16px rgba(10,10,15,0.15);
}
.btn-dark:hover {
    background: var(--ink-soft);
    box-shadow: 0 8px 24px rgba(10,10,15,0.2);
}
.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid rgba(10,10,15,0.2);
}
.btn-outline:hover {
    background: var(--ink);
    color: #fff;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-soft);
    padding: 1.4rem 0;
}
.trust-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.6rem 0;
}
.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s;
}
.trust-item:hover .trust-icon {
    background: var(--ink);
    color: var(--gold-light);
    transform: rotate(-5deg) scale(1.05);
}
.trust-text h5 {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.3px;
}
.trust-text p {
    font-size: 0.68rem;
    color: var(--slate);
    margin-top: 1px;
}

/* =============================================
   SECTIONS — SHARED
   ============================================= */
.section { padding: 6rem 0; }
.section-bg { background: var(--warm-white); }
.section-cream { background: var(--cream); }
.section-ink { background: var(--ink); }

.section-head {
    margin-bottom: 4rem;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}
.section-eyebrow-line {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--gold);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title-light { color: #fff; }
.section-sub {
    font-size: 0.9rem;
    color: var(--slate);
    max-width: 460px;
    margin-top: 0.75rem;
    line-height: 1.75;
}
.section-sub-light { color: rgba(255,255,255,0.5); }

/* center variant */
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.section-head.center .section-eyebrow { justify-content: center; }

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* =============================================
   CATEGORY GRID
   ============================================= */
.category-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 1.25rem;
}
.category-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.category-card:first-child {
    grid-row: span 2;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.16);
}
.category-card-img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
    display: block;
}
.category-card:first-child .category-card-img {
    min-height: 510px;
}
.category-card:hover .category-card-img {
    transform: scale(1.06);
}
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,15,0.75) 0%, rgba(10,10,15,0.1) 50%, transparent 100%);
    transition: background 0.4s;
}
.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.25) 55%, transparent 100%);
}
.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.6rem 1.8rem;
}
.category-info h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.category-info p {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.category-arrow {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    opacity: 0;
    transform: translate(4px, -4px);
    transition: all 0.3s var(--ease-out);
}
.category-card:hover .category-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* =============================================
   PRODUCT GRID
   ============================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--warm-white);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
    cursor: pointer;
    position: relative;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--border);
}

.product-img {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}
.product-card:hover .product-img img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--r-full);
    z-index: 2;
}
.product-badge.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.wishlist-btn {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--slate);
    z-index: 2;
    transition: all 0.25s var(--ease-out);
}
.wishlist-btn:hover {
    color: #E53E3E;
    border-color: rgba(229,62,62,0.3);
    transform: scale(1.1);
}

/* quick-add overlay */
.product-quick {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(10,10,15,0.7), transparent);
    transform: translateY(100%);
    transition: transform 0.35s var(--ease-out);
    z-index: 2;
}
.product-card:hover .product-quick {
    transform: translateY(0);
}

.product-body {
    padding: 1.25rem 1.4rem 1.4rem;
}
.product-cat {
    font-family: var(--font-ui);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}
.product-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: 6px;
}
.product-rating {
    color: #F59E0B;
    font-size: 0.75rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.product-rating span {
    color: var(--slate);
    font-family: var(--font-ui);
    font-size: 0.65rem;
    margin-left: 4px;
    letter-spacing: 0;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.product-price {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}
.add-btn {
    padding: 0.65rem 1.3rem;
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-full);
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}
.add-btn:hover {
    background: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(184,137,58,0.3);
}

.section-cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* =============================================
   MARQUEE STRIP
   ============================================= */
.marquee-section {
    overflow: hidden;
    padding: 1.25rem 0;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
    display: flex;
    gap: 0;
    animation: trackScroll 22s linear infinite;
    white-space: nowrap;
}
.marquee-track span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.18);
    padding: 0 2rem;
    flex-shrink: 0;
}
.marquee-track span.gold {
    color: var(--gold);
    opacity: 0.5;
}
@keyframes trackScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =============================================
   EDITORIAL BANNER (mid-page)
   ============================================= */
.editorial {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}
.editorial-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    align-items: stretch;
}
.editorial-img {
    position: relative;
    overflow: hidden;
}
.editorial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.9s var(--ease-out), opacity 0.5s;
}
.editorial:hover .editorial-img img {
    transform: scale(1.03);
    opacity: 0.8;
}
/* diagonal slash — the signature element */
.editorial-img::after {
    content: '';
    position: absolute;
    top: 0; right: -1px;
    width: 80px; height: 100%;
    background: var(--ink);
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 0% 100%);
}
.editorial-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 3rem;
}
.editorial-copy .section-eyebrow { color: var(--gold-light); }
.editorial-copy blockquote {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin: 1.5rem 0;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
}
.editorial-copy p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--warm-white);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    padding: 2rem;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px; right: 20px;
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--gold-pale);
    line-height: 1;
    pointer-events: none;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: var(--border);
}
.t-stars {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}
.t-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--ink-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold-light);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.t-name {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
}
.t-role {
    font-size: 0.7rem;
    color: var(--slate);
    margin-top: 2px;
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
    background: linear-gradient(135deg, var(--ink) 0%, #1a1430 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,137,58,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.newsletter-copy h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.newsletter-copy h2 em { font-style: italic; color: var(--gold-light); }
.newsletter-copy p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
}
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-full);
    padding: 6px 6px 6px 1.5rem;
    transition: border-color 0.3s;
}
.newsletter-form:focus-within {
    border-color: rgba(184,137,58,0.4);
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    color: #fff;
    font-size: 0.85rem;
    min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--ink);
    padding: 4.5rem 0 0;
    color: rgba(255,255,255,0.42);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}
.footer-logo i { color: var(--gold); font-size: 1.2rem; }
.footer-logo-dot { color: var(--gold); }
.footer-brand > p {
    font-size: 0.82rem;
    line-height: 1.8;
    max-width: 270px;
    margin-bottom: 1.25rem;
}
.footer-contact p {
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}
.footer-contact i { color: var(--gold); font-size: 0.65rem; }
.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 1.25rem;
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    transition: all 0.3s var(--ease-out);
}
.footer-social a:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}
.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.4rem;
}
.footer-col a {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.38);
    margin-bottom: 0.65rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    font-size: 0.75rem;
}
.footer-pay {
    display: flex;
    gap: 0.75rem;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.25);
}

/* =============================================
   TOAST
   ============================================= */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--ink);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: var(--r-full);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.toast i { color: var(--gold); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-sub { margin: 0 auto 2.5rem; }
    .hero-cta-row { justify-content: center; }
    .hero-stats-row { justify-content: center; }
    .hero-visual { max-width: 380px; margin: 0 auto; }
    .hero-pill-1 { left: -20px; }
    .hero-pill-2 { right: -20px; }
    .category-grid { grid-template-columns: 1fr 1fr; }
    .category-card:first-child { grid-row: span 1; grid-column: span 2; }
    .category-card:first-child .category-card-img { min-height: 300px; }
    .editorial-inner { grid-template-columns: 1fr; }
    .editorial-img { min-height: 320px; }
    .editorial-img::after { display: none; }
    .editorial-copy { padding: 3rem 2.5rem; }
    .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-strip .container { grid-template-columns: 1fr 1fr; }
    .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .topbar-left { display: none; }
    .menu-btn { display: block; }
    .nav {
        position: fixed;
        top: 72px; left: 0;
        width: 100%;
        background: var(--warm-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 2rem;
        display: none;
        border-bottom: 3px solid var(--gold);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        z-index: 800;
        gap: 0;
    }
    .nav.active { display: flex; }
    .nav-item { padding: 0.85rem 0; font-size: 0.8rem; width: 100%; border-bottom: 1px solid var(--border-soft); }
    .nav-item:last-child { border-bottom: none; }
    .category-grid { grid-template-columns: 1fr; }
    .category-card:first-child { grid-column: span 1; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
    .hero-pill { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .trust-strip .container { grid-template-columns: 1fr; gap: 0.5rem; }
    .editorial-copy blockquote { font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .section { padding: 4rem 0; }
    .hero-title { font-size: 2.6rem; }
    .section-title { font-size: 1.85rem; }
    .product-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; border-radius: var(--r-lg); padding: 1rem; }
    .newsletter-form .btn { width: 100%; justify-content: center; border-radius: var(--r-full); }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}