:root {
    --primary: #2d4f1e;
    /* Forest Green */
    --accent: #c48c46;
    /* Earthy Gold/Tan */
    --dark: #1a1a1a;
    --text: #555555;
    --white: #ffffff;
    --bg: #fcfbf7;
    /* Warm Paper Tone */
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevents horizontal scroll on mobile */
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.nav-toggle {
    display: none;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('./img/img-1.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: block;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-main {
    background: var(--accent);
    color: white;
    padding: 1.2rem 2.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-ghost {
    padding: 1.2rem 2.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    color: var(--white);
    border: 2px solid var(--white);
    transition: var(--transition);
}

.btn-main:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

/* --- Mosaic Gallery --- */
.gallery {
    padding: 120px 0;
    background: var(--bg);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.mosaic-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 25px;
}

.mosaic-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mosaic-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item.wide {
    grid-column: span 2;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.mosaic-item:hover img {
    transform: scale(1.08);
}

/* --- Contact Card --- */
.contact {
    padding: 120px 0;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--primary);
    border-radius: 24px;
    overflow: hidden;
    min-height: 600px;
}

.contact-text {
    padding: 80px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.detail-box strong {
    display: block;
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.detail-box p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

.contact-map {
    width: 100%;
    height: 100%;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 4rem;
    color: var(--text);
    background: var(--bg);
    font-size: 0.85rem;
}

/* --- MOBILE RESPONSIVE --- */

@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .contact-text { padding: 50px; }
    .contact-text h2 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    /* Mobile Menu Burger */
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: var(--dark);
        height: 2px;
        width: 25px;
        position: relative;
        transition: var(--transition);
    }

    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }

    .nav-toggle-label span::before { bottom: 8px; }
    .nav-toggle-label span::after { top: 8px; }

    /* Nav Links Overlay */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        gap: 3rem;
    }

    .nav-links a { font-size: 1.5rem; }

    /* Open Menu Logic */
    .nav-toggle:checked ~ nav .nav-links {
        right: 0;
    }

    .nav-toggle:checked + .nav-toggle-label span { background: transparent; }
    .nav-toggle:checked + .nav-toggle-label span::before { transform: rotate(45deg); bottom: 0; }
    .nav-toggle:checked + .nav-toggle-label span::after { transform: rotate(-45deg); top: 0; }

    /* Hero */
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1rem; }
    .hero-btns { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }

    /* Gallery - Vertical Stack */
    .mosaic-layout {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .mosaic-item.large, .mosaic-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Contact Card - Vertical Stack */
    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-text { padding: 40px 25px; text-align: center; }
    .contact-text h2 { font-size: 2.2rem; }
    .contact-map { height: 350px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .gallery-header h2 { font-size: 2.5rem; }
    .logo img { height: 40px; }
}