:root {
    /* Earthy, Muted Palette */
    --color-background: #FAFAFA; /* Linen / Warm White */
    --color-text: #2D2D2A; /* Deep Stone */
    --color-primary: #8C9986; /* Sage Green */
    --color-secondary: #BFA596; /* Warm Taupe / Terracotta undertone */
    --color-accent: #6C7A65; /* Olive / Moss */
    --color-surface: #F2F0EB; /* Sand */
    --color-light: #E8EBE6; /* Light Sage */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-text);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-text);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.mt-xl { margin-top: 4rem; }

/* Header */
.header {
    padding: 2rem 0;
    background-color: transparent;
    border-bottom: 1px solid var(--color-surface);
}

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

.logo {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-accent);
}

.nav a {
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text);
}

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

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    background-color: var(--color-surface);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 6rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-accent);
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Portfolio Gallery */
.portfolio {
    padding: 6rem 0;
    background-color: var(--color-surface);
}

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

.gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

/* Placeholder Colors for Gallery */
.item-sage { background-color: var(--color-primary); }
.item-linen { background-color: #E2DFD3; }
.item-terracotta { background-color: var(--color-secondary); }
.item-moss { background-color: var(--color-accent); }
.item-sand { background-color: #DBCDBA; }
.item-sage-light { background-color: var(--color-light); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-background);
    border: 1px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: var(--color-text);
    color: var(--color-background);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h2 {
    color: var(--color-background);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-background);
    opacity: 0.8;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    .nav a {
        margin: 0 1rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-links {
        align-items: center;
        width: 100%;
    }
}
