:root {
    --primary: #2c4a3e;
    --secondary: #d4a574;
    --dark: #1a2f28;
    --light: #f8f6f3;
    --accent: #8b9d83;
    --text: #3d3d3d;
    --white: #ffffff;
    --border: #e2ddd5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    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;
}

/* Header */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background-color: var(--dark);
    color: var(--light);
    padding: 8px 0;
    font-size: 0.75rem;
    text-align: center;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-editorial {
    padding: 80px 0 60px;
    text-align: center;
    background-color: var(--white);
}

.hero-editorial h1 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 400;
}

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

.hero-image-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--accent);
    border-radius: 4px;
    overflow: hidden;
}

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

/* Editorial Content */
.editorial-section {
    padding: 60px 0;
}

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

.editorial-section h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 400;
}

.editorial-section h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
}

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

.editorial-section p:last-child {
    margin-bottom: 0;
}

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

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

.inline-image.wide {
    max-width: 100%;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0;
}

.inline-image.wide img {
    height: 350px;
}

/* CTA Inline */
.cta-inline {
    background-color: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: 4px;
    margin: 40px 0;
    text-align: center;
}

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

.cta-inline p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-inline .btn {
    background-color: var(--secondary);
    color: var(--dark);
}

.cta-inline .btn:hover {
    background-color: #c49564;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    background-color: var(--dark);
    transform: translateY(-1px);
}

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

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

/* Services Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.service-card-image {
    height: 180px;
    background-color: var(--accent);
    overflow: hidden;
}

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

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

.service-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 16px;
}

.service-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text);
}

/* Quote Block */
.quote-block {
    border-left: 4px solid var(--secondary);
    padding-left: 24px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--dark);
}

.quote-block cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text);
}

/* Form Styles */
.form-section {
    background-color: var(--white);
    padding: 60px 0;
}

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

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

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

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

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

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.contact-block {
    flex: 1 1 200px;
}

.contact-block h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-block p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0 24px;
}

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

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

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

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
}

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

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

.footer-col ul a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-col ul a:hover {
    opacity: 1;
}

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

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 24px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 0.8rem;
    line-height: 1.6;
    opacity: 0.75;
}

/* Thanks Page */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.thanks-content h1 {
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 16px;
}

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

/* Legal Pages */
.legal-page {
    padding: 60px 0;
    background-color: var(--white);
}

.legal-page h1 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.legal-page h2 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-page p,
.legal-page li {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

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

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

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

.cookie-content {
    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: 0.9rem;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

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

.cookie-btn.accept:hover {
    background-color: #c49564;
}

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

.cookie-btn.reject:hover {
    background-color: rgba(255,255,255,0.1);
}

/* About Page */
.about-intro {
    padding: 80px 0 40px;
    text-align: center;
}

.about-intro h1 {
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 20px;
}

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

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

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

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

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

.team-member h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 90;
}

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

/* Statistics */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px 0;
    justify-content: center;
}

.stat-item {
    flex: 1 1 140px;
    text-align: center;
    padding: 24px;
    background-color: var(--white);
    border-radius: 4px;
}

.stat-number {
    font-size: 2.4rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text);
    margin-top: 8px;
}

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

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

    .nav-toggle {
        display: block;
    }

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

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

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

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

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

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

    .inline-image.wide {
        margin-left: 0;
        margin-right: 0;
    }
}
