:root {
    --bg-primary: #f7f1e8;
    --bg-secondary: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: rgba(0, 0, 0, 0.6);
    --accent: #c99351; /* Elegant darker gold to contrast with light background */
    --accent-hover: #b88645;
    --border-color: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease, color 0.3s ease;
    color: #ffffff;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

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

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

/* Same size when scrolled */
.navbar.scrolled .logo img {
    height: 100px;
}

.nav-links {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.nav-btn {
    padding: 10px 24px;
    font-size: 12px;
    border-color: var(--accent);
    color: #ffffff;
}

.navbar.scrolled .nav-btn {
    color: var(--accent);
}

.navbar.scrolled .nav-btn:hover, .nav-btn:hover {
    background: var(--accent);
    color: #ffffff;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: currentColor; /* Inherits from navbar color */
    transition: 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 100px 40px;
    gap: 30px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border-color);
    color: var(--text-primary);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

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

/* Button */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hero button needs to look good on dark video overlay */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.hero .btn {
    color: #ffffff;
    border-color: #ffffff;
}

.hero .btn:hover {
    background: #ffffff;
    color: #000000;
}

.hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.hero .btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.btn:not(.hero .btn):hover {
    background: var(--accent);
    color: #ffffff;
}

/* Utility */
.accent-line {
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin: 20px 0;
}

.accent-line.center {
    margin: 20px auto;
}

section {
    padding: 100px 40px;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease;
    color: #ffffff; /* Explicitly white text for the hero video overlay */
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 120px 40px;
    /* This connects to the image the user saves */
    background-image: url('../images/stats-bg.jpg.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.stats-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(247, 241, 232, 0.85); /* Light overlay using primary bg color */
    z-index: -1;
}

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

.stats-container h2 {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    margin-bottom: 80px;
}

.stat-number {
    font-size: 56px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}

.quote-box {
    border-left: 4px solid var(--accent);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    padding: 40px 50px;
    margin-top: 40px;
}

.quote-box p {
    font-size: 20px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
}

.quote-box .quote-author {
    margin-top: 25px;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    color: var(--accent);
}

/* Work With Us Section */
.work-feature-section {
    background: #ffffff;
    color: #1a1a1a;
    padding: 120px 40px;
}

.work-feature-container {
    max-width: 1200px;
    margin: 0 auto;
}

.work-feature-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: stretch;
}

.work-feature-left .subtitle {
    color: var(--accent);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.work-feature-left h2 {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 50px;
    color: var(--accent);
    font-weight: 400;
}

.work-feature-left p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.feature-icon .material-icons {
    font-size: 28px;
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.feature-text p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.work-feature-right {
    position: relative;
    display: flex;
}

.work-feature-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #f7f1e8;
    width: 100%;
    flex-grow: 1;
}

.work-feature-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-feature-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 70%);
    pointer-events: none;
}

.image-text-overlay {
    position: absolute;
    top: 40px;
    right: 40px;
    text-align: right;
    z-index: 2;
}

.image-text-overlay h3 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
}

.image-text-overlay h3 span {
    color: var(--accent);
    font-style: italic;
}

.image-text-overlay .image-tag {
    background: var(--accent);
    color: #111;
    display: inline-block;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
}

.work-feature-bottom {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.feature-card {
    text-align: center;
    padding: 35px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
}

.feature-card .material-icons {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

.feature-card p {
    font-size: 13px;
    color: rgba(0,0,0,0.6);
    line-height: 1.6;
}

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

.product-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-image-wrapper {
    height: 300px;
    width: 100%;
    background: rgba(0, 0, 0, 0.05); /* Light placeholder */
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-info {
    padding: 30px;
    text-align: center;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.product-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.contact-details .icon {
    color: var(--accent);
    font-size: 20px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #ffffff;
}

/* Home CTA Section */
.home-cta-section {
    background: #ffffff;
    padding: 130px 40px;
    text-align: center;
}

.home-cta-inner {
    max-width: 760px;
    margin: 0 auto;
}

.home-cta-eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
}

.home-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 68px);
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.home-cta-section h2 em {
    color: var(--accent);
    font-style: italic;
}

.home-cta-section > div > p {
    font-size: 16px;
    color: #666;
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.home-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 44px;
    background: #1a1a1a;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.home-cta-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201,147,81,0.35);
    color: #fff;
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   FOOTER STYLES
   ============================================= */
.site-footer {
    background-color: #0c0c0c;
    color: #e5e5e5;
    padding: 60px 20px 20px;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-col .footer-logo {
    height: 60px;
    margin: 0 0 20px 0;
    display: block;
}

.brand-col p {
    color: #888;
    font-size: 14px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-underline {
    height: 2px;
    width: 30px;
    background-color: #d19a4e; /* Gold color */
    margin-bottom: 24px;
}

.links-col a {
    display: block;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 14px;
    transition: color 0.3s;
}

.links-col a:hover {
    color: #d19a4e;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #999;
}

.footer-contact-item .material-icons {
    font-size: 18px;
    color: #666;
    margin-top: 2px;
}

.footer-contact-item p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
}

.footer-bottom p {
    color: #555;
    font-size: 13px;
}

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


/* Responsive */
@media (max-width: 1000px) {
    .work-feature-top {
        grid-template-columns: 1fr;
    }
    .work-feature-image {
        min-height: 400px;
    }
    .work-feature-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .image-text-overlay {
        position: relative;
        top: 0;
        right: 0;
        text-align: left;
        padding: 20px;
        background: #111;
    }
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    section {
        padding: 80px 20px;
    }
}

@media (max-width: 600px) {
    .work-feature-bottom {
        grid-template-columns: 1fr;
    }
}
