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

:root {
    --primary-color: #2a2522;
    --secondary-color: #8b7355;
    --accent-color: #c9a870;
    --text-dark: #1a1614;
    --text-light: #f4f1ed;
    --bg-light: #faf8f5;
    --bg-dark: #2a2522;
    --border-color: #d4cfc7;
}

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

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: var(--bg-dark);
    color: var(--text-light);
    flex-wrap: wrap;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    justify-content: flex-end;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--accent-color);
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--accent-color);
    border-radius: 3px;
    opacity: 0.9;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content-left {
    flex: 0 0 48%;
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-image-right {
    flex: 0 0 52%;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    cursor: pointer;
    border: none;
}

.cta-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    color: var(--text-dark);
}

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

.cta-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.intro-split {
    display: flex;
}

.intro-image-left {
    flex: 0 0 45%;
    overflow: hidden;
}

.intro-image-left img {
    width: 100%;
    height: 100%;
}

.intro-text-right {
    flex: 0 0 55%;
    padding: 5rem 5rem;
}

.intro-text-right p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.services-home {
    padding: 6rem 4rem;
    background-color: var(--bg-light);
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card-split {
    flex: 0 0 calc(33.333% - 2rem);
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-split:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    margin-bottom: 1.2rem;
    color: #555;
}

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

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

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

.booking-section-split {
    display: flex;
    background-color: #f0ede8;
}

.booking-content-left {
    flex: 0 0 40%;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-content-left p {
    font-size: 1.15rem;
    color: var(--secondary-color);
}

.booking-form-right {
    flex: 0 0 60%;
    padding: 5rem 5rem;
    background-color: white;
}

.booking-form {
    max-width: 550px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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: var(--secondary-color);
}

.form-group input[readonly] {
    background-color: #f5f3f0;
    cursor: not-allowed;
}

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

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

.why-us-split {
    display: flex;
}

.why-us-text-left {
    flex: 0 0 58%;
    padding: 5rem 5rem;
    background-color: white;
}

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

.feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.feature-item p {
    color: #555;
    font-size: 1.05rem;
}

.why-us-image-right {
    flex: 0 0 42%;
    overflow: hidden;
}

.why-us-image-right img {
    width: 100%;
    height: 100%;
}

.disclaimer-section {
    background-color: #fff9f0;
    padding: 3rem 4rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 4rem 4rem 2rem 4rem;
    background-color: var(--bg-dark);
    color: var(--text-light);
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.footer-column p,
.footer-column a {
    color: #c4beb6;
    font-size: 0.95rem;
    line-height: 1.8;
    display: block;
    margin-bottom: 0.6rem;
}

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

.footer-bottom {
    background-color: #1a1614;
    text-align: center;
    padding: 1.5rem;
    color: #8b8379;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 22, 20, 0.97);
    color: var(--text-light);
    padding: 1.8rem 3rem;
    z-index: 9999;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.3);
    display: none;
}

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

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

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

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

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

.btn-cookie-accept {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-cookie-accept:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

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

.page-hero-split {
    display: flex;
    min-height: 50vh;
    align-items: center;
}

.page-hero-content {
    flex: 0 0 45%;
    padding: 4rem 5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-content h1 {
    color: var(--text-light);
}

.page-hero-content p {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.page-hero-image {
    flex: 0 0 55%;
    overflow: hidden;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
}

.about-story-split {
    display: flex;
}

.story-image-left {
    flex: 0 0 40%;
    overflow: hidden;
}

.story-image-left img {
    width: 100%;
    height: 100%;
}

.story-text-right {
    flex: 0 0 60%;
    padding: 5rem 5rem;
}

.story-text-right p {
    margin-bottom: 1.5rem;
    font-size: 1.08rem;
}

.values-section {
    padding: 6rem 4rem;
    background-color: #f5f2ee;
}

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

.values-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 0 0 calc(50% - 1.25rem);
    background-color: white;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.team-split {
    display: flex;
}

.team-text-left {
    flex: 0 0 55%;
    padding: 5rem 5rem;
    background-color: white;
}

.team-text-left p {
    margin-bottom: 1.5rem;
    font-size: 1.08rem;
}

.team-image-right {
    flex: 0 0 45%;
    overflow: hidden;
}

.team-image-right img {
    width: 100%;
    height: 100%;
}

.philosophy-section {
    padding: 5rem 6rem;
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

.philosophy-content h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.philosophy-content p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    line-height: 1.9;
}

.cta-about-split {
    padding: 5rem 4rem;
    background-color: #f5f2ee;
}

.cta-about-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-about-content h2 {
    margin-bottom: 1.5rem;
}

.cta-about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-split {
    display: flex;
    margin-bottom: 0;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-content-left,
.service-detail-content-right {
    flex: 0 0 50%;
    padding: 5rem 5rem;
}

.service-detail-content-left {
    background-color: white;
}

.service-detail-content-right {
    background-color: white;
}

.service-detail-image-left,
.service-detail-image-right {
    flex: 0 0 50%;
    overflow: hidden;
}

.service-detail-image-left img,
.service-detail-image-right img {
    width: 100%;
    height: 100%;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.service-features {
    margin: 2rem 0 2.5rem 1.5rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 1.05rem;
}

.contact-info-split {
    display: flex;
}

.contact-details-left {
    flex: 0 0 50%;
    padding: 5rem 5rem;
    background-color: white;
}

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

.contact-block h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-block p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-map-right {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.map-placeholder {
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.map-placeholder p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.contact-cta-section {
    padding: 5rem 4rem;
    background-color: var(--primary-color);
    text-align: center;
}

.contact-cta-content h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: white;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 5rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.thanks-details {
    text-align: left;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f9f7f4;
    border-radius: 6px;
}

.thanks-details h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.thanks-details p {
    margin-bottom: 1rem;
    color: #555;
}

.service-selected {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.thanks-info {
    text-align: left;
    margin-bottom: 3rem;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    background-color: #fefdfb;
}

.thanks-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.thanks-info p {
    margin-bottom: 0.8rem;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 2rem;
    min-height: 60vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 4rem 4rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.legal-date {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-content p {
    margin-bottom: 1.3rem;
    color: #444;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    color: #444;
    line-height: 1.7;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .booking-section-split,
    .why-us-split,
    .about-story-split,
    .team-split,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

    .hero-content-left,
    .hero-image-right,
    .intro-image-left,
    .intro-text-right,
    .booking-content-left,
    .booking-form-right,
    .why-us-text-left,
    .why-us-image-right,
    .story-image-left,
    .story-text-right,
    .team-text-left,
    .team-image-right,
    .service-detail-content-left,
    .service-detail-content-right,
    .service-detail-image-left,
    .service-detail-image-right,
    .contact-details-left,
    .contact-map-right,
    .page-hero-content,
    .page-hero-image {
        flex: 0 0 100%;
    }

    .service-card-split {
        flex: 0 0 calc(50% - 1.25rem);
    }

    .value-card {
        flex: 0 0 100%;
    }

    .header-split {
        padding: 1.5rem 2rem;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

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

    h2 {
        font-size: 1.8rem;
    }

    .service-card-split {
        flex: 0 0 100%;
    }

    .hero-content-left,
    .intro-text-right,
    .booking-content-left,
    .booking-form-right,
    .why-us-text-left,
    .story-text-right,
    .team-text-left,
    .service-detail-content-left,
    .service-detail-content-right,
    .contact-details-left {
        padding: 3rem 2rem;
    }

    .footer-split {
        padding: 3rem 2rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.8rem;
    }

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

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

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

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