/* 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: #2a2a2a;
    background-color: #fefefe;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography - Editorial style */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

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

a:hover {
    color: #5a2d0c;
    text-decoration: underline;
}

/* Navigation - Minimal editorial */
.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
    letter-spacing: -0.5px;
}

.logo:hover {
    text-decoration: none;
    color: #8b4513;
}

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

.nav-links a {
    font-size: 1rem;
    color: #4a4a4a;
    font-family: sans-serif;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #8b4513;
    text-decoration: none;
}

/* Editorial flow layout */
.editorial-flow {
    max-width: 100%;
    margin: 0 auto;
}

/* Narrow centered text - core of editorial archetype */
.narrow-text {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero section - editorial style */
.hero-editorial {
    padding: 4rem 0 3rem;
    background-color: #fafafa;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    font-style: italic;
    margin-top: 1rem;
}

.hero-image-wrap {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Content blocks */
.content-block {
    padding: 3rem 0;
}

.content-block.bg-light {
    background-color: #f9f9f9;
}

.content-block.bg-dark {
    background-color: #2a2a2a;
    color: #e5e5e5;
}

.content-block.bg-dark h1,
.content-block.bg-dark h2,
.content-block.bg-dark h3 {
    color: #fff;
}

.content-block.bg-dark a {
    color: #d4a574;
}

.content-block.bg-dark a:hover {
    color: #f0c896;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

/* Image inserts - inline editorial style */
.image-insert {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.image-insert img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
    margin-bottom: 0.75rem;
}

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

/* Inline CTAs - part of editorial flow */
.inline-cta {
    display: inline-block;
    color: #8b4513;
    font-weight: 600;
    border-bottom: 2px solid #8b4513;
    padding-bottom: 2px;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #5a2d0c;
    border-bottom-color: #5a2d0c;
    text-decoration: none;
    transform: translateY(-1px);
}

.cta-button {
    display: inline-block;
    background-color: #8b4513;
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
    font-family: sans-serif;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #5a2d0c;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

/* Testimonials inline */
.testimonial-inline {
    max-width: 750px;
    margin: 3rem auto;
    padding: 2.5rem 2rem;
    background-color: #f5f2ed;
    border-left: 4px solid #8b4513;
}

.testimonial-inline blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2a2a2a;
    font-style: italic;
}

.testimonial-inline p {
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    display: block;
    font-size: 1rem;
    color: #666;
    font-style: normal;
    margin-top: 1rem;
}

/* Services - editorial card layout */
.services-editorial {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 6px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

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

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #8b4513;
    margin: 1.5rem 0;
    font-family: sans-serif;
}

.btn-service {
    background-color: #8b4513;
    color: #fff;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: sans-serif;
}

.btn-service:hover {
    background-color: #5a2d0c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

/* Detailed services page */
.services-detailed {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    background-color: #f9f7f4;
    padding: 2rem;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    margin: 0;
    font-size: 1.75rem;
    flex: 1;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #8b4513;
    font-family: sans-serif;
    margin: 0;
}

.service-body {
    padding: 2rem;
}

.service-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.service-body h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

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

.service-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* FAQ items */
.faq-item {
    margin: 2rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.faq-item p {
    color: #4a4a4a;
    font-size: 1.05rem;
}

/* Forms - editorial style */
.form-section {
    background-color: #fafafa;
    padding: 3rem 0;
}

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

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
    font-family: sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    font-family: sans-serif;
    line-height: 1.5;
}

.btn-submit {
    background-color: #8b4513;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: sans-serif;
    width: 100%;
}

.btn-submit:hover {
    background-color: #5a2d0c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 69, 19, 0.25);
}

/* Contact page */
.contact-grid {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info,
.contact-form-section {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
}

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

/* Page headers */
.page-header {
    padding: 3rem 0 2rem;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
}

/* Thanks page */
.thanks-section {
    padding: 4rem 0;
    min-height: 60vh;
}

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

.thanks-info {
    text-align: left;
    margin: 2rem 0;
}

.service-selected {
    background-color: #f5f2ed;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #8b4513;
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: sans-serif;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #8b4513;
    color: #fff;
}

.btn-primary:hover {
    background-color: #5a2d0c;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
}

.btn-secondary:hover {
    background-color: #8b4513;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Legal pages */
.legal-page {
    padding: 2rem 0 4rem;
}

.update-date {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    font-family: sans-serif;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-back {
    display: inline-block;
    color: #8b4513;
    padding: 0.75rem 1.5rem;
    border: 2px solid #8b4513;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: sans-serif;
}

.btn-back:hover {
    background-color: #8b4513;
    color: #fff;
    text-decoration: none;
}

/* Footer */
.footer-minimal {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 2.5rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

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

.footer-links a {
    color: #ccc;
    font-size: 0.95rem;
    font-family: sans-serif;
}

.footer-links a:hover,
.footer-links a.active {
    color: #d4a574;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #8b4513;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-btn {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    font-family: sans-serif;
}

.sticky-btn:hover {
    color: #f0c896;
    text-decoration: none;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-family: sans-serif;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: #fff;
    color: #2a2a2a;
}

.final-thought {
    font-size: 1.2rem;
    font-style: italic;
    color: #e5e5e5;
    margin: 2rem 0;
    line-height: 1.7;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .hero-editorial {
        padding: 2.5rem 0 2rem;
    }

    .content-block {
        padding: 2rem 0;
    }

    .image-insert {
        margin: 2rem auto;
    }

    .testimonial-inline {
        padding: 1.5rem 1rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-grid {
        gap: 2rem;
    }

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

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

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

    .thanks-actions {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .contact-grid {
        flex-direction: row;
        gap: 4rem;
    }

    .sticky-cta {
        display: block;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}