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

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

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(--accent);
}

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: 12px;
    letter-spacing: 0.5px;
}

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

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

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

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

.nav-links a {
    color: var(--text);
    font-size: 15px;
    position: relative;
    padding-bottom: 5px;
}

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

.nav-links a:hover::after {
    width: 100%;
}

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

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

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

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

.hero-editorial h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: normal;
}

.hero-editorial .lead {
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

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

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

.editorial-section h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: normal;
}

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

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

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

.inline-image.float-left {
    float: left;
    width: 45%;
    margin: 10px 30px 20px 0;
}

.inline-image.float-right {
    float: right;
    width: 45%;
    margin: 10px 0 20px 30px;
}

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

.service-card-editorial {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 35px;
    margin: 30px 0;
    transition: box-shadow 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card-editorial h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: normal;
}

.service-card-editorial .price {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
    margin: 15px 0;
}

.service-card-editorial p {
    color: var(--muted);
    margin-bottom: 0;
}

.cta-inline {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 15px 35px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin: 20px 0;
}

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

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: normal;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.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(--light);
    border-left: 4px solid var(--secondary);
    padding: 30px 35px;
    margin: 40px 0;
    font-style: italic;
}

.testimonial-block cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: var(--muted);
    font-size: 14px;
}

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

.form-section h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
    font-weight: normal;
}

.form-section .subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 550px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 16px;
    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%;
    background-color: var(--secondary);
    color: var(--white);
    padding: 16px;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

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

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

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

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-col a {
    color: #aaa;
    font-size: 14px;
}

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

.footer-col p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
    color: #666;
    font-size: 13px;
}

.disclaimer {
    background-color: #f0ebe3;
    padding: 25px;
    margin: 40px 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    border-radius: 3px;
}

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

.page-header h1 {
    font-size: 40px;
    font-weight: normal;
}

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

.page-content h2 {
    font-size: 26px;
    color: var(--primary);
    margin: 40px 0 20px;
    font-weight: normal;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    margin-bottom: 18px;
}

.page-content ul {
    margin: 20px 0 20px 30px;
}

.page-content ul li {
    margin-bottom: 10px;
}

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

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

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

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

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

.service-card-content h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: normal;
}

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

.service-card-content .price {
    font-size: 22px;
    color: var(--secondary);
    font-weight: bold;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

.contact-info-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 30px;
    border: 1px solid var(--border);
}

.contact-info-item h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: normal;
}

.contact-info-item p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 8px;
}

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

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: normal;
}

.thanks-content p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 30px;
}

.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-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid #555;
}

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

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

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

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

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

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

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

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

.quote-highlight {
    font-size: 24px;
    color: var(--secondary);
    text-align: center;
    padding: 40px;
    font-style: italic;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 50px 0;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 50px 0;
    background-color: var(--white);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    color: var(--secondary);
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

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

    .hero-editorial h1 {
        font-size: 32px;
    }

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

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

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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