:root {
    --primary: #8B5A6B;
    --primary-dark: #6B4555;
    --secondary: #C9A87C;
    --accent: #E8D5C4;
    --text-dark: #2C2C2C;
    --text-light: #5A5A5A;
    --bg-light: #FDFBF9;
    --bg-cream: #F7F3EF;
    --bg-sage: #E8EDE5;
    --white: #FFFFFF;
    --border: #E5DDD5;
    --shadow: rgba(139, 90, 107, 0.12);
}

* {
    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;
    object-fit: cover;
}

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

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

/* Header */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background-color: var(--accent);
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-light);
}

.header-top .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-disclosure {
    font-style: italic;
}

.header-main {
    padding: 18px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

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

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

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

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

/* Hero Section - Editorial Style */
.hero-editorial {
    padding: 80px 0 60px;
    background-color: var(--bg-cream);
}

.hero-editorial .container-narrow {
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-image-wrapper {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--accent);
    box-shadow: 0 20px 60px var(--shadow);
}

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

/* Editorial Content Sections */
.editorial-section {
    padding: 70px 0;
}

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

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

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

.section-intro {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.editorial-section h2 {
    font-size: 34px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.editorial-section h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 14px;
    font-weight: 600;
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Inline Image in Editorial */
.inline-image {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--accent);
}

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

.inline-image.full-width {
    margin-left: -100px;
    margin-right: -100px;
    border-radius: 0;
}

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

/* Story Block */
.story-block {
    margin-bottom: 36px;
}

.story-block p {
    margin-bottom: 18px;
    font-size: 17px;
}

.story-block p:first-of-type::first-letter {
    font-size: 56px;
    float: left;
    line-height: 1;
    margin-right: 12px;
    margin-top: 4px;
    color: var(--primary);
    font-weight: 700;
}

/* Quote Block */
.quote-block {
    border-left: 4px solid var(--primary);
    padding: 24px 32px;
    margin: 40px 0;
    background-color: var(--bg-cream);
    border-radius: 0 8px 8px 0;
}

.quote-block blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.quote-block cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

/* Services Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: 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(-6px);
    box-shadow: 0 12px 40px var(--shadow);
}

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

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

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

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

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

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

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

.price-note {
    font-size: 13px;
    color: var(--text-light);
}

/* CTA Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

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

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

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

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

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

/* Inline CTA */
.inline-cta {
    background-color: var(--primary);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
}

.inline-cta h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 12px;
}

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

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

.inline-cta .btn:hover {
    background-color: var(--accent);
}

/* Testimonials */
.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

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

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

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

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

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

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

/* Form Styles */
.form-section {
    padding: 80px 0;
    background-color: var(--bg-sage);
}

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

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 8px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 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);
    box-shadow: 0 0 0 3px rgba(139, 90, 107, 0.15);
}

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

.form-submit {
    text-align: center;
    margin-top: 32px;
}

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

/* Benefits List */
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.benefit-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    display: flex;
    gap: 16px;
    padding: 24px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 12px var(--shadow);
}

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

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

.benefit-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.benefit-content p {
    font-size: 15px;
    color: var(--text-light);
}

/* Footer */
.site-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

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

.footer-links {
    flex: 1 1 200px;
}

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-contact {
    flex: 1 1 250px;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

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

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

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

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

/* Disclaimer */
.disclaimer {
    background-color: var(--bg-cream);
    padding: 24px;
    margin: 40px 0;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.disclaimer-footer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    margin-top: 20px;
}

.disclaimer-footer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

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

.cookie-text p {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.cookie-text a {
    font-size: 14px;
}

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

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

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
    background-color: var(--bg-cream);
}

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

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

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

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

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

/* About Page */
.page-header {
    background-color: var(--bg-cream);
    padding: 60px 0;
    text-align: center;
}

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

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

.about-intro {
    padding: 60px 0;
}

.about-grid {
    display: flex;
    gap: 48px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 18px;
    font-size: 17px;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--accent);
}

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

/* Values Section */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.value-item {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 250px;
    text-align: center;
    padding: 32px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
}

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

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

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

.value-item p {
    font-size: 15px;
    color: var(--text-light);
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

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

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

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

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

.contact-details p {
    font-size: 15px;
    color: var(--text-light);
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* References */
.references-section {
    background-color: var(--bg-cream);
    padding: 40px 0;
    margin-top: 40px;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.references-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-light);
}

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

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        flex-direction: column;
    }

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

    .inline-image.full-width {
        margin-left: 0;
        margin-right: 0;
    }
}

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

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 4px 20px var(--shadow);
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }

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

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

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

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

    .benefit-item {
        flex: 1 1 100%;
    }

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

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-editorial {
        padding: 50px 0 40px;
    }

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

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

    .quote-block {
        padding: 20px;
    }
}
