:root {
    --primary: #2d5016;
    --secondary: #8b4513;
    --accent: #d4a574;
    --light: #faf8f5;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border: #e0dcd5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    background-color: var(--light);
}

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

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

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

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

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.3;
    color: var(--dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

p {
    margin-bottom: 18px;
}

.ad-disclosure {
    background-color: var(--accent);
    color: var(--dark);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
}

header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 1px;
}

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

nav ul li a {
    color: var(--text);
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

nav ul li a:hover {
    border-bottom-color: var(--primary);
}

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

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

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3d3d3d;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 40px 24px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #1e3a0f;
    color: var(--white);
}

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

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

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

.btn-accent:hover {
    background-color: #c4956a;
}

.section {
    padding: 80px 0;
}

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

.section-dark {
    background-color: var(--dark);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.editorial-intro {
    padding: 100px 24px;
    text-align: center;
}

.editorial-intro .narrow {
    max-width: 680px;
}

.editorial-intro h2 {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 24px;
}

.inline-image {
    margin: 48px 0;
    background-color: #c4c4c4;
}

.inline-image img {
    width: 100%;
    display: block;
}

.inline-image figcaption {
    font-size: 14px;
    color: var(--text-light);
    padding: 12px 0;
    text-align: center;
    font-style: italic;
}

.story-section {
    padding: 60px 24px;
}

.story-section .narrow p {
    font-size: 1.1rem;
}

.cta-inline {
    background-color: var(--light);
    border-left: 4px solid var(--primary);
    padding: 32px;
    margin: 48px 0;
    text-align: center;
}

.cta-inline p {
    margin-bottom: 16px;
    font-style: italic;
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.service-card-image {
    height: 220px;
    background-color: #b0b0b0;
    overflow: hidden;
}

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

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 15px;
}

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

.service-price span {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-block {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 24px;
    margin: 60px 0;
}

.testimonial-block .narrow {
    text-align: center;
}

.testimonial-block blockquote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-block cite {
    font-size: 14px;
    opacity: 0.8;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-split-image {
    flex: 1;
    min-width: 300px;
    background-color: #a8a8a8;
}

.about-split-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-split-content {
    flex: 1;
    min-width: 300px;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail strong {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 320px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.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);
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

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

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

footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.disclaimer {
    background-color: #f5f3f0;
    padding: 40px 24px;
    text-align: center;
}

.disclaimer p {
    font-size: 13px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-banner p {
    flex: 1;
    min-width: 280px;
    margin: 0;
    font-size: 14px;
}

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

.cookie-banner .btn {
    padding: 10px 24px;
    font-size: 14px;
}

.page-header {
    background-color: var(--white);
    padding: 80px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.legal-content {
    padding: 60px 24px;
}

.legal-content .narrow {
    max-width: 760px;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

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

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
}

.thanks-content {
    max-width: 560px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.references {
    background-color: var(--white);
    padding: 40px 24px;
    border-top: 1px solid var(--border);
}

.references h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.references ol {
    margin-left: 20px;
}

.references li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.references a {
    color: var(--primary);
    word-break: break-all;
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        display: block;
        padding: 12px 0;
        border-bottom: none;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .about-split {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }

    .section {
        padding: 50px 0;
    }

    .services-grid {
        gap: 20px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
}
