:root {
    --primary: #c45a2c;
    --primary-dark: #9e4520;
    --secondary: #2c4a3e;
    --accent: #e8d5b7;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-cream: #faf8f5;
    --bg-warm: #f5f0e8;
    --bg-dark: #2c2c2c;
    --white: #ffffff;
    --border: #d4cfc5;
    --shadow: rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-cream);
}

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

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

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

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

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

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

h1 {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
}

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

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

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.header {
    background: var(--white);
    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: 16px 0;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--bg-warm);
    padding: 4px 10px;
    border-radius: 3px;
    margin-left: 12px;
}

.nav-main {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-main a {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.nav-main a:hover,
.nav-main a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: transform 0.2s ease;
}

.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}

.hero-editorial h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-editorial .lead {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-image-container {
    background-color: var(--accent);
    border-radius: 12px;
    overflow: hidden;
    margin: 40px auto 0;
    max-width: 900px;
}

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

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

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

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

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

.section-editorial.bg-dark p {
    color: rgba(255,255,255,0.85);
}

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

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

.inline-image.small {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.inline-image.small img {
    height: 240px;
}

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

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

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

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

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

.btn-secondary:hover {
    background: #1e3830;
}

.cta-inline {
    margin: 40px 0;
    padding: 36px;
    background: var(--secondary);
    border-radius: 10px;
    text-align: center;
}

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

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

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

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

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

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

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

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

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

.service-image img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-content {
    flex: 1;
}

.service-price {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-content h3 {
    margin-bottom: 10px;
}

.service-content p {
    margin-bottom: 16px;
}

.testimonial-block {
    background: var(--white);
    padding: 32px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin: 40px 0;
}

.testimonial-block blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 16px;
}

.testimonial-block cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

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

.form-container {
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    max-width: 580px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

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

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

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

.disclaimer {
    background: var(--accent);
    padding: 20px;
    border-radius: 6px;
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.page-header {
    padding: 50px 0;
    background: var(--bg-warm);
    text-align: center;
}

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

.page-content h2 {
    margin-top: 40px;
}

.page-content ul {
    margin: 16px 0 24px 24px;
}

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

.contact-info {
    background: var(--white);
    padding: 32px;
    border-radius: 10px;
    margin-bottom: 32px;
}

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

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

.contact-item strong {
    min-width: 120px;
    color: var(--text-dark);
}

.contact-item span {
    color: var(--text-light);
}

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

.thanks-box {
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 40px var(--shadow);
    max-width: 540px;
}

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

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

.thanks-box h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.thanks-box p {
    font-size: 1.1rem;
}

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

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

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

.cookie-inner p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

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

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

.cookie-buttons button {
    padding: 10px 24px;
    font-size: 0.9rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

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

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

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

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

.about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.about-grid.reverse {
    flex-direction: row-reverse;
}

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

.about-image img {
    width: 360px;
    height: 280px;
    object-fit: cover;
    display: block;
}

.about-text {
    flex: 1;
}

.features-list {
    list-style: none;
    margin: 24px 0;
}

.features-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

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

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-main.show {
        display: flex;
    }

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

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

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

    .service-item {
        flex-direction: column;
        gap: 24px;
    }

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

    .service-image {
        flex: none;
        width: 100%;
    }

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

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

    .about-grid.reverse {
        flex-direction: column;
    }

    .about-image {
        flex: none;
        width: 100%;
    }

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

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

    .footer-grid {
        gap: 32px;
    }

    .footer-col {
        min-width: 100%;
    }

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

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