:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-color: #1a1a1a;
    --text-light: #4a4a4a;
    --background: #ffffff;
    --background-light: #f8f6f3;
    --border-color: #e0ddd8;
    --link-color: #6b5d4f;
    --link-hover: #8b7355;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background);
    font-size: 18px;
}

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

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

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

h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--link-hover);
}

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

li {
    margin-bottom: 0.5rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    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;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

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

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

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

.minimal-nav {
    padding: 1.5rem 5%;
    background-color: var(--background);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.story-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 4rem 5%;
    color: white;
}

.story-title {
    font-size: 3.5rem;
    max-width: 900px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.story-subtitle {
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    font-weight: 300;
    max-width: 700px;
    opacity: 0.95;
}

.story-content {
    padding: 4rem 5% 6rem;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.content-image {
    margin: 3rem 0;
    width: 100%;
}

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

.content-image figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.inline-cta {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--secondary-color);
    text-align: center;
}

.inline-cta-secondary {
    margin: 3rem 0;
    text-align: center;
    padding: 2rem 0;
}

.cta-question {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.cta-link-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.cta-link-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.testimonial-inline {
    margin: 3rem 2rem;
    padding: 2rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--accent-color);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.trust-markers {
    display: flex;
    justify-content: space-around;
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.trust-number {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.services-editorial {
    margin: 3rem 0;
}

.service-card {
    margin: 4rem 0;
    background-color: var(--background-light);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.service-includes {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-includes li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.service-price {
    margin: 2rem 0 1.5rem;
    padding: 1.5rem;
    background-color: var(--background);
    border-radius: 4px;
    text-align: center;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 0.5rem;
}

.price-detail {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-select-service {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.booking-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background-color: var(--background);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.editorial-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 5% 2rem;
    margin-top: 6rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.page-header {
    padding: 4rem 5%;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.header-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.principles-list {
    margin: 2rem 0;
}

.principle-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--secondary-color);
}

.principle-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

.faq-section {
    margin: 3rem 0;
}

.faq-item {
    margin: 2rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.visit-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

.cta-contact {
    margin: 4rem 0;
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

.cta-contact p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.thanks-content {
    padding: 6rem 5%;
}

.thanks-header {
    text-align: center;
    margin-bottom: 4rem;
}

.thanks-header h1 {
    color: var(--secondary-color);
}

.thanks-details {
    margin: 4rem 0;
}

.next-steps {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.step-content h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.service-reminder {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--accent-color);
    font-weight: 500;
}

.thanks-info {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

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

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.legal-page .content-narrow {
    max-width: 900px;
}

.legal-update {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

.legal-page h2 {
    color: var(--primary-color);
}

.legal-page h3 {
    color: var(--secondary-color);
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--background-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    font-size: 0.95rem;
}

.included-items {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.included-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

.included-item h4 {
    margin-top: 0;
    color: var(--secondary-color);
}

.booking-process {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.booking-process li {
    counter-increment: step-counter;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    margin-bottom: 1.5rem;
    background-color: var(--background-light);
    border-radius: 4px;
    position: relative;
}

.booking-process li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background);
        flex-direction: column;
        padding: 1rem 5%;
        gap: 1rem;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-subtitle {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

    .trust-markers {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .service-card img {
        height: 250px;
    }

    .thanks-links {
        flex-direction: column;
    }

    .cta-link-secondary {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .story-hero {
        height: 50vh;
    }

    .hero-overlay {
        padding: 2rem 5%;
    }

    .story-title {
        font-size: 1.6rem;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .booking-process li {
        padding: 1.5rem 1rem 1.5rem 1rem;
        padding-top: 3.5rem;
    }

    .booking-process li::before {
        left: 50%;
        top: 1rem;
        transform: translateX(-50%);
    }
}