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

:root {
    --primary: #2c2c2c;
    --secondary: #8b7355;
    --accent: #d4a574;
    --light: #f7f5f2;
    --white: #ffffff;
    --gray: #666666;
    --border: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background: var(--white);
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

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

.nav-right a {
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--secondary);
}

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

.hero-left {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.hero-right {
    flex: 1;
    background: var(--light);
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary);
    color: var(--white);
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #735d45;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--secondary);
    font-weight: 500;
    border: 2px solid var(--secondary);
    border-radius: 4px;
    transition: all 0.3s;
}

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

.split-section {
    display: flex;
    padding: 6rem 5%;
}

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

.split-content {
    flex: 1;
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.2rem;
}

.split-visual {
    flex: 1;
    padding: 2rem;
}

.visual-card {
    height: 100%;
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.values-grid {
    display: flex;
    gap: 2rem;
    padding: 5rem 8%;
    background: var(--light);
}

.value-card {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
}

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

.value-card p {
    color: var(--gray);
}

.testimonial-split {
    display: flex;
    min-height: 60vh;
}

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

.testimonial-content blockquote p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.testimonial-image {
    flex: 1;
}

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

.services-showcase {
    padding: 6rem 5%;
    background: var(--white);
}

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

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.services-split-layout {
    margin-bottom: 4rem;
}

.service-major {
    display: flex;
    margin-bottom: 3rem;
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-visual {
    flex: 1;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--gray);
    margin-bottom: 1rem;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--light);
    border-radius: 8px;
}

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

.service-card p {
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #735d45;
}

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

.process-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.process-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.process-steps {
    display: flex;
    gap: 2rem;
}

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

.step-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

.cta-split-section {
    padding: 6rem 8%;
    background: var(--light);
}

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

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: var(--light);
    color: var(--gray);
}

.btn-submit {
    padding: 1rem;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #735d45;
}

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

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem 5%;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #735d45;
}

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

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

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

.about-text {
    flex: 1;
    padding: 4rem 8%;
}

.about-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.4rem;
    color: var(--gray);
}

.about-image {
    flex: 1;
}

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

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

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.philosophy-split {
    display: flex;
    min-height: 70vh;
}

.philosophy-left {
    flex: 1;
}

.philosophy-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.philosophy-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.philosophy-right p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.2rem;
}

.credentials {
    padding: 5rem 8%;
    background: var(--light);
    text-align: center;
}

.credentials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

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

.credential-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.credential-item p {
    color: var(--gray);
}

.approach-split {
    display: flex;
    padding: 5rem 5%;
}

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

.approach-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.approach-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.2rem;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.values-about {
    padding: 5rem 8%;
    background: var(--light);
}

.values-about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.values-split-layout {
    display: flex;
    gap: 2rem;
}

.value-block {
    flex: 1;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
}

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

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

.cta-about {
    padding: 5rem 8%;
}

.cta-box {
    text-align: center;
    padding: 4rem;
    background: var(--light);
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.services-hero {
    padding: 5rem 8%;
    text-align: center;
    background: var(--light);
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
}

.service-detail-split {
    display: flex;
    padding: 4rem 5%;
    border-bottom: 1px solid var(--border);
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.service-duration {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-detail-content > p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-detail-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.service-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.service-benefits li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--gray);
}

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

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

.service-note {
    font-size: 0.95rem;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.service-detail-image {
    flex: 1;
    padding: 2rem;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.faq-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--gray);
}

.contact-hero {
    padding: 5rem 8%;
    text-align: center;
    background: var(--light);
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
    color: var(--gray);
}

.contact-split {
    display: flex;
    padding: 5rem 5%;
}

.contact-info {
    flex: 1;
    padding: 2rem 4rem;
}

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

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

.contact-block p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

.contact-block a {
    color: var(--secondary);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-info-section {
    padding: 5rem 8%;
    background: var(--light);
}

.contact-info-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-steps {
    display: flex;
    gap: 2rem;
}

.contact-step {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.contact-step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.contact-cta {
    padding: 5rem 8%;
}

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

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

.thanks-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.service-confirmation {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: none;
}

.service-confirmation p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.thanks-next {
    font-size: 1.1rem;
    margin: 2rem 0;
}

.thanks-contact {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 8px;
}

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

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

.btn-primary {
    padding: 1rem 2rem;
    background: var(--secondary);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #735d45;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--gray);
}

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

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

@media (max-width: 968px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split,
    .split-section,
    .testimonial-split,
    .service-major,
    .philosophy-split,
    .approach-split,
    .contact-split,
    .about-hero-split,
    .service-detail-split {
        flex-direction: column;
    }

    .hero-left,
    .split-content,
    .service-info,
    .philosophy-right,
    .approach-content,
    .service-detail-content {
        padding: 2rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .values-grid,
    .process-steps,
    .credentials-grid,
    .values-split-layout,
    .contact-steps,
    .services-grid {
        flex-direction: column;
    }

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

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

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

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

@media (max-width: 600px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .split-content h2,
    .services-header h2,
    .process-intro h2 {
        font-size: 1.8rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .nav-right a {
        font-size: 0.9rem;
    }
}
