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

:root {
    --color-1: #EDE0D4;  --color-2: #E6CCB2;  --color-3: #DDB892;
    --color-4: #B08968;  --color-5: #7F5539;  --color-6: #9C6644;
    --white: #FFFFFF;     --black: #2D2D2D;    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --font-primary: 'Inter', sans-serif;
    --section-spacing: 80px;
    --container-padding: 20px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-primary);
    color: var(--color-5);
    line-height: 1.6;
    background-color: var(--color-1);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-weight: 600; color: var(--color-5); }
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    position: relative;
}
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-4);
}
h3 { font-size: 1.5rem; margin-bottom: 15px; }
.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-5);
    text-decoration: none;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-menu a {
    color: var(--color-5);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-4);
    transition: var(--transition);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.lang-btn {
    background: var(--color-2);
    color: var(--color-5);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}
.lang-btn:hover { background: var(--color-3); }
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--color-5);
    margin: 2px 0;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-subtitle {
    color: var(--color-4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}
.hero-title { margin: 20px 0 15px; }
.highlight {
    color: var(--color-4);
    position: relative;
    display: inline-block;
}
.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--color-2);
    z-index: -1;
}
.hero-tagline {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}
.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn-primary {
    background: var(--color-4);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--color-6);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: var(--color-5);
    border: 2px solid var(--color-4);
}
.btn-outline:hover {
    background: var(--color-4);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-block { width: 100%; }

/* ===== ABOUT ===== */
.about {
    padding: 80px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}
.lead {
    font-size: 1.2rem;
    color: var(--color-4);
    margin-bottom: 20px;
    font-weight: 500;
}
.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
}
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-5);
}
.stat-label { color: var(--gray); font-size: 0.9rem; }

/* ===== VIDEO CAROUSEL ===== */
.video-carousel {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--color-2);
    border-bottom: 1px solid var(--color-2);
}
.video-carousel-header { text-align: center; margin-bottom: 40px; }
.video-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}
.video-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.video-slide {
    flex: 0 0 100%;
    padding: 0 20px;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    background: #000;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-info {
    margin-top: 20px;
    text-align: center;
}
.video-info h3 {
    color: var(--color-5);
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.video-info p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-2);
    border: none;
    color: var(--color-5);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-arrow:hover:not(:disabled) {
    background: var(--color-4);
    color: var(--white);
    transform: scale(1.1);
}
.carousel-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-dots { display: flex; gap: 10px; }
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-3);
    transition: var(--transition);
    cursor: pointer;
}
.dot.active {
    background: var(--color-4);
    width: 24px;
    border-radius: 10px;
}

/* ===== PRODUCTS SECTION (Combined) ===== */
.products-section {
    padding: 80px 0;
    background: var(--white);
}
.products-header { text-align: center; margin-bottom: 40px; }

/* Featured Specialties */
.specialties-featured { margin-bottom: 60px; }
.featured-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--color-5);
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.featured-card {
    background: var(--color-1);
    border-radius: 16px;
    padding: 3px;
    transition: var(--transition);
}
.featured-card:hover { transform: translateY(-5px); }
.featured-card-inner {
    background: var(--white);
    border-radius: 14px;
    padding: 35px 25px;
    height: 100%;
    border: 1px solid var(--color-2);
    box-shadow: var(--shadow-md);
}
.card-icon-large {
    width: 70px;
    height: 70px;
    background: var(--color-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.card-icon-large i {
    font-size: 30px;
    color: var(--color-4);
}
.featured-card h4 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.card-description {
    text-align: center;
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.featured-list {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}
.featured-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}
.featured-list i {
    color: var(--color-4);
    font-size: 1rem;
}
.featured-card .btn {
    display: block;
    text-align: center;
}

/* Other Products Grid */
.other-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--color-5);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.product-card {
    background: var(--color-1);
    border-radius: 12px;
    padding: 25px 20px;
    transition: var(--transition);
    border: 1px solid var(--color-2);
    box-shadow: var(--shadow-sm);
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-3);
}
.product-icon {
    width: 50px;
    height: 50px;
    background: var(--color-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.product-icon i {
    font-size: 22px;
    color: var(--color-4);
}
.product-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.product-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}
.card-link {
    color: var(--color-4);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}
.card-link:hover {
    color: var(--color-5);
    gap: 8px;
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: var(--color-2);
}
.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-5);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-question:hover { background: var(--color-1); }
.faq-question i { transition: var(--transition); }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background: var(--color-1);
}
.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}
.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}
.testimonials-placeholder {
    text-align: center;
    padding: 60px;
    background: var(--color-1);
    border-radius: 10px;
    color: var(--gray);
    font-style: italic;
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 0;
    background: var(--color-2);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 40px;
}
.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}
.contact-info h3 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}
.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-4);
}
.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}
.contact-info i {
    color: var(--color-4);
    width: 20px;
}
.contact-info a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}
.contact-info a:hover { color: var(--color-4); }
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: var(--color-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-5);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--color-4);
    color: var(--white);
    transform: translateY(-3px);
}
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-5);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-2);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-4);
    box-shadow: 0 0 0 3px rgba(176, 137, 104, 0.1);
}
.form-group input.error,
.form-group textarea.error { border-color: #dc2626; }
.error-message {
    display: block;
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-5);
    color: var(--color-1);
    padding: 50px 0 20px;
    border-top: 4px solid var(--color-4);
}
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}
.footer-profile { display: flex; gap: 25px; align-items: flex-start; }
.profile-image { flex-shrink: 0; }
.footer-headshot {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-3);
    box-shadow: var(--shadow-md);
}
.profile-info h3 {
    color: var(--color-1);
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.profile-title {
    color: var(--color-3);
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.profile-contact { margin-bottom: 15px; }
.profile-contact p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-2);
    font-size: 0.95rem;
}
.profile-contact i {
    color: var(--color-3);
    width: 18px;
}
.profile-contact a {
    color: var(--color-2);
    text-decoration: none;
    transition: var(--transition);
}
.profile-contact a:hover {
    color: var(--color-1);
    text-decoration: underline;
}
.profile-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.action-link {
    color: var(--color-3);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.action-link i { font-size: 0.9rem; }
.action-link:hover { color: var(--color-1); }
.divider { color: var(--color-4); font-weight: 300; }

.footer-nav h4 {
    color: var(--color-1);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}
.footer-nav h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-4);
}
.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}
.footer-menu {
    list-style: none;
    padding: 0;
}
.footer-menu li { margin-bottom: 12px; }
.footer-menu a {
    color: var(--color-2);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}
.footer-menu a:hover {
    color: var(--color-1);
    transform: translateX(5px);
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(237, 224, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-2);
    transition: var(--transition);
    font-size: 1rem;
}
.footer-social a:hover {
    background: var(--color-4);
    color: var(--white);
    transform: translateY(-3px);
}
.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(237, 224, 212, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.nmls {
    color: var(--color-3);
    font-size: 0.85rem;
}
.copyright {
    color: var(--color-3);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image,
    .about-image { max-width: 600px; margin: 0 auto; }
    .footer-main { grid-template-columns: 1fr; gap: 30px; }
    .footer-profile,
    .profile-actions { justify-content: center; text-align: center; }
    .profile-contact p { justify-content: center; }
    .footer-nav h4::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
    .featured-grid { grid-template-columns: 1fr; max-width: 500px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }
    .nav-menu.active { left: 0; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    .stats { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-links-grid { gap: 10px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .video-info h3 { font-size: 1.1rem; }
    .video-info p { font-size: 0.85rem; }
    .carousel-nav { gap: 20px; }
    .carousel-arrow { width: 36px; height: 36px; font-size: 1rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero-cta .btn { display: block; margin: 10px 0; }
    .products-grid { grid-template-columns: 1fr; }
    .video-slide { padding: 0 10px; }
    .profile-actions { flex-direction: column; gap: 10px; }
    .divider { display: none; }
    .footer-headshot { width: 80px; height: 80px; }
    .featured-card-inner { padding: 25px 15px; }
}
