:root {
    --primary: #2c4a3e;
    --primary-light: #3d6854;
    --secondary: #8b7355;
    --accent: #c9a962;
    --text-dark: #1a1a1a;
    --text-light: #f8f6f1;
    --bg-cream: #faf8f3;
    --bg-sage: #e8ede9;
    --bg-warm: #f5f0e8;
    --border-light: #d4cfc5;
    --shadow: rgba(44, 74, 62, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-cream);
}

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

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

/* Ad Disclosure Banner */
.ad-disclosure {
    background-color: var(--primary);
    color: var(--text-light);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Navigation */
.site-header {
    background-color: var(--bg-cream);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.2s ease;
    padding: 8px 0;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    padding: 80px 0;
}

.hero-title {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 680px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 540px;
    margin-bottom: 36px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #d4b46e;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-light {
    background-color: var(--text-light);
    color: var(--primary);
}

.btn-light:hover {
    background-color: var(--bg-sage);
}

/* Editorial Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--bg-sage);
}

.section-warm {
    background-color: var(--bg-warm);
}

.section-dark {
    background-color: var(--primary);
    color: var(--text-light);
}

.section-title {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-dark .section-title {
    color: var(--text-light);
}

.section-intro {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 48px;
    max-width: 600px;
}

/* Editorial Content */
.editorial-block {
    margin-bottom: 48px;
}

.editorial-block p {
    margin-bottom: 24px;
}

.editorial-block h3 {
    font-size: 26px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary);
}

.editorial-image {
    margin: 40px 0;
    background-color: var(--bg-sage);
}

.editorial-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.editorial-image.full-width {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
}

.image-caption {
    font-size: 14px;
    color: var(--secondary);
    padding: 12px 0;
    font-style: italic;
}

/* Inline CTA */
.inline-cta {
    background-color: var(--bg-warm);
    padding: 32px;
    border-left: 4px solid var(--accent);
    margin: 40px 0;
}

.inline-cta p {
    margin-bottom: 16px;
    font-size: 17px;
}

/* Service Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 320px;
    background-color: var(--bg-cream);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 32px var(--shadow);
}

.service-card-image {
    height: 200px;
    background-color: var(--bg-sage);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 28px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary);
}

/* Testimonials */
.testimonial {
    background-color: var(--bg-cream);
    padding: 40px;
    margin: 48px 0;
    border-radius: 4px;
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-size: 80px;
    color: var(--accent);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 40px;
}

.testimonial-author {
    padding-left: 40px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    color: var(--secondary);
}

/* Split Layout */
.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.split-content {
    flex: 1 1 50%;
    padding: 60px;
}

.split-image {
    flex: 1 1 50%;
    min-height: 400px;
    background-color: var(--bg-sage);
}

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

/* Forms */
.form-section {
    background-color: var(--bg-warm);
    padding: 60px;
    margin: 48px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid var(--border-light);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

/* Footer */
.site-footer {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 64px 0 32px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 16px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-col p {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Disclaimer */
.disclaimer {
    background-color: var(--bg-sage);
    padding: 24px;
    font-size: 14px;
    color: var(--secondary);
    margin-top: 48px;
    border-left: 3px solid var(--accent);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 24px;
    z-index: 1000;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1 1 60%;
    font-size: 14px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cookie-text a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-accept {
    background-color: var(--accent);
    color: var(--text-dark);
}

.cookie-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

/* Thanks Page */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* Contact Info */
.contact-info {
    background-color: var(--bg-sage);
    padding: 40px;
    margin-top: 32px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-info strong {
    color: var(--primary);
}

/* About Page */
.about-intro {
    font-size: 22px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 48px;
}

.team-section {
    margin-top: 64px;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
}

.value-item {
    flex: 1 1 280px;
    padding: 32px;
    background-color: var(--bg-cream);
    border-left: 4px solid var(--accent);
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-cream);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-light);
    }

    .main-nav.active {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .split-content {
        padding: 40px 24px;
    }

    .split-image {
        min-height: 280px;
    }

    .form-section {
        padding: 32px 24px;
    }

    .footer-grid {
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}
