/* Hemlock Finishing - Styles */
:root {
    --brown: #4A3728;
    --brown-light: #6B5344;
    --cream: #D4C4A8;
    --cream-light: #E8DED0;
    --green: #2C3E2D;
    --green-light: #3d5740;
    --white: #FAF8F5;
    --dark: #1E1E1E;
    --gray: #7a7a7a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 15px rgba(0,0,0,0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    font-size: 1.8rem;
}

.logo-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brown);
    line-height: 1.1;
}

.logo-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--green);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--brown); }

.nav-cta {
    background: var(--brown);
    color: var(--white) !important;
    padding: 12px 26px;
    border-radius: 0;
    font-weight: 700 !important;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--green);
    color: var(--white) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--brown);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(74,55,40,0.88) 0%, rgba(28,30,28,0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--cream-light);
    text-align: center;
    padding-top: 80px;
}

.hero-tag {
    display: inline-block;
    color: var(--cream);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid var(--cream);
    padding: 8px 22px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto 35px;
    color: rgba(232,222,208,0.85);
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--cream);
    color: var(--brown);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--cream-light);
    border: 1px solid var(--cream);
}

.btn-outline:hover {
    background: var(--cream);
    color: var(--brown);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(232,222,208,0.7);
    letter-spacing: 0.5px;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    color: var(--brown);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.05rem;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(74,55,40,0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: rgba(74,55,40,0.2);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-icon-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: var(--cream-light);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--brown);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Work Section */
.work-section {
    padding: 100px 0;
    background: var(--cream-light);
}

.work-container {
    max-width: 800px;
    margin: 0 auto;
}

.work-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--brown);
    margin-bottom: 20px;
}

.work-content > p {
    color: var(--gray);
    margin-bottom: 45px;
    font-size: 1.05rem;
    font-weight: 300;
}

.work-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: var(--white);
    padding: 30px;
    border-left: 3px solid var(--brown);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brown);
    opacity: 0.4;
    line-height: 1;
    min-width: 35px;
}

.step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Testimonial */
.testimonial-banner {
    background: var(--brown);
    padding: 70px 0;
    text-align: center;
}

.testimonial-container {
    max-width: 750px;
}

.testimonial-banner blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--cream-light);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial-banner cite {
    color: var(--cream);
    font-size: 0.9rem;
    font-style: normal;
    letter-spacing: 1px;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-card {
    background: var(--cream-light);
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(74,55,40,0.08);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-card.contact-primary {
    background: var(--brown);
    color: var(--cream-light);
    border: none;
}

.contact-card.contact-primary h3,
.contact-card.contact-primary a,
.contact-card.contact-primary small {
    color: var(--white);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--brown);
    margin-bottom: 10px;
}

.contact-card p, .contact-card a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.contact-card a:hover { color: var(--brown); }

.contact-card small {
    color: var(--green);
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--cream-light);
    padding: 60px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(212,196,168,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-main {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    display: block;
}

.footer-sub {
    font-size: 0.75rem;
    color: var(--cream);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand p {
    color: rgba(212,196,168,0.6);
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-services, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-services h4, .footer-contact h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-services a {
    color: rgba(212,196,168,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-services a:hover { color: var(--cream); }

.footer-contact p {
    color: rgba(212,196,168,0.6);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    color: rgba(212,196,168,0.4);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .hero-title { font-size: 2.3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .hero-features { gap: 15px; }
    .step { padding: 20px; }
    .testimonial-banner blockquote { font-size: 1.2rem; }
}
