

:root {
    --bg-pure: #ffffff;
    --bg-subtle: #f8f9fa;
    --text-main: #111827;
    --text-muted: #4b5563;
    --primary-green: #059669; /* Emerald Green */
    --dark-green: #065f46;
    --light-green: #ecfdf5;
    --border-color: #e5e7eb;
    --max-width: 1200px;
}

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

body {
    font-family: 'Lora', serif;
    background-color: var(--bg-pure);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-green);
    color: #ffffff;
    width: 100%;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--dark-green);
}

/* Header / Navigation */
header {
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 100;
}

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

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

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.logo span {
    color: var(--primary-green);
    font-style: italic;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

/* Contact Section Specifics */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    margin-top: 40px;
    align-items: start;
}

.contact-info h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.info-block p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Form Styling */
.contact-form-container {
    background-color: var(--bg-subtle);
    padding: 48px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    background-color: var(--bg-pure);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-main);
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    padding: 40px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

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

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-info h1 {
        font-size: 2.5rem;
    }
    .contact-form-container {
        padding: 32px 24px;
    }
    nav {
        display: none;
    }
}