:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #c9a882;
    --text-color: #2d2d2d;
    --light-bg: #f8f6f3;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

.cookie-banner.show {
    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;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-minimal {
    background-color: var(--white);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    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-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.editorial-hero {
    margin-bottom: 4rem;
}

.hero-text-narrow {
    margin-bottom: 2rem;
}

.hero-text-narrow h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.intro-large {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 400;
}

.hero-image-inline {
    margin: 2rem 0;
    width: 100%;
}

.hero-image-inline img,
.inline-image-offset img,
.contact-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

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

.story-section.darker-bg {
    background-color: var(--light-bg);
    padding: 3rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 8px;
}

.text-block-centered {
    max-width: 100%;
}

.text-block-centered h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-block-centered h3 {
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.text-block-centered h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--primary-color);
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.text-block-centered p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.text-block-centered ul,
.text-block-centered ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.text-block-centered li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.cta-inline {
    text-align: center;
    margin: 3rem 0;
}

.cta-link-subtle {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.cta-link-subtle:hover {
    border-bottom: 2px solid var(--secondary-color);
}

.inline-image-offset {
    margin: 2.5rem 0;
    width: 100%;
}

.insight-section {
    margin: 5rem 0;
}

.pillars-list {
    margin-top: 2rem;
}

.pillar-item {
    margin-bottom: 2.5rem;
}

.pillar-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.pillar-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.testimonial-inline {
    background-color: var(--light-bg);
    padding: 2.5rem;
    margin: 4rem 0;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-inline blockquote {
    border: none;
    margin: 0;
}

.testimonial-inline p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-size: 1rem;
    color: var(--text-color);
    font-style: normal;
    font-weight: 500;
}

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

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.service-card.featured {
    border: 2px solid var(--secondary-color);
    background-color: var(--light-bg);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

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

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-section-block {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem;
    margin: 5rem 0;
    text-align: center;
    border-radius: 8px;
}

.cta-section-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section-block p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.social-proof {
    margin: 5rem 0;
}

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

.testimonial-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-size: 0.95rem;
    color: var(--text-color);
    font-style: normal;
    font-weight: 500;
}

.urgency-section {
    margin: 5rem 0;
}

.form-section {
    margin: 5rem 0;
}

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

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    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: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.final-cta {
    text-align: center;
    margin: 4rem 0;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-color);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.btn-sticky {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-sticky:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.page-header-editorial {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.values-section {
    margin: 4rem 0;
}

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

.value-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.services-detailed {
    margin: 3rem 0;
}

.service-detail-card {
    margin-bottom: 4rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    background-color: var(--white);
    position: relative;
}

.service-detail-card.featured-service {
    border: 2px solid var(--secondary-color);
    background-color: var(--light-bg);
}

.service-detail-header {
    margin-bottom: 2rem;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-tagline {
    font-size: 1.1rem;
    color: var(--text-color);
    font-style: italic;
}

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

.service-description h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.service-description ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-description li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.service-detail-aside {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-note {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 1rem;
    opacity: 0.8;
}

.faq-section {
    margin: 4rem 0;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
}

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

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

.contact-info-section {
    margin: 3rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-block h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

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

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.process-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.process-list li {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.process-list strong {
    color: var(--primary-color);
}

.map-section {
    margin: 4rem 0;
}

.map-placeholder {
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
    border: 1px solid var(--border-color);
}

.map-placeholder p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cta-alternative {
    margin-top: 1.5rem;
    font-size: 1rem;
}

.cta-alternative a {
    color: var(--secondary-color);
    text-decoration: none;
}

.thanks-section {
    margin: 5rem 0;
    text-align: center;
}

.thanks-content {
    margin: 3rem 0;
    font-size: 1.15rem;
    line-height: 1.8;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
}

.step-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.thanks-cta {
    margin: 4rem 0;
}

.thanks-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--light-bg);
    border-color: var(--secondary-color);
}

.contact-reminder {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.contact-reminder p {
    font-size: 1rem;
    margin: 0;
}

.contact-reminder a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.legal-page {
    max-width: 900px;
}

.legal-section {
    margin: 2rem 0;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .intro-large {
        font-size: 1.2rem;
    }

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

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

    .story-section.darker-bg {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .contact-grid {
        gap: 2rem;
    }

    .service-detail-content {
        gap: 1.5rem;
    }
}
