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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand-mark {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
}

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

.nav-items a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-items a:hover {
    color: #c77f6e;
}

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    font-family: Arial, sans-serif;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.editorial-flow {
    background-color: #ffffff;
}

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

.hero-image-container {
    width: 100%;
    height: 600px;
    background-color: #e8dcd4;
    overflow: hidden;
    margin-bottom: 3rem;
}

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

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

.hero-content-narrow h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.intro-lead {
    font-size: 1.25rem;
    color: #5a5a5a;
    line-height: 1.6;
    font-style: italic;
}

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

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

.drop-cap::first-letter {
    font-size: 3.5rem;
    line-height: 1;
    float: left;
    margin: 0.1rem 0.5rem 0 0;
    color: #c77f6e;
}

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

.content-narrow h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.content-narrow h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 500;
}

.inline-image {
    margin: 3rem 0;
    background-color: #f5f0eb;
}

.story-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 2rem 0;
    background-color: #f5f0eb;
}

.insight-block {
    background-color: #f9f6f3;
    border-left: 4px solid #c77f6e;
    padding: 2rem;
    margin: 3rem 0;
}

.insight-block h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.insight-block p {
    margin-bottom: 0;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-style: italic;
    color: #3a3a3a;
}

.testimonial-inline p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #777;
}

.service-reveal {
    margin: 4rem 0;
}

.service-card-editorial {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    background-color: #fafafa;
    border-radius: 4px;
    overflow: hidden;
}

.service-image-wrap {
    width: 100%;
    height: 400px;
    background-color: #e8dcd4;
    overflow: hidden;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.service-content p {
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.75rem;
    color: #c77f6e;
    font-weight: 600;
    margin: 1.5rem 0;
}

.cta-inline {
    background-color: #c77f6e;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

.cta-inline:hover {
    background-color: #b36f5e;
}

.cta-section-editorial {
    background-color: #f9f6f3;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
    border-radius: 4px;
}

.cta-section-editorial h3 {
    margin-top: 0;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section-editorial p {
    margin-bottom: 2rem;
}

.cta-primary {
    background-color: #c77f6e;
    color: #ffffff;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

.cta-primary:hover {
    background-color: #b36f5e;
}

.form-section {
    padding: 4rem 0;
    background-color: #fafafa;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c77f6e;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #666;
}

.submit-button {
    background-color: #c77f6e;
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

.submit-button:hover {
    background-color: #b36f5e;
}

.disclaimer-section {
    padding: 3rem 0;
    background-color: #f9f6f3;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.footer-editorial {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #a0a0a0;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c77f6e;
}

.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-contact p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
}

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

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 2000;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #c77f6e;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #b36f5e;
}

.cookie-reject {
    background-color: #4a4a4a;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a5a5a;
}

.page-header {
    background-color: #f9f6f3;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

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

.page-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.page-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
    font-weight: 500;
}

.page-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.page-content ul {
    margin-bottom: 1.25rem;
    margin-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-info-section {
    background-color: #f9f6f3;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.contact-info-section h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.contact-info-section p {
    margin-bottom: 0.75rem;
    color: #3a3a3a;
}

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

.service-item {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid #c77f6e;
}

.service-item h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.service-item .price {
    font-size: 1.5rem;
    color: #c77f6e;
    font-weight: 600;
    margin: 1rem 0;
}

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f9f6f3;
    border-radius: 4px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.thanks-container p {
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-detail {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.thanks-detail strong {
    color: #c77f6e;
    font-weight: 600;
}

.back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #c77f6e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.back-home:hover {
    background-color: #b36f5e;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-items {
        flex-wrap: wrap;
    }

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

    .intro-lead {
        font-size: 1.1rem;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-card-editorial {
        margin: 2rem 0;
    }
}