:root {
    --bg-main: #EDECEA;
    --bg-light: #F2F1EF;
    --bg-dark: #1a1a1a;
    --sage: #8B9A7E;
    --sage-dark: #6B7A5E;
    --warm-pink: #D4B5A0;
    --cream: #F7F6F4;
    --accent: #7A7A7A;
    --accent-dark: #4A4A4A;
    --accent-rule: #C8C7C5;
    --text-dark: #333333;
    --text-muted: #777777;
    --text-light: #AAAAAA;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-dark);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2000;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}

/* Focus Outlines */
:focus-visible {
    outline: 2px solid var(--accent-dark);
    outline-offset: 2px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(242, 241, 239, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--accent-rule);
    padding: 0.8rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

/* Hamburger Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger to X animation */
.nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)),
                url('candle-lifestyle-hero.webp') center 80%/cover no-repeat,
                url('candle-lifestyle-hero.jpg') center 80%/cover no-repeat;
    color: white;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(transparent, var(--bg-main));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero .hero-tagline {
    font-family: 'Sacramento', cursive;
    font-size: 6rem;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 8px;
    font-weight: 400;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.65);
}

.btn:hover {
    background: rgba(255,255,255,0.15);
    color: white;
}

.btn-filled {
    background: rgba(237,236,234,0.92);
    color: var(--text-dark);
    border-color: rgba(237,236,234,0.92);
}

.btn-filled:hover {
    background: white;
    border-color: white;
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

/* Sections */
section {
    padding: 7rem 2rem;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 4rem;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.8;
}

.info-intro {
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--text-dark);
    max-width: 700px;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.info-intro-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 560px;
    line-height: 1.8;
}

/* Info Section (craft + care combined) */
.info {
    background: var(--cream);
    padding: 7rem 2rem;
}

.info-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.info-inner > .section-label {
    text-align: left;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 3rem;
    margin-top: 2rem;
}

.info-grid--care {
    grid-template-columns: repeat(5, 1fr);
}

.info-rule {
    border: none;
    border-top: 1px solid var(--accent-rule);
    margin: 4rem 0;
}

.info-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

/* Products Section */
.products {
    background: var(--bg-light);
}

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

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: transform 0.4s, box-shadow 0.4s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.product-image-wrap {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.product-image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
    z-index: 1;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 2.5rem;
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.product-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

.price-list {
    list-style: none;
    border-top: 1px solid var(--bg-light);
    padding-top: 1.5rem;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--bg-light);
    font-size: 0.95rem;
}

.price-list li:last-child {
    border-bottom: none;
}

.price {
    font-weight: 500;
    color: var(--accent-dark);
}


/* Ordering Section */
.ordering {
    background: var(--bg-light);
}

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

.ordering-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

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

.ordering-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

/* Gallery */
.gallery {
    background: var(--bg-dark);
    padding: 0;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    width: max-content;
    animation: gallery-scroll 30s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    width: 350px;
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover {
    opacity: 0.8;
}

@keyframes gallery-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Contact Section */
.contact {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
                url('https://images.pexels.com/photos/6311980/pexels-photo-6311980.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
    color: white;
    text-align: center;
}

.contact .section-title {
    color: white;
}

.contact .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-item h4 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-rule);
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--accent-rule);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

footer p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .logo-img {
        height: 44px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(242, 241, 239, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 999;
    }

    .nav-open .nav-links {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 3px;
        color: var(--text-dark);
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }

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

    section {
        padding: 4rem 1.5rem;
    }

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

    .contact-info {
        gap: 2rem;
    }
}
