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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c9a87c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

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

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

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

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

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
    padding: 0.4rem;
    font-size: 0.75rem;
    z-index: 9999;
    letter-spacing: 0.5px;
}

.nav-floating {
    position: fixed;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px var(--shadow-light);
    z-index: 1000;
    width: 90%;
    max-width: 1100px;
}

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

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

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

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

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

.nav-links a:hover::after {
    width: 100%;
}

.hero-asymmetric {
    margin-top: 8rem;
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 4rem 5%;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    max-width: 550px;
    padding-right: 3rem;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-content-offset p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -5%;
}

.hero-image-overlap img {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--shadow-medium);
    background-color: var(--bg-light);
}

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.cta-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

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

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

.intro-block {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.intro-narrow h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.intro-narrow p {
    font-size: 1.15rem;
    line-height: 1.9;
}

.services-offset {
    padding: 6rem 5%;
    position: relative;
}

.services-intro-left {
    max-width: 500px;
    margin-bottom: 4rem;
    padding-left: 8%;
}

.services-intro-left h2 {
    font-size: 3rem;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    padding: 0 3%;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    max-width: 450px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
}

.service-card:nth-child(even) {
    transform: translateY(40px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.service-card img {
    width: 100%;
    height: 260px;
    background-color: var(--bg-light);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

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

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

.select-service.selected {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.philosophy-split {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    gap: 5rem;
    background-color: var(--bg-light);
}

.philosophy-text {
    flex: 1;
    padding-left: 5%;
}

.philosophy-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.philosophy-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.philosophy-visual {
    flex: 1;
    position: relative;
    margin-right: -8%;
}

.philosophy-visual img {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 15px 50px var(--shadow-medium);
    background-color: var(--bg-white);
}

.form-section-centered {
    padding: 7rem 5%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow-light);
}

.form-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

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

.form-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.trust-inline {
    padding: 6rem 5%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h3 {
    font-size: 2.5rem;
    color: var(--bg-white);
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-flow {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonials-flow blockquote {
    flex: 1 1 300px;
    max-width: 380px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.testimonials-flow p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--bg-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonials-flow cite {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-style: normal;
    font-weight: 600;
}

.products-showcase {
    padding: 6rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.products-header {
    flex: 1;
    padding-right: 3rem;
}

.products-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.products-visual {
    flex: 1;
    margin-left: -5%;
}

.products-visual img {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 15px 50px var(--shadow-medium);
    background-color: var(--bg-light);
}

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

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1;
    max-width: 400px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 20px var(--shadow-light);
    padding: 2rem 5%;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

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

.btn-reject:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-header-offset {
    margin-top: 10rem;
    padding: 3rem 5% 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.page-header-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header-offset p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 4rem 5%;
}

.story-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 6rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow-light);
    background-color: var(--bg-light);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

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

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    max-width: 500px;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-light);
}

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

.value-item p {
    font-size: 1rem;
    line-height: 1.8;
}

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

.cta-about h2 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.cta-about p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

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

.service-detail-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 6rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 16px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

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

.service-includes li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow-light);
    background-color: var(--bg-white);
}

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

.booking-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.booking-cta p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.contact-layout {
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto;
}

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

.contact-info-block h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.email-display {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-note {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    margin-top: 3rem;
}

.contact-note p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 15px 50px var(--shadow-medium);
    background-color: var(--bg-light);
}

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

.location-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.location-section p {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

.thanks-main {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.booking-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.booking-summary p {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.thanks-next {
    margin-bottom: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.thanks-next ul {
    list-style: none;
}

.thanks-next ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
}

.thanks-next ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

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

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 3rem 5%;
    }

    .hero-content-offset {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-content-offset h1 {
        font-size: 3rem;
    }

    .hero-image-overlap {
        margin-left: 0;
        width: 100%;
    }

    .services-grid-irregular {
        gap: 2rem;
    }

    .service-card:nth-child(even) {
        transform: translateY(0);
    }

    .philosophy-split,
    .products-showcase,
    .story-block,
    .contact-layout,
    .service-detail-block {
        flex-direction: column;
        gap: 3rem;
    }

    .philosophy-visual,
    .products-visual {
        margin-left: 0;
        margin-right: 0;
    }

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

    .footer-links {
        gap: 3rem;
    }
}

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

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

    .values-grid {
        gap: 2rem;
    }

    .value-item {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .thanks-actions {
        flex-direction: column;
        gap: 1rem;
    }

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