/* Base Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f9f9f9; /* Warm Paper */
    --text-primary: #1a1a1a; /* Obsidian */
    --text-muted: #555555;
    --accent: #7F6051; /* Earthy Brown */
    --accent-hover: #5d463b;
    --card-bg: #ffffff;
    --border-color: #e5e5e5;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

p {
    font-family: var(--font-body);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(249, 249, 249, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
}

.logo span {
    color: var(--accent);
}

.hamburger {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-outline {
    border: 1px solid var(--accent);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    color: var(--accent) !important;
}

.btn-outline:hover {
    background-color: var(--accent);
    color: #fff !important;
}

/* Hero Section */
.hero {
    padding: 12rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    color: var(--accent);
    font-style: italic;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-asset {
    margin-top: 4rem;
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--text-primary);
    color: #fff;
    padding: 4rem 2rem;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.trust-icon {
    font-size: 2.5rem;
}

.trust-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.trust-text p {
    color: #a0a0a0;
    font-size: 0.95rem;
}

/* Collections */
.collections {
    padding: 8rem 2rem;
    background-color: var(--bg-color);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.collection-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.col-item {
    display: flex;
    flex-direction: column;
}

.col-img-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.col-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    transform: scale(1.1); /* Provide room for parallax */
}

.col-item:hover .col-image {
    transform: scale(1.15); /* Micro interaction on top of parallax */
}

.col-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.col-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.link-btn {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.link-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Lead Capture */
.lead-capture {
    padding: 8rem 2rem;
    background-color: var(--card-bg);
}

.capture-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.capture-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.capture-container p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* WhatsApp CTA Card */
.wa-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    max-width: 500px;
    margin: 0 auto;
}

.wa-icon {
    width: 48px;
    height: 48px;
    color: #25D366;
    margin-bottom: 0.2rem;
}

.wa-card h3 {
    font-size: 1.5rem;
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* About & Map Section */
.about-map {
    padding: 6rem 2rem;
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
}

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

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
}

.stat h4 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.stat span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.map-frame {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    background: #e0e0e0;
}

/* Product Card Carousel & Lightbox */
.p-card-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: #eee;
}

.p-card-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    object-fit: cover;
    cursor: zoom-in;
}

.p-card-slide.active {
    opacity: 1;
    z-index: 1;
}

.p-card-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--text-primary);
}

.p-card-carousel:hover .p-card-arrow {
    opacity: 1;
}

.p-card-arrow.prev { left: 10px; }
.p-card-arrow.next { right: 10px; }

.p-card-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.p-card-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.p-card-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 1rem;
    position: relative;
    line-height: 1.8;
}

.p-card-features li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
}

.btn-whatsapp-outline {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 1px solid #25D366;
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: background 0.3s, color 0.3s;
}

.btn-whatsapp-outline:hover {
    background-color: #25D366;
    color: #fff;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    font-family: var(--font-body);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.lightbox-arrow:hover { background: rgba(255,255,255,0.2); }
.lightbox-arrow.prev { left: 2rem; }
.lightbox-arrow.next { right: 2rem; }

/* Page Header for Inner Pages */
.page-header {
    padding: 10rem 2rem 5rem;
    text-align: center;
    background: var(--bg-color);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-primary);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--card-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.05);
        z-index: 1000;
        gap: 2.5rem;
    }

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

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

    .hero {
        padding: 8rem 1rem 4rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .p-card-arrow {
        opacity: 1; /* Always show arrows on mobile */
    }
}
