:root {
    --color-primary: #8B6F5C;
    --color-secondary: #D4C4B5;
    --color-accent: #5D4E42;
    --color-dark: #2C2420;
    --color-light: #F8F5F2;
    --color-cream: #EDE8E3;
    --color-warm: #A68B7B;
    --color-text: #3D3530;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --max-width-narrow: 720px;
    --max-width-medium: 960px;
    --max-width-wide: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-light);
    line-height: 1.7;
    font-size: 17px;
}

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

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

a:hover {
    color: var(--color-accent);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

.ad-disclosure-bar {
    background-color: var(--color-cream);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--color-warm);
    border-bottom: 1px solid var(--color-secondary);
}

header {
    background-color: var(--color-light);
    border-bottom: 1px solid var(--color-secondary);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-dark);
    font-weight: normal;
    letter-spacing: 0.5px;
}

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

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

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

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

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

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

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

.hero-editorial-inner {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.hero-editorial h1 {
    font-size: 3rem;
    margin-bottom: 1.8rem;
    font-weight: normal;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--color-warm);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-image-container {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    background-color: var(--color-secondary);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 40px;
}

.hero-image-container img {
    width: 100%;
    height: 450px;
}

.editorial-section {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 70px 30px;
}

.editorial-section.wide {
    max-width: var(--max-width-medium);
}

.editorial-section.full-bg {
    max-width: none;
    background-color: var(--color-cream);
}

.editorial-section.full-bg .inner {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

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

.inline-image img {
    width: 100%;
    height: 350px;
}

.inline-image.float-left {
    float: left;
    width: 45%;
    margin-right: 30px;
    margin-bottom: 20px;
}

.inline-image.float-right {
    float: right;
    width: 45%;
    margin-left: 30px;
    margin-bottom: 20px;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.dropcap {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 8px;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.pullquote {
    border-left: 4px solid var(--color-primary);
    padding: 20px 30px;
    margin: 40px 0;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-accent);
    background-color: var(--color-light);
}

.cta-inline {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    margin: 25px 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.cta-section {
    background-color: var(--color-dark);
    color: white;
    padding: 80px 30px;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--color-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-section .cta-inline {
    background-color: var(--color-secondary);
    color: var(--color-dark);
}

.cta-section .cta-inline:hover {
    background-color: white;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    border: 1px solid var(--color-secondary);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

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

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 15px;
    color: var(--color-warm);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--color-warm);
}

.testimonial-block {
    background-color: var(--color-cream);
    padding: 50px;
    border-radius: 8px;
    margin: 50px 0;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.testimonial-author {
    font-size: 15px;
    color: var(--color-warm);
}

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

.benefits-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    border-bottom: 1px solid var(--color-secondary);
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.form-container {
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    border: 1px solid var(--color-secondary);
    margin-top: 40px;
}

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

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

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

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

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

.submit-btn {
    background-color: var(--color-primary);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

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

.about-intro-text {
    flex: 1;
}

.about-intro-image {
    flex: 1;
    background-color: var(--color-secondary);
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
}

.values-section {
    display: flex;
    gap: 40px;
    margin: 60px 0;
}

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

.value-item h3 {
    margin-bottom: 15px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.contact-form-container {
    flex: 1.5;
}

.thanks-container {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.legal-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-content h1 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1rem;
    font-size: 16px;
}

.legal-content ul {
    padding-left: 25px;
}

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

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

.footer-inner {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

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

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

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

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

.footer-col a {
    color: var(--color-secondary);
    font-size: 14px;
}

.footer-col a:hover {
    color: white;
}

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

.disclaimer {
    background-color: var(--color-cream);
    padding: 30px;
    border-radius: 6px;
    margin: 50px 0;
    font-size: 14px;
    color: var(--color-warm);
    line-height: 1.7;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: var(--color-warm);
}

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

.cookie-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: var(--color-primary);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: none;
}

.sticky-cta:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-3px);
}

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

.page-header {
    background-color: var(--color-cream);
    padding: 60px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--color-warm);
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    h1 {
        font-size: 2.2rem;
    }

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-light);
        flex-direction: column;
        padding: 20px 30px;
        gap: 0;
        border-bottom: 1px solid var(--color-secondary);
    }

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

    .nav-menu li {
        border-bottom: 1px solid var(--color-secondary);
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
    }

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

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

    .values-section {
        flex-direction: column;
    }

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

    .inline-image.float-left,
    .inline-image.float-right {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .footer-inner {
        flex-direction: column;
    }

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

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

    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-editorial {
        padding: 50px 20px 70px;
    }

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

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

    .form-container {
        padding: 30px 20px;
    }

    .testimonial-block {
        padding: 30px 20px;
    }

    .dropcap {
        font-size: 3rem;
    }

    .sticky-cta {
        right: 15px;
        bottom: 90px;
        padding: 12px 20px;
        font-size: 14px;
    }
}
