:root {
    --wood: #8B5A2B;
    --wood-dark: #5C3A1E;
    --wood-light: #C19A6B;
    --cream: #FAF3E8;
    --cream-warm: #F5ECD7;
    --charcoal: #1E1E1E;
    --charcoal-light: #2D2D2D;
    --gold: #D4A843;
    --gold-light: #E8C97A;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 4px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--cream);
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; }

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--charcoal);
    z-index: 1000;
    padding: 14px 0;
}
.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}
.logo-mark { color: var(--gold); }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; }
.logo-sub { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}
.nav-menu a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}
.nav-menu a:hover { color: var(--gold); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--charcoal);
    padding-top: 70px;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.4;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--charcoal), transparent);
}
.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}
.hero-kicker {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.hero-headline {
    font-size: 4rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-highlight { color: var(--gold); font-style: italic; }
.hero-desc {
    color: rgba(255,255,255,0.75);
    font-size: 1.15rem;
    max-width: 560px;
    margin: 0 auto 32px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.btn-gold {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--charcoal); }
.btn-block { display: block; width: 100%; text-align: center; margin-bottom: 12px; }

/* Stats Bar */
.bar {
    background: var(--wood-dark);
    padding: 40px 0;
}
.bar-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.bar-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 6px;
}
.bar-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About */
.about { padding: 100px 0; background: var(--cream); }
.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-visual { position: relative; }
.about-visual img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--wood-dark);
    color: var(--white);
    padding: 24px 28px;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.badge-year {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
}
.badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}
.about-text h2 {
    font-size: 2.4rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}
.about-text p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 1.02rem;
}
.eyebrow {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.about-traits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.trait {
    text-align: center;
    padding: 20px;
    background: var(--cream-warm);
    border-radius: var(--radius);
}
.trait-icon { font-size: 1.6rem; margin-bottom: 8px; }
.trait strong { display: block; font-size: 0.9rem; color: var(--charcoal); margin-bottom: 4px; }
.trait span { font-size: 0.8rem; color: var(--text-light); }

/* Services */
.services { padding: 100px 0; background: var(--white); }
.section-head { margin-bottom: 48px; }
.section-head.left { text-align: left; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: 2.4rem; color: var(--charcoal); margin-bottom: 12px; }
.section-head p { color: var(--text-light); max-width: 500px; }
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}
.service-row:hover { padding-left: 12px; background: var(--cream); }
.service-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
}
.service-body h3 { font-size: 1.3rem; color: var(--charcoal); margin-bottom: 6px; }
.service-body p { color: var(--text-light); font-size: 0.95rem; }
.service-arrow { color: var(--gold); font-size: 1.4rem; }

/* Gallery */
.gallery { padding: 100px 0; background: var(--cream); }
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 500px;
}
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}
.gallery-card.large { grid-row: 1 / 3; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-cap {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

/* Contact */
.contact { padding: 100px 0; background: var(--charcoal); color: var(--white); }
.contact-frame {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}
.contact-left h2 { font-size: 2.4rem; margin-bottom: 16px; }
.contact-left p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 1.05rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.info-line { display: flex; align-items: flex-start; gap: 16px; }
.info-dot {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}
.info-line strong { display: block; color: var(--gold-light); margin-bottom: 4px; }
.info-line a { color: var(--white); text-decoration: none; }
.info-line a:hover { text-decoration: underline; }
.info-line span { color: rgba(255,255,255,0.7); }
.cta-panel {
    background: var(--charcoal-light);
    padding: 48px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
}
.cta-panel h3 { font-size: 1.5rem; margin-bottom: 12px; }
.cta-panel p { color: rgba(255,255,255,0.65); margin-bottom: 24px; font-size: 0.95rem; }
.trust-badge {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-badge span { font-size: 1.2rem; }

/* Footer */
.footer { background: var(--charcoal-light); color: var(--white); padding: 64px 0 24px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-nav h5 {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-nav a { color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition); }
.footer-nav a:hover { color: var(--gold); }
.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
}
.footer-legal p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* Responsive */
@media (max-width: 992px) {
    .about-row, .contact-frame { grid-template-columns: 1fr; }
    .about-badge { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; height: auto; }
    .gallery-card.large { grid-row: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .bar-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px; left: 0; right: 0;
        background: var(--charcoal);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        transform: translateY(-150%);
        transition: var(--transition);
    }
    .nav-menu.active { transform: translateY(0); }
    .nav-toggle { display: flex; }
    .hero-headline { font-size: 2.4rem; }
    .about-traits { grid-template-columns: 1fr; }
    .services-grid, .bar-inner { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .service-row { grid-template-columns: 40px 1fr; }
    .service-arrow { display: none; }
    .section-head h2 { font-size: 1.8rem; }
    .cta-panel { padding: 32px; }
}
