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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b4513;
    --accent-color: #d4af37;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #ffffff;
    --bg-alt: #f8f6f3;
    --border-color: #e0d8ce;
    --link-color: #8b4513;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

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

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

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

p {
    margin-bottom: 1.5rem;
}

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

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

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

.nav-main {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Georgia', serif;
}

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

.nav-links a {
    color: var(--text-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.main-content {
    max-width: 100%;
}

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

.hero-editorial {
    padding: 4rem 0;
    background-color: var(--bg-alt);
}

.hero-text-center {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
}

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

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

.intro-story {
    padding: 5rem 0;
}

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

.inline-cta {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 3px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.story-section {
    padding: 4rem 0;
    background-color: var(--bg-alt);
}

.inline-image {
    margin: 3rem 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.inline-image img {
    width: 100%;
    border-radius: 2px;
}

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

.trust-builder {
    padding: 5rem 0;
}

.trust-points {
    margin-top: 3rem;
}

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

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

.trust-item h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

.testimonials-inline {
    padding: 5rem 0;
    background-color: var(--bg-alt);
}

blockquote {
    margin: 3rem 0;
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    background-color: white;
    font-style: italic;
    font-size: 1.1rem;
}

blockquote p {
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
}

.services-preview {
    padding: 5rem 0;
}

.service-cards {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.service-card {
    margin-bottom: 4rem;
    background-color: var(--bg-alt);
    border-radius: 4px;
    overflow: hidden;
}

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

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    margin-top: 0;
    font-size: 1.6rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
}

.why-different {
    padding: 5rem 0;
    background-color: var(--bg-alt);
}

.booking-form-section {
    padding: 5rem 0;
}

.booking-form {
    margin-top: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: inherit;
    font-size: 1rem;
}

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

.btn-submit {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}

.final-thought {
    padding: 5rem 0;
    background-color: var(--bg-alt);
    text-align: center;
}

.final-thought .content-narrow {
    text-align: center;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.sticky-cta-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-header {
    padding: 4rem 0 2rem;
    background-color: var(--bg-alt);
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.about-story {
    padding: 3rem 0;
}

.mission {
    padding: 4rem 0;
    background-color: var(--bg-alt);
}

.team {
    padding: 4rem 0;
}

.team-members {
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.values {
    padding: 4rem 0;
    background-color: var(--bg-alt);
}

.value-items {
    margin-top: 3rem;
}

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

.value-item h3 {
    margin-top: 0;
}

.journey-stats {
    padding: 4rem 0;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: space-around;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 1rem;
}

.philosophy {
    padding: 4rem 0;
    background-color: var(--bg-alt);
}

.cta-section {
    padding: 5rem 0;
    text-align: center;
}

.cta-section .content-narrow {
    text-align: center;
}

.services-detailed {
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.service-detail {
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid var(--border-color);
}

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

.service-image-large {
    margin-bottom: 2rem;
}

.service-image-large img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
}

.service-duration {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-description {
    margin: 2rem 0;
}

.service-includes {
    background-color: var(--bg-alt);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.service-includes h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.service-includes ul {
    list-style-position: inside;
    margin-left: 0;
}

.service-includes li {
    margin-bottom: 0.7rem;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 2rem 0 1.5rem;
}

.contact-info {
    padding: 3rem 0;
}

.contact-details {
    margin-top: 2rem;
}

.contact-block {
    margin-bottom: 4rem;
}

.contact-block h2 {
    margin-top: 0;
    font-size: 1.6rem;
}

.contact-block address {
    font-style: normal;
    line-height: 1.8;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    margin-bottom: 0.7rem;
}

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.faq-section {
    padding: 4rem 0;
    background-color: var(--bg-alt);
}

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

.faq-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.visit-section {
    padding: 4rem 0;
}

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

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

.thanks-message {
    margin-top: 3rem;
}

.service-confirmation {
    background-color: var(--bg-alt);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    margin-top: 2rem;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--secondary-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.steps-list strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.thanks-note {
    background-color: #fff8e7;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
}

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

.while-you-wait {
    padding: 4rem 0;
    background-color: var(--bg-alt);
}

.wait-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.wait-card {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 2rem;
    border-radius: 4px;
}

.wait-card h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.wait-card a {
    font-weight: 600;
}

.legal-page {
    padding: 3rem 0;
}

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

.legal-section h2 {
    margin-top: 0;
    font-size: 1.8rem;
}

.legal-section h3 {
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.7rem;
}

.legal-section address {
    font-style: normal;
    line-height: 1.8;
    margin: 1rem 0;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

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

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

th {
    background-color: var(--bg-alt);
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

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

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

    .content-narrow {
        padding: 0 1.5rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

    .team-members {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .wait-cards {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 1.7rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.4rem;
        font-size: 0.9rem;
    }
}
