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

:root {
    --primary-color: #9b7a5c;
    --secondary-color: #2d2d2d;
    --accent-color: #d4b896;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --background-light: #faf8f6;
    --background-white: #ffffff;
    --border-color: #e5e5e5;
    --success-color: #6a9e7a;
}

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

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.brand-mark {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    background-color: var(--background-light);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.hero-premium {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    background-color: var(--background-light);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--background-white);
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.95;
}

.intro-minimal {
    padding: 8rem 0;
    background-color: var(--background-white);
}

.intro-minimal h2 {
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.intro-minimal p {
    font-size: 1.15rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.services-showcase {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.services-grid-minimal {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-card-large {
    display: flex;
    gap: 4rem;
    align-items: center;
    background-color: var(--background-white);
    padding: 3rem;
    border-radius: 2px;
}

.service-card-large:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 0;
    background-color: var(--background-light);
    border-radius: 2px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    min-width: 0;
}

.service-info h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

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

.price {
    display: block;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

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

.booking-form-section {
    padding: 8rem 0;
    background-color: var(--background-white);
}

.booking-form-section h2 {
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    font-family: inherit;
    background-color: var(--background-white);
    transition: border-color 0.3s ease;
    border-radius: 2px;
}

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

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

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

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

.btn-submit:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
}

.trust-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

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

.trust-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

.disclaimer-section {
    padding: 4rem 0;
    background-color: var(--background-white);
}

.disclaimer-text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

.footer-minimal {
    background-color: var(--secondary-color);
    color: var(--background-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

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

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--background-white);
}

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
    border-radius: 2px;
    background-color: var(--primary-color);
    color: var(--background-white);
}

.btn-cookie:hover {
    opacity: 0.9;
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
}

.page-hero-minimal {
    padding: 6rem 0 3rem;
    background-color: var(--background-light);
}

.page-hero-minimal h1 {
    font-size: 3.5rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: -0.02em;
}

.about-story {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

.story-image {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 2px;
    overflow: hidden;
}

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

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

.values-section h2 {
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

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

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

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

.cta-simple {
    padding: 6rem 0;
    background-color: var(--background-white);
    text-align: center;
}

.cta-simple h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-radius: 2px;
    cursor: pointer;
}

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

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

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

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

.services-detailed {
    padding: 4rem 0;
    background-color: var(--background-white);
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 2px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.service-detail-content > p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-info-section {
    padding: 4rem 0 6rem;
    background-color: var(--background-white);
}

.contact-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

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

.contact-image {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 2px;
    overflow: hidden;
    min-height: 500px;
}

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

.thanks-section {
    padding: 8rem 0;
    background-color: var(--background-light);
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--success-color);
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.booking-summary {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 2px;
    margin-bottom: 2rem;
    display: none;
}

.booking-summary.show {
    display: block;
}

.booking-summary p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.booking-summary strong {
    color: var(--primary-color);
}

.thanks-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

.legal-page {
    padding: 4rem 0 6rem;
    background-color: var(--background-white);
}

.legal-page h1 {
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.legal-page h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.35rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .intro-minimal h2 {
        font-size: 2rem;
    }

    .service-card-large,
    .service-card-large:nth-child(even),
    .story-content,
    .service-detail-card,
    .service-detail-card.reverse,
    .contact-grid {
        flex-direction: column;
    }

    .service-info h3 {
        font-size: 1.5rem;
    }

    .booking-form-section h2 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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

    .values-section h2 {
        font-size: 2rem;
    }

    .cta-simple h2 {
        font-size: 2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }
}