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

:root {
    --color-primary: #2d3748;
    --color-secondary: #4a5568;
    --color-accent: #d97706;
    --color-text: #1a202c;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-border: #e2e8f0;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;
}

body {
    font-family: var(--font-serif);
    color: var(--color-text);
    line-height: 1.8;
    font-size: 18px;
    background: var(--color-bg);
}

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

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

.brand-name {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-family: var(--font-main);
    font-size: 0.75rem;
    color: var(--color-text-light);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-bg-alt);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

.editorial-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: var(--color-bg-alt);
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 2rem;
    color: white;
}

.hero-overlay h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
}

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

.story-intro,
.story-insight,
.services-reveal,
.contact-story,
.about-story,
.services-detailed,
.contact-info {
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.narrow-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.narrow-content h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.narrow-content p {
    margin-bottom: 1.5rem;
}

.inline-image {
    margin: 3rem 0;
    background-color: var(--color-bg-alt);
}

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

.cta-inline {
    margin: 2rem 0;
}

.cta-text-link {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease;
    display: inline-block;
}

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

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.insight-card {
    padding: 2rem;
    background: var(--color-bg-alt);
    border-left: 3px solid var(--color-accent);
}

.insight-card h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.editorial-quote {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-primary);
    font-style: italic;
}

.editorial-quote p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

.service-item {
    padding: 2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-item h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

.service-price {
    display: block;
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-accent);
    margin: 1.5rem 0 1rem 0;
}

.select-service-btn {
    font-family: var(--font-main);
    padding: 0.8rem 1.8rem;
    background: var(--color-primary);
    color: white;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.editorial-form {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--color-bg-alt);
}

.service-notice {
    padding: 1rem;
    background: #dbeafe;
    border-left: 3px solid #3b82f6;
    margin-bottom: 1.5rem;
}

.service-notice strong {
    color: var(--color-primary);
}

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

.form-group label {
    display: block;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-family: var(--font-serif);
    font-size: 1rem;
    border: 1px solid var(--color-border);
    background: white;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    font-family: var(--font-main);
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #b45309;
}

.trust-elements {
    margin-top: 2rem;
}

.testimonial-inline {
    font-style: italic;
    color: var(--color-secondary);
    padding: 1.5rem;
    background: var(--color-bg);
    border-left: 3px solid var(--color-border);
}

.disclaimer-section {
    margin: 4rem 0 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
}

.disclaimer-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

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

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

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

.footer-section h4 {
    font-family: var(--font-main);
    font-size: 1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p,
.footer-section ul {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.email-text {
    color: rgba(255,255,255,0.8);
}

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

.footer-bottom p {
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

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

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

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

.cookie-content p {
    font-family: var(--font-main);
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

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

.cookie-btn {
    font-family: var(--font-main);
    padding: 0.6rem 1.5rem;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-header {
    margin: 4rem 0;
}

.page-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.3rem;
    color: var(--color-secondary);
}

.philosophy-points,
.service-includes {
    margin: 2rem 0;
}

.point {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--color-bg-alt);
}

.point h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

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

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

.service-price-display {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-accent);
    margin: 1.5rem 0;
}

.service-includes ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.service-includes li {
    margin-bottom: 0.8rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.contact-approach {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--color-bg-alt);
}

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

.thanks-message {
    padding: 2rem;
    background: var(--color-bg-alt);
    margin: 2rem 0;
}

.service-confirmation {
    padding: 1rem;
    background: #dbeafe;
    border-left: 3px solid #3b82f6;
    margin: 1rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button,
.cta-secondary {
    font-family: var(--font-main);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.cta-button:hover {
    background: #b45309;
}

.cta-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.cta-secondary:hover {
    background: var(--color-bg-alt);
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: var(--font-main);
    font-size: 0.9rem;
}

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

.cookies-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-primary);
}

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

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--color-border);
        display: none;
    }

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

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

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

    .narrow-content h2 {
        font-size: 1.6rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

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

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

    .cta-button,
    .cta-secondary {
        text-align: center;
    }
}