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

/* Navigation - Minimal Style for Editorial Archetype */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0ddd8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 0.05em;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #999;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

/* Editorial Container - Narrow Centered for Article Feel */
.editorial-container {
    background-color: #ffffff;
    min-height: 100vh;
}

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

/* Hero Section - Editorial Style */
.hero-editorial {
    position: relative;
    margin: -3rem -2rem 4rem;
    height: 600px;
    background-color: #1a1a1a;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

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

.hero-text-overlay h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.25rem;
    color: #e0e0e0;
    font-style: italic;
}

/* Typography - Editorial Style */
h1, h2, h3 {
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 3rem;
}

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

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

/* Drop Cap for Editorial Feel */
.drop-cap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.85;
    margin: 0.1rem 0.15rem 0 0;
    font-weight: 400;
    color: #8b6f47;
}

/* Section Spacing */
.intro-section,
.story-section,
.insight-section,
.philosophy-section,
.approach-section,
.team-section,
.values-section {
    margin-bottom: 3.5rem;
}

/* Inline Images - Editorial Style */
.inline-image {
    margin: 3rem -2rem;
    background-color: #f5f5f5;
}

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

.image-caption {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-style: italic;
    color: #666;
    text-align: center;
}

/* Blockquotes - Editorial Style */
.editorial-quote {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid #8b6f47;
    border-bottom: 2px solid #8b6f47;
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: #333;
    text-align: center;
}

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

.section-intro {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

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

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

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

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

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

.service-content h3 {
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-details {
    font-size: 0.95rem;
    color: #666;
    margin: 1.5rem 0 1rem;
    font-style: italic;
}

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

.select-service-btn {
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 2px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.select-service-btn:hover {
    background-color: #6d5638;
    transform: translateY(-2px);
}

.select-service-btn:active {
    transform: translateY(0);
}

/* CTA Inline - Editorial Style */
.cta-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f6f3;
    border-left: 4px solid #8b6f47;
    text-align: center;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.cta-link {
    display: inline-block;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    padding: 0.875rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-link:hover {
    background-color: #6d5638;
    transform: translateY(-2px);
}

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

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Testimonials - Editorial Style */
.testimonials-section {
    margin: 4rem 0;
}

.testimonial {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #fafafa;
    border-left: 3px solid #8b6f47;
}

.testimonial p:first-child {
    font-size: 1.125rem;
    line-height: 1.7;
    font-style: italic;
    color: #333;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

/* Form Section - Editorial Style */
.form-section {
    margin: 4rem 0;
    padding: 3rem 2.5rem;
    background-color: #f8f6f3;
    margin-left: -2rem;
    margin-right: -2rem;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.submit-btn:hover {
    background-color: #6d5638;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Disclaimer Section */
.disclaimer-section {
    margin: 4rem 0 3rem;
    padding: 2rem;
    background-color: #fff9e6;
    border: 1px solid #e6d9a3;
    border-radius: 2px;
}

.disclaimer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* References Section */
.references-section {
    margin: 4rem 0 3rem;
    padding: 2.5rem 2rem;
    background-color: #f5f5f5;
    margin-left: -2rem;
    margin-right: -2rem;
}

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

.references-list {
    list-style-position: outside;
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.references-list a {
    color: #8b6f47;
    text-decoration: none;
    word-break: break-all;
}

.references-list a:hover {
    text-decoration: underline;
}

.citation {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #6d5638;
    text-decoration: underline;
}

/* Page Header Styles */
.page-header {
    margin-bottom: 3rem;
}

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

/* About Page Styles */
.about-story {
    margin-bottom: 3.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: bold;
}

/* Services Page */
.services-intro {
    margin-bottom: 3rem;
}

.booking-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #f8f6f3;
    margin-left: -2rem;
    margin-right: -2rem;
}

.text-link {
    color: #8b6f47;
    text-decoration: none;
    border-bottom: 1px solid #8b6f47;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #6d5638;
}

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

.contact-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.contact-value {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0.5rem;
}

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

.contact-approach,
.visit-section {
    margin-bottom: 3rem;
}

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

.booking-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Thanks Page */
.thanks-section {
    margin: 3rem 0;
}

.thanks-content {
    margin: 3rem 0;
}

.thanks-lead {
    font-size: 1.5rem;
    color: #8b6f47;
    margin-bottom: 2rem;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #f0f8ff;
    border-left: 4px solid #8b6f47;
    margin: 2rem 0;
}

.service-confirmation.hidden {
    display: none;
}

.selected-service-display {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
}

.thanks-next-steps,
.thanks-resources {
    margin: 3rem 0;
}

.steps-list {
    list-style-position: outside;
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

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

.thanks-actions {
    text-align: center;
    margin: 3rem 0;
}

/* Legal Pages */
.legal-header {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0ddd8;
}

.last-updated {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

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

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

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

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

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

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

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

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

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

.footer-text {
    font-size: 0.9rem;
    color: #999;
}

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

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
}

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

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.cookie-btn.accept:hover {
    background-color: #6d5638;
    transform: translateY(-2px);
}

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

.cookie-btn.reject:hover {
    background-color: #444;
    transform: translateY(-2px);
}

.cookie-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-editorial {
        height: 400px;
    }

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

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

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .editorial-quote {
        font-size: 1.25rem;
    }

    .content-narrow {
        padding: 2rem 1.5rem 3rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .inline-image {
        margin: 2rem -1.5rem;
    }

    .service-card {
        margin: 0 -1.5rem;
    }

    .service-image {
        height: 300px;
    }

    .form-section,
    .references-section,
    .booking-section {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-editorial {
        height: 300px;
    }

    .hero-text-overlay {
        padding: 2rem 1.5rem 2rem;
    }

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

    .drop-cap::first-letter {
        font-size: 3.5rem;
    }

    .service-price {
        font-size: 1.5rem;
    }
}