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

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

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

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

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

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

p {
    margin-bottom: 1.2rem;
}

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.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: 1rem;
}

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

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8b7355;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
}

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

.nav-link {
    font-size: 0.95rem;
    color: #5a5a5a;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #8b7355;
}

.ad-label {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #d4d4d4;
    background-color: #f5f5f5;
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    position: relative;
    padding-top: 6rem;
}

.hero-content-offset {
    flex: 1;
    padding: 4rem 3rem 4rem 8%;
    display: flex;
    align-items: center;
}

.hero-text-block {
    max-width: 550px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 12%;
    width: 45%;
    height: 70%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #a38667;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #8b7355;
    border: 2px solid #8b7355;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #8b7355;
    color: #ffffff;
}

.intro-story {
    padding: 6rem 10%;
    background-color: #f4f0eb;
}

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

.story-lead {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.insight-offset {
    display: flex;
    padding: 5rem 0;
    min-height: 600px;
}

.insight-image-left {
    width: 40%;
    background-size: cover;
    background-position: center;
    margin-left: 5%;
}

.insight-content-right {
    flex: 1;
    padding: 3rem 10% 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-cards-staggered {
    padding: 6rem 5%;
}

.section-header-creative {
    margin-left: 10%;
    margin-bottom: 4rem;
}

.section-header-creative h2 {
    font-size: 2.8rem;
}

.cards-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 0 3%;
}

.service-card {
    width: calc(33.333% - 2rem);
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 3rem;
}

.card-offset-3 {
    margin-top: 1.5rem;
}

.card-offset-4 {
    margin-top: 2.5rem;
}

.card-offset-5 {
    margin-top: 0.5rem;
}

.card-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 2rem;
}

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

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.cta-card {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-card:hover {
    background-color: #8b7355;
}

.trust-testimonials {
    padding: 5rem 10%;
    background-color: #e8e5e1;
}

.testimonial-block {
    max-width: 700px;
    margin-bottom: 3rem;
}

.testimonial-left {
    margin-left: 0;
}

.testimonial-right {
    margin-left: auto;
}

.testimonial-block blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    color: #3a3a3a;
}

.testimonial-block cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: #6a6a6a;
}

.approach-section {
    display: flex;
    min-height: 700px;
    position: relative;
}

.approach-content-overlap {
    width: 55%;
    padding: 5rem 8% 5rem 10%;
    display: flex;
    align-items: center;
    background-color: #faf9f7;
    z-index: 2;
}

.approach-text {
    max-width: 550px;
}

.approach-image {
    position: absolute;
    right: 0;
    top: 10%;
    width: 50%;
    height: 80%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-inline-section {
    padding: 5rem 10%;
    background-color: #d4c5b9;
    text-align: center;
}

.cta-inline-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-inline-content h2 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.cta-inline-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.form-section-asymmetric {
    padding: 6rem 10%;
    background-color: #f4f0eb;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 10%;
}

.form-container-offset h2 {
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
}

.booking-form {
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d4d4d4;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.cta-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-submit:hover {
    background-color: #a38667;
}

.footer-creative {
    background-color: #2c2c2c;
    color: #d4d4d4;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-block {
    flex: 1;
    min-width: 250px;
}

.footer-block h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-block h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-block p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-block ul li {
    margin-bottom: 0.7rem;
}

.footer-block ul li a {
    color: #d4d4d4;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #ffffff;
}

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #8b7355;
}

.disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

.page-hero-minimal {
    padding: 10rem 10% 4rem;
    text-align: center;
    background-color: #f4f0eb;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 4rem 5%;
}

.service-detail-item {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
    align-items: center;
}

.service-detail-item.layout-right {
    flex-direction: row;
}

.service-detail-item.layout-left {
    flex-direction: row-reverse;
}

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

.service-price-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-includes {
    list-style: none;
    margin: 2rem 0;
}

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

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: 700;
}

.service-detail-image {
    width: 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.cta-section-centered {
    padding: 5rem 10%;
    text-align: center;
    background-color: #e8e5e1;
}

.cta-section-centered h2 {
    margin-bottom: 1.5rem;
}

.cta-section-centered p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #5a5a5a;
}

.about-hero-offset {
    padding: 10rem 10% 5rem 15%;
    background-color: #f4f0eb;
}

.about-hero-text {
    max-width: 800px;
}

.about-lead {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.about-story-section {
    display: flex;
    padding: 5rem 0;
    min-height: 600px;
}

.story-block-left {
    flex: 1;
    padding: 3rem 5% 3rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-image-right {
    width: 45%;
    background-size: cover;
    background-position: center;
}

.values-section {
    padding: 5rem 10%;
    background-color: #e8e5e1;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #8b7355;
}

.approach-detail-section {
    padding: 5rem 10%;
}

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

.experience-section {
    display: flex;
    padding: 5rem 0;
    min-height: 600px;
}

.experience-image {
    width: 40%;
    background-size: cover;
    background-position: center;
}

.experience-content {
    flex: 1;
    padding: 3rem 10% 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-hero {
    padding: 10rem 10% 3rem;
    text-align: center;
    background-color: #f4f0eb;
}

.contact-intro {
    font-size: 1.2rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 4rem 10%;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 2rem;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #8b7355;
}

.contact-note {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
}

.contact-map-section {
    padding: 0 10% 4rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #5a5a5a;
}

.contact-additional {
    padding: 4rem 10%;
    background-color: #f4f0eb;
    max-width: 900px;
    margin: 0 auto;
}

.contact-additional h2 {
    margin-bottom: 1.5rem;
}

.contact-list {
    list-style: none;
    margin: 2rem 0;
}

.contact-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.contact-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: 700;
}

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

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

.thanks-content h1 {
    color: #8b7355;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

#service-confirmation {
    font-size: 1.1rem;
    color: #5a5a5a;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.legal-page {
    padding: 8rem 10% 4rem;
}

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

.legal-update {
    font-size: 0.95rem;
    color: #6a6a6a;
    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.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

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

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

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

    .service-card {
        width: calc(50% - 1.5rem);
    }

    .insight-offset,
    .about-story-section,
    .experience-section {
        flex-direction: column;
    }

    .insight-image-left,
    .story-image-right,
    .experience-image {
        width: 100%;
        height: 400px;
        margin: 0;
    }

    .service-detail-item,
    .service-detail-item.layout-left {
        flex-direction: column;
    }

    .service-detail-image {
        width: 100%;
    }

    .approach-section {
        flex-direction: column;
    }

    .approach-content-overlap {
        width: 100%;
    }

    .approach-image {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }
}

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

    h2 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .service-card {
        width: 100%;
    }

    .cards-grid-asymmetric {
        gap: 2rem;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5 {
        margin-top: 0;
    }

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

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

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