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

:root {
    --red: #b5291a;
    --red-dark: #8c1f14;
    --red-light: #e8d5d2;
    --black: #1a1a1a;
    --gray: #555;
    --gray-light: #888;
    --light: #f5f3f1;
    --white: #fff;
    --radius: 8px;
    --shadow: 0 2px 16px rgba(0,0,0,.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--black);
    line-height: 1.65;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAV === */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--white);
    transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 1px 8px rgba(0,0,0,.06); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: .3px;
    transition: color .2s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    border-radius: 1px;
    transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--red); }

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

/* === HERO === */
.hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(160deg, rgba(140, 31, 20, 0.92) 0%, rgba(80, 12, 8, 0.88) 100%),
        url('wood.jpg') center/cover no-repeat;
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.hero-since {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: .75;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.3);
    padding: 6px 18px;
    border-radius: 100px;
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -.5px;
}

.hero-sub {
    font-size: 1.05rem;
    opacity: .85;
    margin-bottom: 36px;
    line-height: 1.75;
}

/* === BUTTON === */
.btn {
    display: inline-block;
    background: var(--white);
    color: var(--red);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    font-size: .95rem;
    letter-spacing: .3px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* === SECTIONS === */
.section {
    padding: 96px 0;
    scroll-margin-top: 90px;
}

.section--dark {
    background: var(--light);
}

h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 48px;
    position: relative;
    letter-spacing: -.3px;
    text-align: center;
}
h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--red);
    margin-top: 14px;
    border-radius: 2px;
    margin-left: auto;
    margin-right: auto;
}

/* === ABOUT === */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text {
    max-width: 680px;
    text-align: center;
    margin: 0 auto;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: .97rem;
}

.services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.services-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: var(--radius);
    padding: 28px 32px;
}

.services-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 14px;
    color: var(--red);
}

.services-card ul {
    list-style: none;
}

.services-card li {
    padding: 7px 0 7px 18px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--gray);
    font-size: .92rem;
    line-height: 1.6;
    position: relative;
}
.services-card li:last-child { border-bottom: none; }
.services-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

/* === GALLERY === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    aspect-ratio: 1;
    background: #e0dbd8;
}

.gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.25,.46,.45,.94), filter .3s;
    display: block;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.25) 100%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* === LIGHTBOX (CSS-only via :target) === */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 8, 6, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.lightbox:target {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 16px 64px rgba(0,0,0,.4);
    cursor: default;
}

.lb-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: rgba(255,255,255,.7);
    font-size: 2.4rem;
    text-decoration: none;
    line-height: 1;
    transition: color .2s, transform .2s;
    z-index: 1000;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-close:hover {
    color: #fff;
    transform: scale(1.15);
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-col h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 28px;
}

.contact-item {
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.75;
}

.contact-label {
    display: block;
    font-weight: 600;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--red);
    margin-bottom: 4px;
}

.contact-col a {
    color: var(--black);
    text-decoration: none;
    transition: color .2s;
}
.contact-col a:hover { color: var(--red); }

.contact-divider {
    width: 40px;
    height: 1px;
    background: #ddd;
    margin: 28px 0;
}

.contact-note {
    margin: 0 0 24px;
    font-size: .88rem;
    color: var(--gray-light);
    font-style: italic;
    padding: 14px 20px;
    background: var(--light);
    border-radius: var(--radius);
    border-left: 3px solid var(--red-light);
}

.legal-note {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
    font-size: .8rem;
    color: #aaa;
}

/* === FOOTER === */
.footer {
    padding: 32px 0;
    text-align: center;
    font-size: .82rem;
    color: var(--gray-light);
    border-top: 1px solid #eee;
}

/* === HAMBURGER === */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 1px;
    transition: .3s;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s;
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }

    .nav-links.open {
        max-height: 400px;
    }

    .nav-links li a {
        display: block;
        padding: 14px 24px;
        border-bottom: 1px solid #f0f0f0;
    }

    .about-grid {
        gap: 28px;
    }

    .about-text {
        text-align: left;
    }

    .services-columns {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item--wide {
        grid-column: span 1;
        aspect-ratio: 1;
    }

    .hero { min-height: 55vh; padding: 120px 0 60px; }
    .section { padding: 64px 0; }

    .lightbox { padding: 20px; }
    .lightbox img {
        max-width: 95vw;
        max-height: 80vh;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-item,
    .gallery-item--wide {
        aspect-ratio: 1;
        grid-column: span 1;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}
