:root {
    --bg-dark: #0f0d0a;
    --bg-dark-accent: #1a1612;
    --bg-light: #f5f0eb;
    --bg-light-accent: #ede8e2;
    --text-light: #f0ede8;
    --text-dark: #2b2620;
    --accent-amber: #c9a86e;
    --accent-lavender: #b8a8d1;
    --border-color: #3a3530;
    --spacing: 24px;
}

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

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

a {
    color: var(--accent-amber);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-lavender);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.section-spacing {
    padding: 72px 48px;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 48px 24px;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
}

header.header {
    background: var(--bg-dark-accent);
    padding: 24px 48px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    flex: 1;
}

.nav-menu a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-amber);
}

.cta-button-filled {
    background: var(--accent-amber);
    color: var(--text-dark);
    padding: 12px 28px;
    border: 1px solid var(--accent-amber);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button-filled:hover {
    background: var(--accent-lavender);
    border-color: var(--accent-lavender);
    color: var(--text-dark);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(201, 168, 110, 0.3);
}

.cta-button-outline {
    background: transparent;
    color: var(--text-light);
    padding: 12px 28px;
    border: 1px solid var(--accent-amber);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button-outline:hover {
    background: var(--accent-amber);
    color: var(--text-dark);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(201, 168, 110, 0.3);
}

.cta-button-outline.active {
    background: var(--accent-amber);
    color: var(--text-dark);
}

.hero {
    background: linear-gradient(180deg, #1a1612 0%, #2b2620 100%);
}

.hero-dark {
    padding: 72px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.hero-light {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-light-accent) 100%);
    padding: 60px 48px;
    position: relative;
    margin-top: -40px;
}

.hero-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.hero-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid var(--bg-light-accent);
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(201, 168, 110, 0.15);
}

.hero-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.hero-card h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.hero-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.find-scent {
    background: var(--bg-dark);
    max-width: 1400px;
    margin: 0 auto;
}

.find-scent h2 {
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-light);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.step-panel {
    background: var(--bg-dark-accent);
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.step-panel:hover {
    border-color: var(--accent-amber);
    background: #1f1a17;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-amber);
    margin-bottom: 16px;
    opacity: 0.8;
}

.step-panel img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.step-panel h3 {
    color: var(--text-light);
    margin-bottom: 16px;
}

.step-panel p {
    color: var(--text-light);
    font-size: 0.95rem;
    opacity: 0.9;
}

.section-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 60px;
    background: var(--bg-dark);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.section-block.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.section-block.reverse > * {
    direction: ltr;
}

.section-block img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    height: auto;
}

.section-text {
    color: var(--text-light);
}

.section-text h2 {
    color: var(--text-light);
    margin-top: 0;
}

.scent-map-section, .burn-rhythm-section, .room-pairing-section {
    background: var(--bg-dark);
}

.faq-section {
    background: var(--bg-dark);
    max-width: 1400px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-light);
}

.faq-block {
    background: var(--bg-dark-accent);
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.faq-block:hover {
    border-color: var(--accent-amber);
    background: #1f1a17;
}

.faq-block h3 {
    color: var(--accent-amber);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.faq-block p {
    color: var(--text-light);
    opacity: 0.9;
}

.products-section {
    background: var(--bg-dark);
    max-width: 1400px;
    margin: 0 auto;
}

.products-section h1 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.products-intro {
    background: var(--bg-dark-accent);
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 48px;
    color: var(--text-light);
}

.product-switcher {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.switcher-tab {
    padding: 12px 24px;
    background: var(--bg-dark-accent);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.switcher-tab.active {
    background: var(--accent-amber);
    border-color: var(--accent-amber);
    color: var(--text-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.product-card {
    background: var(--bg-dark-accent);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--accent-amber);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(201, 168, 110, 0.15);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.02);
}

.product-card h3 {
    color: var(--text-light);
    padding: 24px 24px 12px;
    font-size: 1.2rem;
}

.product-card p {
    color: var(--text-light);
    padding: 0 24px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.product-price {
    color: var(--accent-amber);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 24px 8px !important;
    margin: 0 !important;
}

.product-button {
    display: block;
    background: var(--accent-amber);
    color: var(--text-dark);
    padding: 12px 24px;
    text-align: center;
    margin: 16px 24px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-button:hover {
    background: var(--accent-lavender);
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(184, 168, 209, 0.3);
}

.quiet-selection {
    background: var(--bg-dark);
    max-width: 1400px;
    margin: 0 auto;
    color: var(--text-light);
}

.quiet-selection h2 {
    color: var(--text-light);
}

.gallery-section {
    background: var(--bg-dark);
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-section h1 {
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-light);
}

.gallery-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 60px;
}

.gallery-block.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.gallery-block.reverse > * {
    direction: ltr;
}

.gallery-block img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.gallery-text {
    color: var(--text-light);
}

.gallery-text h2 {
    color: var(--text-light);
    margin-top: 0;
}

.gallery-cta {
    text-align: center;
    background: var(--bg-dark-accent);
    padding: 48px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-top: 60px;
}

.gallery-cta h2 {
    color: var(--text-light);
}

.gallery-cta p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.contact-section {
    background: var(--bg-dark);
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    color: var(--text-light);
}

.contact-info h1 {
    margin-bottom: 24px;
    color: var(--text-light);
}

.contact-info p {
    color: var(--text-light);
}

.contact-details {
    background: var(--bg-dark-accent);
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin: 32px 0;
}

.contact-details h3 {
    color: var(--accent-amber);
    margin-bottom: 16px;
}

.contact-details a {
    color: var(--accent-amber);
}

.contact-info img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 32px;
}

.contact-form-wrapper {
    background: var(--bg-dark-accent);
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    height: fit-content;
}

.contact-form-wrapper h2 {
    color: var(--text-light);
    margin-top: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 12px 16px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-amber);
    box-shadow: 0 0 12px rgba(201, 168, 110, 0.2);
}

.form-check-label {
    color: var(--text-light);
    font-size: 0.95rem;
    cursor: pointer;
}

.form-check-input {
    cursor: pointer;
    accent-color: var(--accent-amber);
}

.thank-you-section {
    background: var(--bg-dark);
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-container {
    background: var(--bg-dark-accent);
    padding: 64px 48px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.thank-you-container h1 {
    color: var(--text-light);
    margin-bottom: 24px;
}

.thank-you-container p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.about-section {
    background: var(--bg-dark);
    max-width: 1400px;
    margin: 0 auto;
}

.about-section h1 {
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-light);
}

.about-block {
    background: var(--bg-dark-accent);
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 32px;
    color: var(--text-light);
}

.about-block h2 {
    color: var(--accent-amber);
    margin-top: 0;
}

.legal-section {
    background: var(--bg-dark);
    max-width: 1400px;
    margin: 0 auto;
    color: var(--text-light);
}

.legal-section h1 {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 48px;
}

.legal-section h2 {
    color: var(--accent-amber);
}

.legal-section h3 {
    color: var(--text-light);
}

.legal-section a {
    color: var(--accent-amber);
}

footer.footer {
    background: var(--bg-dark-accent);
    border-top: 1px solid var(--border-color);
    padding: 48px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 32px;
}

.footer-column h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-amber);
    opacity: 1;
}

.footer-column p {
    color: var(--text-light);
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 16px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    color: var(--text-light);
    opacity: 0.6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark-accent);
    border-top: 1px solid var(--border-color);
    padding: 20px 48px;
    z-index: 999;
    display: flex;
    justify-content: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-amber);
}

.cookie-btn {
    background: var(--accent-amber);
    color: var(--text-dark);
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: var(--accent-lavender);
    transform: scale(1.02);
}

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

    .steps-container {
        grid-template-columns: 1fr;
    }

    .hero-cards-container {
        grid-template-columns: 1fr;
    }

    .section-block,
    .gallery-block,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .gallery-block.reverse,
    .section-block.reverse {
        direction: ltr;
    }

    .header-container {
        gap: 20px;
    }

    .nav-menu {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-dark {
        grid-template-columns: 1fr;
    }

    header.header {
        padding: 16px 24px;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-menu {
        gap: 12px;
        order: 3;
        width: 100%;
        font-size: 0.85rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cookie-banner {
        padding: 16px 24px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons {
        flex-direction: column;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}
