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

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #8b7355;
    --accent-color: #c9a87c;
    --text-color: #333;
    --light-bg: #f8f6f3;
    --white: #ffffff;
    --gray: #666;
    --light-gray: #e5e5e5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
}

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

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

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

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-color);
    font-size: 0.95rem;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}

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

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

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background: var(--light-bg);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-visual {
    flex: 1;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

.services-grid {
    padding: 6rem 5%;
    background: var(--light-bg);
}

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

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    margin-bottom: 0.8rem;
}

.service-info p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary,
.btn-submit,
.btn-select-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

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

.btn-select-service {
    background: var(--primary-color);
    color: var(--white);
    width: 100%;
}

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

.btn-submit {
    background: var(--secondary-color);
    color: var(--white);
    width: 100%;
}

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

.cta-split {
    display: flex;
    align-items: stretch;
}

.cta-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-visual {
    flex: 1;
    overflow: hidden;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-split {
    padding: 4rem 5%;
    background: var(--white);
}

.testimonial-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.testimonial-item.reverse {
    flex-direction: row-reverse;
}

.testimonial-text {
    flex: 1.5;
}

.testimonial-text p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
}

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

.testimonial-image {
    flex: 1;
    border-radius: 50%;
    overflow: hidden;
    width: 180px;
    height: 180px;
}

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

.form-section-split {
    display: flex;
    align-items: stretch;
}

.form-visual {
    flex: 1;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    flex: 1;
    padding: 5rem 5%;
    background: var(--light-bg);
}

.form-intro {
    color: var(--gray);
    margin-bottom: 2.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

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

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

.footer-split {
    background: var(--primary-color);
    color: var(--white);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem 5%;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.2rem;
}

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

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 5%;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

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

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

.story-split,
.philosophy-split {
    display: flex;
    align-items: stretch;
    padding: 0;
}

.philosophy-split.reverse {
    flex-direction: row-reverse;
}

.story-content,
.philosophy-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-visual,
.philosophy-visual {
    flex: 1;
    overflow: hidden;
}

.story-visual img,
.philosophy-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.credentials-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.credentials-grid {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.credential-item {
    flex: 1;
    padding: 2rem;
    background: var(--white);
}

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

.credential-item p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.values-split {
    display: flex;
    align-items: stretch;
}

.values-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.values-visual {
    flex: 1;
    overflow: hidden;
}

.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.value-item h3 {
    color: var(--secondary-color);
}

.cta-about {
    padding: 5rem 5%;
    background: var(--primary-color);
    text-align: center;
}

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

.cta-about .cta-content h2 {
    color: var(--white);
}

.cta-about .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.services-hero {
    padding: 4rem 5% 3rem;
    background: var(--light-bg);
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--light-gray);
}

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

.service-detail-visual {
    flex: 1;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.service-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.service-benefits {
    list-style: none;
    margin: 1.5rem 0 2.5rem;
}

.service-benefits li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.faq-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

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

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

.booking-cta-section .cta-content h2 {
    color: var(--white);
}

.booking-cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero {
    padding: 4rem 5% 3rem;
    background: var(--light-bg);
}

.contact-split {
    display: flex;
    align-items: stretch;
}

.contact-info-block {
    flex: 1;
    padding: 5rem 5%;
    background: var(--white);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

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

.contact-details p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-note {
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map-block {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.map-placeholder {
    position: relative;
    height: 100%;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(44, 44, 44, 0.9);
    color: var(--white);
    padding: 1rem 1.5rem;
}

.contact-approach {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.approach-content.centered {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.approach-steps {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.approach-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.approach-step h3 {
    margin-bottom: 0.8rem;
}

.approach-step p {
    color: var(--gray);
}

.service-area {
    padding: 5rem 5%;
    background: var(--white);
}

.area-content {
    max-width: 800px;
    margin: 2rem auto 0;
}

.area-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.quick-contact-cta .cta-content h2 {
    color: var(--white);
}

.quick-contact-cta .cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

.thanks-section {
    padding: 6rem 5%;
    background: var(--light-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.service-confirmation {
    background: var(--white);
    padding: 2rem;
    margin: 2rem 0;
}

.selected-service-display h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

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

.thanks-next-steps h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: var(--white);
    padding: 1.5rem;
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.step-text h3 {
    margin-bottom: 0.5rem;
}

.step-text p {
    color: var(--gray);
    margin: 0;
}

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

.thanks-testimonial {
    padding: 5rem 5%;
    background: var(--white);
}

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

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-page {
    padding: 4rem 5%;
    background: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    color: var(--secondary-color);
}

.legal-content h3 {
    margin-top: 1.5rem;
    color: var(--text-color);
}

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

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

.legal-content a {
    text-decoration: underline;
}

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

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

.gdpr-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--secondary-color);
}

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

    h2 {
        font-size: 1.8rem;
    }

    .hero-split,
    .intro-split,
    .cta-split,
    .form-section-split,
    .story-split,
    .philosophy-split,
    .values-split,
    .contact-split,
    .service-detail-split,
    .page-hero-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .philosophy-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-visual,
    .intro-visual,
    .cta-visual,
    .form-visual,
    .story-visual,
    .philosophy-visual,
    .values-visual,
    .service-detail-visual {
        min-height: 400px;
    }

    .testimonial-item,
    .testimonial-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-image {
        margin: 0 auto;
    }

    .credentials-grid {
        flex-direction: column;
    }

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

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

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--light-gray);
        padding: 0;
    }

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

    .nav-links a {
        padding: 1rem 5%;
        border-top: 1px solid var(--light-gray);
    }

    .nav-toggle {
        display: block;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .service-card {
        min-width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}
