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

:root {
    --color-primary: #2c1810;
    --color-secondary: #8b6f47;
    --color-accent: #d4a574;
    --color-bg: #f8f6f3;
    --color-text: #1a1a1a;
    --color-text-light: #666;
    --color-white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background-color: var(--color-accent);
    color: var(--color-primary);
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.btn-cookie.btn-secondary:hover {
    background-color: rgba(212, 165, 116, 0.1);
}

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

.header-asymmetric {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo-container a {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.main-asymmetric {
    position: relative;
}

.hero-offset {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    min-height: 85vh;
    position: relative;
}

.hero-content-left {
    flex: 0 0 45%;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-white);
    position: relative;
    z-index: 2;
}

.hero-title-large {
    font-size: 72px;
    line-height: 0.95;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 480px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d8cfc5;
}

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

.intro-diagonal {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-block-offset {
    flex: 0 0 55%;
    padding: 60px;
    background-color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateX(-40px);
}

.intro-block-offset h2 {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-block-offset p {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    position: relative;
    background-color: #e8e0d8;
}

.intro-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.services-creative {
    max-width: 1500px;
    margin: 100px auto;
    padding: 80px 40px;
}

.section-title-offset {
    font-size: 56px;
    color: var(--color-primary);
    margin-bottom: 60px;
    font-weight: 800;
    margin-left: 60px;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: var(--color-white);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.card-large {
    flex: 0 0 calc(60% - 15px);
}

.card-medium {
    flex: 0 0 calc(40% - 15px);
}

.card-small {
    flex: 0 0 calc(33.333% - 20px);
}

.service-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #d8cfc5;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: 26px;
    color: var(--color-primary);
    margin-bottom: 14px;
    font-weight: 700;
}

.service-info p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    flex: 1;
    font-size: 16px;
}

.price-tag {
    font-size: 32px;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 28px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 15px;
}

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

.booking-section-offset {
    max-width: 1200px;
    margin: 100px auto 100px 120px;
    padding: 80px 60px;
    background-color: var(--color-white);
    box-shadow: 0 15px 60px rgba(0,0,0,0.12);
}

.booking-container h2 {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.booking-intro {
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-size: 17px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text);
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

.btn-submit {
    padding: 16px 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.experience-overlap {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.experience-text {
    flex: 0 0 50%;
    padding: 50px;
    position: relative;
}

.experience-text h2 {
    font-size: 44px;
    color: var(--color-primary);
    margin-bottom: 28px;
    font-weight: 700;
}

.experience-text p {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.experience-image-float {
    flex: 1;
    position: relative;
    background-color: #e8e0d8;
}

.experience-image-float img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: translateY(-40px);
}

.footer-asymmetric {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 80px 40px 30px;
    margin-top: 120px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-block {
    flex: 1;
}

.footer-left {
    flex: 1.5;
}

.footer-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
    color: var(--color-accent);
}

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

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

.footer-block ul li a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: var(--color-accent);
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left {
        flex: none;
        padding: 60px 40px;
    }

    .hero-title-large {
        font-size: 52px;
    }

    .intro-diagonal {
        flex-direction: column;
        gap: 40px;
    }

    .intro-block-offset {
        transform: none;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 0 0 100%;
    }

    .experience-overlap {
        flex-direction: column;
    }

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

.about-hero-diagonal {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.about-content-offset {
    padding: 100px 80px 100px 120px;
    background-color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 900px;
}

.about-content-offset h1 {
    font-size: 64px;
    color: var(--color-primary);
    margin-bottom: 30px;
    font-weight: 800;
}

.about-lead {
    font-size: 22px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.story-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.story-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text-block {
    flex: 0 0 55%;
    padding: 40px;
}

.story-text-block h2 {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 28px;
    font-weight: 700;
}

.story-text-block p {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image-float {
    flex: 1;
    background-color: #e8e0d8;
}

.story-image-float img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.values-asymmetric {
    max-width: 1500px;
    margin: 120px auto;
    padding: 80px 40px;
    background-color: var(--color-white);
}

.values-asymmetric h2 {
    font-size: 52px;
    color: var(--color-primary);
    margin-bottom: 60px;
    font-weight: 800;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: var(--color-bg);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.value-offset-1 {
    transform: translateY(-20px);
}

.value-offset-2 {
    transform: translateY(20px);
}

.value-offset-3 {
    transform: translateY(-10px);
}

.value-card h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.team-visual {
    position: relative;
    max-width: 1600px;
    margin: 100px auto;
    height: 600px;
}

.team-image-section {
    width: 100%;
    height: 100%;
    background-color: #d8cfc5;
}

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

.team-text-overlay {
    position: absolute;
    right: 60px;
    bottom: -40px;
    max-width: 550px;
    padding: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.team-text-overlay h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-text-overlay p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.philosophy-split {
    max-width: 1400px;
    margin: 140px auto 100px;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.philosophy-left {
    flex: 0 0 45%;
    background-color: #e8e0d8;
}

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

.philosophy-right {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-right h2 {
    font-size: 44px;
    color: var(--color-primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.philosophy-right p {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-page-hero {
    max-width: 1400px;
    margin: 60px auto;
    padding: 80px 40px;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 64px;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-weight: 800;
}

.services-page-hero p {
    font-size: 20px;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-full-section {
    max-width: 1600px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-hero-offset {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-content-block {
    padding: 80px 100px;
    background-color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateX(-60px);
}

.contact-content-block h1 {
    font-size: 56px;
    color: var(--color-primary);
    margin-bottom: 30px;
    font-weight: 800;
}

.contact-details {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.contact-info-left {
    flex: 0 0 55%;
    padding: 60px;
    background-color: var(--color-white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-info-left h2 {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 40px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 20px;
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item p {
    font-size: 17px;
    color: var(--color-text);
    line-height: 1.6;
}

.contact-map-right {
    flex: 1;
    background-color: #e8e0d8;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 80px 60px;
    background-color: var(--color-white);
    box-shadow: 0 15px 60px rgba(0,0,0,0.12);
    text-align: center;
}

.thanks-container h1 {
    font-size: 52px;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-weight: 800;
}

.thanks-container p {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-highlight {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-weight: 700;
    border-radius: 4px;
    margin: 20px 0;
}

.btn-back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 60px 40px;
    background-color: var(--color-white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.legal-page h1 {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page .last-updated {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--color-secondary);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 8px;
}

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-title-large {
        font-size: 42px;
    }

    .section-title-offset {
        font-size: 38px;
        margin-left: 0;
    }

    .booking-section-offset {
        margin: 60px 20px;
        padding: 40px 30px;
    }

    .story-container,
    .contact-details,
    .philosophy-split {
        flex-direction: column;
    }

    .team-text-overlay {
        position: static;
        margin-top: 40px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .about-content-offset {
        padding: 60px 40px;
    }

    .contact-content-block {
        transform: none;
        padding: 60px 40px;
    }
}