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

:root {
    --primary-color: #8B7355;
    --secondary-color: #5A4A3A;
    --accent-color: #A0826D;
    --text-color: #2C2416;
    --text-light: #6B5D4F;
    --bg-light: #F8F6F3;
    --bg-white: #FFFFFF;
    --border-color: #E0D5C7;
    --success-color: #4A7C59;
    --error-color: #B85450;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    flex-wrap: wrap;
}

.brand {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 4px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 15px;
    transition: color 0.2s;
}

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

.hero-section {
    margin-top: 0;
}

.hero-image {
    height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    padding: 48px 32px;
    max-width: 700px;
    text-align: center;
    color: var(--bg-white);
}

.hero-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    line-height: 1.5;
}

.intro-cards {
    padding: 80px 0;
    background: var(--bg-light);
}

.card-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.intro-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.story-section {
    padding: 80px 0;
}

.story-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.story-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

.services-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary-color);
    font-weight: 600;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 320px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

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

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
    flex-grow: 1;
}

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

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

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

.testimonials-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

.testimonial-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
    color: var(--text-color);
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.form-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.form-card > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

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

.btn-submit {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

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

.final-cta {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background: var(--bg-white);
    color: var(--secondary-color);
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-cta:hover {
    transform: scale(1.05);
}

.main-footer {
    background: var(--text-color);
    color: var(--bg-light);
    padding: 48px 0 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-bottom: 32px;
}

.footer-section {
    flex: 1;
    min-width: 240px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--bg-light);
    margin-bottom: 8px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--bg-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    line-height: 1.6;
    color: var(--bg-light);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 20px 24px;
    font-size: 13px;
    color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-header {
    padding: 64px 0;
    background: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
}

.about-content {
    padding: 80px 0;
}

.about-block {
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-block.reverse {
    flex-direction: column-reverse;
}

.about-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.text-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

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

.philosophy-section {
    margin-top: 64px;
    padding: 48px;
    background: var(--bg-light);
    border-radius: 8px;
}

.philosophy-section h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--secondary-color);
}

.philosophy-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 240px;
}

.philosophy-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.philosophy-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    margin-bottom: 64px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 320px;
    height: 400px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

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

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.price-tag {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-color);
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px 0;
    color: var(--secondary-color);
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--text-color);
}

.pricing-note {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-note h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.pricing-note ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.pricing-note ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.contact-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--text-color);
}

.email-display {
    font-weight: 600;
    font-size: 16px;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 16px;
}

.visit-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.visit-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.visit-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.visit-section ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--text-color);
}

.map-placeholder {
    padding: 80px 0;
}

.map-info {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 8px;
    text-align: center;
}

.map-info h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.map-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.legal-page {
    padding: 64px 0;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

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

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

.legal-page em {
    color: var(--text-light);
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--secondary-color);
}

.cookies-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

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

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

.cookies-table td {
    font-size: 14px;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-card {
    background: var(--bg-light);
    padding: 64px 48px;
    border-radius: 8px;
    text-align: center;
}

.thanks-card h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--success-color);
}

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

.service-info {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 6px;
    margin: 24px 0;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s;
}

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

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

.btn-primary:hover,
.btn-secondary:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-container {
        height: auto;
        padding: 16px 24px;
    }

    .nav-links {
        flex-basis: 100%;
        justify-content: center;
        margin-top: 12px;
        gap: 20px;
    }

    .ad-disclosure {
        order: -1;
        flex-basis: 100%;
        text-align: center;
        margin: 12px 0;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

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

    .service-cards {
        flex-direction: column;
    }

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

    .testimonial-cards {
        flex-direction: column;
    }

    .form-card {
        padding: 32px 24px;
    }

    .footer-container {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

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

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