/* SACRAMUNDO — Luxury UI Layer */

:root {
    --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --header-height: 72px;
    --shadow-lift: 0 24px 48px rgba(3, 19, 38, 0.45);
    --shadow-soft: 0 8px 32px rgba(3, 19, 38, 0.25);
}

/* ---- Preloader ---- */
.sacramundo-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--navy-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: opacity 0.5s var(--ease-luxury), visibility 0.5s;
}
.sacramundo-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.sacramundo-loader__logo { height: 48px; width: auto; object-fit: contain; opacity: 0; animation: loaderFade 0.8s var(--ease-luxury) 0.1s forwards; }
.sacramundo-loader__line {
    width: 120px; height: 1px; background: rgba(201,162,77,0.2); overflow: hidden; position: relative;
}
.sacramundo-loader__line::after {
    content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 40%;
    background: var(--gold);
    animation: loaderLine 1.2s var(--ease-luxury) infinite;
}
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderLine { 0% { left: -40%; } 100% { left: 100%; } }

/* ---- Page transition ---- */
body { opacity: 0; transition: opacity 0.45s var(--ease-luxury); }
body.is-loaded { opacity: 1; }

/* ---- Transparent hero header ---- */
.home-page .site-header--transparent {
    position: fixed;
    top: 0;
    left: 0; right: 0;
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
}
.home-page .site-header--transparent.scrolled {
    top: 0;
    background: rgba(3, 19, 38, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
}
.home-page .site-main { padding-top: 0; }

/* ---- Premium Navigation ---- */
.site-navbar__inner {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 0.5rem 0.75rem;
}

.site-navbar__brand {
    grid-column: 2;
    justify-self: center;
    margin: 0;
    padding: 0;
}

.site-navbar__start {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    justify-self: start;
    z-index: 2;
}

.site-navbar__back {
    width: 36px;
    height: 36px;
    color: var(--cream);
    border: none;
    background: transparent;
    border-radius: 2px;
    flex-shrink: 0;
}

.site-navbar__back:hover,
.site-navbar__back:focus {
    color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(201, 162, 77, 0.25);
}

.site-navbar__back i {
    font-size: 1.15rem;
    line-height: 1;
}

.site-navbar__actions {
    grid-column: 3;
    grid-row: 1;
}

@media (min-width: 992px) {
    .site-navbar__inner {
        grid-template-columns: auto 200px 1fr auto;
        gap: 1rem;
    }
    .site-navbar__start {
        grid-column: 1;
        align-self: center;
    }
    .site-navbar__brand {
        grid-column: 2;
        justify-self: start;
    }
    .home-page .site-navbar__inner {
        grid-template-columns: 200px 1fr auto;
    }
    .home-page .site-navbar__start {
        display: none;
    }
    .home-page .site-navbar__brand {
        grid-column: 1;
    }
    #mainNav {
        grid-column: 3;
        grid-row: 1;
        justify-self: center;
    }
    .home-page #mainNav {
        grid-column: 2;
    }
    .site-navbar__actions {
        grid-column: 4;
    }
    .home-page .site-navbar__actions {
        grid-column: 3;
    }
    .site-navbar__back {
        width: 40px;
        height: 40px;
    }
}

.site-navbar__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    justify-self: end;
}

.site-navbar__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    cursor: pointer;
    justify-self: start;
}

.site-navbar__toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(201, 162, 77, 0.25);
}

.site-navbar__toggle-bar {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--cream);
    margin: 0 auto;
    transition: transform 0.3s var(--ease-luxury), opacity 0.3s;
}

.site-navbar__links {
    gap: 0.15rem;
}

@media (max-width: 991.98px) {
    .site-navbar .navbar {
        padding: 0.75rem 0;
    }

    .site-navbar__inner {
        position: relative;
        grid-template-columns: 1fr auto 1fr;
        gap: 0;
        align-items: center;
        min-height: 56px;
    }

    .site-navbar__start {
        gap: 0;
    }

    .site-navbar__toggle {
        position: relative;
        width: 36px;
        height: 36px;
        border: none;
        border-radius: 0;
        gap: 4px;
    }

    .site-navbar__toggle-bar {
        width: 16px;
    }

    .site-navbar__brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        grid-column: auto;
        z-index: 1;
        max-width: none;
        pointer-events: auto;
    }

    .site-navbar__brand .brand-lockup {
        gap: 0;
        justify-content: center;
    }

    .site-navbar__brand .brand-wordmark {
        display: none;
    }

    .site-navbar__brand .brand-mark-frame {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        overflow: hidden;
        background: #FAF6EE;
        border: 2px solid var(--gold);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    }

    .site-navbar__brand .brand-mark {
        width: 44px;
        height: 44px;
        max-width: none;
        object-fit: contain;
        object-position: center;
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        filter: none;
    }

    .site-navbar__actions {
        grid-column: 3;
        justify-self: end;
        position: relative;
        z-index: 2;
        gap: 0;
    }

    .site-navbar__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        padding: 0;
        font-size: 1.05rem;
        color: var(--cream);
        line-height: 1;
        -webkit-tap-highlight-color: transparent;
    }

    .site-navbar__actions a.site-navbar__icon,
    .site-navbar__actions a.site-navbar__icon:visited {
        color: var(--cream);
    }

    .site-navbar__actions a.site-navbar__icon:hover,
    .site-navbar__icon:hover {
        color: var(--gold);
    }
}


/* Mobile drawer */
.mobile-nav {
    --bs-offcanvas-width: min(100vw, 340px);
    width: var(--bs-offcanvas-width);
}

.mobile-nav__panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.brand-lockup--drawer {
    color: var(--cream);
}

.mobile-nav__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--cream);
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
    position: relative;
    z-index: 2;
}

.mobile-nav__close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.mobile-nav__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
}

.mobile-nav__label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.75rem;
}

.mobile-nav__label:not(:first-child) {
    margin-top: 1.5rem;
}

.mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav__list li {
    list-style: none;
}

.mobile-nav__list a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream);
    border-bottom: 1px solid rgba(201, 162, 77, 0.12);
    transition: color 0.3s, padding-left 0.3s;
}

.mobile-nav__list a:hover {
    color: var(--gold);
    padding-left: 0.35rem;
}

.mobile-nav__list--secondary a {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: none;
}

.mobile-nav__list--secondary a i {
    color: var(--gold);
    font-size: 0.95rem;
    width: 1.1rem;
}

.mobile-nav__footer {
    padding: 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

.offcanvas-backdrop.show {
    opacity: 0.65;
    z-index: 1040;
}

/* ---- Scroll reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}
.reveal.is-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; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    body { opacity: 1; transition: none; }
    .sacramundo-loader { display: none !important; }
}

/* ---- Enhanced Hero ---- */
.hero-cinematic {
    perspective: 1200px;
}
.hero-cinematic__particles {
    position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.hero-particle {
    position: absolute; width: 3px; height: 3px; background: var(--gold); border-radius: 50%;
    opacity: 0.35; animation: particleFloat 8s ease-in-out infinite;
}
@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
    50% { transform: translateY(-30px) translateX(10px); opacity: 0.5; }
}
.hero-slide__bg, .hero-slide__media-img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center 55%;
    transform: scale(1.05);
    transition: transform 8s var(--ease-out);
}
.hero-slide.active .hero-slide__bg,
.hero-slide.active .hero-slide__media-img { animation: heroKenBurns 12s var(--ease-out) forwards; }
@keyframes heroKenBurns { from { transform: scale(1.05); } to { transform: scale(1.12); } }

.hero-cinematic__content { animation: heroTextReveal 1.2s var(--ease-luxury) 0.3s both; }
@keyframes heroTextReveal {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-cinematic__title { position: relative; display: inline-block; }
.hero-cinematic__title::after {
    content: ''; display: block; width: 0; height: 1px; background: var(--gold);
    margin: 1rem auto 0; animation: goldLineExpand 1s var(--ease-luxury) 0.8s forwards;
}
@keyframes goldLineExpand { to { width: 80px; } }

.hero-scroll-cue {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 3; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--text-muted); display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll-cue__line {
    width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Magnetic button */
.btn-magnetic { position: relative; display: inline-block; transition: transform 0.35s var(--ease-luxury); }
.btn-gold, .btn-outline-gold, .btn-outline-cream {
    transition: transform 0.35s var(--ease-luxury), background 0.4s, color 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.btn-gold:hover { box-shadow: 0 8px 24px rgba(201, 162, 77, 0.25); transform: translateY(-2px); }

/* ---- Interactive Faith / Hope / Love ---- */
.pillars-interactive {
    display: flex;
    flex-direction: row;
    min-height: 75vh;
    gap: 3px;
    width: 100%;
    max-width: 100%;
}
.pillar-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    transition: flex 0.7s var(--ease-luxury);
    text-decoration: none;
    color: var(--cream);
}
.pillars-interactive:hover .pillar-panel { flex: 0.85; }
.pillars-interactive .pillar-panel:hover { flex: 1.6; }
.pillar-panel__media {
    position: absolute; inset: 0;
    transition: transform 0.8s var(--ease-luxury);
}
.pillar-panel__media img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.08);
    transition: transform 0.9s var(--ease-luxury);
}
.pillar-panel:hover .pillar-panel__media img { transform: scale(1.15); }
.pillar-panel__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(3,19,38,0.92) 0%, rgba(3,19,38,0.35) 55%, rgba(3,19,38,0.2) 100%);
    transition: background 0.6s;
}
.pillar-panel:hover .pillar-panel__overlay {
    background: linear-gradient(to top, rgba(3,19,38,0.88) 0%, rgba(3,19,38,0.25) 60%, transparent 100%);
}
.pillar-panel__content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: clamp(2rem, 4vw, 3.5rem);
    z-index: 2;
}
.pillar-panel__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}
.pillar-panel__title::after {
    content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px;
    background: var(--gold); transition: width 0.5s var(--ease-luxury);
}
.pillar-panel:hover .pillar-panel__title::after { width: 100%; }
.pillar-panel__desc {
    font-size: 0.9rem; color: var(--text-muted); max-width: 280px;
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.5s, transform 0.5s var(--ease-luxury);
}
.pillar-panel:hover .pillar-panel__desc { opacity: 1; transform: translateY(0); }
.pillar-panel__cta {
    display: inline-block; margin-top: 1rem; font-size: 0.65rem; letter-spacing: 0.2em;
    color: var(--gold); opacity: 0; transition: opacity 0.4s 0.1s;
}
.pillar-panel:hover .pillar-panel__cta { opacity: 1; }

/* ---- Editorial collection tiles ---- */
.collections-editorial {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}
.collection-tile {
    grid-column: span 4;
    position: relative;
    min-height: 420px;
    overflow: hidden;
    display: block;
    color: var(--cream);
    border: 1px solid transparent;
    transition: border-color 0.5s, transform 0.5s var(--ease-luxury), box-shadow 0.5s;
}
.collection-tile:nth-child(1) { grid-column: span 7; min-height: 480px; }
.collection-tile:nth-child(2) { grid-column: span 5; }
.collection-tile:nth-child(3) { grid-column: span 4; }
.collection-tile:nth-child(4) { grid-column: span 4; }
.collection-tile:nth-child(5) { grid-column: span 4; }
.collection-tile:hover {
    border-color: rgba(201,162,77,0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}
.collection-tile__media { position: absolute; inset: 0; }
.collection-tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-luxury); }
.collection-tile:hover .collection-tile__media img { transform: scale(1.06); }
.collection-tile__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(3,19,38,0.9) 0%, rgba(3,19,38,0.15) 50%, transparent 100%);
}
.collection-tile__body {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2rem;
    z-index: 2;
}
.collection-tile__label { font-size: 0.6rem; letter-spacing: 0.25em; color: var(--gold); margin-bottom: 0.5rem; display: block; }
.collection-tile__title { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.35rem; }
.collection-tile__desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; max-width: 90%; }
.collection-tile__link { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold); }

/* ---- 3D Product cards ---- */
.product-card--luxury {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.15s ease-out, box-shadow 0.4s var(--ease-luxury);
}
.product-card--luxury.is-tilting { transition: transform 0.1s ease-out; }
.product-card--luxury .product-card__media {
    transform-style: preserve-3d;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.4s, box-shadow 0.4s;
}
.product-card--luxury:hover .product-card__media {
    border-color: rgba(201,162,77,0.25);
    box-shadow: var(--shadow-soft);
}
.product-card--luxury .product-card__link {
    position: absolute;
    inset: 0;
}

.product-card--luxury .product-card__img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.15s ease-out;
}
.product-card--luxury:hover { box-shadow: var(--shadow-lift); }
.product-card--luxury .product-card__img {
    transition: transform 0.7s var(--ease-luxury);
}
.product-card--luxury:hover .product-card__img { transform: scale(1.06); }

@media (hover: none) {
    .product-card--luxury { transform: none !important; }
}

/* ---- Editorial split enhanced ---- */
.editorial-split--luxury { min-height: 560px; }
.editorial-split--luxury .editorial-split__media {
    position: relative; overflow: hidden;
}
.editorial-split--luxury .editorial-split__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s var(--ease-luxury);
}
.editorial-split--luxury:hover .editorial-split__media img { transform: scale(1.04); }
.editorial-split--luxury .editorial-split__content {
    position: relative;
}
.editorial-split--luxury .editorial-split__content::before {
    content: ''; position: absolute; top: 3rem; left: 0; width: 60px; height: 1px; background: var(--gold); opacity: 0.5;
}
.editorial-gold-line {
    width: 80px; height: 1px; background: var(--gold); margin: 1.5rem 0; opacity: 0.6;
}

/* ---- Gift section ---- */
.section-gift {
    position: relative; overflow: hidden; min-height: 520px;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.section-gift__bg {
    position: absolute; inset: 0;
}
.section-gift__bg img { width: 100%; height: 100%; object-fit: cover; }
.section-gift__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(3,19,38,0.75), rgba(6,27,53,0.88));
}
.section-gift__content { position: relative; z-index: 2; max-width: 640px; padding: 3rem 1.5rem; }

/* ---- Story asymmetric ---- */
.story-editorial {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 600px;
    align-items: stretch;
}
.story-editorial__image {
    position: relative; min-height: 400px; overflow: hidden;
}
.story-editorial__image img { width: 100%; height: 100%; object-fit: cover; }
.story-editorial__image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--cream) 100%);
}
.story-editorial__text {
    background: var(--cream); color: var(--navy-deep);
    padding: clamp(3rem, 6vw, 6rem);
    display: flex; flex-direction: column; justify-content: center;
}
.story-editorial__text .section-title { color: var(--navy-deep); }
.story-editorial__text .section-label { color: var(--navy-royal); }

/* ---- Testimonials premium ---- */
.testimonials-section__header {
    margin-bottom: 1.25rem;
}
.testimonial-luxury {
    max-width: 720px; margin: 0 auto; text-align: center; padding: 1rem 0;
}
.testimonial-luxury__quote {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.2vw, 1.65rem);
    font-style: italic;
    line-height: 1.5;
    color: var(--cream);
    margin-bottom: 1.25rem;
    position: relative;
    padding-top: 0.35rem;
}
.testimonial-luxury__quote::before {
    content: '\201C'; font-size: 2.75rem; color: var(--gold); opacity: 0.22;
    position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
    font-family: var(--font-serif); line-height: 1;
}
.testimonial-luxury__author {
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}
.testimonial-luxury__stars { color: var(--gold); margin-bottom: 0.65rem; font-size: 0.8rem; }
.testimonial-nav {
    display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.25rem;
}
.testimonial-dot {
    width: 24px; height: 2px; background: rgba(247,243,234,0.25); border: none; padding: 0; cursor: pointer;
    transition: all 0.4s;
}
.testimonial-dot.active { background: var(--gold); width: 36px; }
.testimonial-track--luxury { transition: transform 0.7s var(--ease-luxury); }
.testimonial-track--luxury .testimonial-slide {
    flex: 0 0 100%; min-width: 100%;
    padding: 0.75rem 1rem 0.5rem;
}

/* ---- Instagram grid — centered, equal tiles ---- */
.insta-section {
    overflow: hidden;
}
.insta-grid--editorial {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.insta-grid--editorial .insta-item {
    aspect-ratio: 1;
    min-height: 0;
    width: 100%;
}
.insta-section__overlay-title {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; letter-spacing: 0.3em; color: var(--cream); opacity: 0;
    background: rgba(3,19,38,0.5); transition: opacity 0.4s; pointer-events: none;
}
.insta-grid--editorial:hover .insta-section__overlay-title { opacity: 0; }
.insta-item:hover .insta-section__overlay-title { opacity: 1; }

/* ---- Newsletter premium ---- */
.newsletter-luxury {
    position: relative; overflow: hidden; padding: clamp(4rem, 8vw, 6rem) 0;
}
.newsletter-luxury__bg { position: absolute; inset: 0; }
.newsletter-luxury__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.newsletter-luxury__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(3,19,38,0.92), rgba(6,27,53,0.85));
}
.newsletter-luxury__content { position: relative; z-index: 2; text-align: center; max-width: 560px; margin: 0 auto; }

/* ---- Footer premium ---- */
.footer-premium {
    position: relative;
    background: var(--navy-dark);
    border-top: 1px solid var(--border-subtle);
    overflow: hidden;
}
.footer-premium__top,
.footer-bottom {
    position: relative;
    z-index: 2;
}
.footer-floats {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    perspective: 1100px;
    perspective-origin: 50% 40%;
    transform: translate3d(calc(var(--footer-fx, 0) * 22px), calc(var(--footer-fy, 0) * 16px), 0);
    transition: transform 0.45s var(--ease-luxury, ease-out);
}
.footer-float {
    position: absolute;
    color: var(--gold);
    transform-style: preserve-3d;
    will-change: transform;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}
.footer-float svg {
    width: 100%;
    height: 100%;
    display: block;
}
.footer-float--cross {
    top: 12%;
    right: 8%;
    width: 2.4rem;
    height: 2.4rem;
    opacity: 0.28;
    animation: footerFloatCross 9s ease-in-out infinite;
}
.footer-float--ring {
    top: 38%;
    left: 5%;
    width: 3.25rem;
    height: 3.25rem;
    opacity: 0.32;
    animation: footerFloatRing 11s ease-in-out infinite;
}
.footer-float__ring {
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(201, 162, 77, 0.75);
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 1px rgba(247, 243, 234, 0.08),
        0 0 0 6px rgba(201, 162, 77, 0.06);
    transform: rotateX(62deg);
}
.footer-float--gem {
    bottom: 22%;
    right: 14%;
    width: 2.1rem;
    height: 2.1rem;
    opacity: 0.24;
    animation: footerFloatGem 10s ease-in-out infinite 0.8s;
}
.footer-float--pearl {
    top: 18%;
    left: 16%;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff 0%, rgba(201, 162, 77, 0.85) 45%, rgba(201, 162, 77, 0.35) 100%);
    opacity: 0.45;
    animation: footerFloatPearl 7s ease-in-out infinite 0.4s;
}
.footer-float--pearl-sm {
    top: 62%;
    right: 28%;
    width: 0.38rem;
    height: 0.38rem;
    opacity: 0.35;
    animation: footerFloatPearl 8.5s ease-in-out infinite 1.6s;
}
.footer-float--link {
    bottom: 14%;
    left: 10%;
    width: 2rem;
    height: 2rem;
    opacity: 0.22;
    animation: footerFloatLink 12s ease-in-out infinite 0.2s;
}
@keyframes footerFloatCross {
    0%, 100% { transform: translate3d(0, 0, 0) rotateX(18deg) rotateY(-24deg) rotateZ(0deg); }
    50% { transform: translate3d(-10px, -18px, 24px) rotateX(32deg) rotateY(12deg) rotateZ(8deg); }
}
@keyframes footerFloatRing {
    0%, 100% { transform: translate3d(0, 0, 0) rotateX(55deg) rotateY(20deg) rotateZ(0deg); }
    50% { transform: translate3d(14px, -12px, 18px) rotateX(68deg) rotateY(-16deg) rotateZ(-10deg); }
}
@keyframes footerFloatGem {
    0%, 100% { transform: translate3d(0, 0, 0) rotateX(12deg) rotateY(30deg) rotateZ(0deg); }
    50% { transform: translate3d(-8px, -16px, 20px) rotateX(-8deg) rotateY(-12deg) rotateZ(14deg); }
}
@keyframes footerFloatPearl {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.35; }
    50% { transform: translate3d(6px, -12px, 16px) scale(1.15); opacity: 0.55; }
}
@keyframes footerFloatLink {
    0%, 100% { transform: translate3d(0, 0, 0) rotateX(10deg) rotateY(-18deg); }
    50% { transform: translate3d(10px, -14px, 22px) rotateX(-6deg) rotateY(22deg); }
}
@media (prefers-reduced-motion: reduce) {
    .footer-float { animation: none !important; opacity: 0.18; }
}
.footer-premium__top { padding: 4rem 0 3rem; }
.footer-premium__heading {
    font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.25rem;
}
.footer-premium__links a {
    display: block; font-size: 0.85rem; color: var(--text-muted);
    padding: 0.35rem 0; transition: color 0.3s, padding-left 0.3s;
}
.footer-premium__links a:hover { color: var(--gold); padding-left: 4px; }
.footer-premium__divider { height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); opacity: 0.3; margin: 2rem 0; }
.footer-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    max-width: 920px;
    margin: 0 auto;
}
.footer-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0.55rem;
    min-height: 6.5rem;
    border: 1px solid rgba(201, 162, 77, 0.16);
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.footer-trust__item:hover {
    border-color: rgba(201, 162, 77, 0.38);
    background: rgba(201, 162, 77, 0.06);
    transform: translateY(-2px);
}
.footer-trust__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.65rem;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 77, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.footer-trust__svg {
    width: 1.05rem;
    height: 1.05rem;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: block;
}
.footer-trust__label {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream);
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .footer-premium__top {
        padding: 2.5rem 0 2rem;
    }
    .footer-premium__grid > .col-12,
    .footer-premium__grid > .footer-premium__brand {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    .footer-premium__grid > .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
    }
    .footer-premium__brand {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .footer-premium__brand .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-premium__brand .footer-tagline {
        max-width: none;
        margin-inline: auto;
    }
    .footer-premium__brand .social-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 1rem !important;
    }
    .footer-premium__brand .social-links a {
        margin-right: 0;
        width: 2.25rem;
        height: 2.25rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(201, 162, 77, 0.3);
        border-radius: 50%;
        font-size: 1rem;
    }
    .footer-premium__grid {
        --bs-gutter-y: 1.25rem;
    }
    .footer-premium__heading {
        font-size: 0.58rem;
        letter-spacing: 0.18em;
        margin-bottom: 0.65rem;
    }
    .footer-premium__links a {
        font-size: 0.78rem;
        padding: 0.2rem 0;
    }
    .footer-premium__links li {
        word-break: break-word;
    }
    .footer-premium__divider {
        margin: 1.5rem 0;
    }
    .footer-trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.45rem;
        max-width: 100%;
    }
    .footer-trust__item {
        padding: 0.75rem 0.35rem;
        min-height: 5.5rem;
    }
    .footer-trust__icon {
        width: 34px;
        height: 34px;
        margin-bottom: 0.5rem;
    }
    .footer-trust__svg {
        width: 0.95rem;
        height: 0.95rem;
        stroke-width: 1.25;
    }
    .footer-trust__label {
        font-size: 0.5rem;
        letter-spacing: 0.12em;
    }
    .footer-bottom {
        text-align: center;
    }
    .footer-bottom .container-fluid {
        flex-direction: column !important;
        justify-content: center !important;
        gap: 0.75rem;
    }
    .footer-pillars {
        letter-spacing: 0.16em;
    }
    .footer-float--cross {
        top: 8%;
        right: 4%;
        width: 1.75rem;
        height: 1.75rem;
        opacity: 0.32;
    }
    .footer-float--ring {
        top: 42%;
        left: 2%;
        width: 2.35rem;
        height: 2.35rem;
        opacity: 0.34;
    }
    .footer-float--gem {
        bottom: 18%;
        right: 6%;
        width: 1.6rem;
        height: 1.6rem;
        opacity: 0.28;
    }
    .footer-float--link {
        display: none;
    }
    .footer-float--pearl {
        left: 8%;
        opacity: 0.3;
    }
    .footer-float--pearl-sm {
        right: 10%;
    }
}

/* ---- Empty states ---- */
.empty-state--luxury { padding: 6rem 2rem; text-align: center; }
.empty-state--luxury i { font-size: 2.5rem; color: var(--gold); opacity: 0.6; margin-bottom: 1.5rem; display: block; }
.empty-state--luxury h3 {
    font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.25rem);
    letter-spacing: 0.06em; margin-bottom: 0.75rem;
}
.empty-state--luxury p { color: var(--text-muted); max-width: 360px; margin: 0 auto 2rem; font-size: 0.95rem; }

/* ---- 404 premium ---- */
.error-page--luxury { min-height: 80vh; position: relative; }
.error-page--luxury h1 {
    font-family: var(--font-serif); font-size: clamp(5rem, 15vw, 9rem);
    color: transparent; -webkit-text-stroke: 1px rgba(201,162,77,0.4);
    line-height: 1; margin-bottom: 0;
}
.error-page--luxury .error-cross {
    width: 40px; height: 40px; margin: 0 auto 2rem; opacity: 0.35;
    border: 1px solid var(--gold); transform: rotate(45deg);
}

/* ---- Product page luxury ---- */
.product-detail--luxury .product-gallery__main {
    border: 1px solid var(--border-subtle);
    background: var(--navy-dark);
}
.product-detail--luxury .product-info {
    position: sticky; top: calc(var(--header-height) + 1rem);
}
.product-detail--luxury .product-info__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
}
.product-share { display: flex; gap: 1rem; margin-top: 1.5rem; }
.product-share a { color: var(--text-muted); font-size: 1.1rem; transition: color 0.3s; }
.product-share a:hover { color: var(--gold); }

/* ---- Benefits refined ---- */
.benefits-luxury {
    border-bottom: 1px solid var(--border-subtle);
    padding: 2.5rem 0;
}
.benefits-luxury__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.benefit-luxury {
    text-align: center;
    padding: 1.35rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 162, 77, 0.14);
}
.benefit-luxury__icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 77, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.05rem;
    flex-shrink: 0;
}
.benefit-luxury__svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: block;
}
.benefit-luxury__title {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream);
    margin: 0 0 0.4rem;
}
.benefit-luxury__text {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--text-muted);
    margin: 0;
    max-width: 14rem;
}

/* ---- Craftsmanship ---- */
.craftsmanship-section {
    position: relative; overflow: hidden;
}
.craftsmanship-section__bg {
    position: absolute; inset: 0;
}
.craftsmanship-section__bg img { width: 100%; height: 100%; object-fit: cover; }
.craftsmanship-section__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(3,19,38,0.95) 40%, rgba(3,19,38,0.7) 100%);
}
.craftsmanship-section__inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    padding: clamp(4rem, 8vw, 7rem) 0;
    align-items: center;
}
/* ---- Nav gifts link ---- */
.nav-link--gifts { color: var(--gold) !important; }

/* ---- Mobile: readable stacked layouts ---- */
@media (max-width: 991.98px) {
    .section-label {
        font-size: 0.56rem;
        letter-spacing: 0.2em;
        margin-bottom: 0.4rem;
    }

    .section-title {
        font-size: clamp(1.35rem, 4.5vw, 1.85rem);
        line-height: 1.06;
        letter-spacing: 0.05em;
        text-wrap: balance;
    }

    .site-main .mb-5 {
        margin-bottom: 1.25rem !important;
    }

    .site-main .py-5 {
        padding-top: 1.35rem !important;
        padding-bottom: 1.35rem !important;
    }

    .py-section {
        padding: clamp(2rem, 4.5vw, 3.25rem) 0;
    }

    .container-fluid.px-4 {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        max-width: 100%;
        min-width: 0;
    }

    .site-main > section {
        max-width: 100%;
        overflow-x: clip;
    }

    /* Faith / Hope / Love — 2 up top, full-width third row */
    .pillars-interactive {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3px;
        min-height: auto;
    }
    .pillars-interactive:hover .pillar-panel,
    .pillars-interactive .pillar-panel:hover {
        flex: unset;
    }
    .pillar-panel {
        flex: unset;
        min-height: clamp(220px, 52vw, 360px);
    }
    .pillar-panel:nth-child(3) {
        grid-column: 1 / -1;
        min-height: clamp(180px, 40vw, 280px);
    }
    .pillar-panel__content {
        padding: clamp(1rem, 3vw, 3.5rem);
        text-align: left;
    }
    .pillar-panel__title {
        font-size: clamp(1.35rem, 5.5vw, 3.25rem);
        letter-spacing: 0.1em;
        margin-bottom: 0;
    }
    .pillar-panel__desc,
    .pillar-panel__cta {
        display: none;
    }

    /* Collections — same bento grid as desktop, scaled for mobile */
    .collections-editorial {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        align-items: stretch;
        gap: 0.25rem;
    }
    .collection-tile {
        grid-column: span 4;
        display: flex;
        flex-direction: column;
        align-self: stretch;
        min-height: auto;
        height: 100%;
    }
    .collection-tile:nth-child(1) {
        grid-column: span 7;
        min-height: auto;
    }
    .collection-tile:nth-child(2) {
        grid-column: span 5;
        min-height: auto;
    }
    .collection-tile:nth-child(3),
    .collection-tile:nth-child(4) {
        grid-column: span 6;
        min-height: auto;
    }
    .collection-tile:nth-child(5) {
        grid-column: span 12;
        min-height: auto;
    }
    .collection-tile:nth-child(3):last-child {
        grid-column: 1 / -1;
    }
    .collection-tile:hover {
        transform: none;
    }
    .collection-tile__media {
        position: relative;
        inset: auto;
        width: 100%;
        aspect-ratio: auto;
        height: clamp(128px, 36vw, 168px);
        flex-shrink: 0;
        overflow: hidden;
    }
    .collection-tile:nth-child(1) .collection-tile__media,
    .collection-tile:nth-child(2) .collection-tile__media,
    .collection-tile:nth-child(3) .collection-tile__media,
    .collection-tile:nth-child(4) .collection-tile__media {
        height: clamp(128px, 36vw, 168px);
    }
    .collection-tile:nth-child(5) .collection-tile__media {
        aspect-ratio: 2 / 1;
        height: auto;
    }
    .collection-tile__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .collection-tile__overlay {
        display: none;
    }
    .collection-tile__body {
        position: static;
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        padding: 0.4rem 0.45rem 0.45rem;
        text-align: left;
        background: var(--navy-dark);
        border-top: 1px solid rgba(201, 162, 77, 0.18);
        min-height: 3.75rem;
    }
    .collection-tile__label {
        font-size: 0.45rem;
        letter-spacing: 0.14em;
        margin-bottom: 0.1rem;
    }
    .collection-tile__title {
        font-size: clamp(0.78rem, 3vw, 1.2rem);
        margin-bottom: 0.1rem;
        line-height: 1.1;
    }
    .collection-tile__desc {
        display: none;
    }
    .collection-tile:nth-child(5) .collection-tile__desc {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        font-size: clamp(0.55rem, 1.9vw, 0.72rem);
        line-height: 1.35;
        margin-bottom: 0.2rem;
        max-width: 100%;
    }
    .collection-tile__link {
        font-size: 0.48rem;
        letter-spacing: 0.12em;
        line-height: 1;
        margin-top: auto;
    }

    /* Craftsmanship — single column content */
    .craftsmanship-section__overlay {
        background: linear-gradient(to bottom, rgba(3,19,38,0.55) 0%, rgba(3,19,38,0.92) 45%, rgba(3,19,38,0.96) 100%);
    }
    .craftsmanship-section__inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: clamp(3rem, 8vw, 5rem) 0;
    }
    .craftsmanship-section__inner > div:empty {
        display: none;
    }
    .craft-details {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    /* Gift section */
    .section-gift {
        min-height: 420px;
    }
    .section-gift__content {
        padding: 2.5rem 1.25rem;
        max-width: none;
    }

    /* Our Story — image on top, text below full width */
    .story-editorial {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .story-editorial__image {
        min-height: 52vw;
        max-height: 420px;
    }
    .story-editorial__image::after {
        background: linear-gradient(to bottom, transparent 55%, var(--cream) 100%);
    }
    .story-editorial__text {
        padding: 2.5rem 1.25rem 3rem;
    }
    .story-editorial__text p {
        font-size: 0.95rem;
        line-height: 1.85;
        max-width: 36rem;
    }
    .story-editorial__text .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Benefits — 2×2 card grid */
    .benefits-luxury {
        padding: 1.75rem 0;
    }
    .benefits-luxury__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }
    .benefit-luxury {
        padding: 1.1rem 0.65rem;
        min-height: 8.75rem;
        justify-content: flex-start;
    }
    .benefit-luxury__icon {
        width: 38px;
        height: 38px;
        margin-bottom: 0.65rem;
    }
    .benefit-luxury__svg {
        width: 1.1rem;
        height: 1.1rem;
        stroke-width: 1.25;
    }
    .benefit-luxury__title {
        font-size: 0.58rem;
        letter-spacing: 0.14em;
        margin-bottom: 0.3rem;
    }
    .benefit-luxury__text {
        font-size: 0.7rem;
        line-height: 1.4;
        min-height: 2.8em;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        max-width: none;
    }

    /* Testimonials — compact on mobile */
    .testimonials-section.py-section {
        padding: 1.35rem 0 1.5rem;
    }
    .testimonials-section__header {
        margin-bottom: 0.65rem;
    }
    .testimonials-section .testimonial-track--luxury .testimonial-slide {
        padding: 0.35rem 0.25rem 0.25rem;
    }
    .testimonials-section .testimonial-luxury {
        padding: 0.25rem 0;
    }
    .testimonials-section .testimonial-luxury__quote {
        font-size: clamp(0.95rem, 3.6vw, 1.15rem);
        line-height: 1.45;
        margin-bottom: 0.75rem;
        padding-top: 0.15rem;
    }
    .testimonials-section .testimonial-luxury__quote::before {
        font-size: 2rem;
        top: -0.55rem;
        opacity: 0.18;
    }
    .testimonials-section .testimonial-luxury__stars {
        margin-bottom: 0.4rem;
        font-size: 0.72rem;
    }
    .testimonials-section .testimonial-luxury__author {
        font-size: 0.58rem;
        letter-spacing: 0.16em;
    }
    .testimonials-section .testimonial-nav {
        margin-top: 0.75rem;
        gap: 0.4rem;
    }
    .testimonials-section .testimonial-dot {
        width: 20px;
    }
    .testimonials-section .testimonial-dot.active {
        width: 28px;
    }

    /* Inner page titles — compact on mobile */
    .page-hero {
        padding: 1.1rem 0 0.75rem;
    }
    .page-hero .section-label {
        margin-bottom: 0.28rem;
    }
    .page-hero__title,
    .content-page .section-title,
    .faq-page__title,
    .site-main > .container-fluid .section-title {
        font-size: clamp(1.28rem, 4.2vw, 1.6rem);
        line-height: 1.08;
        letter-spacing: 0.04em;
    }
    .content-page {
        padding: 1.25rem 0 1.75rem;
    }
    .content-page .section-title.mb-4,
    .content-page h1.mb-4 {
        margin-bottom: 0.85rem !important;
    }
    .site-main > .container-fluid.py-5 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.5rem !important;
    }
    .site-main > .container-fluid .text-center.mb-5 {
        margin-bottom: 1rem !important;
    }
    .site-main > .container-fluid .section-title.mb-3 {
        margin-bottom: 0.65rem !important;
    }

    /* FAQ page — compact on mobile */
    .faq-page__header {
        margin-bottom: 0.85rem;
    }
    .faq-page__intro {
        font-size: 0.8rem;
    }
    .faq-item__toggle {
        padding: 0.85rem 0;
        gap: 0.75rem;
    }
    .faq-item__question {
        font-size: 0.98rem;
    }
    .faq-item__answer {
        font-size: 0.8rem;
        padding-bottom: 0.95rem;
    }
    .faq-page__footer {
        margin-top: 1.25rem;
        font-size: 0.78rem;
    }

    /* Shop page — compact hero & filters */
    .shop-page .page-hero {
        border-bottom: none;
    }
    .shop-page-content {
        padding-top: 0.15rem;
        min-width: 0;
        overflow-x: visible;
    }
    .shop-mobile-controls {
        margin-bottom: 0.75rem;
        margin-inline: -1.25rem;
        width: calc(100% + 2.5rem);
        min-width: 0;
        max-width: none;
        overflow: visible;
    }
    .shop-filter-chips {
        display: block;
        width: 100%;
        margin: 0 0 0.5rem;
        padding: 0;
        min-width: 0;
        overflow: visible;
    }
    .shop-filter-chips--collections {
        margin-bottom: 0.65rem;
    }
    .shop-filter-chips__scroll {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.4rem;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 0 1.25rem 0.05rem;
    }
    .shop-filter-chip {
        flex: 0 0 auto;
        flex-shrink: 0;
        scroll-snap-align: start;
        display: inline-flex;
        align-items: center;
        padding: 0.38rem 0.72rem;
        border: 1px solid rgba(201, 162, 77, 0.28);
        color: var(--text-muted);
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        text-decoration: none;
        white-space: nowrap;
        transition: color 0.25s, border-color 0.25s, background 0.25s;
    }
    .shop-filter-chip.is-active,
    .shop-filter-chip:hover {
        color: var(--gold);
        border-color: rgba(201, 162, 77, 0.55);
        background: rgba(201, 162, 77, 0.08);
    }
    .shop-mobile-toolbar {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding-inline: 1.25rem;
        position: relative;
        z-index: 25;
    }
    .shop-filters-toggle {
        flex: 0 0 auto;
        font-size: 0.62rem;
        letter-spacing: 0.14em;
        padding: 0.45rem 0.85rem;
        min-height: 2.15rem;
    }
    .shop-mobile-sort {
        flex: 1 1 auto;
        min-width: 0;
    }
    .shop-mobile-sort .shop-sort-dropdown__toggle {
        font-size: 0.72rem;
        padding: 0.45rem 0.65rem;
        background: var(--navy-royal);
    }
    .shop-mobile-sort .shop-sort-dropdown__option {
        font-size: 0.72rem;
    }
    .shop-filters-panel {
        margin-top: 0.55rem;
    }
    .shop-sidebar--mobile {
        padding: 0.75rem 0.85rem;
        border: 1px solid var(--border-subtle);
        background: rgba(255, 255, 255, 0.02);
    }
    .shop-sidebar--mobile .filter-group {
        margin-bottom: 0;
    }
    .shop-sidebar--mobile .filter-group h6 {
        margin-bottom: 0.55rem;
        padding-bottom: 0.35rem;
        font-size: 0.58rem;
    }
    .shop-sidebar--mobile .form-control-sm {
        padding: 0.45rem 0.55rem;
        font-size: 0.75rem;
    }
    .shop-sidebar--mobile .btn-sm {
        font-size: 0.62rem;
        letter-spacing: 0.12em;
        padding: 0.45rem 0.75rem;
    }
    .shop-page .shop-layout {
        padding: 0.5rem 0 2rem;
        gap: 0;
    }
    .shop-page .shop-toolbar {
        margin-bottom: 0.85rem;
        padding-bottom: 0.55rem;
    }
    .shop-page .shop-toolbar__count {
        font-size: 0.72rem;
        letter-spacing: 0.04em;
    }

    /* Instagram — horizontal scroll, larger tiles */
    .insta-section {
        overflow-x: clip;
    }
    .insta-grid,
    .insta-grid--editorial {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.65rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        padding: 0 1.25rem 0.75rem;
        margin: 0 auto;
        max-width: 100%;
        min-width: 0;
    }
    .insta-grid .insta-item,
    .insta-grid--editorial .insta-item {
        flex: 0 0 calc(50% - 0.35rem);
        width: calc(50% - 0.35rem);
        min-width: calc(50% - 0.35rem);
        max-width: 200px;
        scroll-snap-align: start;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    .newsletter-form input {
        border-right: 1px solid var(--border-subtle);
        margin-bottom: 0.75rem;
    }

    /* Section headers with side buttons */
    .d-flex.justify-content-between.align-items-end {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
}

@media (hover: none) {
    .pillars-interactive .pillar-panel { flex: 1 !important; }
}

@media (hover: none) and (min-width: 992px) {
    .pillar-panel__desc,
    .pillar-panel__cta {
        opacity: 1;
        transform: none;
    }
    .pillar-panel__cta {
        font-size: 0.55rem;
        margin-top: 0.5rem;
    }
}

/* Hero — compact on phones only (fixed height beats vh/min-height conflicts) */
@media (max-width: 767.98px) {
    .home-page .hero-cinematic {
        height: 420px;
        min-height: 0;
        max-height: 420px;
    }
    .home-page .hero-slide__bg,
    .home-page .hero-slide__media-img {
        object-position: 30% 65%;
    }
    .home-page .hero-cinematic__content {
        padding: 1.25rem 1rem;
    }
    .home-page .hero-cinematic__title {
        font-size: clamp(1.85rem, 9vw, 2.75rem);
        margin-bottom: 0.85rem;
    }
    .home-page .hero-cinematic__subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    .home-page .hero-scroll-cue {
        bottom: 0.75rem;
    }
}
