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

:root {
    --primary-color: #2c1810;
    --secondary-color: #8b6f47;
    --accent-color: #c9a86a;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.header-asymmetric {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-section .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-light);
    border-radius: 3px;
    margin-left: 1rem;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-image-block {
    width: 65%;
    position: relative;
    background-color: var(--bg-light);
}

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

.hero-text-offset {
    width: 35%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
    position: relative;
}

.hero-text-offset h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-text-offset p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

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

.intro-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-left {
    width: 50%;
    padding-right: 3rem;
}

.intro-left h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-right {
    width: 50%;
    position: relative;
    background-color: var(--bg-light);
}

.intro-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-preview-cards {
    background-color: var(--bg-light);
    padding: 6rem 2rem;
}

.section-header-irregular {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: left;
    padding-left: 10%;
}

.section-header-irregular h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cards-staggered {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.card-content {
    padding: 2rem;
}

.card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

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

.select-service {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.95rem;
}

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

.cta-inline {
    text-align: center;
    margin-top: 3rem;
}

.cta-inline a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.25rem;
    transition: border-color 0.3s ease;
}

.cta-inline a:hover {
    border-color: var(--primary-color);
}

.why-us-irregular {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.why-content-offset {
    padding-left: 15%;
}

.why-content-offset h3 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.reason-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 700px;
}

.booking-form-section {
    background-color: var(--bg-light);
    padding: 6rem 2rem;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.form-intro h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1.05rem;
    color: var(--text-light);
}

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

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

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

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

.btn-submit {
    padding: 1.125rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

.testimonials-offset {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.testimonials-offset h3 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-name {
    font-weight: 600;
    color: var(--secondary-color);
    font-style: normal;
}

.footer-asymmetric {
    background-color: var(--primary-color);
    color: var(--bg-light);
    padding: 4rem 2rem 2rem;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--bg-light);
    opacity: 0.9;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--bg-light);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--bg-light);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.copyright {
    font-size: 0.9rem;
    color: var(--bg-light);
    opacity: 0.8;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

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

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

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

.page-hero-services {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    text-align: left;
}

.hero-content-left {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 10%;
}

.hero-content-left h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-content-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.duration {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

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

.booking-cta-section h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.booking-cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-hero-text {
    width: 40%;
}

.about-hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-hero-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
}

.about-hero-image {
    width: 60%;
    background-color: var(--bg-light);
}

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

.mission-irregular {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.mission-content h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.values-stacked {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.values-stacked h3 {
    max-width: 1200px;
    margin: 0 auto 3rem;
    font-size: 2.4rem;
    color: var(--primary-color);
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.team-intro {
    margin-bottom: 3rem;
}

.team-intro h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-layout {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.team-member h4 {
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.team-member .role {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0 1.5rem 1rem;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    padding: 0 1.5rem 1.5rem;
}

.philosophy-block {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.philosophy-text h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-about {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.cta-about h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-hero {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-info-layout {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details-block {
    flex: 1;
}

.detail-item {
    margin-bottom: 3rem;
}

.detail-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.detail-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-image-block {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-image-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.visit-info {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.visit-info h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.visit-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.directions-section {
    background-color: var(--bg-light);
    padding: 4rem 2rem;
}

.directions-section h3 {
    max-width: 1000px;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.directions-section p {
    max-width: 1000px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.booking-reminder {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.booking-reminder h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.booking-reminder p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.what-next {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.what-next h3 {
    max-width: 1200px;
    margin: 0 auto 3rem;
    font-size: 2.4rem;
    color: var(--primary-color);
    text-align: center;
}

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

.step-item {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.step-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-page h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.legal-content h4 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.875rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

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

.cookies-table td {
    font-size: 0.95rem;
    color: var(--text-dark);
}

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

    .hero-image-block,
    .hero-text-offset {
        width: 100%;
    }

    .intro-offset {
        flex-direction: column;
    }

    .intro-left,
    .intro-right {
        width: 100%;
        padding-right: 0;
    }

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

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

    .about-hero-offset {
        flex-direction: column;
    }

    .about-hero-text,
    .about-hero-image {
        width: 100%;
    }

    .contact-info-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }

    .hero-text-offset h2 {
        font-size: 2rem;
    }

    .service-card {
        width: 100%;
    }

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

    .form-container-asymmetric {
        padding: 2rem;
    }

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