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

:root {
    --primary-color: #2c5530;
    --secondary-color: #8b6f47;
    --accent-color: #d4844c;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    background-color: white;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-cookie.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

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

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

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-editorial {
    padding: 4rem 0 3rem;
    text-align: center;
}

.hero-text-center h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 3rem;
}

.hero-image {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
    margin-top: 3rem;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-section {
    padding: 4rem 0;
}

.narrow-content {
    max-width: 100%;
}

.opening-paragraph {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-medium);
}

.story-section h2 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.inline-image {
    margin: 3rem 0;
}

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

.inline-image figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.insight-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.offset-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-medium);
}

.insight-callout {
    background-color: var(--bg-white);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

.insight-callout blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.services-preview {
    padding: 5rem 0;
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.services-preview > .narrow-content > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-medium);
}

.services-grid-editorial {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 2px;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.link-cta {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.link-cta:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.trust-section {
    padding: 4rem 0;
}

.trust-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.trust-section h3 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.trust-section p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-medium);
}

.testimonials-inline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonials-inline blockquote {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.approach-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.approach-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-medium);
}

.approach-callout {
    background-color: var(--bg-white);
    padding: 2rem;
}

.approach-callout h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.approach-callout ul {
    list-style: none;
}

.approach-callout li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.approach-callout li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.value-section {
    padding: 4rem 0;
}

.value-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.value-section p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-medium);
}

.booking-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.booking-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 400;
}

.booking-section > .narrow-content > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-medium);
}

.editorial-form {
    background-color: var(--bg-white);
    padding: 3rem;
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    border-radius: 2px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background-color: #1f3d22;
}

.final-thought {
    padding: 4rem 0 5rem;
}

.closing-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-medium);
    text-align: center;
    font-style: italic;
}

.footer-editorial {
    background-color: var(--text-dark);
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a0a0a0;
}

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

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0a0a0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .editorial-content {
        padding: 0 1.5rem;
    }

    .hero-text-center h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image {
        width: calc(100% + 3rem);
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .opening-paragraph {
        font-size: 1.2rem;
    }

    .story-section p,
    .insight-text p,
    .trust-section p,
    .approach-text p,
    .value-section p {
        font-size: 1rem;
    }

    .story-section h2,
    .insight-text h2,
    .trust-section h2,
    .approach-text h2,
    .value-section h2 {
        font-size: 1.8rem;
    }

    .services-preview h2,
    .booking-section h2 {
        font-size: 2rem;
    }

    .insight-section,
    .approach-section,
    .booking-section {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .editorial-form {
        padding: 2rem 1.5rem;
    }

    .service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

@media (min-width: 769px) {
    .offset-content {
        flex-direction: row;
        gap: 3rem;
    }

    .insight-text,
    .approach-text {
        flex: 2;
    }

    .insight-callout,
    .approach-callout {
        flex: 1;
    }
}
