* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --obsidian-black: #0A0A0C;
    --black-cherry: #2A0F13;
    --smoked-plum: #3D1F32;
    --mocha-ember: #5C3A32;
    --gold-ember: #D9A441;
    --ivory-candle: #F4EFE6;
}

body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--obsidian-black);
    color: var(--ivory-candle);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--ivory-candle);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-ember);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

header {
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.85) 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(217, 164, 65, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--gold-ember);
    letter-spacing: 1px;
    order: 1;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
    color: var(--gold-ember);
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--gold-ember);
    color: var(--gold-ember);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-left: auto;
    order: 2;
}

.menu-toggle:hover {
    background: var(--gold-ember);
    color: var(--obsidian-black);
}

.menu-toggle .close-icon {
    display: none;
}

.menu-toggle.active .hamburger-icon {
    display: none;
}

.menu-toggle.active .close-icon {
    display: inline-block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    order: 3;
}

.nav-links a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-ember);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(217, 164, 65, 0.1) 0%, var(--obsidian-black) 70%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--ivory-candle) 0%, var(--gold-ember) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    color: rgba(244, 239, 230, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: 2px solid var(--gold-ember);
    background: transparent;
    color: var(--gold-ember);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-ember);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--obsidian-black);
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--gold-ember);
    color: var(--obsidian-black);
}

.btn-primary::before {
    background: var(--mocha-ember);
}

.btn-primary:hover {
    color: var(--ivory-candle);
}

section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    color: var(--gold-ember);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-up 0.8s ease forwards;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: linear-gradient(135deg, var(--black-cherry) 0%, var(--smoked-plum) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(217, 164, 65, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(217, 164, 65, 0.3);
    border-color: var(--gold-ember);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--gold-ember);
}

.card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--gold-ember);
}

.card p {
    color: rgba(244, 239, 230, 0.8);
    line-height: 1.8;
}

.product-card {
    background: linear-gradient(135deg, var(--black-cherry) 0%, var(--smoked-plum) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(217, 164, 65, 0.2);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(217, 164, 65, 0.4);
    border-color: var(--gold-ember);
}

.product-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--mocha-ember) 0%, var(--black-cherry) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 2rem;
}

.product-tag {
    display: inline-block;
    background: var(--gold-ember);
    color: var(--obsidian-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--gold-ember);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ivory-candle);
    margin-bottom: 1rem;
}

.product-description {
    color: rgba(244, 239, 230, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.scent-family {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.scent-block {
    padding: 2rem;
    background: linear-gradient(135deg, var(--smoked-plum) 0%, var(--mocha-ember) 100%);
    border-radius: 8px;
    border-left: 4px solid var(--gold-ember);
    transition: all 0.3s ease;
}

.scent-block:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(217, 164, 65, 0.2);
}

.scent-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--gold-ember);
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(217, 164, 65, 0.1) 0%, rgba(92, 58, 50, 0.2) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(217, 164, 65, 0.2);
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--ivory-candle);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--gold-ember);
    font-weight: 600;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-ember) 0%, transparent 100%);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold-ember);
    border: 3px solid var(--obsidian-black);
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--gold-ember);
}

.timeline-content p {
    color: rgba(244, 239, 230, 0.8);
    line-height: 1.8;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--black-cherry) 0%, var(--smoked-plum) 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(217, 164, 65, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold-ember);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 12, 0.5);
    border: 1px solid rgba(217, 164, 65, 0.3);
    border-radius: 6px;
    color: var(--ivory-candle);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-ember);
    box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(244, 239, 230, 0.8);
}

.map-container {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(217, 164, 65, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--black-cherry) 0%, var(--smoked-plum) 100%);
    border-radius: 8px;
    border: 1px solid rgba(217, 164, 65, 0.2);
}

.contact-item h3 {
    color: var(--gold-ember);
    margin-bottom: 1rem;
}

.contact-item p {
    color: rgba(244, 239, 230, 0.8);
}

.faq-item {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--black-cherry) 0%, var(--smoked-plum) 100%);
    border-radius: 8px;
    border: 1px solid rgba(217, 164, 65, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gold-ember);
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(217, 164, 65, 0.1);
}

.faq-question span:last-child {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question span:last-child {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: rgba(244, 239, 230, 0.8);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

footer {
    background: var(--black-cherry);
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(217, 164, 65, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold-ember);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(244, 239, 230, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-ember);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(217, 164, 65, 0.1);
    color: rgba(244, 239, 230, 0.5);
    font-size: 0.85rem;
}

.privacy-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 400px;
    background: linear-gradient(135deg, var(--black-cherry) 0%, var(--smoked-plum) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--gold-ember);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
}

.privacy-popup.show {
    display: block;
    animation: slide-up 0.5s ease;
}

@keyframes slide-up {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.privacy-popup p {
    margin-bottom: 1rem;
    color: rgba(244, 239, 230, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
}

.privacy-popup .btn {
    width: 100%;
    margin-top: 1rem;
}

.error-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-page h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--gold-ember);
    margin-bottom: 1rem;
}

.error-page p {
    font-size: 1.25rem;
    color: rgba(244, 239, 230, 0.8);
    margin-bottom: 2rem;
}

.plain-text-page {
    max-width: 800px;
    margin: 5rem auto;
    padding: 2rem;
    color: #000;
    background: #fff;
}

.plain-text-page h1 {
    color: #000;
    margin-bottom: 2rem;
}

.plain-text-page h2 {
    color: #000;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.plain-text-page p {
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, var(--black-cherry) 0%, var(--smoked-plum) 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(217, 164, 65, 0.2);
    }
    
    .nav-links li:first-child {
        margin-top: 1rem;
    }
    
    .nav-links a {
        display: block;
        padding: 1.25rem 0;
        width: 100%;
        font-size: 1rem;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }
    
    .nav-links a:hover {
        color: var(--gold-ember);
        padding-left: 1rem;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    nav {
        position: relative;
        justify-content: space-between;
    }
    
    .logo {
        order: 1;
    }
    
    .menu-toggle {
        order: 2;
        margin-left: auto;
        position: relative;
        z-index: 1001;
    }
    
    .nav-links {
        order: 3;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 12, 0.8);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    section {
        padding: 3rem 1.5rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .privacy-popup {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

.image-left-section,
.image-right-section,
.centered-image-section,
.grid-image-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.image-left-content,
.image-right-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.image-left-image,
.image-right-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-left-image img,
.image-right-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-left-text,
.image-right-text {
    padding: 2rem 0;
}

.image-left-text .section-title,
.image-right-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.image-left-text p,
.image-right-text p {
    color: rgba(244, 239, 230, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.centered-image-content {
    text-align: center;
}

.centered-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.centered-image-text {
    max-width: 800px;
    margin: 0 auto;
}

.centered-image-text p {
    color: rgba(244, 239, 230, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

.grid-image-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.grid-image-item {
    text-align: center;
    background: linear-gradient(135deg, var(--black-cherry) 0%, var(--smoked-plum) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(217, 164, 65, 0.2);
    transition: all 0.4s ease;
}

.grid-image-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(217, 164, 65, 0.3);
    border-color: var(--gold-ember);
}

.grid-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.grid-image-item h3 {
    color: var(--gold-ember);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.grid-image-item p {
    color: rgba(244, 239, 230, 0.8);
    line-height: 1.6;
}

.legal-page {
    background-color: var(--obsidian-black);
    color: var(--ivory-candle);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.legal-content h1 {
    color: var(--gold-ember);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    color: var(--gold-ember);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content p {
    color: rgba(244, 239, 230, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.legal-content ul {
    color: rgba(244, 239, 230, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .image-left-content,
    .image-right-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-left-text .section-title,
    .image-right-text .section-title {
        text-align: center;
    }
    
    .grid-image-content {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 320px) {
    nav {
        padding: 0 0.75rem;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .nav-links {
        font-size: 0.8rem;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 0.25rem 0;
    }
    
    header {
        padding: 1rem 0;
    }
    
    .hero {
        min-height: 60vh;
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    section {
        padding: 2rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .card h3 {
        font-size: 1.25rem;
    }
    
    .card p {
        font-size: 0.9rem;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1.25rem;
    }
    
    .product-title {
        font-size: 1.25rem;
    }
    
    .product-price {
        font-size: 1.25rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-container {
        padding: 1.5rem 0.75rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .scent-family {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .scent-block {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .image-left-section,
    .image-right-section,
    .centered-image-section,
    .grid-image-section {
        padding: 2rem 0.75rem;
    }
    
    .image-left-content,
    .image-right-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .image-left-text,
    .image-right-text {
        padding: 1rem 0;
    }
    
    .image-left-text .section-title,
    .image-right-text .section-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .image-left-text p,
    .image-right-text p {
        font-size: 0.9rem;
    }
    
    .centered-image {
        margin-bottom: 2rem;
    }
    
    .centered-image-text .section-title {
        font-size: 1.5rem;
    }
    
    .centered-image-text p {
        font-size: 0.9rem;
    }
    
    .grid-image-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .grid-image-item {
        padding: 1.5rem;
    }
    
    .grid-image-item img {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .grid-image-item h3 {
        font-size: 1.25rem;
    }
    
    .grid-image-item p {
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 1.5rem;
    }
    
    .privacy-popup {
        right: 0.5rem;
        left: 0.5rem;
        bottom: 1rem;
        padding: 1.5rem;
        max-width: none;
    }
    
    .privacy-popup p {
        font-size: 0.85rem;
    }
    
    .error-page {
        padding: 1rem;
        min-height: 70vh;
    }
    
    .error-page h1 {
        font-size: 3rem;
    }
    
    .error-page p {
        font-size: 1rem;
    }
    
    .legal-content {
        padding: 2rem 0.75rem;
    }
    
    .legal-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.25rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .legal-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .legal-content ul {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        font-size: 0.85rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

.diagonal-split-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.diagonal-split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    transform: rotate(-2deg);
    margin: 3rem 0;
}

.diagonal-split-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--gold-ember), transparent);
    transform: translateX(-50%);
}

.diagonal-image-box {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(2deg);
}

.diagonal-image-box img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.diagonal-text-box {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: rotate(2deg);
}

.diagonal-text-box h3 {
    color: var(--gold-ember);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.diagonal-text-box p {
    color: rgba(244, 239, 230, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

.staggered-image-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.staggered-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.staggered-item {
    position: relative;
}

.staggered-item:nth-child(1) {
    transform: translateY(-30px);
}

.staggered-item:nth-child(2) {
    transform: translateY(30px);
}

.staggered-item:nth-child(3) {
    transform: translateY(-30px);
}

.staggered-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.staggered-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 12, 0.95));
    padding: 2rem;
    border-radius: 0 0 12px 12px;
}

.staggered-overlay h3 {
    color: var(--gold-ember);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.staggered-overlay p {
    color: rgba(244, 239, 230, 0.9);
    font-size: 0.95rem;
}

.full-width-image-section {
    padding: 0;
    margin: 5rem 0;
    position: relative;
    max-width: 100%;
}

.full-width-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.full-width-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-width-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 12, 0.7), rgba(10, 10, 12, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.full-width-overlay-content {
    max-width: 800px;
    z-index: 2;
}

.full-width-overlay-content h2 {
    color: var(--gold-ember);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.full-width-overlay-content p {
    color: rgba(244, 239, 230, 0.95);
    font-size: 1.2rem;
    line-height: 1.8;
}

.mosaic-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1rem;
    margin-top: 3rem;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mosaic-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.mosaic-item:nth-child(2) {
    grid-column: 3 / 5;
}

.mosaic-item:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}

.mosaic-item:nth-child(4) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

.mosaic-item:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.mosaic-item:nth-child(6) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

.mosaic-item:nth-child(7) {
    grid-column: 4 / 5;
    grid-row: 3 / 4;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

.mosaic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 12, 0.9));
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mosaic-item:hover .mosaic-overlay {
    transform: translateY(0);
}

.mosaic-overlay h4 {
    color: var(--gold-ember);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.circular-image-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.circular-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.circular-image-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
}

.circular-image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold-ember);
    box-shadow: 0 15px 35px rgba(217, 164, 65, 0.3);
}

.circular-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.circular-text h3 {
    color: var(--gold-ember);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.circular-text p {
    color: rgba(244, 239, 230, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

.zigzag-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.zigzag-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.zigzag-item:nth-child(even) {
    direction: rtl;
}

.zigzag-item:nth-child(even) > * {
    direction: ltr;
}

.zigzag-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.zigzag-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.zigzag-content h3 {
    color: var(--gold-ember);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.zigzag-content p {
    color: rgba(244, 239, 230, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

.floating-boxes-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.floating-image-bg {
    width: 100%;
    height: 600px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 3rem;
}

.floating-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-box {
    position: absolute;
    background: linear-gradient(135deg, var(--black-cherry) 0%, var(--smoked-plum) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--gold-ember);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 300px;
}

.floating-box:nth-child(1) {
    top: 10%;
    left: 5%;
}

.floating-box:nth-child(2) {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.floating-box:nth-child(3) {
    bottom: 10%;
    left: 15%;
}

.floating-box h4 {
    color: var(--gold-ember);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.floating-box p {
    color: rgba(244, 239, 230, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.scent-wheel-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.scent-wheel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    position: relative;
}

.scent-wheel-image {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--gold-ember);
    box-shadow: 0 20px 50px rgba(217, 164, 65, 0.4);
    position: relative;
}

.scent-wheel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scent-wheel-text {
    max-width: 600px;
    margin-left: 3rem;
}

.scent-wheel-text h3 {
    color: var(--gold-ember);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.scent-wheel-text p {
    color: rgba(244, 239, 230, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.layered-image-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.layered-container {
    position: relative;
    height: 550px;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layered-image {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.layered-image:hover {
    z-index: 10;
    transform: scale(1.05);
}

.layered-image:nth-child(1) {
    width: 45%;
    height: 75%;
    top: 10%;
    left: 15%;
    z-index: 3;
    transform: rotate(-3deg);
}

.layered-image:nth-child(2) {
    width: 45%;
    height: 75%;
    top: 10%;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    z-index: 2;
}

.layered-image:nth-child(3) {
    width: 45%;
    height: 75%;
    top: 10%;
    right: 15%;
    z-index: 1;
    transform: rotate(-2deg);
}

.layered-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.layered-content {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--black-cherry) 0%, var(--smoked-plum) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--gold-ember);
    max-width: 600px;
    width: 90%;
    z-index: 4;
    text-align: center;
}

.layered-content h3 {
    color: var(--gold-ember);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.layered-content p {
    color: rgba(244, 239, 230, 0.9);
    line-height: 1.6;
}

.comparison-grid-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-item {
    text-align: center;
}

.comparison-image {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-item h3 {
    color: var(--gold-ember);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.comparison-item p {
    color: rgba(244, 239, 230, 0.8);
    line-height: 1.8;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .diagonal-split-content {
        grid-template-columns: 1fr;
        transform: rotate(0);
    }
    
    .diagonal-image-box,
    .diagonal-text-box {
        transform: rotate(0);
    }
    
    .staggered-grid {
        grid-template-columns: 1fr;
    }
    
    .staggered-item {
        transform: translateY(0) !important;
    }
    
    .full-width-image-container {
        height: 400px;
    }
    
    .mosaic-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .mosaic-item {
        grid-column: 1 !important;
        grid-row: auto !important;
        height: 250px;
    }
    
    .circular-layout {
        flex-direction: column;
    }
    
    .zigzag-item {
        grid-template-columns: 1fr;
    }
    
    .zigzag-item:nth-child(even) {
        direction: ltr;
    }
    
    .floating-image-bg {
        height: 500px;
    }
    
    .floating-box {
        position: relative;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .floating-box:nth-child(1),
    .floating-box:nth-child(2),
    .floating-box:nth-child(3) {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
    }
    
    .scent-wheel-container {
        flex-direction: column;
    }
    
    .scent-wheel-image {
        width: 300px;
        height: 300px;
    }
    
    .scent-wheel-text {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .layered-container {
        height: auto;
        flex-direction: column;
    }
    
    .layered-image {
        position: relative;
        width: 90% !important;
        height: 300px !important;
        margin: 0 auto 2rem;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
    
    .layered-image:nth-child(1),
    .layered-image:nth-child(2),
    .layered-image:nth-child(3) {
        width: 90% !important;
        height: 300px !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
    
    .layered-content {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .diagonal-split-content::before {
        content: none;
        display: none;
    }
    
    .diagonal-split-section,
    .staggered-image-section,
    .mosaic-section,
    .circular-image-section,
    .zigzag-section,
    .floating-boxes-section,
    .scent-wheel-section,
    .layered-image-section,
    .comparison-grid-section {
        padding: 2rem 0.75rem;
    }
    
    .diagonal-text-box h3,
    .zigzag-content h3,
    .circular-text h3,
    .scent-wheel-text h3 {
        font-size: 1.5rem;
    }
    
    .full-width-image-container {
        height: 300px;
    }
    
    .full-width-overlay-content h2 {
        font-size: 1.75rem;
    }
    
    .full-width-overlay-content p {
        font-size: 1rem;
    }
    
    .circular-image-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .zigzag-image img {
        height: 250px;
    }
    
    .floating-image-bg {
        height: 400px;
    }
    
    .scent-wheel-image {
        width: 250px;
        height: 250px;
    }
    
    .layered-image {
        height: 200px !important;
        width: 95% !important;
    }
    
    .layered-image:nth-child(1),
    .layered-image:nth-child(2),
    .layered-image:nth-child(3) {
        height: 200px !important;
        width: 95% !important;
    }
    
    .layered-content {
        padding: 1.5rem;
    }
    
    .layered-content h3 {
        font-size: 1.25rem;
    }
    
    .layered-content p {
        font-size: 0.85rem;
    }
    
    .comparison-image {
        height: 250px;
    }
}

