:root {
    --primary: #2c3e50;
    --secondary: #8b4513;
    --accent: #c9a227;
    --text: #333333;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-dark: #2c3e50;
    --white: #ffffff;
    --border: #e0dcd5;
    --shadow: rgba(44, 62, 80, 0.1);
}

* {
    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.8;
    color: var(--text);
    background-color: var(--white);
}

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

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

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
}

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

.top-nav {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo:hover {
    color: var(--secondary);
}

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

.main-nav a {
    color: var(--text);
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.hero-editorial {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.hero-editorial .narrow-container {
    text-align: center;
}

.hero-editorial h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-image-wrapper {
    margin-top: 3rem;
    background-color: #d4cfc7;
    border-radius: 4px;
    overflow: hidden;
}

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

.editorial-section {
    padding: 60px 0;
}

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

.editorial-content {
    font-size: 1.1rem;
}

.editorial-content p {
    margin-bottom: 1.8rem;
}

.inline-image {
    margin: 3rem 0;
    background-color: #d4cfc7;
    border-radius: 4px;
    overflow: hidden;
}

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

.inline-image figcaption {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    background-color: var(--bg-light);
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

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

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

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

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

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

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

.service-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

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

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

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

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.inline-cta {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    margin: 40px 0;
}

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

.inline-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

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

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

.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
}

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

.about-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
}

.about-intro-text {
    flex: 1;
}

.about-intro-image {
    flex: 0 0 400px;
    background-color: #d4cfc7;
    border-radius: 4px;
    overflow: hidden;
}

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

.team-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.team-card {
    flex: 1 1 280px;
    max-width: 300px;
    text-align: center;
    background-color: var(--white);
    padding: 30px;
    border-radius: 4px;
}

.team-card-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: #d4cfc7;
    overflow: hidden;
}

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

.team-card h4 {
    margin-bottom: 0.5rem;
}

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

.contact-section {
    padding: 80px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--secondary);
}

.contact-item p {
    color: var(--text);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

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

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

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

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

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

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

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

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

.footer-col li {
    margin-bottom: 0.8rem;
}

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

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

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

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

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

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

.disclaimer-section {
    background-color: #f0ebe3;
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.disclaimer-text {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.references-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.references-list {
    font-size: 0.9rem;
    color: var(--text-light);
}

.references-list li {
    margin-bottom: 0.8rem;
}

.references-list a {
    word-break: break-all;
}

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

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

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

.cookie-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

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

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

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

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

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

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

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

.page-header {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-light);
}

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

.legal-content h2 {
    margin-top: 2rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

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

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

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

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

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.full-width-image {
    width: 100%;
    height: 400px;
    background-color: #d4cfc7;
    overflow: hidden;
}

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

.split-section {
    display: flex;
    min-height: 500px;
}

.split-section .split-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-section .split-image {
    flex: 1;
    background-color: #d4cfc7;
}

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

.quote-block {
    background-color: var(--bg-light);
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid var(--accent);
}

.quote-block blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1rem;
}

.quote-block cite {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .about-intro {
        flex-direction: column;
    }

    .about-intro-image {
        flex: 0 0 auto;
        width: 100%;
    }

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

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

    .split-section .split-image {
        height: 300px;
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-editorial h1 {
        font-size: 2.2rem;
    }

    .hamburger {
        display: flex;
    }

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

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

    .hero-image-wrapper img {
        height: 280px;
    }

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

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

    .sticky-cta {
        right: 15px;
        bottom: 100px;
    }

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