/* 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: #5c4a2e;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1.2rem;
}

ul, ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Container System - Editorial Narrow */
.container-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header - Minimal Editorial Style */
.header-minimal {
    padding: 1.5rem 0;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.nav-inline {
    display: flex;
    gap: 1.5rem;
}

.nav-inline a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-inline a:hover,
.nav-inline a.active {
    color: #1a1a1a;
}

/* Editorial Content Structure */
.editorial-content {
    padding-bottom: 4rem;
}

/* Hero Section - Editorial Style */
.hero-editorial {
    padding: 4rem 0 3rem;
    background-color: #fff;
}

.title-large {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.subtitle-hero {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    font-family: Georgia, serif;
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    margin-top: 2rem;
}

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

/* Text Sections */
.text-section {
    padding: 3rem 0;
    background-color: #fff;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
}

/* Inline Images */
.image-inline-section {
    padding: 3rem 0;
    background-color: #fff;
}

.inline-image {
    width: 100%;
    border-radius: 4px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: 3rem 0;
    background-color: #fafaf8;
}

/* Quote/Testimonial Section */
.quote-section {
    padding: 4rem 0;
    background-color: #f5f3f0;
}

.testimonial-quote {
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
    color: #444;
    border-left: 4px solid #8b6f47;
    padding-left: 2rem;
    margin: 0;
}

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

/* Benefits Section */
.benefits-editorial {
    padding: 3rem 0;
    background-color: #fff;
}

.benefits-list {
    margin-top: 2rem;
}

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

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

.benefit-item p {
    color: #555;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 3rem 0;
    background-color: #fafaf8;
}

/* Services Preview */
.services-preview {
    padding: 4rem 0;
    background-color: #fff;
}

.service-card-editorial {
    padding: 2rem 0;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 2rem;
}

.service-card-editorial:last-child {
    border-bottom: none;
}

.service-card-editorial h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-duration {
    font-size: 0.95rem;
    color: #888;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b6f47;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Services Detailed Page */
.services-detailed {
    padding: 3rem 0;
}

.service-detail-card {
    background: #fff;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e8e8e8;
}

.service-detail-card:last-child {
    border-bottom: none;
}

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

.service-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 1.1rem;
    color: #888;
    font-style: italic;
}

.service-image-wrapper {
    margin: 2rem 0;
}

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

.service-body {
    margin-top: 2rem;
}

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

.service-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f5f3f0;
    border-radius: 4px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.detail-label {
    font-weight: 600;
    color: #666;
}

.detail-value {
    color: #1a1a1a;
    font-weight: 500;
}

.price-highlight {
    font-size: 1.5rem;
    color: #8b6f47;
    font-weight: 700;
}

.service-note {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin: 1.5rem 0;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background-color: #fafaf8;
}

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

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

.faq-item p {
    color: #555;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background-color: #fff;
}

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

.contact-info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.contact-link {
    color: #8b6f47;
    font-weight: 500;
}

.contact-note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 1rem;
    line-height: 1.6;
}

.hours-table {
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
    color: #333;
}

.hours-time {
    color: #666;
}

/* Map Section */
.map-section {
    padding: 3rem 0;
    background-color: #fafaf8;
}

.transport-info h3 {
    font-size: 1.2rem;
    margin: 2rem 0 0.8rem 0;
}

.transport-info h3:first-child {
    margin-top: 1rem;
}

.transport-info p {
    color: #555;
    margin-bottom: 1rem;
}

/* Visit Section */
.visit-section {
    padding: 3rem 0;
    background-color: #fff;
}

.faq-contact-section {
    padding: 3rem 0;
    background-color: #fafaf8;
}

/* Team Section */
.team-section {
    padding: 3rem 0;
    background-color: #fff;
}

.team-member {
    margin-bottom: 3rem;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.team-member p {
    color: #555;
    margin-bottom: 1rem;
}

/* Values Section */
.values-section {
    padding: 3rem 0;
    background-color: #fafaf8;
}

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

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.value-item p {
    color: #555;
}

/* CTA Sections */
.cta-inline {
    margin: 2rem 0;
}

.cta-section {
    padding: 4rem 0;
    background-color: #8b6f47;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.final-cta-section {
    padding: 4rem 0;
    background-color: #f5f3f0;
    text-align: center;
}

.final-cta-section h2 {
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #8b6f47;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #8b6f47;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #8b6f47;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-text-link {
    display: inline-block;
    color: #8b6f47;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.btn-text-link:hover {
    color: #5c4a2e;
}

/* Forms */
.reservation-section {
    padding: 4rem 0;
    background-color: #f5f3f0;
}

.form-editorial {
    margin-top: 2rem;
    max-width: 100%;
}

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

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

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 4rem 0 3rem;
    background-color: #fff;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: #8b6f47;
    color: #fff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.thanks-content {
    padding: 3rem 0;
    background-color: #fafaf8;
}

.thanks-info-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid #8b6f47;
}

.thanks-info-box h2 {
    margin-bottom: 1.5rem;
}

.thanks-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.thanks-steps li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    position: relative;
}

.thanks-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.8rem;
    height: 1.8rem;
    background-color: #8b6f47;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.thanks-contact-box {
    background-color: #f5f3f0;
    padding: 2rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.thanks-contact-box h3 {
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.2rem;
    font-weight: 500;
}

.thanks-service-reference {
    margin: 2rem 0;
}

.thanks-next-steps {
    padding: 3rem 0;
    background-color: #fff;
}

.next-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.next-step-card {
    padding: 1.5rem;
    background-color: #fafaf8;
    border-radius: 4px;
}

.next-step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.next-step-card p {
    color: #555;
    margin-bottom: 1rem;
}

.thanks-quote-section {
    padding: 4rem 0;
    background-color: #f5f3f0;
}

/* Legal Content */
.legal-content {
    background-color: #fff;
}

.legal-update {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin-top: 1rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 0;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    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;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e8e8e8;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

/* Footer */
.footer-minimal {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 3rem 0 1.5rem;
}

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

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul li a {
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: #999;
}

/* Responsive Design - Tablet and Up */
@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }

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

    .subtitle-hero {
        font-size: 1.4rem;
    }

    .nav-inline {
        gap: 2rem;
    }

    .hero-editorial {
        padding: 5rem 0 4rem;
    }

    .text-section,
    .story-section,
    .process-section {
        padding: 4rem 0;
    }

    .quote-section {
        padding: 5rem 0;
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-block {
        flex: 1 1 45%;
    }

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

    .footer-col {
        flex: 1 1 30%;
    }

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

    .cookie-content p {
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .next-steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .next-step-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .title-large {
        font-size: 3.5rem;
    }

    .subtitle-hero {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 1.4rem;
    }

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

    .next-step-card {
        flex: 1 1 calc(33.333% - 1.33rem);
    }
}
