:root {
    --primary-color: #2C5F2D;
    --primary-dark: #1a3d1b;
    --secondary-color: #8B7355;
    --accent-color: #D4A574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f7f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #c83232;
    --success-color: #2C5F2D;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--primary-dark);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.editorial-flow {
    padding-top: 80px;
}

.story-header {
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 3rem 2rem 2rem;
}

.story-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-intro h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.hero-image {
    margin: 0 -2rem;
    overflow: hidden;
    border-radius: 8px;
}

.hero-image img {
    width: 100%;
    object-fit: cover;
}

.story-section {
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.text-block h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.text-block ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.text-block li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.inline-cta {
    margin-top: 1.5rem;
}

.cta-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.cta-link:hover {
    transform: translateX(5px);
}

.inline-image-wide {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.inline-image-wide img {
    width: 100%;
    border-radius: 8px;
}

.inline-image-wide figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.inline-image-offset {
    max-width: 600px;
    margin: 3rem auto 3rem 3rem;
    padding: 0 2rem;
}

.inline-image-offset img {
    width: 100%;
    border-radius: 8px;
}

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

.service-card-editorial {
    background-color: var(--bg-light);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.service-featured {
    background-color: #f0f7f0;
    border-left-color: var(--accent-color);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card-editorial h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.service-includes li {
    font-size: 0.95rem;
    color: var(--text-medium);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.price-tag {
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 1.8rem;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-select-service:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-break {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.cta-box {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.cta-box p {
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

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

.testimonials-inline {
    max-width: 700px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.testimonials-inline blockquote {
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.testimonials-inline blockquote p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0.8rem;
}

.testimonials-inline cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

.editorial-form {
    max-width: 600px;
    margin: 2rem auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    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(--primary-color);
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.form-group-checkbox label {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.final-cta {
    max-width: 700px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.final-cta p {
    font-size: 1.05rem;
    color: var(--text-medium);
}

.footer-minimal {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-col p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.legal-page {
    padding-top: 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-dark);
}

.legal-section h4 {
    font-size: 1rem;
    margin: 1rem 0 0.5rem;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th,
.cookies-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.cookies-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-medium);
}

.contact-info-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-details {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-note {
    font-size: 0.9rem !important;
    color: var(--text-light) !important;
    font-style: italic;
}

.faq-section {
    max-width: 700px;
    margin: 2rem auto 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thanks-message {
    margin-bottom: 2.5rem;
}

.thanks-message p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-additional {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
}

.thanks-additional h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
        display: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

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

    .story-intro h1 {
        font-size: 2rem;
    }

    .hero-image {
        margin: 0 -1rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .btn-cta-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

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

    .contact-details {
        flex-direction: column;
        gap: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        margin: 0;
    }

    .next-steps {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .story-intro h1 {
        font-size: 1.75rem;
    }

    .text-block h2 {
        font-size: 1.5rem;
    }

    .service-card-editorial h3 {
        font-size: 1.3rem;
    }

    .price-value {
        font-size: 1.5rem;
    }

    .legal-container h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.4rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}
