:root {
    --primary: #8B6F5C;
    --primary-dark: #6B5344;
    --secondary: #D4C4B5;
    --accent: #C9A86C;
    --text-dark: #2D2926;
    --text-light: #5C5552;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F0EB;
    --bg-warm: #EDE5DC;
    --white: #FFFFFF;
    --shadow: rgba(45, 41, 38, 0.08);
    --shadow-strong: rgba(45, 41, 38, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

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

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

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

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

header {
    background: var(--white);
    box-shadow: 0 2px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    padding: 6px 0;
    text-align: center;
}

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

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

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

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

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

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

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

nav ul li a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    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.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 41, 38, 0.65) 0%, rgba(45, 41, 38, 0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 48px 24px;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 36px;
    line-height: 1.6;
}

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

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

.btn-primary:hover {
    background: #B89555;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 108, 0.35);
}

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

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

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

.btn-light:hover {
    background: var(--bg-cream);
    color: var(--primary-dark);
}

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

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

.editorial-section.warm {
    background: var(--bg-warm);
}

.editorial-intro {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
}

.editorial-intro::first-letter {
    font-size: 64px;
    float: left;
    line-height: 1;
    padding-right: 12px;
    color: var(--primary);
    font-weight: 300;
}

.editorial-section h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 28px;
    color: var(--text-dark);
    line-height: 1.3;
}

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

.editorial-section p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.editorial-image {
    margin: 40px -60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 40px var(--shadow-strong);
    background-color: var(--secondary);
}

.editorial-image img {
    width: 100%;
    height: auto;
}

.editorial-image-caption {
    padding: 12px 16px;
    background: var(--bg-cream);
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

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

.inline-cta h4 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 500;
}

.inline-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

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

.quote-block cite {
    display: block;
    margin-top: 16px;
    font-size: 15px;
    font-style: normal;
    color: var(--text-light);
}

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

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-strong);
}

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

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

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

.service-card-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-card-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
}

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

.service-price span {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-light);
}

.testimonial {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

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

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

.testimonial-info h5 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--text-light);
}

.benefits-list {
    list-style: none;
    margin: 32px 0;
}

.benefits-list li {
    padding: 16px 0 16px 48px;
    position: relative;
    border-bottom: 1px solid var(--secondary);
    font-size: 18px;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 16px;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.form-section {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 40px var(--shadow-strong);
    margin: 48px 0;
}

.form-section h3 {
    text-align: center;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    font-size: 16px;
    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 {
    text-align: center;
    margin-top: 32px;
}

.form-submit .btn {
    width: 100%;
    max-width: 320px;
    padding: 18px 36px;
    font-size: 18px;
}

.ingredients-section {
    background: var(--bg-warm);
    padding: 60px 0;
}

.ingredients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

.ingredient-card {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 200px;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.ingredient-card h5 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.ingredient-card p {
    font-size: 14px;
    color: var(--text-light);
}

.reference-link {
    color: var(--primary);
    font-size: 12px;
    vertical-align: super;
    font-weight: 600;
}

.references-section {
    background: var(--bg-cream);
    padding: 40px 0;
}

.references-list {
    font-size: 13px;
    color: var(--text-light);
    line-height: 2;
}

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

.disclaimer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 24px;
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

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

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

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    margin: 0 12px;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

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

.page-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

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

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

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

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 40px;
}

.contact-info h3 {
    margin-bottom: 24px;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-item-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item-content p {
    margin: 0;
    color: var(--text-light);
}

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

.thanks-card {
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    max-width: 560px;
    box-shadow: 0 12px 60px var(--shadow-strong);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    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-card h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 18px;
}

.thanks-service {
    background: var(--bg-cream);
    padding: 16px 24px;
    border-radius: 8px;
    margin: 24px 0;
    font-weight: 500;
    color: var(--primary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

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

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

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

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

.cookie-btn.accept:hover {
    background: #B89555;
}

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

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

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

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

.sticky-cta .btn {
    box-shadow: 0 8px 32px rgba(201, 168, 108, 0.4);
}

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

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.open {
        max-height: 400px;
        box-shadow: 0 8px 24px var(--shadow);
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 16px;
    }

    nav ul li a {
        display: block;
        padding: 12px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .editorial-image {
        margin: 32px -12px;
    }

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

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

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

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

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

    .thanks-card {
        padding: 40px 24px;
    }
}
