:root {
    --primary-gold: #c9a961;
    --dark-gold: #9d7d3c;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-cream: #faf8f5;
    --bg-white: #ffffff;
    --border-light: #e0ddd8;
    --accent-warm: #8b6f47;
}

* {
    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-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

.nav-minimal {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.article-hero {
    margin-bottom: 3rem;
    text-align: center;
}

.article-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.6;
}

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

.opening-paragraph {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.editorial-content p {
    margin-bottom: 1.5rem;
}

.editorial-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
    font-weight: 600;
}

.editorial-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.editorial-content ul,
.editorial-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.editorial-content li {
    margin-bottom: 0.8rem;
}

.editorial-content a {
    color: var(--primary-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.editorial-content a:hover {
    color: var(--dark-gold);
}

.editorial-image {
    margin: 3rem 0;
}

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

blockquote.testimonial-inline {
    border-left: 4px solid var(--primary-gold);
    padding-left: 2rem;
    margin: 3rem 0;
    font-style: italic;
    color: var(--text-medium);
    font-size: 1.1rem;
}

blockquote.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-light);
}

.inline-cta {
    text-align: center;
    margin: 3rem 0;
}

.cta-link {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--dark-gold);
    border-bottom-color: var(--dark-gold);
}

.cta-button-large {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.cta-button-large:hover {
    background-color: var(--dark-gold);
}

.inline-cta.centered {
    text-align: center;
}

.highlight-section {
    background-color: var(--bg-cream);
    padding: 2.5rem;
    margin: 3rem -2.5rem;
    border-radius: 4px;
}

.stats-inline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: var(--bg-cream);
    border-radius: 4px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.service-card {
    background-color: var(--bg-cream);
    padding: 2.5rem;
    border-radius: 4px;
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--primary-gold);
    background-color: var(--bg-white);
}

.badge,
.featured-badge {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 3px;
    font-size: 0.85rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.service-details {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.select-service-btn {
    background-color: var(--primary-gold);
    color: var(--bg-white);
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s ease;
    width: 100%;
}

.select-service-btn:hover {
    background-color: var(--dark-gold);
}

.trust-section,
.urgency-section,
.reveal-section {
    margin: 4rem 0;
}

.availability-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
}

.availability-note p {
    margin: 0;
    color: var(--text-dark);
}

.editorial-form {
    background-color: var(--bg-cream);
    padding: 2.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 3px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-white);
}

.form-group textarea {
    resize: vertical;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.submit-button {
    background-color: var(--primary-gold);
    color: var(--bg-white);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--dark-gold);
}

.closing-section {
    margin-top: 4rem;
}

.signature {
    margin-top: 3rem;
    font-style: italic;
    color: var(--text-medium);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    padding: 1rem;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-cta-button {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--bg-white);
    padding: 0.9rem 2.5rem;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: var(--dark-gold);
}

.site-footer {
    background-color: var(--text-dark);
    color: #c0c0c0;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.7;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #808080;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
}

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

.cookie-btn {
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: var(--dark-gold);
}

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-detail {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-gold);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-gold);
}

.contact-link:hover {
    color: var(--dark-gold);
    border-bottom-color: var(--dark-gold);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.thanks-page .thanks-service-info {
    background-color: var(--bg-cream);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
    text-align: center;
}

.thanks-contact-box {
    background-color: var(--bg-cream);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
    text-align: center;
}

.thanks-contact-box p {
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.services-detail {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    background-color: var(--bg-cream);
    padding: 3rem;
    border-radius: 4px;
}

.service-detail-card.featured-service {
    border: 2px solid var(--primary-gold);
    background-color: var(--bg-white);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
}

.urgent {
    border-left: 4px solid #ff6b6b;
}

.urgent-badge {
    display: inline-block;
    background-color: #ff6b6b;
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 3px;
    font-size: 0.85rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin: 1rem 0;
}

.min-quantity {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
}

.legal-page .editorial-content {
    font-size: 1rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
}

.legal-page h3 {
    font-size: 1.3rem;
}

@media (min-width: 768px) {
    .editorial-container {
        padding: 4rem 3rem 6rem;
    }

    .article-hero h1 {
        font-size: 3.5rem;
    }

    .stats-inline {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-block {
        flex: 1 1 300px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 17px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

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

    .hero-lead {
        font-size: 1.1rem;
    }

    .editorial-content h2 {
        font-size: 1.7rem;
    }

    .highlight-section {
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 2rem 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .sticky-cta {
        padding: 0.8rem;
    }

    .sticky-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}