:root {
    --ivory: #FAF7F2;
    --champagne: #C9A96E;
    --gold: #B8862B;
    --gold-light: #E8D5A3;
    --deep: #0D0D0B;
    --charcoal: #1A1916;
    --muted: #6B6560;
    --warm-white: #F5F0E8;
    --border: #E2D9CA;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --wa: #25D366;
    --transition: cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    background: var(--ivory);
    color: var(--deep);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

/* PRELOADER */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .8s var(--transition), visibility .8s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden
}

.preloader-inner {
    text-align: center
}

.preloader-logo {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--champagne);
    letter-spacing: .3em;
    animation: shimmer 2s ease-in-out infinite;
}

.preloader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--champagne), transparent);
    margin: .5rem auto;
    animation: expandLine 1.5s ease forwards .3s;
}

.preloader-sub {
    font-family: var(--sans);
    color: rgba(201, 169, 110, .6);
    font-size: .7rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp .8s ease forwards 1s;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: .7
    }

    50% {
        opacity: 1
    }
}

@keyframes expandLine {
    to {
        width: 200px
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }

    from {
        opacity: 0;
        transform: translateY(8px)
    }
}

/* SCROLL PROGRESS */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--champagne), var(--gold));
    z-index: 9998;
    width: 0%;
    transition: width .1s linear;
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    transition: all .4s var(--transition);
}

nav.scrolled {
    background: rgba(13, 13, 11, .92);
    backdrop-filter: blur(20px);
    padding: 1rem 2.5rem;
    border-bottom: 1px solid rgba(201, 169, 110, .15);
}

.nav-left,
.nav-right {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-left a,
.nav-right a {
    font-family: var(--sans);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ivory);
    text-decoration: none;
    position: relative;
    transition: color .3s;
}

.nav-left a::after,
.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--champagne);
    transform: scaleX(0);
    transition: transform .3s var(--transition);
    transform-origin: left;
}

.nav-left a:hover,
.nav-right a:hover {
    color: var(--champagne)
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    transform: scaleX(1)
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--champagne);
    letter-spacing: .15em;
    text-decoration: none;
}

.nav-inquire {
    border: 1px solid var(--champagne) !important;
    padding: .4rem 1.2rem !important;
    border-radius: 0 !important;
    transition: all .3s !important;
}

.nav-inquire:hover {
    background: var(--champagne) !important;
    color: var(--deep) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
}

.hamburger span {
    width: 24px;
    height: 1px;
    background: var(--champagne);
    transition: all .3s var(--transition);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px)
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all .4s var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible
}

.mobile-menu a {
    font-family: var(--serif);
    font-size: clamp(2rem, 8vw, 3.5rem);
    color: var(--ivory);
    text-decoration: none;
    letter-spacing: .05em;
    display: block;
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: color .3s;
}

.mobile-menu.open a {
    animation: slideUp .5s var(--transition) forwards;
}

.mobile-menu.open a:nth-child(1) {
    animation-delay: .1s
}

.mobile-menu.open a:nth-child(2) {
    animation-delay: .2s
}

.mobile-menu.open a:nth-child(3) {
    animation-delay: .3s
}

.mobile-menu.open a:nth-child(4) {
    animation-delay: .4s
}

.mobile-menu a:hover {
    color: var(--champagne)
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* HERO */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0D0D0B 0%, #1F1A14 40%, #0D0D0B 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(201, 169, 110, .08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 110, .05) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(201, 169, 110, .04) 0%, transparent 30%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-line {
    position: absolute;
    background: rgba(201, 169, 110, .12);
}

.hero-line-1 {
    top: 0;
    left: 20%;
    width: 1px;
    height: 100%
}

.hero-line-2 {
    top: 0;
    right: 25%;
    width: 1px;
    height: 100%
}

.hero-line-3 {
    top: 30%;
    left: 0;
    width: 100%;
    height: 1px
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
}

.hero-eyebrow {
    font-family: var(--sans);
    font-size: .65rem;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp .8s ease forwards .5s;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 9vw, 7.5rem);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.0;
    letter-spacing: -.01em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp .9s ease forwards .7s;
}

.hero-title em {
    font-style: italic;
    color: var(--champagne);
}

.hero-subtitle {
    font-family: var(--sans);
    font-size: clamp(.85rem, 2vw, 1rem);
    color: rgba(250, 247, 242, .55);
    letter-spacing: .08em;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp .9s ease forwards .9s;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp .9s ease forwards 1.1s;
}

.btn-primary {
    font-family: var(--sans);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    background: var(--champagne);
    color: var(--deep);
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: all .3s var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, .25)
}

.btn-outline {
    font-family: var(--sans);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    background: transparent;
    color: var(--ivory);
    padding: 1rem 2.5rem;
    border: 1px solid rgba(250, 247, 242, .3);
    cursor: pointer;
    transition: all .3s var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--champagne);
    color: var(--champagne)
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(201, 169, 110, .5);
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp .9s ease forwards 1.5s;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(201, 169, 110, .5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: .5
    }

    50% {
        transform: scaleY(1.2);
        opacity: 1
    }
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--transition), transform .8s var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .8s var(--transition), transform .8s var(--transition)
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .8s var(--transition), transform .8s var(--transition)
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0)
}

/* SECTION COMMON */
.section-padding {
    padding: 7rem 0
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem
}

.section-label {
    font-family: var(--sans);
    font-size: .62rem;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--champagne);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
}

/* BRAND STORY */
.brand-story {
    background: var(--deep);
    overflow: hidden;
}

.brand-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.brand-story-image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.brand-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition);
}

.brand-story-image:hover img {
    transform: scale(1.05)
}

.brand-story-content {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-story-content .section-label {
    color: var(--champagne)
}

.brand-story-content h2 {
    color: var(--ivory);
}

.brand-story-content p {
    color: rgba(250, 247, 242, .65);
    margin-top: 1.5rem;
    line-height: 1.9;
    font-size: .95rem;
}

.gold-divider {
    width: 60px;
    height: 1px;
    background: var(--champagne);
    margin: 2rem 0;
}

/* COLLECTIONS / BESTSELLERS */
.collections-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--transition);
    filter: brightness(.75);
}

.collection-card:hover img {
    transform: scale(1.08);
    filter: brightness(.6)
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: all .4s var(--transition);
}

.collection-badge {
    font-family: var(--sans);
    font-size: .6rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--champagne);
    border: 1px solid var(--champagne);
    padding: .25rem .75rem;
    display: inline-block;
    margin-bottom: 1rem;
    width: fit-content;
}

.collection-name {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--ivory);
    font-weight: 300;
    line-height: 1.1;
}

.collection-sub {
    font-family: var(--sans);
    font-size: .8rem;
    color: rgba(250, 247, 242, .7);
    margin-top: .5rem;
}

.collection-cta {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--champagne);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.8);
    transition: all .4s var(--transition);
    color: var(--deep);
    font-size: 1.2rem;
}

.collection-card:hover .collection-cta {
    opacity: 1;
    transform: scale(1)
}

/* PRODUCT GRID */
.filter-bar {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.filter-chip {
    font-family: var(--sans);
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .5rem 1.5rem;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all .3s var(--transition);
    color: var(--muted);
}

.filter-chip.active,
.filter-chip:hover {
    border-color: var(--champagne);
    background: var(--champagne);
    color: var(--deep);
}

.products-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
}

.product-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--transition);
}

.product-card:hover .product-card-img img {
    transform: scale(1.08)
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--sans);
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    z-index: 2;
}

.badge-new {
    background: var(--deep);
    color: var(--champagne)
}

.badge-best {
    background: var(--champagne);
    color: var(--deep)
}

.badge-limited {
    background: #8B0000;
    color: #FAF7F2
}

.product-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 11, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .4s var(--transition);
}

.product-card:hover .product-hover-overlay {
    opacity: 1
}

.product-quick-view {
    font-family: var(--sans);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ivory);
    border: 1px solid rgba(250, 247, 242, .5);
    padding: .7rem 1.5rem;
    background: transparent;
    cursor: pointer;
    transition: all .3s var(--transition);
    transform: translateY(10px);
    transition: all .4s var(--transition);
}

.product-card:hover .product-quick-view {
    transform: translateY(0)
}

.product-quick-view:hover {
    background: var(--champagne);
    border-color: var(--champagne);
    color: var(--deep)
}

.product-info {
    padding: 1.25rem 1rem
}

.product-name {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: .02em;
}

.product-meta {
    font-family: var(--sans);
    font-size: .72rem;
    color: var(--muted);
    letter-spacing: .05em;
    margin-top: .25rem;
}

.product-wa-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .75rem;
    font-family: var(--sans);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--champagne);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: gap .3s;
}

.product-wa-btn:hover {
    gap: .75rem
}

.product-wa-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor
}

/* SKELETON LOADER */
.skeleton {
    background: linear-gradient(90deg, #e8e0d4 25%, #f0e8de 50%, #e8e0d4 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

.skeleton-card .skeleton-img {
    aspect-ratio: 3/4;
    margin-bottom: .5rem
}

.skeleton-card .skeleton-text {
    height: 16px;
    margin-bottom: .5rem;
    border-radius: 2px
}

.skeleton-card .skeleton-text.short {
    width: 60%
}

/* HORIZONTAL CAROUSEL */
.carousel-section {
    background: var(--warm-white)
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing
}

.carousel-track::-webkit-scrollbar {
    display: none
}

.carousel-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--transition);
}

.carousel-item:hover img {
    transform: scale(1.05)
}

.carousel-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 11, .75) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.carousel-item-name {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--ivory);
    font-weight: 300;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--champagne);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--transition);
    color: var(--champagne);
}

.carousel-btn:hover {
    background: var(--champagne);
    color: var(--deep)
}

/* TESTIMONIALS */
.testimonials-section {
    background: var(--deep);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 2rem;
    font-family: var(--serif);
    font-size: 25rem;
    color: rgba(201, 169, 110, .04);
    line-height: 1;
    pointer-events: none;
}

.test-carousel {
    position: relative;
    overflow: hidden;
}

.test-slide {
    display: none;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.test-slide.active {
    display: block;
    animation: testFade .6s ease
}

@keyframes testFade {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.test-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--ivory);
    line-height: 1.6;
    font-weight: 300;
}

.test-author {
    font-family: var(--sans);
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-top: 2rem;
}

.test-stars {
    color: var(--champagne);
    font-size: 1rem;
    letter-spacing: .2em;
    margin-top: 1rem;
}

.test-dots {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-top: 3rem;
}

.test-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(201, 169, 110, .3);
    cursor: pointer;
    transition: all .3s;
    border: none;
    padding: 0;
}

.test-dot.active {
    background: var(--champagne);
    width: 20px;
    border-radius: 3px
}

/* INSTAGRAM GRID */
.instagram-section {
    padding: 5rem 0
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.insta-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--transition);
    filter: brightness(.9);
}

.insta-item:hover img {
    transform: scale(1.08);
    filter: brightness(.6)
}

.insta-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .4s;
    color: var(--ivory);
    font-size: 1.2rem;
}

.insta-item:hover .insta-overlay {
    opacity: 1
}

/* WHATSAPP FLOAT */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--wa);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    cursor: pointer;
    transition: all .3s var(--transition);
    animation: waPulse 2.5s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .5)
}

.wa-float svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
    }

    50% {
        box-shadow: 0 4px 35px rgba(37, 211, 102, .6), 0 0 0 8px rgba(37, 211, 102, .1)
    }
}

.wa-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: var(--deep);
    color: var(--ivory);
    font-family: var(--sans);
    font-size: .7rem;
    letter-spacing: .05em;
    white-space: nowrap;
    padding: .5rem 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.wa-float:hover .wa-tooltip {
    opacity: 1
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 11, .85);
    backdrop-filter: blur(10px);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s var(--transition);
    padding: 1rem;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible
}

.modal-box {
    background: var(--ivory);
    max-width: 520px;
    width: 100%;
    padding: 3.5rem;
    position: relative;
    transform: scale(.9);
    transition: transform .4s var(--transition);
}

.modal-overlay.open .modal-box {
    transform: scale(1)
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .3s;
}

.modal-close:hover {
    color: var(--deep)
}

.modal-eyebrow {
    font-family: var(--sans);
    font-size: .62rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 1rem;
}

.modal-title {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
}

.modal-sub {
    font-family: var(--sans);
    font-size: .85rem;
    color: var(--muted);
    margin-top: .75rem;
    line-height: 1.7;
}

.modal-divider {
    width: 40px;
    height: 1px;
    background: var(--champagne);
    margin: 1.5rem 0
}

.elegant-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem
}

.elegant-form input {
    font-family: var(--sans);
    font-size: .9rem;
    padding: .9rem 1.2rem;
    border: 1px solid var(--border);
    background: transparent;
    outline: none;
    transition: border-color .3s;
    color: var(--deep);
}

.elegant-form input:focus {
    border-color: var(--champagne)
}

.elegant-form input::placeholder {
    color: var(--muted)
}

.modal-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background: var(--wa);
    color: #fff;
    font-family: var(--sans);
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    margin-top: .5rem;
    transition: all .3s var(--transition);
}

.modal-wa-btn:hover {
    background: #1da851;
    transform: translateY(-2px)
}

.modal-wa-btn svg {
    width: 16px;
    height: 16px;
    fill: #fff
}

/* QUICK VIEW MODAL */
.qv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 11, .9);
    backdrop-filter: blur(12px);
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s var(--transition);
    padding: 1rem;
}

.qv-overlay.open {
    opacity: 1;
    visibility: visible
}

.qv-box {
    background: var(--ivory);
    max-width: 850px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: scale(.9);
    transition: transform .4s var(--transition);
    max-height: 90vh;
    overflow: hidden;
}

.qv-overlay.open .qv-box {
    transform: scale(1)
}

.qv-img {
    position: relative;
    overflow: hidden
}

.qv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px
}

.qv-content {
    padding: 3rem 2.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.qv-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(13, 13, 11, .6);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
    transition: background .3s;
}

.qv-close:hover {
    background: rgba(13, 13, 11, .9)
}

.qv-badge-row {
    display: flex;
    gap: .5rem;
    margin-bottom: 1.5rem
}

.qv-name {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.2
}

.qv-desc {
    font-family: var(--sans);
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 1rem;
    flex: 1
}

.qv-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border)
}

.qv-detail-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--sans);
    font-size: .78rem;
    padding: .4rem 0;
    border-bottom: 1px solid rgba(226, 217, 202, .5);
    color: var(--muted);
}

.qv-detail-row span:last-child {
    color: var(--deep);
    font-weight: 400
}

.qv-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.qv-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background: var(--wa);
    color: #fff;
    font-family: var(--sans);
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 1rem;
    border: none;
    cursor: pointer;
    transition: all .3s;
}

.qv-wa-btn:hover {
    background: #1da851
}

.qv-inquire-btn {
    font-family: var(--sans);
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    background: transparent;
    color: var(--deep);
    padding: .9rem;
    border: 1px solid var(--deep);
    cursor: pointer;
    transition: all .3s;
}

.qv-inquire-btn:hover {
    background: var(--deep);
    color: var(--ivory)
}

/* ABOUT / MARQUEE */
.marquee-section {
    background: var(--deep);
    padding: 1.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(201, 169, 110, .2);
    border-bottom: 1px solid rgba(201, 169, 110, .2);
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused
}

.marquee-item {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(201, 169, 110, .7);
    padding: 0 3rem;
    flex-shrink: 0;
}

.marquee-sep {
    color: var(--champagne)
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* FOOTER */
footer {
    background: var(--charcoal);
    padding: 5rem 0 3rem;
    border-top: 1px solid rgba(201, 169, 110, .15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-brand .logo {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--champagne);
    letter-spacing: .1em;
}

.footer-brand p {
    font-family: var(--sans);
    font-size: .82rem;
    color: rgba(250, 247, 242, .45);
    margin-top: 1rem;
    line-height: 1.8;
    max-width: 260px;
}

.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.5rem;
    background: var(--wa);
    color: #fff;
    font-family: var(--sans);
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .6rem 1.2rem;
    text-decoration: none;
    transition: all .3s;
}

.footer-wa:hover {
    background: #1da851
}

.footer-col h4 {
    font-family: var(--sans);
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    font-family: var(--sans);
    font-size: .82rem;
    color: rgba(250, 247, 242, .45);
    text-decoration: none;
    margin-bottom: .75rem;
    transition: color .3s;
}

.footer-col a:hover {
    color: var(--champagne)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-family: var(--sans);
    font-size: .72rem;
    color: rgba(250, 247, 242, .25);
    letter-spacing: .05em;
}

.social-links {
    display: flex;
    gap: 1rem
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 169, 110, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201, 169, 110, .5);
    font-size: .75rem;
    transition: all .3s;
    text-decoration: none;
}

.social-link:hover {
    border-color: var(--champagne);
    color: var(--champagne)
}

/* BACK TO TOP */
#back-to-top {
    position: fixed;
    bottom: 6rem;
    right: 2.1rem;
    width: 40px;
    height: 40px;
    background: rgba(13, 13, 11, .8);
    border: 1px solid rgba(201, 169, 110, .3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 100;
    color: var(--champagne);
    font-size: .8rem;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible
}

#back-to-top:hover {
    background: var(--champagne);
    color: var(--deep)
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .collections-track {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem
    }

    .brand-story-grid {
        grid-template-columns: 1fr
    }

    .brand-story-content {
        padding: 3rem
    }

    .qv-box {
        grid-template-columns: 1fr
    }

    .qv-img img {
        min-height: 280px
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:768px) {

    .nav-left,
    .nav-right {
        display: none
    }

    .hamburger {
        display: flex
    }

    .collections-track {
        grid-template-columns: 1fr
    }

    .products-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem
    }

    .section-padding {
        padding: 4rem 0
    }

    .container {
        padding: 0 1.5rem
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .hero-actions {
        flex-direction: column;
        align-items: center
    }

    .carousel-item {
        flex: 0 0 240px
    }
}

@media(max-width:480px) {
    .products-masonry {
        grid-template-columns: 1fr
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .modal-box {
        padding: 2rem 1.5rem
    }

    .qv-content {
        padding: 2rem 1.5rem
    }
}