:root {
    --primary: #2c3e50;
    --secondary: #8b7355;
    --accent: #c9a961;
    --light: #f8f6f3;
    --dark: #1a1a1a;
    --text: #333;
    --text-light: #666;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 4px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

.narrow {
    max-width: 720px;
    margin: 0 auto;
}

/* Ad Disclosure */
.ad-disclosure {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    font-family: Arial, sans-serif;
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

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

.main-nav {
    display: flex;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-family: Arial, sans-serif;
    transition: var(--transition);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Editorial */
.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.hero-editorial .narrow {
    text-align: center;
}

.hero-category {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 16px;
    font-size: 11px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

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

.hero-meta {
    color: var(--text-light);
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.hero-image-full {
    margin: 48px 0;
    background-color: #d4c4a8;
}

.hero-image-full img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* Editorial Content */
.editorial-content {
    padding: 60px 0;
}

.editorial-content p {
    margin-bottom: 28px;
    font-size: 18px;
}

.editorial-content h2 {
    font-size: 32px;
    color: var(--primary);
    margin: 48px 0 24px;
    font-weight: 400;
}

.editorial-content h3 {
    font-size: 24px;
    color: var(--secondary);
    margin: 36px 0 20px;
    font-weight: 400;
}

.pull-quote {
    border-left: 4px solid var(--accent);
    padding: 24px 32px;
    margin: 40px 0;
    background: var(--light);
    font-size: 22px;
    font-style: italic;
    color: var(--primary);
}

.inline-image {
    margin: 40px -60px;
    background-color: #c4b8a0;
}

.inline-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.inline-image figcaption {
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-light);
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Service Cards Editorial */
.services-editorial {
    padding: 80px 0;
    background: var(--light);
}

.services-editorial h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 400;
}

.services-editorial .intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    color: var(--text-light);
}

.service-card {
    background: var(--white);
    margin-bottom: 32px;
    box-shadow: var(--shadow);
    display: flex;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
}

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

.service-card-image {
    flex: 0 0 40%;
    background-color: #b8a888;
    min-height: 280px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-price {
    font-size: 28px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.service-price span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

/* CTA Inline */
.cta-inline {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    margin: 60px 0;
}

.cta-inline h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 400;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background: #d4b46e;
}

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

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

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

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

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 0 0 45%;
    background-color: #a89878;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 400;
}

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

/* Testimonials */
.testimonials {
    background: var(--light);
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 48px;
    font-weight: 400;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 24px;
    font-size: 17px;
}

.testimonial-author {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: var(--secondary);
}

/* Contact Form */
.contact-section {
    padding: 80px 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 400;
}

.contact-section .intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    color: var(--text-light);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.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;
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    min-width: 200px;
}

/* Contact Info */
.contact-info {
    padding: 60px 0;
    background: var(--primary);
    color: var(--white);
}

.contact-info-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
}

.contact-info-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
    opacity: 0.7;
}

.contact-info-item p {
    font-size: 18px;
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    color: var(--accent);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 12px;
}

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

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

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-family: Arial, sans-serif;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 13px;
    font-family: Arial, sans-serif;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

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

/* Thanks Page */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 400;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

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

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

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 32px;
    font-weight: 400;
}

.legal-page h2 {
    font-size: 24px;
    color: var(--secondary);
    margin: 40px 0 16px;
    font-weight: 400;
}

.legal-page p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-page ul {
    margin: 16px 0 16px 24px;
    color: var(--text-light);
}

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

/* Page Headers */
.page-header {
    background: var(--light);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 400;
}

.page-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        flex-direction: column;
    }

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

    .service-card {
        flex-direction: column !important;
    }

    .service-card-image {
        flex: none;
        min-height: 220px;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-top: 1px solid rgba(0,0,0,0.08);
        box-shadow: var(--shadow);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .main-nav a {
        display: block;
        padding: 12px 0;
    }

    .mobile-toggle {
        display: block;
    }

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

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

    .contact-info-grid {
        flex-direction: column;
        gap: 32px;
    }

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

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

    .footer-col {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 28px;
    }

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

    .service-card-content {
        padding: 24px;
    }
}
