:root {
    --primary: #8B4557;
    --primary-light: #B86B7A;
    --secondary: #2D5043;
    --accent: #D4A574;
    --cream: #FDF8F5;
    --dark: #1A1A1A;
    --gray: #6B6B6B;
    --light-gray: #E8E4E1;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--cream);
}

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

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

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

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

.ad-disclosure {
    background-color: var(--light-gray);
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: var(--gray);
}

.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 0;
    position: relative;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    transition: all 0.3s ease;
}

.hero-editorial {
    padding: 80px 24px;
    text-align: center;
    background-color: var(--cream);
}

.hero-editorial h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-editorial .subtitle {
    font-size: 20px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--light-gray);
}

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

.editorial-section {
    padding: 80px 24px;
}

.editorial-section.alt-bg {
    background-color: var(--white);
}

.editorial-content {
    max-width: 680px;
    margin: 0 auto;
}

.editorial-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
}

.editorial-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.editorial-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

.editorial-content p:last-child {
    margin-bottom: 0;
}

.inline-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.inline-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.inline-image.small {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.inline-image.small img {
    height: 300px;
}

.cta-inline {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary);
    margin-top: 24px;
    margin-left: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.quote-block {
    border-left: 4px solid var(--primary);
    padding-left: 24px;
    margin: 40px 0;
    font-style: italic;
    font-size: 20px;
    color: var(--dark);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    height: 220px;
    background-color: var(--light-gray);
    overflow: hidden;
}

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

.service-card-content {
    padding: 28px;
}

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

.service-card-content p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
}

.testimonial-section {
    padding: 80px 24px;
    background-color: var(--secondary);
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.testimonial-content .quote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 32px;
}

.testimonial-content .author {
    font-size: 16px;
    font-weight: 600;
}

.testimonial-content .role {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 4px;
}

.form-section {
    padding: 80px 24px;
    background-color: var(--cream);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    text-align: center;
}

.form-wrapper .form-subtitle {
    font-size: 16px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 36px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: var(--primary-light);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--light-gray);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary);
}

.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 64px 24px 32px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

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

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

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

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

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

.disclaimer-section {
    padding: 40px 24px;
    background-color: var(--light-gray);
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}

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

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

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

.cookie-text {
    flex: 1 1 400px;
    font-size: 14px;
    color: var(--gray);
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

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

.cookie-reject {
    background-color: transparent;
    color: var(--gray);
    border: 2px solid var(--light-gray);
}

.cookie-reject:hover {
    border-color: var(--gray);
}

.page-header {
    background-color: var(--secondary);
    padding: 80px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 24px;
}

.content-section.alt-bg {
    background-color: var(--white);
}

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

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--dark);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--dark);
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 8px;
    line-height: 1.7;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.contact-form-wrapper {
    flex: 1 1 400px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.thanks-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.thanks-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
}

.about-story {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-story-text {
    flex: 1 1 400px;
}

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

.about-story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.value-item {
    flex: 1 1 280px;
    text-align: center;
    padding: 32px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.value-item p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sticky-cta a:hover {
    background-color: var(--primary-light);
    transform: scale(1.05);
}

.highlight-box {
    background-color: var(--cream);
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0;
}

.highlight-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}

.highlight-box p {
    margin-bottom: 0;
}

.benefit-list {
    margin: 32px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.benefit-check {
    width: 24px;
    height: 24px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-check svg {
    width: 14px;
    height: 14px;
    fill: var(--white);
}

.benefit-item p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

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

    .hero-image-wrapper img {
        height: 300px;
    }

    .editorial-content h2 {
        font-size: 28px;
    }

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

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

    .footer-grid {
        gap: 32px;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .cta-secondary {
        margin-left: 0;
        display: block;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .contact-grid {
        gap: 32px;
    }

    .about-story {
        gap: 32px;
    }

    .about-story-image img {
        height: 300px;
    }
}
