:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #c9a227;
    --accent-hover: #d4b23a;
    --text: #2d2d2d;
    --text-light: #6b6b6b;
    --bg: #fafafa;
    --bg-alt: #f0ece3;
    --white: #ffffff;
    --border: #e0dcd3;
    --success: #2d5a27;
    --error: #8b2635;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1.3;
    color: var(--primary);
}

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

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

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

p {
    margin-bottom: 1.5rem;
}

.ad-disclosure {
    background-color: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

header {
    background-color: 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: 20px 0;
}

.logo {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo:hover {
    color: var(--accent);
}

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

nav a {
    color: var(--text);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

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

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

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

.hero-editorial h1 {
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 24px;
}

.hero-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.hero-image-container {
    background-color: var(--bg-alt);
    margin: 40px 0;
}

.hero-image-container img {
    width: 100%;
    max-height: 500px;
    display: block;
}

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

.editorial-content p:first-of-type::first-letter {
    font-size: 4rem;
    float: left;
    line-height: 1;
    margin-right: 12px;
    color: var(--accent);
}

.inline-image {
    margin: 48px -60px;
    background-color: var(--bg-alt);
}

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

.inline-image figcaption {
    padding: 12px 24px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.cta-inline {
    background-color: var(--primary);
    color: var(--white);
    padding: 40px;
    margin: 48px 0;
    text-align: center;
}

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

.cta-inline p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: var(--accent);
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

.section-dark {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
}

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

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

.service-item {
    display: flex;
    gap: 48px;
    margin-bottom: 64px;
    align-items: flex-start;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 320px;
    background-color: var(--bg-alt);
}

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

.service-content {
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    color: var(--accent);
    margin: 16px 0;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-features li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.testimonial-block {
    background-color: var(--white);
    padding: 48px;
    margin: 48px 0;
    border-left: 4px solid var(--accent);
}

.testimonial-block blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-author {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.form-container {
    background-color: var(--white);
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

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

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

.contact-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.contact-block p {
    margin-bottom: 8px;
    color: var(--text-light);
}

footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

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

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

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

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

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

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

.disclaimer {
    background-color: var(--bg-alt);
    padding: 24px;
    margin: 48px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    border: 1px solid var(--border);
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
}

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

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

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

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

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

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

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

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

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

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

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

.legal-content h1 {
    margin-bottom: 48px;
}

.legal-content h2 {
    margin-top: 48px;
    font-size: 1.5rem;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

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

.about-hero {
    padding: 100px 0 60px;
    background-color: var(--bg-alt);
    text-align: center;
}

.timeline {
    position: relative;
    padding: 48px 0;
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.timeline-year {
    flex: 0 0 100px;
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 400;
}

.timeline-content {
    flex: 1;
    padding-left: 32px;
    border-left: 2px solid var(--border);
}

.cards-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 32px;
    border: 1px solid var(--border);
}

.card h3 {
    margin-bottom: 12px;
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    nav.active {
        transform: translateX(0);
    }

    nav a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

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

    .inline-image {
        margin: 32px -24px;
    }

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

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

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

    .timeline-item {
        flex-direction: column;
        gap: 16px;
    }

    .timeline-year {
        flex: none;
    }

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