:root {
    --primary: #2c3e50;
    --secondary: #8b7355;
    --accent: #c9a959;
    --text-dark: #1a1a1a;
    --text-light: #f8f6f3;
    --bg-cream: #faf8f5;
    --bg-warm: #f5f0e8;
    --bg-dark: #2c3e50;
    --border-subtle: #e8e4dc;
    --shadow: rgba(44, 62, 80, 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-cream);
}

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

.container-narrow {
    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, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 400;
    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-warm);
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid var(--border-subtle);
}

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

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

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

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

.nav-links a {
    color: var(--text-dark);
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-links a:hover {
    border-bottom-color: var(--accent);
    color: var(--text-dark);
}

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

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

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

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

.hero-editorial .lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    margin: 40px 0;
    background-color: var(--bg-warm);
    border-radius: 4px;
    overflow: hidden;
}

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

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

.section-story.bg-warm {
    background-color: var(--bg-warm);
}

.section-story.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-story.bg-dark h2,
.section-story.bg-dark h3 {
    color: var(--text-light);
}

.inline-image {
    margin: 40px 0;
    background-color: var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
}

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

.inline-image figcaption {
    padding: 12px 16px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    background-color: var(--bg-warm);
}

.pull-quote {
    margin: 48px 0;
    padding: 32px 40px;
    border-left: 4px solid var(--accent);
    background-color: var(--bg-warm);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
}

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

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

.service-card:hover {
    box-shadow: 0 8px 24px var(--shadow);
}

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

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

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

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

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

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

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

.btn-accent {
    background-color: var(--accent);
    color: var(--text-dark);
}

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

.cta-inline {
    text-align: center;
    padding: 48px 0;
}

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

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-section p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.form-wrapper {
    max-width: 560px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    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 {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    margin-top: 16px;
}

.about-split {
    display: flex;
    gap: 48px;
    align-items: center;
    margin: 48px 0;
}

.about-split-content {
    flex: 1;
}

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

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

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

.team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 40px 0;
}

.team-member {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 220px;
    text-align: center;
}

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

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

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

.team-member span {
    font-size: 14px;
    color: #666;
}

.contact-info {
    background-color: var(--bg-warm);
    padding: 40px;
    border-radius: 4px;
    margin: 40px 0;
}

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

.contact-item {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
}

.contact-item strong {
    min-width: 100px;
    color: var(--secondary);
}

.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 64px 0 32px;
}

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

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

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

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

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

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

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

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

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

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

.disclaimer {
    background-color: var(--bg-warm);
    padding: 24px;
    margin: 40px 0;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

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

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

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

.legal-content p,
.legal-content li {
    font-size: 15px;
    line-height: 1.8;
}

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

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    flex: 1;
    min-width: 280px;
}

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

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

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

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

.cookie-buttons button:hover {
    opacity: 0.85;
}

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

.thanks-content h1 {
    color: var(--secondary);
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 99;
}

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-cream);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-subtle);
    }

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

    .mobile-toggle {
        display: block;
    }

    .hero-editorial {
        padding: 48px 0 40px;
    }

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

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

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

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

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

    .about-split-image img {
        height: 280px;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .footer-grid {
        gap: 32px;
    }

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

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

    .pull-quote {
        padding: 24px;
        font-size: 1.1rem;
    }

    .form-wrapper {
        padding: 24px;
    }

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