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

:root {
    --primary: #2c3e50;
    --secondary: #8b4513;
    --accent: #d4a574;
    --light: #f8f5f0;
    --dark: #1a1a1a;
    --text: #333333;
    --muted: #6c757d;
    --white: #ffffff;
    --border: #e0d5c7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text);
    background-color: var(--light);
}

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

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

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

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

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

.ad-disclosure {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-family: Arial, sans-serif;
}

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

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

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

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

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

nav ul li a {
    color: var(--text);
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

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

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

.hero-editorial h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
    max-width: 680px;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-image-wrapper {
    margin: 50px 0;
    background-color: var(--border);
}

.hero-image-wrapper img {
    width: 100%;
    height: 450px;
    display: block;
}

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

.editorial-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.editorial-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.inline-image {
    margin: 40px 0;
    background-color: var(--border);
}

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

.inline-image figcaption {
    padding: 15px;
    font-size: 0.9rem;
    color: var(--muted);
    background-color: var(--white);
    font-style: italic;
}

.pull-quote {
    border-left: 4px solid var(--secondary);
    padding: 25px 30px;
    margin: 40px 0;
    background-color: var(--white);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    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(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.4rem;
    color: var(--secondary);
    font-weight: bold;
}

.service-price span {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: normal;
}

.cta-inline {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 20px 0;
}

.cta-inline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
    margin: 60px 0;
}

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

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-inline {
    background-color: var(--accent);
    color: var(--dark);
}

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

.testimonial-block {
    background-color: var(--white);
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid var(--accent);
}

.testimonial-block blockquote {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text);
}

.testimonial-block cite {
    color: var(--muted);
    font-size: 0.95rem;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin: 50px 0;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 350px;
    background-color: var(--border);
}

.about-image img {
    width: 100%;
    height: 400px;
}

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

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

.team-member {
    text-align: center;
    flex: 0 0 250px;
}

.team-member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: var(--border);
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
}

.team-member h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--muted);
    font-size: 0.9rem;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

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

.contact-detail h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 8px;
}

.contact-detail p {
    font-size: 1.05rem;
    color: var(--text);
}

.contact-form-wrapper {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border: 1px solid var(--border);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--light);
    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;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 35px 0 15px;
}

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

.legal-content ul {
    margin: 15px 0 15px 30px;
}

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

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

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.thanks-service {
    background-color: var(--white);
    padding: 20px 40px;
    border-left: 4px solid var(--secondary);
    margin-bottom: 30px;
}

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

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

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

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

.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.9rem;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.disclaimer {
    background-color: var(--border);
    padding: 30px;
    margin: 40px 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

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

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

    .about-image {
        flex: none;
        width: 100%;
    }

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

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

    nav ul.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

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

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

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

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