:root {
    --color-bg-dark: #2f3e35; /* Deep Green */
    --color-primary: #8b5a2b; /* Earth Brown */
    --color-text-light: #f0ead6; /* Eggshell */
    --color-text-muted: #d0cbb8;
    --glass-bg: rgba(47, 62, 53, 0.7);
    --glass-border: rgba(240, 234, 214, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --spacing-unit: 2rem;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-light);
    background-color: var(--color-bg-dark);
    line-height: 1.8;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; color: var(--color-text-muted); }

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d4af37; /* Gold hover */
}

/* Background */
.background-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.7) sepia(0.2);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 30, 20, 0.85); /* Dark Green Overlay */
    z-index: -1;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    padding: 2rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--color-text-muted);
    padding-bottom: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.section {
    padding: 6rem 0;
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Intro */
.intro-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 4rem; /* For header */
}

.main-card {
    max-width: 700px;
}

.subheading {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.btn-outline {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    border: 1px solid var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--color-text-light);
    color: var(--color-bg-dark);
}

/* Philosophy */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.framed-image {
    max-width: 100%;
    border: 1px solid var(--glass-border);
    padding: 1rem;
    filter: sepia(0.4) contrast(0.9);
}

/* Services */
.text-center { text-align: center; }

.services-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

/* Full Width Quote */
.full-width-image {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
}

.full-width-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}

.quote-box {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    padding: 0 1rem;
}

blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Contact */
.grid-2-sm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    border: 1px solid var(--glass-border);
}

.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2, .grid-2-sm {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none; /* Simplification */
    }

    h1 { font-size: 2.5rem; }
}
