/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ===== UNIFIED ANIMATION SYSTEM ===== */
:root {
    --animation-duration: 0.8s;
    --animation-easing: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-delay: 0.1s;
    --fade-distance: 40px;
    --fast-duration: 0.3s;
    --medium-duration: 0.5s;
    --slow-duration: 0.8s;
    --max-duration: 1s;
}

/* ===== ACCESSIBILITY: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero {
        animation: none !important;
    }
    
    .appointment {
        animation: none !important;
    }
    
    .footer-divider::before {
        animation: none !important;
    }
    
    .appointment-btn {
        animation: fadeInUp 1s ease-out 0.9s forwards !important;
    }
}

/* ===== BASE ANIMATION CLASSES ===== */
/* GPU-optimized base animations */
.fade-up,
.fade-left,
.fade-right,
.gold-line-reveal {
    opacity: 0;
    transform: translate3d(0, var(--fade-distance), 0);
    transition: all var(--slow-duration) var(--animation-easing);
    will-change: transform, opacity;
}

.fade-left {
    transform: translate3d(-var(--fade-distance), 0, 0);
}

.fade-right {
    transform: translate3d(var(--fade-distance), 0, 0);
}

.gold-line-reveal {
    transform: translate3d(0, var(--fade-distance), 0);
    position: relative;
    opacity: 0;
    transition: opacity var(--slow-duration) ease 0.2s;
}

.gold-line-reveal::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.8s ease 0.2s;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* ===== ANIMATION TRIGGER STATES ===== */
.fade-up.animate,
.fade-left.animate,
.fade-right.animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.gold-line-reveal.animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.gold-line-reveal.animate::after {
    width: 100%;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

/* ===== STAGGERED ANIMATIONS ===== */
.fade-up:nth-child(1) { animation-delay: calc(var(--animation-delay) * 1); }
.fade-up:nth-child(2) { animation-delay: calc(var(--animation-delay) * 2); }
.fade-up:nth-child(3) { animation-delay: calc(var(--animation-delay) * 3); }
.fade-up:nth-child(4) { animation-delay: calc(var(--animation-delay) * 4); }
.fade-up:nth-child(5) { animation-delay: calc(var(--animation-delay) * 5); }
.fade-up:nth-child(6) { animation-delay: calc(var(--animation-delay) * 6); }

.fade-left:nth-child(1) { animation-delay: calc(var(--animation-delay) * 1); }
.fade-left:nth-child(2) { animation-delay: calc(var(--animation-delay) * 2); }
.fade-left:nth-child(3) { animation-delay: calc(var(--animation-delay) * 3); }
.fade-left:nth-child(4) { animation-delay: calc(var(--animation-delay) * 4); }

.fade-right:nth-child(1) { animation-delay: calc(var(--animation-delay) * 1); }
.fade-right:nth-child(2) { animation-delay: calc(var(--animation-delay) * 2); }
.fade-right:nth-child(3) { animation-delay: calc(var(--animation-delay) * 3); }
.fade-right:nth-child(4) { animation-delay: calc(var(--animation-delay) * 4); }

/* ===== ENHANCED EASING FUNCTIONS ===== */
.ease-soft {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.ease-bounce {
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ease-smooth {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #3E3A39;
    background-color: #F9F6EE;
    overflow-x: hidden;
}

/* ===== UNIFIED COLOR PALETTE ===== */
:root {
    --gold: #D4AF37;
    --ivory: #F9F6EE;
    --champagne: #E5C68B;
    --warm-charcoal: #3E3A39;
    --white: #FFFFFF;
    --cream: #FAF3E0;
    --light-cream: #FDF8F0;
    --warm-gray: #5A5A5A;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: #3E3A39;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Remove the old static ::after for titles that use gold-line-reveal */
.section-title:not(.gold-line-reveal)::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #E5C68B);
}

/* ===== UNIFIED KEYFRAME ANIMATIONS ===== */
/* GPU-optimized animations using transform and opacity only */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale3d(0.9, 0.9, 1);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate3d(0, 0, 1, -10deg) scale3d(0.9, 0.9, 1);
    }
    to {
        opacity: 1;
        transform: rotate3d(0, 0, 1, 0deg) scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

@keyframes shimmer {
    0% {
        transform: translate3d(-100%, -100%, 0) rotate(45deg);
    }
    100% {
        transform: translate3d(100%, 100%, 0) rotate(45deg);
    }
}

@keyframes breathe {
    0%, 100% {
        background-color: #3E3A39;
    }
    50% {
        background-color: #2A2524;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(249, 246, 238, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-image {
    transform: scale(1.05);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo h1 {
    font-size: 2rem;
    color: #D4AF37;
    margin: 0;
}

.nav-subtitle {
    font-size: 0.9rem;
    color: #3E3A39;
    font-style: italic;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #3E3A39;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #D4AF37;
    transform: translateY(-1px);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #3E3A39;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(135deg, #F9F6EE 0%, #E5C68B 100%);
    }
    25% {
        background: linear-gradient(135deg, #E5C68B 0%, #D4AF37 100%);
    }
    50% {
        background: linear-gradient(135deg, #D4AF37 0%, #E5C68B 100%);
    }
    75% {
        background: linear-gradient(135deg, #E5C68B 0%, #F9F6EE 100%);
    }
    100% {
        background: linear-gradient(135deg, #F9F6EE 0%, #E5C68B 100%);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* ===== HERO LOGO ===== */
.hero-logo {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(40px);
    animation: heroLogoFadeIn 1s ease-out 0.2s forwards;
    text-align: center;
}

.hero-logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero-logo:hover .hero-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.3));
}

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

.logo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #D4AF37, #E5C68B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ===== HERO CONTENT ===== */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    color: #3E3A39;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(60px);
    animation: heroTitleFadeIn 1.2s ease-out 0.8s forwards;
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #3E3A39;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(40px);
    animation: heroSubtitleFadeIn 1s ease-out 0.3s forwards;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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


.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.btn:nth-child(1) {
    animation: buttonFadeUp 0.8s ease-out 0.6s forwards;
}

.btn:nth-child(2) {
    animation: buttonFadeUp 0.8s ease-out 0.8s forwards;
}

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

.btn-primary {
    background: #D4AF37;
    color: #FFFFFF;
    border: 2px solid #D4AF37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #FFFFFF;
    color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: #FFFFFF;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: #D4AF37;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

/* ===== SCROLL ARROW ===== */
.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: scrollArrowFadeIn 1s ease-out 1.5s forwards;
}

.arrow-down {
    width: 50px;
    height: 50px;
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slowBounce 3s ease-in-out infinite;
}

@keyframes scrollArrowFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
}

.arrow-down:hover {
    background: #D4AF37;
    color: #FFFFFF;
    transform: scale(1.1);
}


/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
    position: relative;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: all var(--slow-duration) var(--animation-easing);
    will-change: transform, opacity;
}

section.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

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

/* ===== ABOUT SECTION ===== */
.about {
    background: #FAF3E0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-column {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #3E3A39;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #E5C68B);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5A5A5A;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-divider {
    width: 2px;
    background: linear-gradient(180deg, transparent, #D4AF37, transparent);
    height: 100%;
    min-height: 400px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
}

.about-image-column {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.9s forwards;
}

.about-image-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.image-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    letter-spacing: 1px;
}

/* ===== COLLECTIONS SECTION ===== */
.collections {
    background: #F9F6EE;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.collection-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
    border: 2px solid transparent;
}

.collection-card:nth-child(1) {
    animation-delay: 0.2s;
}

.collection-card:nth-child(2) {
    animation-delay: 0.4s;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #D4AF37;
}

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

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

.collection-card:hover .collection-image {
    transform: scale(1.05);
}

.evening-card .card-image {
    background: linear-gradient(135deg, #3E3A39 0%, #5A5A5A 50%, #3E3A39 100%);
}

.bridal-card .card-image {
    background: linear-gradient(135deg, #E5C68B 0%, #D4AF37 50%, #E5C68B 100%);
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="collection-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23FFFFFF" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23collection-pattern)"/></svg>');
    opacity: 0.3;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    transition: all 0.4s ease;
}

.collection-card:hover .image-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease-in-out;
}

.collection-card:hover .card-title {
    transform: translateY(-10px);
}

.card-underline {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #E5C68B);
    margin: 0 auto 1.5rem;
    transition: width 0.6s ease;
}

.collection-card:hover .card-underline {
    width: 80px;
}

.card-description {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 300px;
    transition: all 0.5s ease-in-out;
}

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

.card-link {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #D4AF37;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border: 2px solid #D4AF37;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
}

.collection-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
    background: #D4AF37;
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

/* ===== ATELIER SECTION ===== */
.atelier {
    background: #FDF8F0;
}

.atelier-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    text-align: center;
    opacity: 0;
    transform: translateY(50px) rotate(5deg);
    animation: processStepFadeIn 1s ease-out forwards;
}

.process-step:nth-child(1) {
    animation-delay: 0.2s;
}

.process-step:nth-child(2) {
    animation-delay: 0.4s;
}

.process-step:nth-child(3) {
    animation-delay: 0.6s;
}

.process-step:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes processStepFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) rotate(5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

.process-icon {
    width: 120px;
    height: 120px;
    border: 3px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.process-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover .process-icon::before {
    opacity: 1;
}

.process-step:hover .process-icon {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4), 0 10px 30px rgba(212, 175, 55, 0.2);
}

.process-icon svg {
    color: #D4AF37;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .process-icon svg {
    color: #B8941F;
    transform: scale(1.1) rotate(5deg);
    transition: all 0.5s ease;
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #3E3A39;
    margin-bottom: 1rem;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: processTextFadeIn 0.8s ease-out forwards;
}

.process-step:nth-child(1) .process-title {
    animation-delay: 0.4s;
}

.process-step:nth-child(2) .process-title {
    animation-delay: 0.6s;
}

.process-step:nth-child(3) .process-title {
    animation-delay: 0.8s;
}

.process-step:nth-child(4) .process-title {
    animation-delay: 1.0s;
}

.process-step:hover .process-title {
    color: #D4AF37;
    transform: translateY(-2px);
}

.process-description {
    font-size: 1rem;
    color: #5A5A5A;
    line-height: 1.6;
    font-weight: 300;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: processTextFadeIn 0.8s ease-out forwards;
}

.process-step:nth-child(1) .process-description {
    animation-delay: 0.5s;
}

.process-step:nth-child(2) .process-description {
    animation-delay: 0.7s;
}

.process-step:nth-child(3) .process-description {
    animation-delay: 0.9s;
}

.process-step:nth-child(4) .process-description {
    animation-delay: 1.1s;
}

.process-step:hover .process-description {
    color: #3E3A39;
    transform: translateY(-2px);
}

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

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: #FFFFFF;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 4rem 3rem;
    background: #FFFFFF;
    border: 2px solid #D4AF37;
    border-radius: 20px;
    position: relative;
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    transition: all 0.7s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0) scale(1);
}

.testimonial-slide::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid #E5C68B;
    border-radius: 15px;
    pointer-events: none;
}

.testimonial-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    transition: left 0.7s ease-in-out;
    z-index: 10;
}

.testimonial-slide.active::after {
    left: 100%;
}

.testimonial-quote {
    margin-bottom: 2.5rem;
    position: relative;
}

.testimonial-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: #3E3A39;
    margin: 0;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.7s ease-in-out;
}

.testimonial-slide.active .testimonial-quote p {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #D4AF37;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-quote::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #D4AF37;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.7s ease-in-out;
}

.testimonial-slide.active .testimonial-author {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}

.author-name {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #D4AF37;
    text-transform: uppercase;
}

.author-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #5A5A5A;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.2);
}

.nav-dot.active {
    background: #D4AF37;
    transform: scale(1.3);
}

.nav-dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid #D4AF37;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ===== JOURNAL SECTION ===== */
.journal {
    background: #F9F6EE;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.press-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: pressCardFadeIn 1s ease-out forwards;
}

.press-card:nth-child(1) {
    animation-delay: 0.2s;
}

.press-card:nth-child(2) {
    animation-delay: 0.4s;
}

.press-card:nth-child(3) {
    animation-delay: 0.6s;
}

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

.press-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 30px rgba(212, 175, 55, 0.1);
}

.press-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #3E3A39 0%, #5A5A5A 50%, #3E3A39 100%);
}

.press-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

.press-card:hover .press-image-bg {
    transform: scale(1.05);
}

.press-card:nth-child(1) .press-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #3E3A39 50%, #1a1a1a 100%);
}

.press-card:nth-child(2) .press-image {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 50%, #2c2c2c 100%);
}

.press-card:nth-child(3) .press-image {
    background: linear-gradient(135deg, #1f1f1f 0%, #404040 50%, #1f1f1f 100%);
}

.press-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="magazine-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23FFFFFF" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23magazine-pattern)"/></svg>');
    opacity: 0.3;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(212, 175, 55, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    height: 0;
    transition: all 0.5s ease;
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.press-card:hover .image-overlay {
    opacity: 1;
    height: 100%;
}

.read-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
    transition-delay: 0.3s;
}

.press-card:hover .read-text {
    transform: translateY(0);
    opacity: 1;
}

.press-info {
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
}

.press-card:hover .press-info {
    transform: translateY(-5px);
}

.press-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #3E3A39;
    margin-bottom: 0.5rem;
    transition: all 0.5s ease;
}

.press-card:hover .press-title {
    color: #D4AF37;
    transform: translateY(-2px);
}

.press-description {
    font-size: 1rem;
    color: #5A5A5A;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
    transition: all 0.5s ease;
}

.press-card:hover .press-description {
    color: #3E3A39;
    transform: translateY(-2px);
}

.press-date {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== APPOINTMENT SECTION ===== */
.appointment {
    background: #3E3A39;
    position: relative;
    overflow: hidden;
    animation: appointmentBreathing 8s ease-in-out infinite;
}

@keyframes appointmentBreathing {
    0%, 100% {
        background-color: #3E3A39;
    }
    50% {
        background-color: #2A2524;
    }
}

.appointment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="appointment-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23appointment-pattern)"/></svg>');
    opacity: 0.3;
}

.appointment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.appointment-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
    line-height: 1.2;
    transition: all 0.5s ease;
}

.appointment:hover .appointment-title {
    transform: translateY(28px);
}

.appointment-subtitle {
    font-size: 1.4rem;
    color: #E5C68B;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    transition: all 0.5s ease;
}

.appointment:hover .appointment-subtitle {
    transform: translateY(28px);
}

.appointment-btn {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: #D4AF37;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.9s forwards, appointmentButtonPulse 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

@keyframes appointmentButtonPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3), 0 0 10px rgba(212, 175, 55, 0.6);
    }
    50% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3), 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

.appointment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.appointment-btn:hover::before {
    left: 100%;
}

.appointment-btn:hover {
    background: #B8941F;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.8);
    animation-play-state: paused;
}

.appointment-btn:active {
    transform: translateY(-1px);
}

/* ===== FOOTER SECTION ===== */
.footer {
    background: #3E3A39;
    color: #F9F6EE;
    padding: 100px 0 2rem;
    opacity: 0;
    transform: translateY(50px);
    animation: footerFadeIn 1.2s ease-out forwards;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(1.1);
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #D4AF37;
    margin: 0;
    line-height: 1;
}

.brand-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #E5C68B;
    font-style: italic;
    display: block;
    margin-top: -2px;
}

/* ===== FOOTER NAVIGATION ===== */
.footer-nav {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #F9F6EE;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.4s ease;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.footer-link:hover {
    color: #D4AF37;
    transform: translateY(-3px);
}

.footer-link:hover::after {
    width: 100%;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

/* ===== SOCIAL ICONS ===== */
.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.4s ease;
    background: rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #FFFFFF;
    transform: translateY(-3px) rotate(10deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.social-link:hover svg {
    transform: scale(1.1) rotate(-10deg);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

/* ===== FOOTER DIVIDER ===== */
.footer-divider {
    width: 100%;
    height: 0.5px;
    background: #D4AF37;
    margin: 2rem 0;
    opacity: 0.6;
    position: relative;
    overflow: hidden;
}

.footer-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
    animation: dividerShimmer 3s ease-in-out infinite;
}

@keyframes dividerShimmer {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.footer-bottom p {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: #E5C68B;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ===== MOBILE ANIMATION OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    /* Reduce animation complexity on mobile for better performance */
    .hero {
        animation: none;
        background: linear-gradient(135deg, #F9F6EE 0%, #E5C68B 100%);
    }
    
    .appointment {
        animation: none;
        background: #3E3A39;
    }
    
    .footer-divider::before {
        animation: none;
    }
    
    /* Simplify hover effects on touch devices */
    .collection-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: transparent;
    }
    
    .collection-card:hover .card-title,
    .collection-card:hover .card-description {
        transform: none;
    }
    
    .collection-card:hover .card-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Reduce transform complexity */
    .fade-up,
    .fade-left,
    .fade-right {
        transform: translate3d(0, 20px, 0);
    }
    
    .fade-left {
        transform: translate3d(-20px, 0, 0);
    }
    
    .fade-right {
        transform: translate3d(20px, 0, 0);
    }
    
    section {
        transform: translate3d(0, 20px, 0);
    }
    
    /* Optimize images for mobile */
    
    .collection-image,
    .press-image-bg {
        transform: none;
    }
    
    .collection-card:hover .collection-image,
    .press-card:hover .press-image-bg {
        transform: none;
    }
}

@media (hover: none) and (pointer: coarse) {
    /* Disable hover animations on touch devices */
    .collection-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: transparent;
    }
    
    .collection-card:hover .card-title,
    .collection-card:hover .card-description {
        transform: none;
    }
    
    .collection-card:hover .card-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    .process-step:hover .process-icon {
        transform: scale(1.02);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    }
    
    .social-link:hover {
        transform: translateY(-2px) scale(1.05);
    }
    
    /* Responsive logo sizing */
    .nav-logo-image {
        height: 40px;
    }
    
    .hero-logo-image {
        height: 80px;
    }
    
    .footer-logo-image {
        height: 40px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #F9F6EE;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .logo-placeholder {
        width: 100px;
        height: 100px;
    }

    .logo-text {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .gold-line-reveal::after {
        height: 1.5px;
        bottom: -8px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-divider {
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #D4AF37, transparent);
        min-height: 2px;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-image-container {
        height: 300px;
    }

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

    .collection-card {
        height: 400px;
    }

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

    .card-description {
        font-size: 1rem;
    }

    /* Disable hover effects on mobile */
    .collection-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: transparent;
    }

    .collection-card:hover .card-title {
        transform: none;
    }

    .collection-card:hover .card-description {
        transform: none;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .gold-line-reveal::after {
        height: 1px;
        bottom: -6px;
    }

    .container {
        padding: 0 1rem;
    }

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

    .about-text {
        font-size: 1rem;
    }

    .collection-card {
        height: 350px;
    }

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

    .card-link {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Disable hover effects on mobile */
    .collection-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: transparent;
    }

    .collection-card:hover .card-title {
        transform: none;
    }

    .collection-card:hover .card-description {
        transform: none;
    }

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

    .testimonial-slide {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-quote p {
        font-size: 1.1rem;
    }

    .testimonial-quote::before,
    .testimonial-quote::after {
        font-size: 2.5rem;
    }

    .author-name {
        font-size: 0.8rem;
    }

    .author-title {
        font-size: 0.7rem;
    }

    .appointment-title {
        font-size: 2.5rem;
    }

    .appointment-subtitle {
        font-size: 1.1rem;
    }

    .appointment-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer-link {
        font-size: 0.8rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-nav {
        gap: 2rem;
    }

    .footer-social {
        gap: 1rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

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

    .press-image {
        height: 250px;
    }

    .press-title {
        font-size: 1.5rem;
    }

    .press-description {
        font-size: 0.9rem;
    }

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

    .process-icon {
        width: 90px;
        height: 90px;
    }

    .process-title {
        font-size: 1.2rem;
    }

    .process-description {
        font-size: 0.9rem;
    }

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

    .press-image {
        height: 200px;
    }

    .press-title {
        font-size: 1.4rem;
    }

    .press-description {
        font-size: 0.9rem;
    }

    .appointment-title {
        font-size: 3rem;
    }

    .appointment-subtitle {
        font-size: 1.2rem;
    }

    .appointment-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }

    .testimonial-slide {
        padding: 3rem 2rem;
    }

    .testimonial-quote p {
        font-size: 1.2rem;
    }

    .testimonial-quote::before,
    .testimonial-quote::after {
        font-size: 3rem;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--animation-duration) var(--animation-easing);
}

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

/* ===== HOVER EFFECTS ===== */
.hover-gold {
    transition: all 0.3s ease;
}

.hover-gold:hover {
    color: #D4AF37;
    transform: translateY(-2px);
}

/* ===== UNIFIED GOLD HOVER EFFECTS ===== */
.gold-hover {
    transition: all 0.3s ease;
    position: relative;
}

.gold-hover:hover {
    color: #D4AF37;
    transform: translateY(-2px);
}

.gold-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.gold-hover:hover::after {
    width: 100%;
}

/* ===== LOADING ANIMATIONS ===== */
.loading {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.loading:nth-child(1) { animation-delay: 0.1s; }
.loading:nth-child(2) { animation-delay: 0.2s; }
.loading:nth-child(3) { animation-delay: 0.3s; }
.loading:nth-child(4) { animation-delay: 0.4s; }

/* ===== TOUCH DEVICE HOVER DISABLE ===== */
@media (hover: none) and (pointer: coarse) {
    .collection-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: transparent;
    }

    .collection-card:hover .card-title {
        transform: none;
    }

    .collection-card:hover .card-description {
        transform: none;
    }

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