:root {
    --primary: #c4703b;
    --primary-dark: #9e5a2f;
    --secondary: #2d3a3a;
    --accent: #e8c89e;
    --bg-light: #faf8f5;
    --bg-warm: #f5efe8;
    --bg-dark: #2d3a3a;
    --text-dark: #2d3a3a;
    --text-light: #5c6666;
    --text-white: #faf8f5;
    --border: #d4ccc2;
    --shadow: rgba(45, 58, 58, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

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

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

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

h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary);
}

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

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
}

.ad-disclosure {
    background-color: var(--secondary);
    color: var(--text-white);
    font-size: 0.75rem;
    text-align: center;
    padding: 6px 0;
    letter-spacing: 0.5px;
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

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

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

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

.hero-editorial {
    padding: 80px 0 60px;
    background-color: var(--bg-warm);
}

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

.hero-editorial h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image-wrapper {
    margin: 40px 0;
    background-color: var(--accent);
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 450px;
    display: block;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.25s ease;
}

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

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

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

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

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

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

.inline-image img {
    width: 100%;
    height: 360px;
    display: block;
}

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

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

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 14px);
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px var(--shadow);
    transform: translateY(-4px);
}

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

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

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

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

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

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

.cta-inline {
    background-color: var(--bg-warm);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
    border-left: 4px solid var(--primary);
}

.cta-inline h3 {
    margin-bottom: 1rem;
}

.cta-inline p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-block {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    position: relative;
}

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

.testimonial-block p {
    font-style: italic;
    font-size: 1.15rem;
    padding-left: 40px;
    margin-bottom: 1rem;
}

.testimonial-author {
    padding-left: 40px;
    font-weight: 600;
    color: var(--secondary);
}

.full-width-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.full-width-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(45, 58, 58, 0.75);
}

.full-width-section .content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
}

.full-width-section h2 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.full-width-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 80px 0;
}

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

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

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

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-white);
    font-size: 1.5rem;
}

.services-list {
    margin-top: 50px;
}

.service-item {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 0 0 350px;
    height: 250px;
    background-color: var(--accent);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-item-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-item-content .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1rem;
}

.contact-layout {
    display: flex;
    gap: 60px;
    padding: 80px 0;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.contact-map {
    flex: 0 0 450px;
    height: 400px;
    background-color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px var(--shadow);
}

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

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

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

.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;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    background-color: var(--bg-warm);
}

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

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

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.legal-page h1 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.legal-page h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 1.25rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-col p {
    color: rgba(250, 248, 245, 0.8);
    font-size: 0.95rem;
}

.footer-col a {
    color: rgba(250, 248, 245, 0.8);
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 245, 0.15);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(250, 248, 245, 0.6);
}

.footer-legal a {
    margin-left: 24px;
}

.disclaimer {
    background-color: var(--bg-warm);
    padding: 30px 0;
    border-top: 1px solid var(--border);
}

.disclaimer p {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

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

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

@media (max-width: 900px) {
    .header-inner {
        flex-wrap: wrap;
    }

    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding-top: 20px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .mobile-menu-btn {
        display: block;
    }

    h1 {
        font-size: 2.2rem;
    }

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

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

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

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

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

    .about-intro-image {
        flex: 0 0 auto;
        width: 100%;
    }

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

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .service-item-image {
        flex: 0 0 auto;
        width: 100%;
        height: 220px;
    }

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

    .contact-map {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }

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

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

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .footer-legal a {
        margin-left: 0;
    }

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