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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #8b6f47;
    --color-accent: #a0826d;
    --color-background: #fafaf8;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #e0e0e0;
    --spacing-unit: 1.5rem;
    --max-text-width: 680px;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-background);
}

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-secondary);
}

.ad-notice {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-style: italic;
    border-left: 2px solid var(--color-border);
    padding-left: 1rem;
}

.editorial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.article-header {
    margin-bottom: 3rem;
}

.header-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 2rem;
    background-color: var(--color-primary);
}

.header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
}

.header-overlay h1 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    max-width: var(--max-text-width);
}

.subtitle {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
    max-width: var(--max-text-width);
}

.text-block {
    max-width: var(--max-text-width);
    margin: 0 auto 3rem;
}

.text-block h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.text-block p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.inline-image {
    width: 100%;
    max-width: var(--max-text-width);
    margin: 3rem auto;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--color-border);
}

.inline-image figcaption {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    text-align: center;
}

.cta-inline {
    max-width: var(--max-text-width);
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #f5f5f0;
    border-left: 4px solid var(--color-secondary);
}

.cta-inline p {
    margin: 0;
    font-size: 1.1rem;
}

.text-link {
    color: var(--color-secondary);
    text-decoration: underline;
    cursor: pointer;
}

.text-link:hover {
    color: var(--color-primary);
}

.testimonial-inline {
    max-width: var(--max-text-width);
    margin: 3rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
}

.testimonial-inline blockquote {
    border-left: 3px solid var(--color-accent);
    padding-left: 1.5rem;
}

.testimonial-inline p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    text-align: left;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    font-style: normal;
    color: var(--color-text-light);
}

.collections-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: var(--max-text-width);
    margin: 2rem auto 3rem;
}

.collection-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-border);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.btn-select {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background-color: var(--color-secondary);
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    max-width: var(--max-text-width);
    margin: 4rem auto 3rem;
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
}

.form-section h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.form-section > p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--color-border);
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background-color: var(--color-background);
}

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

.form-group input[readonly] {
    background-color: #f5f5f0;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

.disclaimer-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: italic;
    line-height: 1.6;
    text-align: left;
}

.editorial-footer {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    font-size: 0.95rem;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background-color: var(--color-secondary);
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-page h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.thanks-page p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.thanks-page .service-info {
    background-color: #f5f5f0;
    padding: 1.5rem;
    border-left: 4px solid var(--color-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.thanks-page a {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--color-secondary);
}

.thanks-page a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .ad-notice {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--color-border);
        padding-top: 0.8rem;
    }

    .header-overlay h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .header-image {
        height: 350px;
    }

    .text-block p {
        text-align: left;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

.page-header {
    padding: 4rem 2rem 2rem;
    text-align: center;
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-info {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.contact-info strong {
    color: var(--color-primary);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    padding: 2rem;
}

.service-item h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.service-item p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-top: 1rem;
}

.about-image {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    display: block;
    height: auto;
    object-fit: cover;
    background-color: var(--color-border);
}