:root {
    --primary: #8B5A6B;
    --primary-dark: #6B4455;
    --secondary: #D4A5A5;
    --accent: #F5E6E0;
    --dark: #2D2327;
    --light: #FDF8F6;
    --gray: #7A6B70;
    --white: #FFFFFF;
}

* {
    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(--light);
}

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

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

.header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(45, 35, 39, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--gray);
    background: var(--accent);
    padding: 4px 12px;
    border-radius: 4px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    transition: 0.3s;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

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

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 24px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 36px;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 90, 107, 0.3);
}

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

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

.section {
    padding: 100px 0;
}

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

.section-accent {
    background: var(--accent);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark p {
    color: var(--secondary);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 600px;
}

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

.text-center .section-subtitle {
    margin: 0 auto 48px;
}

.story-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.story-block:nth-child(even) {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    background-color: var(--secondary);
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
}

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

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.story-text p {
    color: var(--gray);
    margin-bottom: 16px;
}

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

.insight-card {
    flex: 1;
    padding: 40px 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(45, 35, 39, 0.06);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-8px);
}

.insight-icon {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.insight-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.insight-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.insight-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
}

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

.testimonial-card {
    flex: 1;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(45, 35, 39, 0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1.2rem;
}

.testimonial-info h5 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(45, 35, 39, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 35, 39, 0.12);
}

.service-image {
    height: 200px;
    background-color: var(--secondary);
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
}

.service-content h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--accent);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    font-size: 0.8rem;
    color: var(--gray);
}

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

.cta-section h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--secondary);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

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

.cta-section .btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(45, 35, 39, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: 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: 18px;
    font-size: 1.1rem;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

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

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

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

.footer-col ul li a {
    color: var(--secondary);
    font-size: 0.95rem;
}

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

.footer-col p {
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

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

.footer-links a {
    color: var(--gray);
    font-size: 0.9rem;
}

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

.disclaimer {
    background: var(--accent);
    padding: 24px;
    border-radius: 12px;
    margin-top: 40px;
}

.disclaimer p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 -4px 24px rgba(45, 35, 39, 0.15);
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 0.95rem;
    color: var(--dark);
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

.cookie-reject {
    background: var(--accent);
    color: var(--dark);
}

.cookie-reject:hover {
    background: var(--secondary);
}

.page-header {
    background: var(--accent);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.page-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

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

.page-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 16px;
    color: var(--dark);
}

.page-content h3 {
    font-size: 1.4rem;
    margin: 32px 0 12px;
    color: var(--dark);
}

.page-content p {
    margin-bottom: 16px;
    color: var(--gray);
}

.page-content ul {
    margin: 16px 0 16px 24px;
    color: var(--gray);
}

.page-content ul li {
    margin-bottom: 8px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 48px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-details p {
    color: var(--gray);
    font-size: 0.95rem;
}

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

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

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

.thanks-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--primary);
}

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

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

.benefits-list {
    margin: 48px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(45, 35, 39, 0.04);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.benefit-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.benefit-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    background-color: var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--dark);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

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

.services-grid .service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
}

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 998;
    display: none;
}

.sticky-cta.active {
    display: block;
}

.sticky-cta .btn {
    box-shadow: 0 8px 32px rgba(139, 90, 107, 0.4);
}

.references {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--accent);
}

.references h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.references ol {
    list-style-position: inside;
    color: var(--gray);
}

.references ol li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.references a {
    color: var(--primary);
    word-break: break-all;
}

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        display: none;
        box-shadow: 0 8px 24px rgba(45, 35, 39, 0.1);
    }

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

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

    .story-block,
    .story-block:nth-child(even) {
        flex-direction: column;
    }

    .story-image {
        min-height: 300px;
    }

    .insight-grid,
    .testimonial-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .about-image {
        min-height: 350px;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
