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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fefefe;
}

.ad-disclosure {
    background-color: #f5f5f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0d8;
}

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.navigation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2d5016;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d5016;
}

.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e8e6dd;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #3a3a3a;
}

.content-narrow h2 {
    font-size: 32px;
    font-weight: 400;
    margin-top: 60px;
    margin-bottom: 25px;
    color: #2d5016;
}

.content-narrow h3 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.content-narrow p {
    margin-bottom: 24px;
    font-size: 17px;
}

.inline-image-section {
    margin: 50px 0;
}

.content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e6dd;
}

.image-caption {
    font-size: 14px;
    font-style: italic;
    color: #666;
    margin-top: 12px;
    text-align: center;
}

.cta-inline {
    margin: 45px 0;
    text-align: center;
}

.btn-text-link {
    color: #2d5016;
    text-decoration: none;
    font-size: 17px;
    border-bottom: 1px solid #2d5016;
    padding-bottom: 3px;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.btn-text-link:hover {
    opacity: 0.7;
}

.split-highlight {
    display: flex;
    gap: 40px;
    margin: 50px 0;
    align-items: flex-start;
}

.highlight-text {
    flex: 1;
}

.highlight-image {
    flex: 1;
}

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

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: #f9f8f5;
    border-left: 3px solid #2d5016;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-style: normal;
    color: #666;
}

.services-preview {
    margin: 50px 0;
    padding: 40px;
    background-color: #f9f8f5;
    text-align: center;
}

.services-preview h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.services-preview p {
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d5016;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3d6820;
}

.btn-secondary {
    background-color: #8a8a7a;
}

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

.form-section {
    margin: 50px 0;
    padding: 45px;
    background-color: #f9f8f5;
}

.reservation-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #3a3a3a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0c8;
    border-radius: 3px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #3d6820;
}

.disclaimer-text {
    margin-top: 60px;
    padding: 25px;
    background-color: #f5f5f0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    border-left: 3px solid #d0d0c8;
}

.page-header {
    text-align: center;
    padding: 80px 40px 40px;
    background-color: #f9f8f5;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #2d5016;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
}

.service-card {
    display: flex;
    gap: 40px;
    margin: 50px 0;
    padding: 40px;
    background-color: #f9f8f5;
    align-items: flex-start;
}

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

.service-content {
    flex: 1.2;
}

.service-image {
    flex: 1;
}

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

.service-features {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-size: 20px;
}

.service-pricing {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #d0d0c8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 15px;
    color: #666;
}

.price-amount {
    font-size: 28px;
    font-weight: 600;
    color: #2d5016;
}

.note-text {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 30px;
}

.contact-info-block {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f8f5;
}

.contact-address {
    font-size: 16px;
    line-height: 1.8;
}

.hours-grid {
    margin: 30px 0;
    background-color: #f9f8f5;
    padding: 30px;
}

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

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

.day-label {
    font-weight: 500;
    color: #3a3a3a;
}

.hours-value {
    color: #666;
}

.cta-section-centered {
    text-align: center;
    margin: 50px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.closing-text {
    font-size: 18px;
    font-style: italic;
    text-align: center;
    margin-top: 50px;
    color: #666;
}

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

.thanks-icon {
    margin: 40px auto;
}

.thanks-content {
    text-align: left;
    margin-top: 50px;
}

.info-list {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

.info-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.info-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5016;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.footer-main {
    background-color: #2a2a2a;
    color: #d0d0c8;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d0d0c8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 10px 24px;
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #3d6820;
}

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-text-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .content-narrow {
        padding: 40px 20px;
    }

    .split-highlight {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: stretch;
    }

    .btn-cookie {
        flex: 1;
    }
}