/* 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.8;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

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

a:hover {
    color: #5d3a26;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #8b5a3c;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #555555;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #333333;
}

/* Navigation */
.minimal-nav {
    background-color: #ffffff;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2c2c2c;
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c2c2c;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: #ffffff;
    list-style: none;
    padding: 4rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-menu a {
    font-size: 1.125rem;
    color: #2c2c2c;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8b5a3c;
}

/* Editorial Container */
.editorial-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

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

.hero-image-wrapper {
    margin-bottom: 2rem;
    overflow: hidden;
}

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

.editorial-title {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #1a1a1a;
}

.editorial-subtitle {
    font-size: 1.25rem;
    color: #666666;
    font-style: italic;
    line-height: 1.6;
}

.editorial-content {
    font-size: 1.125rem;
    line-height: 1.9;
}

.opening-line {
    font-size: 1.375rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #444444;
}

.editorial-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
    color: #1a1a1a;
}

.editorial-content h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #2c2c2c;
}

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

.editorial-content ul,
.editorial-content ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

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

/* Inline Images */
.inline-image-block {
    margin: 2.5rem 0;
}

.inline-image-block img {
    width: 100%;
    margin-bottom: 0.75rem;
}

.image-caption {
    font-size: 0.875rem;
    color: #666666;
    font-style: italic;
    text-align: center;
}

/* Testimonials */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-left: 4px solid #8b5a3c;
}

.testimonial-inline blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333333;
}

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

/* Phase Blocks */
.phase-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.phase-block h3 {
    margin-top: 0;
}

/* CTAs */
.inline-cta {
    display: inline-block;
    margin: 2rem 0;
    font-size: 1.125rem;
    color: #8b5a3c;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #8b5a3c;
    padding-bottom: 0.25rem;
}

.inline-cta:hover {
    color: #5d3a26;
    border-bottom-color: #5d3a26;
}

.section-cta {
    display: inline-block;
    margin: 2.5rem 0;
    padding: 1rem 2.5rem;
    background-color: #8b5a3c;
    color: #ffffff;
    font-size: 1.125rem;
    text-align: center;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.section-cta:hover {
    background-color: #5d3a26;
}

/* Service Editorial Blocks */
.service-editorial {
    display: flex;
    flex-direction: column;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

.service-editorial.reverse {
    flex-direction: column;
}

.service-image {
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-duration,
.service-price,
.service-included {
    font-size: 1rem;
    margin: 0.75rem 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b5a3c;
    margin: 1rem 0;
}

.service-select {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.875rem 2rem;
    background-color: #8b5a3c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

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

.service-select.selected {
    background-color: #5d3a26;
}

/* Form Section */
.editorial-form-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.editorial-form-section h2 {
    margin-top: 0;
}

.form-intro {
    margin-bottom: 2rem;
    color: #666666;
}

.selected-service-display {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #8b5a3c;
}

.selected-service-display p {
    margin-bottom: 0.5rem;
}

.editorial-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem;
    font-size: 1rem;
    border: 1px solid #cccccc;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-submit {
    padding: 1rem 2.5rem;
    background-color: #8b5a3c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background-color: #5d3a26;
}

.form-submit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Final Thought */
.final-thought {
    margin: 4rem 0 2rem;
    padding: 2rem;
    background-color: #f5f5f5;
    font-style: italic;
}

/* Page Headers */
.page-header {
    margin-bottom: 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.subtitle {
    font-size: 1.125rem;
    color: #666666;
}

/* Services Page */
.services-grid {
    margin-top: 3rem;
}

.service-card {
    margin-bottom: 4rem;
    border-top: 2px solid #e0e0e0;
    padding-top: 2rem;
}

.service-card-image {
    margin-bottom: 1.5rem;
}

.service-card-image img {
    width: 100%;
}

.service-card-content h2 {
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-highlight {
    font-style: italic;
    color: #555555;
    margin: 1.5rem 0;
}

.service-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
}

.service-details h3 {
    font-size: 1.125rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-details ul {
    list-style-position: inside;
}

.cta-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #8b5a3c;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    margin-top: 0;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #8b5a3c;
    font-size: 1.125rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #f5f5f5;
}

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

.contact-card {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-detail {
    margin-top: 1.5rem;
}

.contact-detail h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #8b5a3c;
}

.contact-detail p {
    margin-bottom: 0;
}

.contact-map-section {
    margin: 3rem 0;
}

.map-placeholder {
    margin-top: 2rem;
    height: 400px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visit-note {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff8e1;
    border-left: 4px solid #ffa726;
}

.visit-note h2 {
    font-size: 1.375rem;
    margin-top: 0;
}

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

.thanks-content {
    padding: 3rem 1.5rem;
}

.thanks-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 2rem;
}

.service-confirmation {
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f5f5f5;
    border-left: 4px solid #8b5a3c;
    text-align: left;
    max-width: 500px;
}

.service-confirmation h2 {
    font-size: 1.375rem;
    margin-top: 0;
}

.thanks-next-steps {
    margin: 3rem auto;
    text-align: left;
    max-width: 600px;
}

.thanks-next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #8b5a3c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin-bottom: 0;
}

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

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #8b5a3c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #5d3a26;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.btn-secondary:hover {
    background-color: #cccccc;
}

/* Legal Pages */
.legal-content {
    text-align: left;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: #666666;
}

/* Footer */
.site-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

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

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

.footer-section a {
    color: #cccccc;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 1rem;
    text-align: center;
    color: #999999;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

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

.sticky-cta-button {
    display: block;
    padding: 1rem 2rem;
    background-color: #8b5a3c;
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #5d3a26;
    transform: translateY(-2px);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .editorial-container {
        padding: 3rem 2rem;
    }

    .editorial-title {
        font-size: 3rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 2rem;
        box-shadow: none;
    }

    .nav-menu li {
        margin-bottom: 0;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .service-editorial,
    .service-editorial.reverse {
        flex-direction: row;
        gap: 2rem;
    }

    .service-editorial.reverse {
        flex-direction: row-reverse;
    }

    .service-image {
        flex: 1;
        margin-bottom: 0;
    }

    .service-content {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

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

    .contact-info-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .editorial-container {
        max-width: 750px;
        padding: 4rem 2rem;
    }

    .contact-info-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .contact-card {
        flex: 1;
        min-width: 250px;
    }
}
