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

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f5c;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --bg-light: #faf8f6;
    --bg-white: #ffffff;
    --border-color: #e8e4df;
    --accent-rose: #c89b9b;
    --shadow: rgba(0, 0, 0, 0.08);
}

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

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

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

header {
    background: var(--bg-white);
    padding: 32px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px var(--shadow);
}

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

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

nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

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

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

.hero-editorial h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.hero-editorial .subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 300;
}

.hero-editorial .meta {
    font-size: 14px;
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.content-editorial {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px;
}

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

.content-editorial h2 {
    font-size: 36px;
    margin: 60px 0 28px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--secondary-color);
}

.content-editorial h3 {
    font-size: 28px;
    margin: 48px 0 20px;
    font-weight: 400;
    color: var(--text-dark);
}

.inline-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 48px 0;
    border-radius: 4px;
}

.inline-cta {
    background: var(--bg-light);
    padding: 48px 40px;
    margin: 60px 0;
    border-left: 4px solid var(--primary-color);
    text-align: center;
}

.inline-cta h3 {
    font-size: 26px;
    margin: 0 0 20px;
    color: var(--text-dark);
}

.inline-cta p {
    margin-bottom: 28px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    border-radius: 2px;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

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

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

.services-editorial {
    background: var(--bg-light);
    padding: 80px 0;
}

.service-item {
    background: var(--bg-white);
    padding: 40px;
    margin-bottom: 32px;
    border-radius: 2px;
    box-shadow: 0 2px 8px var(--shadow);
}

.service-item h3 {
    font-size: 30px;
    margin: 0 0 16px;
    color: var(--secondary-color);
    font-weight: 400;
}

.service-price {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 16px 0;
    font-family: 'Arial', sans-serif;
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-item ul {
    list-style: none;
    margin: 20px 0;
}

.service-item li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.service-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.quote-block {
    font-size: 26px;
    line-height: 1.5;
    font-style: italic;
    color: var(--secondary-color);
    padding: 40px 0;
    margin: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-family: 'Georgia', serif;
    background: var(--bg-light);
    transition: border-color 0.3s;
}

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

textarea {
    min-height: 140px;
    resize: vertical;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 20px 0;
    box-shadow: 0 -4px 12px var(--shadow);
    z-index: 999;
    display: none;
}

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

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

.sticky-cta-text {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 600;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 24px;
    gap: 60px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 10000;
    border-top: 2px solid var(--primary-color);
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-dark);
}

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

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

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

.about-intro {
    padding: 80px 0;
    text-align: center;
}

.about-intro h1 {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 400;
}

.about-content {
    display: flex;
    gap: 60px;
    padding: 60px 0;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.contact-info {
    padding: 80px 0;
}

.info-block {
    background: var(--bg-light);
    padding: 40px;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary-color);
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-block p {
    color: var(--text-dark);
    line-height: 1.8;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 400;
}

.legal-content h2 {
    font-size: 30px;
    margin: 48px 0 20px;
    font-weight: 400;
    color: var(--secondary-color);
}

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

.legal-content ul {
    margin: 20px 0 20px 40px;
    line-height: 1.8;
}

.thanks-container {
    padding: 120px 0;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 28px;
    color: var(--primary-color);
    font-weight: 400;
}

.thanks-container p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-light);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 89px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: 0 4px 12px var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 24px;
    }

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

    nav a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
    }

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

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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