/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4A445;
    --secondary-color: #2F5233;
    --accent-color: #C44536;
    --text-dark: #333;
    --text-light: #fff;
    --background-light: #f8f8f8;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Scrolled Navbar State */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* ===== MOBILE RESPONSIVE NAVIGATION ===== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        flex-direction: column;
        background: white;
        width: 280px;
        height: 100vh;
        padding: 100px 30px 30px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        display: block;
        font-size: 1.1rem;
        padding: 1rem 0;
        color: var(--text-dark);
    }

    .nav-link::after {
        display: none;
    }

    .logo img {
        height: 50px;
    }

    .nav-container {
        padding: 0.75rem 20px;
    }
}

/* Overlay when mobile menu is open */
@media (max-width: 768px) {
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 280px;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Hero Cinematic Base */
/* Hero Cinematic Base */
.hero-cinematic {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Background Image Animation */
.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15); /* Start zoomed in */
    transition: transform 10s linear;
}

.hero-slide.active .hero-bg {
    transform: scale(1); /* Slow zoom out */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(75deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    z-index: 1;
}

/* Typography & Content */
.hero-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
    position: relative;
    z-index: 10;
    color: #fff;
    padding: 0 20px;
}

.hero-tag {
    color: #d4af37; /* Gold */
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s all 0.4s;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s all 0.6s;
}

.hero-title span {
    font-style: italic;
    font-weight: 400;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s all 0.8s;
}

.hero-slide.active .hero-tag,
.hero-slide.active .hero-title,
.hero-slide.active .hero-subtitle,
.hero-slide.active .hero-btns {
    transform: translateY(0);
    opacity: 1;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
    opacity: 0;
    transition: 0.8s all 1s;
}

.btn-gold {
    background: #d4af37;
    color: #1b4332;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #fff;
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* UI Elements */
.hero-ui {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 20;
}

.hero-pagination {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.nav-progress {
    width: 150px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
}

.nav-progress-bar {
    position: absolute;
    height: 100%;
    background: #d4af37;
    width: 50%;
    transition: width 5s linear; /* Matches auto-slide time */
}

.hero-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 0.7rem;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
}
/* Factory Section */
/* Factory Section Refinement */
.factory-section {
    background-color: #fdfcf8; /* Soft cream background */
    padding: 100px 0;
}

.factory-header {
    text-align: center;
    margin-bottom: 60px;
}

.pre-title {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    color: #1b4332;
    font-weight: 700;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: #1b4332;
    margin: 20px auto;
}

/* The "Pretty" Staggered Grid */
.aesthetic-factory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #eee;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Grid Logic */
.grid-item.tall { grid-row: span 2; grid-column: span 2; }
.grid-item.wide { grid-column: span 2; }

/* Overlay */
.item-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.6s;
}

.item-overlay span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 5px;
}

.item-overlay h3 {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.grid-item:hover .item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.grid-item:hover img {
    transform: scale(1.1);
}

/* Gradient mask on hover */
.grid-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: 0.6s;
    z-index: 1;
}

.grid-item:hover::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .aesthetic-factory-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .grid-item.tall { grid-row: span 2; grid-column: span 1; }
    .grid-item.wide { grid-column: span 1; }
}

@media (max-width: 600px) {
    .aesthetic-factory-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .grid-item.tall, .grid-item.wide { grid-row: span 1; grid-column: span 1; }
}
/* Cheese Section */
.cheese-showcase {
    background-color: #fff;
    padding: 100px 0;
}

.cheese-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    max-width: 700px;
    margin: 20px auto 0;
    color: #666;
    line-height: 1.8;
}

.cheese-display-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-frame {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-frame:hover .image-container img {
    transform: scale(1.1);
}

.product-meta {
    padding: 25px;
    text-align: center;
}

.product-meta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1b4332;
    margin-bottom: 8px;
}

.product-meta p {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .cheese-display-grid {
        grid-template-columns: 1fr;
    }
}

/* Export Modern Section */
.export-section {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.export-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.export-intro {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-top: 20px;
}

.aesthetic-export-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.export-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.export-item:hover {
    transform: translateY(-5px);
}

.export-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--brand-green);
    opacity: 0.2;
    line-height: 1;
    font-style: italic;
}

.export-info h3 {
    font-size: 1.2rem;
    color: var(--brand-green);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.export-info p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.export-cta {
    margin-top: 80px;
    text-align: center;
    padding: 40px;
    background: var(--soft-cream);
    border-radius: 30px;
}

.export-cta p {
    margin-bottom: 20px;
    font-weight: 500;
}

.outline-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--brand-green);
    color: var(--brand-green);
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.outline-btn:hover {
    background: var(--brand-green);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .aesthetic-export-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* About Luxury Section */
.about-luxury {
    background: #fafbfc;
    padding: 120px 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Visual Side */
.about-visuals {
    position: relative;
    padding-right: 40px;
}

.main-frame {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.main-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
}

.floating-frame {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 250px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border: 8px solid #fff;
}

.floating-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Parallax and Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s 0.3s forwards;
}

.delay-1 {
    animation-delay: 0.6s;
}

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

.experience-badge {
    position: absolute;
    top: 40px;
    left: -20px;
    background: #1b4332; /* Deep Green */
    color: #d4af37; /* Gold */
    padding: 30px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(27,67,50,0.2);
}

.experience-badge .years {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.experience-badge .label {
    font-size: 0.7rem;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 1px;
}

/* Editorial Text */
.pre-title-gold {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.editorial-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1b4332;
    margin-bottom: 30px;
}

.editorial-title span {
    font-style: italic;
    font-weight: 400;
    color: #333;
}

.lead-text {
    font-size: 1.25rem;
    color: #1b4332;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.6;
}

.editorial-body p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Feature Grid */
.feature-minimal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.f-item {
    display: flex;
    gap: 15px;
}

.f-icon {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    font-style: italic;
}

.f-info h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #1b4332;
}

.f-info p {
    font-size: 0.85rem;
    color: #888;
}

.btn-minimal {
    display: inline-block;
    margin-top: 50px;
    text-decoration: none;
    color: #1b4332;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
}

.btn-minimal:hover {
    color: #d4af37;
    padding-left: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 100px;
    }
    .about-visuals {
        padding-right: 0;
    }
}

/* Contact Section */
:root {
    --brand-green: #1b4332; /* Match the green from your logo */
    --soft-cream: #f9fbf9;
    --text-muted: #6b7280;
}

.contact-section {
    background-color: var(--soft-cream);
    padding: 100px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.pre-title {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--brand-green);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--brand-green);
    font-family: 'Playfair Display', serif; /* Use a serif font for elegance if available */
}

.title-underline {
    width: 50px;
    height: 3px;
    background: var(--brand-green);
    margin: 20px auto;
}

.aesthetic-contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glass-link {
    display: flex;
    align-items: center;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px; /* Pill shape is very aesthetic */
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.glass-link:hover {
    background: var(--brand-green);
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(27, 67, 50, 0.15);
}

.link-icon {
    font-family: sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-green);
    width: 100px;
}

.link-text {
    border-left: 1px solid #ddd;
    padding-left: 25px;
}

.link-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-value {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 500;
}

/* Hover States for text */
.glass-link:hover .link-icon,
.glass-link:hover .link-label,
.glass-link:hover .link-value {
    color: #ffffff;
}

.glass-link:hover .link-text {
    border-color: rgba(255, 255, 255, 0.3);
}

.location-footer {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-style: italic;
}
/* Footer */
/* Premium Footer Styling */
.footer-premium {
    background-color: #0d1b15; /* Extremely dark green */
    color: #ffffff;
    padding: 100px 0 40px;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1); /* Subtle gold border */
    padding-bottom: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1); /* Makes logo white if it's dark */
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #d4af37; /* Gold */
    font-weight: 500;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 8px;
}

.footer-info {
    list-style: none;
    padding: 0;
}

.footer-info li {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-info span {
    display: block;
    color: #d4af37;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.footer-socials {
    margin-top: 20px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-socials img {
    width: 24px;
    height: 24px;
}

/* Social Buttons */
.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: #d4af37;
    transition: 0.4s;
    text-decoration: none;
}

.social-circle:hover {
    background: #d4af37;
    color: #0d1b15;
    transform: translateY(-5px);
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.copyright span {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
}

.footer-tagline {
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        left: 20px;
        right: 20px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.section {
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================
   1. RESET & BASE STYLES
   ================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-color: #D4A445;   /* Gold */
    --brand-green: #1b4332;     /* Deep Green */
    --secondary-color: #2F5233;
    --accent-color: #C44536;
    
    /* UI Colors */
    --text-dark: #333;
    --text-light: #fff;
    --text-muted: #6b7280;
    --background-light: #f8f8f8;
    --soft-cream: #f9fbf9;
    
    /* Effects */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================================
   2. NAVIGATION (Fully Responsive)
   ================================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Mobile Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 0;
}

/* ================================================================
   3. HERO CINEMATIC SLIDER
   ================================================================ */
.hero-cinematic {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 10s linear;
}

.hero-slide.active .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(75deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    z-index: 1;
}

.hero-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    position: relative;
    z-index: 10;
    color: #fff;
    padding: 0 40px;
}

.hero-tag {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s all 0.4s;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s all 0.6s;
}

.hero-slide.active .hero-tag,
.hero-slide.active .hero-title,
.hero-slide.active .hero-subtitle,
.hero-slide.active .hero-btns {
    transform: translateY(0);
    opacity: 1;
}

.hero-btns { display: flex; gap: 20px; opacity: 0; transition: 0.8s all 1s; }

.btn-gold { background: #d4af37; color: #1b4332; padding: 18px 40px; text-decoration: none; border-radius: 4px; font-weight: 700; transition: 0.3s; }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 18px 40px; text-decoration: none; border-radius: 4px; transition: 0.3s; }
.btn-gold:hover { background: #fff; transform: translateY(-3px); }

/* ================================================================
   4. ABOUT LUXURY SECTION
   ================================================================ */
.about-luxury { background: #fafbfc; padding: 120px 0; }
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visuals { position: relative; padding-right: 40px; }

.main-frame {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-frame img { width: 100%; height: 100%; object-fit: cover; }

.floating-frame {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 250px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    border: 8px solid #fff;
}

.experience-badge {
    position: absolute;
    top: 40px;
    left: -20px;
    background: var(--brand-green);
    color: #d4af37;
    padding: 25px;
    z-index: 3;
    text-align: center;
}

.editorial-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--brand-green);
    margin-bottom: 25px;
}

/* ================================================================
   5. FACTORY & CHEESE GRIDS
   ================================================================ */
.factory-section { background-color: #fdfcf8; padding: 100px 0; }
.aesthetic-factory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}
.grid-item.tall { grid-row: span 2; grid-column: span 2; }
.grid-item.wide { grid-column: span 2; }
.grid-item { position: relative; overflow: hidden; border-radius: 8px; }
.grid-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
.grid-item:hover img { transform: scale(1.1); }

.cheese-display-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* ================================================================
   6. CONTACT SECTION (Aesthetic)
   ================================================================ */
.contact-section { background-color: var(--soft-cream); padding: 100px 0; }
.aesthetic-contact-wrapper { max-width: 800px; margin: 0 auto; }

.glass-link {
    display: flex;
    align-items: center;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    text-decoration: none;
    transition: 0.4s;
    margin-bottom: 15px;
}

.glass-link:hover { background: var(--brand-green); transform: scale(1.02); color: #fff; }
.link-icon { width: 100px; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-green); }
.link-text { border-left: 1px solid #ddd; padding-left: 25px; }
.glass-link:hover .link-icon, .glass-link:hover .link-value { color: #fff; }

/* ================================================================
   7. FOOTER
   ================================================================ */
.footer-premium { background-color: #0d1b15; color: #fff; padding: 100px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 60px; }
.footer-title { color: #d4af37; font-family: 'Playfair Display', serif; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: #d4af37; padding-left: 5px; }

/* ================================================================
   8. MASTER RESPONSIVE BREAKPOINTS
   ================================================================ */
@media (max-width: 991px) {
    .about-wrapper { grid-template-columns: 1fr; gap: 100px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Nav */
    .mobile-menu-toggle { display: flex; }
    .nav-menu {
        position: fixed; left: 0; top: 0; background: white;
        width: 280px; height: 100vh; flex-direction: column;
        padding: 100px 30px; transform: translateX(-100%); transition: 0.3s;
    }
    .nav-menu.active { transform: translateX(0); }
    
    /* Hero */
    .hero-title { font-size: 2.8rem; }
    .hero-btns { flex-direction: column; }
    
    /* Factory Grid Reset */
    .aesthetic-factory-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .grid-item.tall, .grid-item.wide { grid-row: span 1; grid-column: span 1; }

    /* About Overlap Fix */
    .main-frame { height: 350px; }
    .floating-frame { width: 160px; height: 160px; bottom: -40px; right: 0; }

    /* Contact Pills Fix */
    .glass-link { flex-direction: column; align-items: flex-start; border-radius: 20px; }
    .link-text { border-left: none; border-top: 1px solid rgba(0,0,0,0.1); padding: 10px 0; width: 100%; }
    .link-value { word-break: break-all; font-size: 1rem; }

    /* Footer Reset */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .editorial-title { font-size: 2rem; }
}