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

:root {
    --gold: #D4AF37;
    --gold-light: #F4E4BC;
    --burgundy: #722F37;
    --navy: #1B2838;
    --cream: #FAF8F5;
    --charcoal: #2C2C2C;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--navy);
    color: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Perfume Scent Particles */
.scent-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.scent-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: scentFloat 12s infinite ease-in-out;
}

.scent-particle:nth-child(1) {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    left: 10%;
    animation-delay: 0s;
}

.scent-particle:nth-child(2) {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
    left: 25%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.scent-particle:nth-child(3) {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    left: 40%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.scent-particle:nth-child(4) {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent);
    left: 55%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.scent-particle:nth-child(5) {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent);
    left: 70%;
    animation-delay: 3s;
    animation-duration: 16s;
}

@keyframes scentFloat {

    0%,
    100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    50% {
        transform: translateY(50vh) scale(1);
        opacity: 0.4;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-20vh) scale(0.5);
        opacity: 0;
    }
}

/* Floating Gold Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1001;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle 20s infinite linear;
}

.particle:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    left: 15%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.particle:nth-child(3) {
    left: 25%;
    animation-delay: 6s;
    animation-duration: 28s;
}

.particle:nth-child(4) {
    left: 35%;
    animation-delay: 1s;
    animation-duration: 24s;
}

.particle:nth-child(5) {
    left: 45%;
    animation-delay: 4s;
    animation-duration: 26s;
}

.particle:nth-child(6) {
    left: 55%;
    animation-delay: 7s;
    animation-duration: 23s;
}

.particle:nth-child(7) {
    left: 65%;
    animation-delay: 2s;
    animation-duration: 27s;
}

.particle:nth-child(8) {
    left: 75%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.particle:nth-child(9) {
    left: 85%;
    animation-delay: 8s;
    animation-duration: 24s;
}

.particle:nth-child(10) {
    left: 95%;
    animation-delay: 1s;
    animation-duration: 26s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(27, 40, 56, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2.8rem;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.logo:hover {
    text-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

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

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

.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon {
    color: var(--cream);
    font-size: 1.2rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.nav-icon:hover {
    color: var(--gold);
}

.nav-icon .count {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(27, 40, 56, 0.95), rgba(27, 40, 56, 0.8)),
        url('rae-wallis-6uNdAlvwf98-unsplash.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(27, 40, 56, 0.5) 100%);
}

.hero-content {
    z-index: 10;
    padding: 2rem;
    position: relative;
}

.hero-1915 {
    font-size: 0.8rem;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(5rem, 18vw, 15rem);
    color: var(--gold);
    line-height: 0.9;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.1s;
}

.cta-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.4s;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cream);
    transition: var(--transition);
    z-index: -1;
}

.cta-btn:hover::before {
    left: 0;
}

.cta-btn:hover {
    color: var(--navy);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--gold);
}

.cta-btn.secondary::before {
    background: var(--gold);
}

.cta-btn.secondary:hover {
    color: var(--navy);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--cream);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.7s;
}

.scroll-line {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.5;
        transform: scaleY(0.7);
    }
}

/* Section Dividers */
.divider {
    position: relative;
    height: 120px;
    overflow: hidden;
    margin-top: -1px;
}

.divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* About Section */
.about {
    padding: 8rem 5%;
    background: linear-gradient(180deg, var(--navy), #0a1624);
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: var(--transition);
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    z-index: 1;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-badge span {
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-badge .year {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.about-content {
    padding: 2rem;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cream);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.signature {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: var(--gold);
    margin-top: 2rem;
}

/* Collection Section */
.collection {
    padding: 8rem 5%;
    background: linear-gradient(180deg, #0a1624, var(--navy));
    position: relative;
}

.collection-header {
    text-align: center;
    margin-bottom: 5rem;
}

.collection-header .section-label {
    color: var(--gold);
}

.collection-header .section-title {
    color: var(--cream);
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: 0.6s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.product-image-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 15px;
}

.product-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 40, 56, 0.95) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
    pointer-events: none;
}

.product-card:hover .product-overlay {
    opacity: 1;
    pointer-events: auto;
}

.quick-add {
    padding: 0.8rem 2rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    transform: translateY(20px);
    z-index: 11;
    position: relative;
}

.product-card:hover .quick-add {
    transform: translateY(0);
}

.quick-add:hover {
    background: var(--cream);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10;
}

.product-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.product-wishlist:hover {
    background: var(--gold);
    color: var(--navy);
}

.product-wishlist.active {
    background: var(--gold);
    color: var(--navy);
}

.product-info {
    padding: 0.5rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.product-description {
    font-size: 0.9rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 0.8rem;
}

.product-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.product-price {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
}

.add-to-cart {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Parallax Quote Section */
.quote-section {
    padding: 10rem 5%;
    background: url('pavlo-talpa-1Mhre9qvZeY-unsplash.jpg') center/cover no-repeat fixed;
    position: relative;
    text-align: center;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 40, 56, 0.9), rgba(114, 47, 55, 0.7));
}

.quote-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: var(--cream);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.quote-author {
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
}

/* Testimonials */
.testimonials {
    padding: 8rem 5%;
    background: linear-gradient(180deg, var(--navy), #0a1624);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial {
    min-width: 100%;
    text-align: center;
    padding: 2rem;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1.3rem;
    color: var(--cream);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-top: 0.3rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
}

.dot:hover {
    background: var(--gold);
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(27, 40, 56, 0.95), rgba(114, 47, 55, 0.8)),
        url('simply-mersah-MLV5zTSzj98-unsplash.jpg') center/cover no-repeat;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    margin-bottom: 1rem;
}

.newsletter p {
    color: var(--cream);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: var(--gold-light);
    opacity: 0.7;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--gold);
    border: none;
    border-radius: 50px;
    color: var(--navy);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.newsletter-form button:hover {
    background: var(--cream);
}

/* Footer */
.footer {
    background: #0a1624;
    padding: 5rem 5% 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--gold-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--gold-light);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
}

/* The Art of Perfumery Section */
.craftsmanship {
    background: var(--navy);
    position: relative;
}

.craft-hero {
    padding: 8rem 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(27, 40, 56, 0.95), rgba(114, 47, 55, 0.7)),
        url('rae-wallis-6uNdAlvwf98-unsplash.jpg') center/cover no-repeat;
    position: relative;
}

.craft-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(27, 40, 56, 0.6) 100%);
}

.craft-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.craft-hero-text {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-top: 1rem;
    font-style: italic;
}

/* Process Timeline */
.process-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, #0a1624, var(--navy));
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step.active {
    opacity: 1;
    transform: translateY(0);
}

.process-step.reverse {
    direction: rtl;
}

.process-step.reverse>* {
    direction: ltr;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.1;
    font-weight: 700;
    line-height: 1;
}

.step-content {
    padding: 2rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--navy);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    color: var(--gold-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.step-ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.ingredient-tag {
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 30px;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.step-visual {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.step-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.process-step:hover .step-visual img {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 40, 56, 0.8), transparent);
}

/* Ingredients Showcase */
.ingredients-showcase {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--navy), #0a1624);
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ingredients-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.ingredient-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.ingredient-card .ingredient-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.ingredient-card .ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ingredient-card:hover .ingredient-image img {
    transform: scale(1.1);
}

.ingredient-card .ingredient-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(27, 40, 56, 0.95), transparent);
}

.ingredient-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.ingredient-card p {
    font-size: 0.85rem;
    color: var(--gold);
    font-style: italic;
}

/* Craft Stats */
.craft-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(27, 40, 56, 0.95), rgba(114, 47, 55, 0.6));
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream);
}

/* Responsive */
@media (max-width: 1200px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .process-step {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step.reverse {
        direction: ltr;
    }

    .step-number {
        font-size: 4rem;
    }

    .step-visual img {
        height: 250px;
    }

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

    .craft-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image img {
        height: 450px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 22, 36, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

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

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

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Contact Form */
.contact-form-container {
    padding: 3rem;
}

.contact-form-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--cream);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gold-light);
    opacity: 0.7;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Newsletter error styles */
.newsletter-form .error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    text-align: center;
}

.newsletter-form input.error {
    border-color: #e74c3c;
}-e "\n/* Floating Home Button */\n.floating-home-btn {\n    position: fixed;\n    bottom: 2rem;\n    right: 2rem;\n    width: 60px;\n    height: 60px;\n    background: var(--gold);\n    border-radius: 50%;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    color: var(--navy);\n    text-decoration: none;\n    font-size: 1.2rem;\n    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);\n    transition: var(--transition);\n    z-index: 1000;\n}\n\n.floating-home-btn:hover {\n    transform: scale(1.1);\n    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);\n}" 
