@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-black: #0A0A0A;
    --royal-gold: #C8A45A;
    --deep-maroon: #5A0F16;
    --ivory: #F7F5F1;
    --light-gold: #D4A574;
    --dark-gold: #A47C3A;
    --text-light: #E8E6E1;
    --text-muted: #B5B1A8;
    --bg-dark: #0F0F0F;
    --bg-darker: #050505;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.7;
    letter-spacing: 0.2px;
    overflow-x: hidden;
}

/* LOADING ANIMATION */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.6s ease, pointer-events 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--ivory);
    margin-bottom: 3rem;
    opacity: 0;
    animation: logoFadeIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

.loader-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--royal-gold), var(--light-gold));
    animation: lineGrow 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
    opacity: 0;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lineGrow {
    from {
        opacity: 0;
        width: 0;
    }
    to {
        opacity: 1;
        width: 60px;
    }
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 6vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h4 { font-size: 1.25rem; }

p {
    letter-spacing: 0.3px;
    word-spacing: 0.05em;
    max-width: 70ch;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--royal-gold);
}

.display-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.lead-copy {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.9;
}

/* LINKS */
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.17, 0.55, 0.55, 1);
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--royal-gold);
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

a:hover::after {
    width: 100%;
}

/* BUTTONS */
button {
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.17, 0.55, 0.55, 1);
}

input, textarea {
    font-family: 'Inter', sans-serif;
}

/* SPLIT TEXT FOR ANIMATION */
.split-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.split-text.revealed .char {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* HEADER STYLES */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 164, 90, 0);
    padding: 1.2rem 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: background, border;
}

header.scrolled {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 100%);
    border-bottom: 1px solid rgba(200, 164, 90, 0.3);
    padding: 0.8rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

header .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--royal-gold);
    letter-spacing: -1px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

header .logo:hover {
    text-shadow: 0 0 30px rgba(200, 164, 90, 0.6),
                 0 0 60px rgba(200, 164, 90, 0.3);
    transform: scale(1.02);
}

header nav a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0;
}

header nav a::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--royal-gold), var(--light-gold));
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

header nav a.active::before {
    width: 100%;
}

header nav a:hover::before {
    width: 100%;
}

header nav a:hover {
    color: var(--royal-gold);
}

header nav a.active {
    color: var(--royal-gold);
}

.cta-button {
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--light-gold) 100%);
    color: var(--primary-black);
    padding: 0.85rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.17, 0.55, 0.55, 1);
    box-shadow: 0 0 0 rgba(200, 164, 90, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--royal-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(200, 164, 90, 0.32);
    letter-spacing: 0.13em;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    will-change: transform;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a0a0f 50%, var(--deep-maroon) 100%);
    z-index: 1;
    opacity: 0.85;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-slide.active {
    opacity: 0.6;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1) saturate(1.1);
    will-change: transform;
}

.hero-slide.active img {
    animation: heroImageZoom 8s ease-out forwards;
}

@keyframes heroImageZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 4rem 2rem;
}

.hero h1 {
    color: var(--ivory);
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    font-size: clamp(3rem, 10vw, 6rem);
}

.hero-tagline {
    font-size: clamp(0.9rem, 3vw, 1.6rem);
    color: var(--royal-gold);
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: var(--royal-gold);
    animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

/* SECTIONS */
main {
    position: relative;
    z-index: 10;
}

section {
    scroll-margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.section-bg {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--bg-dark) 50%, var(--primary-black) 100%);
}

.section-bg.alt {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--primary-black) 50%, var(--bg-dark) 100%);
}

.section-title {
    font-size: clamp(2rem, 8vw, 4rem);
    color: var(--ivory);
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(30px);
}

section.in-view .section-title {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(20px);
}

section.in-view .section-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
    margin: 2rem auto;
}

/* COLLECTION CARDS */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    group: contents;
    will-change: transform;
}

.collection-card-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.17, 0.55, 0.55, 1);
    will-change: transform;
}

.collection-card:hover .collection-card-image img {
    transform: scale(1.12) rotate(2deg);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.3) 0%, rgba(90,15,22,0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    backdrop-filter: blur(2px);
}

.collection-card:hover .collection-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(200,164,90,0.15) 0%, rgba(90,15,22,0.85) 100%);
}

.collection-name {
    font-size: 2.5rem;
    color: var(--ivory);
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.collection-card:hover .collection-name {
    opacity: 1;
    transform: translateY(0);
}

.collection-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
    max-width: 90%;
}

.collection-card:hover .collection-description {
    opacity: 1;
    transform: translateY(0);
}

/* SWIPER */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--royal-gold);
    width: 50px;
    height: 50px;
    background: rgba(200, 164, 90, 0.1);
    border: 1px solid var(--royal-gold);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(200, 164, 90, 0.2);
    box-shadow: 0 0 25px rgba(200, 164, 90, 0.4);
    transform: scale(1.05);
}

.swiper-pagination-bullet {
    background: rgba(200, 164, 90, 0.4);
    transition: all 0.4s ease;
}

.swiper-pagination-bullet-active {
    background: var(--royal-gold);
    box-shadow: 0 0 15px rgba(200, 164, 90, 0.7);
}

/* STORY SECTION */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    will-change: transform;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.17, 0.55, 0.55, 1);
    will-change: transform;
}

.story-section:hover .story-image img {
    transform: scale(1.08) rotate(0.5deg);
}

.story-text h2 {
    color: var(--royal-gold);
    margin-bottom: 2rem;
    font-size: 3rem;
}

.story-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 1.8rem;
    font-weight: 300;
}

/* CRAFTSMANSHIP */
.craft-item {
    text-align: center;
    padding: 3.5rem 2.5rem;
    border: 1px solid rgba(200, 164, 90, 0.2);
    background: linear-gradient(135deg, rgba(200,164,90,0.05) 0%, rgba(90,15,22,0.05) 100%);
    transition: all 0.6s cubic-bezier(0.17, 0.55, 0.55, 1);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.craft-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200,164,90,0.15), transparent);
    transition: left 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
    pointer-events: none;
}

.craft-item:hover::before {
    left: 100%;
}

.craft-item:hover {
    border-color: rgba(200, 164, 90, 0.5);
    background: linear-gradient(135deg, rgba(200,164,90,0.12) 0%, rgba(90,15,22,0.12) 100%);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(200, 164, 90, 0.2);
}

.craft-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.craft-item:hover .craft-icon {
    transform: scale(1.2) rotateY(10deg);
    filter: drop-shadow(0 0 20px rgba(200, 164, 90, 0.5));
}

.craft-item h3 {
    color: var(--royal-gold);
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.craft-item p {
    color: var(--text-muted);
    line-height: 1.85;
    position: relative;
    z-index: 1;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    grid-auto-rows: 400px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    group: contents;
    will-change: transform;
}

.gallery-item-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.3s cubic-bezier(0.17, 0.55, 0.55, 1);
    will-change: transform;
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(-1.5deg);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,164,90,0) 0%, rgba(90,15,22,0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    backdrop-filter: blur(1px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* PRODUCT PAGE */
.product-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(200, 164, 90, 0.2);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.17, 0.55, 0.55, 1);
    will-change: transform;
}

.product-image:hover img {
    transform: scale(1.08);
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.product-thumbnail {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(200, 164, 90, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-thumbnail:hover {
    border-color: var(--royal-gold);
    transform: scale(0.95);
    box-shadow: 0 10px 30px rgba(200, 164, 90, 0.2);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-thumbnail:hover img {
    transform: scale(1.15);
}

.product-title {
    font-size: 3rem;
    color: var(--ivory);
    margin-bottom: 1rem;
    font-weight: 900;
}

.product-price {
    font-size: 2rem;
    color: var(--royal-gold);
    margin-bottom: 0.5rem;
}

.product-details {
    margin: 2rem 0;
    border-top: 1px solid rgba(200, 164, 90, 0.2);
    border-bottom: 1px solid rgba(200, 164, 90, 0.2);
    padding: 2rem 0;
}

.size-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.size-button {
    padding: 1rem;
    border: 2px solid rgba(200, 164, 90, 0.3);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.size-button:hover,
.size-button.active {
    border-color: var(--royal-gold);
    background: rgba(200, 164, 90, 0.15);
    color: var(--royal-gold);
    transform: scale(1.02);
}

/* BLOG */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    overflow: hidden;
    border: 1px solid rgba(200, 164, 90, 0.1);
    transition: all 0.7s cubic-bezier(0.17, 0.55, 0.55, 1);
    background: linear-gradient(135deg, rgba(200,164,90,0.02) 0%, rgba(90,15,22,0.02) 100%);
    will-change: transform;
}

.blog-card:hover {
    border-color: rgba(200, 164, 90, 0.3);
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(200, 164, 90, 0.15);
}

.blog-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.17, 0.55, 0.55, 1);
    will-change: transform;
}

.blog-card:hover .blog-image img {
    transform: scale(1.12);
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: var(--royal-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.5rem;
    color: var(--ivory);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--royal-gold);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* FORMS */
form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    color: var(--royal-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(200,164,90,0.05) 0%, rgba(200,164,90,0.02) 100%);
    border: 2px solid rgba(200, 164, 90, 0.2);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.3px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
    color: rgba(184, 180, 173, 0.5);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--royal-gold);
    background: linear-gradient(135deg, rgba(200,164,90,0.12) 0%, rgba(200,164,90,0.08) 100%);
    box-shadow: 0 0 30px rgba(200, 164, 90, 0.25);
    transform: scale(1.01);
}

/* FOOTER */
footer {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-black) 100%);
    border-top: 2px solid;
    border-image: linear-gradient(90deg, transparent, var(--royal-gold), transparent) 1;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 4rem 2rem;
}

.footer-brand h3 {
    font-size: 2rem;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section h4 {
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding-bottom: 3px;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--royal-gold);
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-section a:hover {
    color: var(--royal-gold);
}

.footer-section a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(200, 164, 90, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--royal-gold);
    font-size: 1.2rem;
    border-radius: 50%;
    background: rgba(200, 164, 90, 0.02);
}

.social-icon:hover {
    background: var(--royal-gold);
    color: var(--primary-black);
    border-color: var(--royal-gold);
    transform: translateY(-8px) rotate(20deg) scale(1.1);
    box-shadow: 0 20px 40px rgba(200, 164, 90, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(200, 164, 90, 0.1);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

/* AOS ANIMATIONS */
.aos-item {
    opacity: 0;
}

.aos-item.aos-animate {
    animation: aosReveal 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes aosReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PARALLAX */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    will-change: background-position;
}

/* SCROLL TRIGGER ANIMATIONS */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(60px);
}

.scroll-fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}

.scroll-scale {
    transform: scale(0.9);
    opacity: 0;
}

.scroll-scale.animated {
    transform: scale(1);
    opacity: 1;
}

.scroll-slide-left {
    transform: translateX(-100px);
    opacity: 0;
}

.scroll-slide-left.animated {
    transform: translateX(0);
    opacity: 1;
}

.scroll-slide-right {
    transform: translateX(100px);
    opacity: 0;
}

.scroll-slide-right.animated {
    transform: translateX(0);
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .story-section {
        grid-template-columns: 1fr;
    }

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

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 0;
    }

    header .logo {
        font-size: 1.3rem;
    }

    .hero {
        margin-top: 50px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .collection-card {
        aspect-ratio: 3/4;
    }

    .craft-item {
        padding: 2rem 1.5rem;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.95) 100%);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-bottom: 1px solid rgba(200, 164, 90, 0.2);
    }

    header nav a {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(200, 164, 90, 0.1);
    }

    header nav a::before {
        display: none;
    }

    header nav a:hover::before {
        display: none;
    }
}

/* UTILITY CLASSES */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.text-center { text-align: center; }
.text-right { text-align: right; }

.py-12 { padding: 3rem 0; }
.py-16 { padding: 4rem 0; }
.py-20 { padding: 5rem 0; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.w-full { width: 100%; }
.max-w-7xl { max-width: 1280px; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 896px; margin-left: auto; margin-right: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.overflow-hidden { overflow: hidden; }

.transition-all { transition: all 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.uppercase { text-transform: uppercase; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

.text-muted { color: var(--text-muted); }
