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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #c9a86a;
    --text-color: #2c2c2c;
    --light-bg: #f8f6f3;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    margin: 2.5rem 0 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

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

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

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

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.narrow-column {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.hero-text-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-label {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-intro {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    font-style: italic;
}

.hero-image-inline {
    margin: 3rem auto;
    max-width: 900px;
    width: 100%;
    border-radius: 4px;
}

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

.story-section.dark-bg {
    background: var(--light-bg);
    padding: 4rem 0;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.inline-cta {
    display: inline-block;
    margin: 2rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 4px;
}

.inline-cta:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.visual-break {
    margin: 4rem 0;
}

.section-image-full {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.image-caption {
    text-align: center;
    font-style: italic;
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

.highlight-box {
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.highlight-box p {
    margin: 0;
}

.testimonial-inline {
    padding: 3rem 0;
    background: var(--light-bg);
}

.testimonial-inline blockquote {
    border: none;
    padding: 2rem 0;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-color);
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.pillar-item {
    margin: 3rem 0;
}

.pillar-item h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

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

.service-card-editorial {
    margin: 3rem 0;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

.service-card-editorial:hover {
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
}

.service-card-editorial h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.service-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.select-service {
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.select-service:hover {
    background: var(--secondary-color);
}

.stats-inline {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.form-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.editorial-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.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 {
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    margin-top: 1rem;
}

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

.cta-button-inline {
    display: inline-block;
    margin: 2rem 0;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.cta-button-inline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.closing-text {
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
    margin: 3rem 0;
    color: var(--text-color);
}

.footer-minimal {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
}

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

.footer-copy {
    font-size: 0.9rem;
    color: #999;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition);
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-button {
    display: block;
    padding: 1rem 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.sticky-cta-button:hover {
    background: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.services-detailed {
    padding: 2rem 0;
}

.service-detailed {
    margin: 4rem 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detailed:last-child {
    border-bottom: none;
}

.service-price-large {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0 1.5rem;
}

.service-price-large span {
    font-size: 1.5rem;
    color: var(--text-color);
}

.custom-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.custom-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.custom-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1;
}

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

.contact-item {
    margin: 2.5rem 0;
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.legal-content {
    padding: 3rem 0;
}

.legal-content h1 {
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 3rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    transition: var(--transition);
}

.cta-button-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-links {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

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

    .nav-links li {
        padding: 0.8rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-text-narrow {
        padding: 0 1rem;
    }

    .narrow-column {
        padding: 0 1rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    .stats-inline {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item {
        min-width: 100%;
    }

    .service-price {
        font-size: 1.7rem;
    }

    .service-price-large {
        font-size: 2.3rem;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-cta {
        left: 50%;
        transform: translateX(-50%) translateY(100px);
        right: auto;
    }

    .sticky-cta.show {
        transform: translateX(-50%) translateY(0);
    }

    .cta-group {
        flex-direction: column;
    }

    .cta-button-inline,
    .cta-button-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-minimal {
        padding: 1rem;
    }

    .service-card-editorial {
        padding: 1.5rem;
    }

    .highlight-box {
        padding: 1rem 1.5rem;
    }
}
