/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    color: #8b6f47;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5d4a30;
}

/* Editorial Navigation */
.editorial-nav {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e6;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 0;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links a:hover {
    color: #8b6f47;
}

/* Editorial Container - Core Layout */
.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Hero Section */
.article-hero {
    margin-bottom: 4rem;
}

.hero-image-wrapper {
    margin-bottom: 2.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
}

/* Page Headers */
.page-header {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.page-lead {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

/* Narrative Blocks - Editorial Story Style */
.narrative-block {
    margin-bottom: 3.5rem;
}

.opening-graf {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
}

.narrative-block p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.narrative-block h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
}

.narrative-block h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.section-heading {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.section-heading-centered {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Image Breaks */
.image-break {
    margin: 4rem 0;
}

.image-break figure {
    margin: 0;
}

.image-break img {
    width: 100%;
    border-radius: 4px;
}

.image-break figcaption {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.8rem;
    text-align: center;
    font-style: italic;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Quote Blocks */
.quote-block {
    margin: 2.5rem 0;
    padding-left: 2rem;
    border-left: 3px solid #8b6f47;
}

.quote-block blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.quote-block cite {
    font-size: 0.95rem;
    color: #777;
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Detail Lists */
.detail-list {
    margin: 2rem 0;
}

.detail-list p {
    margin-bottom: 1.3rem;
}

.detail-list strong {
    color: #1a1a1a;
}

/* Inline CTAs */
.inline-cta-soft {
    margin: 2rem 0;
}

.text-link-arrow {
    font-size: 1.05rem;
    color: #8b6f47;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.text-link-arrow:hover {
    color: #5d4a30;
}

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

.cta-button-editorial {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: #8b6f47;
    color: #fff;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.cta-button-editorial:hover {
    background-color: #5d4a30;
    color: #fff;
}

/* Service Cards - Editorial Style */
.services-preview {
    margin: 5rem 0;
}

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

.service-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
}

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

.service-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.service-detail {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e8e8e6;
}

.price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #8b6f47;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service {
    padding: 0.7rem 1.5rem;
    background-color: #8b6f47;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #5d4a30;
}

/* Detailed Service Cards */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 3rem 0;
}

.service-detail-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.service-detail-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

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

.service-detail-content {
    padding: 2.5rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-meta {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-description-full {
    margin-bottom: 2rem;
}

.service-description-full p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.3rem;
}

.service-description-full ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style-type: disc;
}

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

.service-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    padding: 1rem;
    background-color: #f8f8f6;
    border-left: 3px solid #8b6f47;
    margin-top: 1.5rem;
}

.service-price-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid #e8e8e6;
}

.price-large {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8b6f47;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Testimonials */
.testimonial-section {
    margin: 5rem 0;
}

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

.testimonial {
    padding: 2rem;
    background: #fff;
    border-left: 4px solid #8b6f47;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.6;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.9rem;
    color: #777;
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Forms */
.form-section {
    margin: 5rem 0;
    padding: 3rem 2.5rem;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.editorial-form {
    max-width: 540px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 1px solid #d0d0ce;
    border-radius: 3px;
    background-color: #fafaf8;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #8b6f47;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* CTA Groups */
.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    color: #8b6f47;
    border: 2px solid #8b6f47;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #8b6f47;
    color: #fff;
}

/* Closing Section */
.closing-thought {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: #4a4a4a;
    text-align: center;
    margin: 2rem 0;
}

/* About Page Specific */
.principle-block {
    margin: 2.5rem 0;
}

.principle-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.team-member {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f8f6;
    border-left: 3px solid #8b6f47;
    border-radius: 4px;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #1a1a1a;
}

.cta-section-about {
    text-align: center;
    padding: 3rem 0;
    margin: 4rem 0;
}

.cta-section-about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section-about p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Contact Page Specific */
.contact-info-section {
    margin: 3rem 0;
}

.contact-detail-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e6;
}

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

.contact-detail-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-detail-block address {
    font-style: normal;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.location-note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 1rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

.contact-note-secondary {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.6rem;
}

.info-callout {
    padding: 1.5rem;
    background-color: #fff9e6;
    border-left: 4px solid #d4a574;
    border-radius: 4px;
    margin: 2rem 0;
}

.info-callout p {
    margin: 0;
    font-size: 1rem;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-section-contact {
    text-align: center;
    padding: 3rem 0;
    margin: 4rem 0;
}

.cta-section-contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section-contact p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
}

.thanks-content {
    text-align: left;
}

.thanks-info-box {
    background: #fff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin: 2.5rem 0;
}

.thanks-info-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.thanks-steps {
    list-style-position: inside;
    margin: 0;
}

.thanks-steps li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-highlight {
    font-weight: 600;
    color: #8b6f47;
}

.thanks-notice {
    padding: 1.5rem;
    background-color: #f8f8f6;
    border-left: 3px solid #8b6f47;
    border-radius: 4px;
    margin: 2rem 0;
}

.thanks-notice p {
    margin: 0;
    font-size: 1rem;
}

.preparation-tips {
    margin: 2rem 0;
}

.tip {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.tip h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #8b6f47;
}

.tip p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.thanks-closing {
    text-align: center;
    margin: 4rem 0 2rem;
}

.signature {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* Additional Info Section */
.additional-info {
    margin: 4rem 0;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

/* Legal Pages */
.legal-page {
    max-width: 780px;
}

.legal-content {
    font-size: 1rem;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.7rem;
    margin: 2.5rem 0 1.2rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
}

.legal-content p {
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style-type: disc;
}

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

.legal-content address {
    font-style: normal;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f8f6;
    border-left: 3px solid #8b6f47;
    border-radius: 4px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.cookie-table th {
    background-color: #f8f8f6;
    padding: 0.9rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #d0d0ce;
}

.cookie-table td {
    padding: 0.9rem;
    border-bottom: 1px solid #e8e8e6;
}

/* Footer */
.site-footer {
    background-color: #2c2c2c;
    color: #d0d0ce;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column p {
    font-size: 0.95rem;
    color: #999;
}

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

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

.footer-column a {
    font-size: 0.95rem;
    color: #999;
}

.footer-column a:hover {
    color: #fff;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1080px;
    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-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8b6f47;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #5d4a30;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-lead {
        font-size: 1.15rem;
    }

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

    .opening-graf {
        font-size: 1.15rem;
    }

    .narrative-block p {
        font-size: 1.05rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .section-heading-centered {
        font-size: 1.7rem;
    }

    .service-image {
        height: 220px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .select-service {
        width: 100%;
    }

    .service-detail-image {
        height: 240px;
    }

    .service-price-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

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

@media (max-width: 480px) {
    .editorial-container {
        padding: 2rem 1rem;
    }

    .nav-content {
        padding: 0 1rem;
    }

    .brand {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-lead {
        font-size: 1.05rem;
    }

    .quote-block {
        padding-left: 1rem;
    }

    .quote-block blockquote {
        font-size: 1.15rem;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.6rem;
    }
}