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

:root {
    --primary: #2c2416;
    --secondary: #8b6f47;
    --accent: #d4a574;
    --light: #f5f1eb;
    --white: #ffffff;
    --text: #3a3a3a;
    --border: #e0d5c7;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}

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

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

header {
    background: var(--primary);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 1px;
}

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

nav a {
    color: var(--light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

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

.hero-editorial {
    padding: 80px 24px 60px;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -1px;
}

.hero-editorial .subheading {
    font-size: 22px;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: 480px;
    margin: 40px auto;
    background: linear-gradient(135deg, #8b6f47 0%, #d4a574 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-style: italic;
}

.editorial-text {
    font-size: 19px;
    line-height: 1.8;
    margin: 40px 0;
    color: var(--text);
}

.editorial-text p {
    margin-bottom: 28px;
}

.editorial-text strong {
    color: var(--primary);
}

.inline-image {
    width: 100%;
    height: 360px;
    margin: 50px 0;
    background: linear-gradient(45deg, #d4a574 0%, #8b6f47 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.pullquote {
    font-size: 28px;
    line-height: 1.5;
    font-style: italic;
    color: var(--secondary);
    padding: 50px 40px;
    margin: 60px 0;
    border-left: 4px solid var(--accent);
    background: var(--white);
}

.cta-inline {
    display: inline-flex;
    padding: 14px 32px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 2px;
    margin: 20px 0;
    transition: background 0.3s;
    font-size: 16px;
}

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

.section-divider {
    width: 120px;
    height: 2px;
    background: var(--accent);
    margin: 70px auto;
}

.testimonial-inline {
    background: var(--white);
    padding: 40px;
    margin: 60px 0;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.testimonial-inline p {
    font-size: 18px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
}

.testimonial-inline .author {
    font-style: normal;
    font-weight: bold;
    color: var(--secondary);
    font-size: 15px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 2px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.service-card .price {
    font-size: 28px;
    color: var(--secondary);
    font-weight: bold;
    margin: 20px 0;
}

.service-card .select-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: 2px;
    cursor: pointer;
    border: none;
    font-size: 15px;
    transition: background 0.3s;
}

.service-card .select-btn:hover {
    background: var(--secondary);
    color: var(--white);
}

.service-card.selected {
    border: 2px solid var(--secondary);
    background: #faf8f5;
}

.form-section {
    background: var(--white);
    padding: 60px 40px;
    margin: 80px 0;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-section h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
    text-align: center;
}

.form-section p {
    text-align: center;
    color: var(--text);
    margin-bottom: 40px;
    font-size: 17px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    color: var(--primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-btn {
    padding: 16px 40px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 2px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
}

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

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 16px;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta a {
    display: inline-block;
    padding: 12px 36px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: 2px;
    font-weight: 500;
    transition: background 0.3s;
}

.sticky-cta a:hover {
    background: var(--white);
}

.urgency-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 24px 32px;
    margin: 50px 0;
    border-radius: 2px;
}

.urgency-box p {
    font-size: 16px;
    color: #e65100;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 60px 0;
    padding: 40px 0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: 2px;
    border: 1px solid var(--border);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
}

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

footer {
    background: var(--primary);
    color: var(--light);
    padding: 60px 24px 30px;
    margin-top: 100px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-section a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 36, 22, 0.98);
    color: var(--white);
    padding: 24px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    font-weight: 500;
}

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

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

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

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

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

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 2px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.thanks-box h1 {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 24px;
}

.thanks-box p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-box .service-selected {
    font-size: 20px;
    color: var(--primary);
    font-weight: bold;
    margin: 30px 0;
    padding: 20px;
    background: var(--light);
    border-radius: 2px;
}

.thanks-box a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s;
}

.thanks-box a:hover {
    background: var(--primary);
}

.contact-info {
    background: var(--white);
    padding: 50px;
    margin: 40px 0;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-info h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item strong {
    color: var(--secondary);
    font-size: 16px;
}

.info-item span {
    font-size: 16px;
    color: var(--text);
}

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

.legal-content h1 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 16px;
}

.legal-content h2 {
    font-size: 26px;
    color: var(--secondary);
    margin: 40px 0 16px;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    margin-bottom: 12px;
    font-size: 16px;
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: var(--primary);
        width: 100%;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    nav.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-editorial .subheading {
        font-size: 18px;
    }

    .editorial-text {
        font-size: 17px;
    }

    .pullquote {
        font-size: 22px;
        padding: 30px 20px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
