:root {
    --primary: #4a5568;
    --primary-dark: #2d3748;
    --accent: #8b5a2b;
    --accent-light: #a0522d;
    --bg-light: #faf8f5;
    --bg-cream: #f5f0e8;
    --bg-dark: #2d3748;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --border: #e2d9cc;
    --shadow: rgba(0, 0, 0, 0.08);
}

* {
    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-light);
}

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

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

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

a:hover {
    color: var(--accent-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 2.8rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.6rem; margin-bottom: 1rem; }
h4 { font-size: 1.3rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1.25rem; }

.ad-disclosure {
    background-color: var(--bg-cream);
    padding: 8px 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

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-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo span {
    color: var(--accent);
}

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

nav ul li a {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-dark);
}

.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(--bg-cream);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero h1 {
    font-size: 3.2rem;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.hero .lead {
    font-size: 1.25rem;
    max-width: 600px;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

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

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

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

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

.section {
    padding: 80px 0;
}

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

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

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

.section-dark p {
    color: rgba(255, 255, 255, 0.85);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header p {
    color: var(--text-medium);
}

.editorial-block {
    margin-bottom: 48px;
}

.editorial-block:last-child {
    margin-bottom: 0;
}

.editorial-image {
    margin: 32px 0;
    background-color: var(--bg-cream);
    border-radius: 8px;
    overflow: hidden;
}

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

.editorial-image.float-left {
    float: left;
    width: 45%;
    margin: 0 32px 16px 0;
}

.editorial-image.float-right {
    float: right;
    width: 45%;
    margin: 0 0 16px 32px;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.split-section {
    display: flex;
    gap: 48px;
    align-items: center;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: var(--bg-cream);
    border-radius: 8px;
    overflow: hidden;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

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

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

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

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

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

.service-card h3 {
    margin-bottom: 12px;
}

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

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonials {
    display: flex;
    gap: 32px;
}

.testimonial {
    flex: 1;
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text-medium);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 24px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
}

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

.form-group .required {
    color: var(--accent);
}

.contact-info-grid {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.contact-info-item {
    flex: 1;
    text-align: center;
    padding: 32px;
    background-color: var(--bg-cream);
    border-radius: 8px;
}

.contact-info-item h4 {
    margin-bottom: 8px;
}

.contact-info-item p {
    color: var(--text-medium);
    margin-bottom: 0;
}

footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--white);
}

.disclaimer {
    background-color: var(--bg-cream);
    padding: 24px;
    border-radius: 8px;
    margin-top: 48px;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-content {
    padding: 48px 0;
}

.legal-content h1 {
    margin-bottom: 32px;
}

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

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

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

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

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

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.thanks-content h1 {
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--text-medium);
    margin-bottom: 32px;
}

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

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background-color: var(--accent);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background-color: var(--accent-light);
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.reject:hover {
    border-color: var(--white);
}

.about-intro {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.about-text {
    flex: 1.2;
}

.about-sidebar {
    flex: 0.8;
    background-color: var(--bg-cream);
    padding: 32px;
    border-radius: 8px;
}

.about-sidebar h3 {
    margin-bottom: 16px;
}

.about-sidebar ul {
    list-style: none;
}

.about-sidebar ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
}

.about-sidebar ul li:last-child {
    border-bottom: none;
}

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

.team-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.team-member {
    flex: 1;
    max-width: 280px;
    text-align: center;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: var(--bg-cream);
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    margin-bottom: 4px;
}

.team-member .role {
    color: var(--text-light);
    font-size: 0.9rem;
}

.inline-cta {
    background-color: var(--accent);
    color: var(--white);
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
    text-align: center;
}

.inline-cta h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.inline-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.inline-cta .btn {
    background-color: var(--white);
    color: var(--accent);
}

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

@media (max-width: 992px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.9rem; }

    .hero h1 { font-size: 2.6rem; }

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

    .split-section.reverse {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 24px);
    }

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

    .contact-info-grid {
        flex-wrap: wrap;
    }

    .contact-info-item {
        flex: 1 1 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    body { font-size: 16px; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }

    .hero h1 { font-size: 2.2rem; }
    .hero { min-height: 60vh; }

    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);
        box-shadow: 0 4px 16px var(--shadow);
    }

    nav ul.show {
        display: flex;
    }

    nav ul li a {
        display: block;
        padding: 12px 0;
    }

    .mobile-toggle {
        display: block;
    }

    .section { padding: 48px 0; }

    .testimonials {
        flex-direction: column;
    }

    .editorial-image.float-left,
    .editorial-image.float-right {
        float: none;
        width: 100%;
        margin: 24px 0;
    }

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

    .footer-col {
        flex: 1 1 100%;
    }

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

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

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-info-item {
        flex: 1 1 100%;
    }
}
