:root {
            --primary-dark: #2c1e16;
            --primary-light: #5a4b41;
            --accent: #b36a3e;
            --accent-hover: #8d4f2b;
            --bg-color: #fdfbf7;
            --section-bg: #f4efe9;
            --white: #ffffff;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            background-color: var(--bg-color);
            color: var(--primary-light);
            line-height: 1.6;
        }
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--primary-dark);
        }

        /* --- NAVBAR --- */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background: rgba(253, 251, 247, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(44, 30, 22, 0.05);
            transition: transform 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
        }

        /* Class to hide navbar when lightbox is open */
        .navbar.hidden {
            transform: translateY(-100%);
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--primary-dark);
        }

        .brand-logo {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            object-fit: contain;
            background: #111;
            padding: 4px;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--primary-dark);
            text-decoration: none;
        }

        .logo span { color: var(--accent); }

        .nav-links { display: flex; list-style: none; }
        .nav-links li a {
            text-decoration: none;
            color: var(--primary-dark);
            margin-left: 40px;
            font-weight: 500;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links li a:hover { color: var(--accent); }
        .nav-links li a:hover::after { width: 100%; }

        /* --- SLIDER --- */
        .slider-container {
            position: relative;
            height: 100vh;
            overflow: hidden;
            background-color: var(--primary-dark);
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 1s ease-in-out, transform 5s ease-in-out;
            transform: scale(1.01);
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to bottom, rgba(44,30,22,0.3), rgba(44,30,22,0.7));
        }

        .slide.active { opacity: 1; transform: scale(1); z-index: 1; }
        .slide-content {
            position: relative;
            text-align: center;
            color: var(--white);
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
        }

        .slide-content h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .slide-content p {
            font-size: 1.2rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-btn:hover {
            background: var(--accent);
            border-color: var(--accent);
        }

        .prev { left: 5%; }
        .next { right: 5%; }

        /* --- LAYOUT SECTIONS --- */
        .section { padding: 120px 5%; }
        .section-title {
            font-size: 3rem;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
        }
        .section-subtitle {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px auto;
            color: var(--accent);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
        }
        .container { max-width: 1200px; margin: auto; }

        .about-section { background-color: var(--section-bg); }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .about-image { position: relative; }
        .about-image img {
            width: 100%;
            border-radius: 4px;
            box-shadow: 20px 20px 0px var(--accent);
            object-fit: cover;
            height: 600px;
        }
        .about-text h3 { font-size: 2.2rem; margin-bottom: 25px; }
        .about-text p { margin-bottom: 20px; font-size: 1.1rem; }
        .about-stats {
            display: flex; gap: 40px; margin-top: 40px; padding-top: 40px;
            border-top: 1px solid rgba(44,30,22,0.1);
        }
        .stat-item { display: flex; flex-direction: column; }
        .stat-item strong {
            font-family: var(--font-heading);
            font-size: 3rem; color: var(--accent); line-height: 1;
        }
        .stat-item span {
            font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px;
            margin-top: 10px; font-weight: 600;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            height: 450px;
            cursor: pointer;
        }
        .gallery-item img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.7s ease;
        }
        .gallery-overlay {
            position: absolute; bottom: 0; left: 0; right: 0;
            background: linear-gradient(transparent, rgba(44,30,22,0.9));
            padding: 30px; transform: translateY(100%); transition: transform 0.4s ease;
        }
        .gallery-overlay h4 { color: var(--white); font-size: 1.5rem; margin-bottom: 5px; }
        .gallery-overlay span { color: var(--bg-color); font-size: 0.9rem; }
        .gallery-item:hover img { transform: scale(1.05); }
        .gallery-item:hover .gallery-overlay { transform: translateY(0); }

        .contact-section { background-color: var(--bg-color); }
        .contact-wrapper {
            display: grid; grid-template-columns: 1fr 1fr; background: var(--white);
            box-shadow: 0 10px 40px rgba(44,30,22,0.08); border-radius: 8px; overflow: hidden;
        }
        .contact-info-box {
            background-color: var(--primary-dark); color: var(--white);
            padding: 60px; display: flex; flex-direction: column; justify-content: center;
        }
        .contact-info-box h3 { color: var(--white); font-size: 2rem; margin-bottom: 20px; }
        .contact-info-box p { color: #d1c7bd; margin-bottom: 40px; }
        .info-detail { margin-bottom: 20px; display: flex; align-items: center; }
        .info-detail strong { color: var(--accent); width: 100px; }
        .contact-form { padding: 60px; background: var(--white); }
        .input-group { position: relative; margin-bottom: 30px; }
        input, textarea {
            width: 100%; padding: 15px 0; border: none; border-bottom: 1px solid #ddd;
            background: transparent; outline: none; font-family: var(--font-body);
            font-size: 1rem; color: var(--primary-dark); transition: border-color 0.3s;
        }
        input:focus, textarea:focus { border-bottom-color: var(--accent); }
        textarea { resize: vertical; }
        .btn {
            background: var(--accent); color: var(--white); padding: 15px 40px;
            border: none; font-size: 1rem; font-weight: 600; letter-spacing: 1px;
            text-transform: uppercase; cursor: pointer; border-radius: 4px;
            transition: background 0.3s; width: 100%;
        }
        .btn:hover { background: var(--accent-hover); }

        .footer { background-color: var(--primary-dark); color: #d1c7bd; padding: 80px 5% 30px; }
        .footer-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 40px;
            margin-bottom: 60px; max-width: 1200px; margin-left: auto; margin-right: auto;
        }
        .footer-brand h2 { color: var(--white); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
        .footer-brand span { color: var(--accent); }
        .footer-col h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 20px; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #d1c7bd; text-decoration: none; transition: color 0.3s; }
        .footer-col ul li a:hover { color: var(--accent); }
        .newsletter-form { display: flex; margin-top: 20px; }
        .newsletter-form input {
            border: 1px solid rgba(255,255,255,0.2); padding: 12px 15px;
            color: var(--white); border-radius: 4px 0 0 4px;
        }
        .newsletter-form .btn { width: auto; border-radius: 0 4px 4px 0; padding: 12px 25px; }
        .footer-bottom {
            text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem; max-width: 1200px; margin: auto;
        }

        /* --- PINTEREST-STYLE LIGHTBOX --- */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.85);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 5000;
            padding: 40px 80px; /* Space for outside arrows */
            backdrop-filter: blur(8px);
        }

        .lightbox.active {
            display: flex;
        }

        .pinterest-modal {
            background: var(--bg-color);
            width: 100%;
            max-width: 1100px;
            height: 85vh;
            border-radius: 20px;
            display: flex;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0,0,0,0.4);
            animation:  0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .modal-image-col {
            flex: 1.2;
            background: #e8e8e8;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-image-col img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-info-col {
            flex: 1;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        .modal-info-col h2 {
            font-size: 2.8rem;
            margin-bottom: 10px;
            line-height: 1.1;
        }

        .modal-subtitle {
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(44,30,22,0.1);
        }

        .modal-info-col p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: var(--primary-light);
        }

        .lightbox-btn,
        .lightbox-close {
            position: absolute;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5001;
        }

        .lightbox-btn:hover,
        .lightbox-close:hover {
            background: var(--accent);
            border-color: var(--accent);
            margin-top: -5px;
        }

        .prev-lightbox { left: 20px; top: 50%; transform: translateY(-50%); }
        .next-lightbox { right: 20px; top: 50%; transform: translateY(-50%); }
        .lightbox-close { top: 25px; right: 25px; font-size: 2rem; }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 900px) {
            .about-grid, .contact-wrapper, .footer-grid { grid-template-columns: 1fr; }
            .slide-content h1 { font-size: 3rem; line-height: 1.1; }
            .nav-links { display: none; }
            .about-image img { height: 400px; box-shadow: 10px 10px 0px var(--accent); }
            .gallery-grid { grid-template-columns: 1fr; }
            .section { padding: 90px 20px; }
            .section-title { font-size: 2.2rem; }
            .contact-form, .contact-info-box { padding: 35px 25px; }
            .about-stats { flex-direction: column; gap: 25px; }
            .newsletter-form { flex-direction: column; gap: 10px; }
            .newsletter-form input, .newsletter-form .btn { width: 100%; border-radius: 4px; }
            
            /* Lightbox Responsive */
            .lightbox { padding: 20px; }
            .pinterest-modal {
                flex-direction: column;
                height: 90vh;
            }
            .modal-image-col { flex: 0.5; }
            .modal-info-col { flex: 0.5; padding: 30px; }
            .modal-info-col h2 { font-size: 2rem; }
            
            .lightbox-btn { width: 45px; height: 45px; font-size: 1.2rem; }
            .prev-lightbox { left: 10px; }
            .next-lightbox { right: 10px; }
            .lightbox-close { top: 15px; right: 15px; width: 40px; height: 40px; }
        }

        @media (max-width: 600px) {
            .slide-content h1 { font-size: 2.3rem; }
            .logo { font-size: 1.5rem; }
            .brand-logo { width: 40px; height: 40px; }
            .gallery-item { height: 320px; }
            .slider-btn { width: 42px; height: 42px; font-size: 1.2rem; }
            
            /* Adjust Lightbox for small phones */
            .modal-image-col { flex: 0.4; }
            .modal-info-col { flex: 0.6; padding: 20px; }
            .modal-info-col p { font-size: 0.95rem; }
            .lightbox { padding: 10px; }
            .prev-lightbox, .next-lightbox { display: none; } /* Better to swipe or tap inside, but keeping simple here */
        }