:root {
    --primary: #8B5A6B;
    --primary-dark: #6B4553;
    --secondary: #D4A574;
    --accent: #F5E6D3;
    --dark: #2C2424;
    --light: #FAF7F5;
    --white: #FFFFFF;
    --gray: #9B8F8F;
    --success: #6B8B6B;
}

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

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

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

.btn-accent {
    background: var(--secondary);
    color: var(--dark);
}

.btn-accent:hover {
    background: #C49564;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

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

.logo span {
    color: var(--secondary);
}

.nav-desktop {
    display: flex;
    gap: 35px;
}

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--accent);
    font-size: 16px;
}

.split-section {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.split-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image-placeholder svg {
    width: 120px;
    height: 120px;
    opacity: 0.3;
}

.hero-section {
    padding-top: 80px;
}

.hero-section .split-content {
    padding: 100px 60px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 52px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.section-header {
    margin-bottom: 50px;
}

.section-label {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 38px;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 18px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray);
    max-width: 500px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

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

.service-card p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 18px;
}

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

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

.full-section {
    padding: 100px 20px;
}

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

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

.full-section.bg-dark .section-title,
.full-section.bg-dark .section-desc {
    color: var(--white);
}

.full-section.bg-dark .section-desc {
    opacity: 0.8;
}

.features-row {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 15px;
    opacity: 0.8;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--accent);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-role {
    font-size: 14px;
    color: var(--gray);
}

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E0DE;
    border-radius: 8px;
    font-size: 15px;
    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;
}

.info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.info-box h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box p {
    font-size: 15px;
    color: var(--dark);
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 20px 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    padding: 6px 0;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

.sticky-cta {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

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

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

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

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

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

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.page-header {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    text-align: center;
}

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

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

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

.content-section .container {
    max-width: 900px;
}

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

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

.content-section p {
    margin-bottom: 18px;
    color: var(--dark);
}

.content-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-section ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: var(--dark);
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
}

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

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

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

.thanks-content h1 {
    font-size: 38px;
    color: var(--dark);
    margin-bottom: 20px;
}

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

.team-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo svg {
    width: 60px;
    height: 60px;
    fill: var(--white);
    opacity: 0.5;
}

.team-member h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-member span {
    font-size: 14px;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 14px;
    color: var(--gray);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 10px);
    min-width: 250px;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.inline-cta {
    background: var(--primary);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    margin: 60px 0;
}

.inline-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.inline-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.services-full-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-full-item {
    display: flex;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    align-items: center;
}

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

.service-full-image {
    flex: 0 0 300px;
    height: 200px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

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

.service-full-content h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-full-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

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

@media (max-width: 968px) {
    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 60px 30px;
    }

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

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 30px;
    }

    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .service-full-item,
    .service-full-item:nth-child(even) {
        flex-direction: column;
    }

    .service-full-image {
        flex: none;
        width: 100%;
        height: 180px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

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

    .full-section {
        padding: 60px 20px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }

    .sticky-cta .btn {
        width: 100%;
    }
}
