:root {
    --primary: #2c3e50;
    --secondary: #8b7355;
    --accent: #c9a66b;
    --light: #f8f6f3;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border: #e0dcd5;
    --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.8;
    color: var(--text);
    background-color: var(--light);
}

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

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

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

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

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

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

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

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

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

p {
    margin-bottom: 1.5em;
}

.ad-disclosure {
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    font-family: Arial, sans-serif;
}

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.6rem;
    font-weight: normal;
    color: var(--primary);
    letter-spacing: 1px;
}

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

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--text);
    font-size: 15px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

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

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

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

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

.hero-editorial .category-tag {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 24px;
}

.hero-editorial h1 {
    font-size: 3.2rem;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.article-content p {
    font-size: 1.1rem;
}

.article-content .pull-quote {
    font-size: 1.6rem;
    font-style: italic;
    color: var(--secondary);
    border-left: 4px solid var(--accent);
    padding-left: 32px;
    margin: 48px 0;
    line-height: 1.5;
}

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

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

.inline-image figcaption {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: var(--text-light);
    padding: 12px 0;
    text-align: center;
}

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

.cta-inline h3 {
    margin-bottom: 16px;
}

.cta-inline p {
    margin-bottom: 24px;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.services-grid {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid h2 {
    text-align: center;
    margin-bottom: 16px;
}

.services-grid .section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    color: var(--text-light);
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: var(--light);
    padding: 32px;
    border: 1px solid var(--border);
}

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

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

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

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

.service-card .price {
    font-family: Arial, sans-serif;
    font-size: 1.4rem;
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 16px;
}

.service-card .btn {
    width: 100%;
    text-align: center;
}

.testimonial-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--white);
}

.testimonial-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 48px;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 32px;
}

.testimonial-card .quote {
    font-style: italic;
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-card .author {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: var(--accent);
}

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

.about-content {
    display: flex;
    gap: 48px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    background-color: var(--border);
}

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

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

.contact-wrapper {
    display: flex;
    gap: 48px;
}

.contact-info {
    flex: 1;
}

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

.contact-details {
    list-style: none;
    margin-bottom: 32px;
}

.contact-details li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-family: Arial, sans-serif;
    font-size: 15px;
}

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

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

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

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

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

.form-submit {
    width: 100%;
}

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

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

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

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

.footer-links h4 {
    color: var(--white);
    font-family: Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-family: Arial, sans-serif;
    margin-bottom: 8px;
}

.disclaimer {
    background-color: rgba(0,0,0,0.2);
    padding: 24px;
    margin-top: 32px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

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

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

.cookie-buttons .btn {
    padding: 10px 24px;
    font-size: 13px;
}

.page-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

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

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

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

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

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

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

.thanks-content {
    text-align: center;
    padding: 100px 0;
}

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

.thanks-content p {
    max-width: 500px;
    margin: 0 auto 32px;
    color: var(--text-light);
}

.selected-service {
    background-color: var(--light);
    padding: 24px;
    margin: 32px auto;
    max-width: 400px;
    border: 1px solid var(--border);
}

.selected-service strong {
    color: var(--secondary);
}

.contact-page-info {
    padding: 60px 0;
}

.contact-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 32px;
    border: 1px solid var(--border);
    text-align: center;
}

.contact-card h3 {
    margin-bottom: 16px;
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

    nav {
        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.active {
        display: flex;
    }

    nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

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

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

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

    .inline-image {
        margin: 32px -24px;
    }

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

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

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