:root {
    --primary: #c73e1d;
    --primary-dark: #a32f12;
    --secondary: #2a5934;
    --accent: #f4a259;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --bg: #fefefe;
    --bg-alt: #f7f3ee;
    --bg-dark: #1a1a1a;
    --border: #e0dcd4;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
    --max-width: 720px;
    --max-width-wide: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Header */
.header {
    background: 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: 16px 24px;
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

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

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

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.ad-disclosure {
    background: var(--bg-alt);
    padding: 8px 16px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

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

.hero-editorial h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-editorial .lead {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-image {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 40px 0;
    background-color: var(--bg-alt);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.editorial-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 36px 0 16px;
    color: var(--text);
}

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

.editorial-content ul,
.editorial-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.editorial-content li {
    margin-bottom: 12px;
}

.inline-image {
    margin: 40px -60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg-alt);
}

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

.inline-image figcaption {
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-light);
    background: var(--bg-alt);
    text-align: center;
}

/* Blockquote */
.blockquote {
    border-left: 4px solid var(--primary);
    padding: 20px 30px;
    margin: 40px 0;
    background: var(--bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.blockquote p {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 12px;
}

.blockquote cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

/* CTA Inline */
.cta-inline {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 50px 0;
}

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

.cta-inline p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.cta-inline .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-inline .btn:hover {
    background: var(--bg-alt);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

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

.btn-secondary:hover {
    background: #1e4026;
}

/* Services Grid */
.services-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.services-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 16px;
}

.services-section .section-desc {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 1 1 320px;
    max-width: 360px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    height: 200px;
    background-color: var(--bg-alt);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

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

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text);
}

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

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

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

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

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

.about-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg-alt);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-dark);
    color: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    padding: 32px;
    border-radius: var(--radius-lg);
    flex: 1 1 300px;
    max-width: 380px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-role {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.contact-text strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

.contact-text span {
    color: var(--text-light);
    font-size: 15px;
}

.contact-form-wrapper {
    flex: 1;
    background: var(--bg-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(199, 62, 29, 0.1);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: color var(--transition);
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
}

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

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

.cookie-content {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

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

.cookie-accept:hover {
    background: var(--primary-dark);
}

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

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

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

.thanks-content {
    max-width: 500px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, #3d7a4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

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

.page-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

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

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: var(--text);
}

.legal-content h3 {
    font-size: 20px;
    margin: 30px 0 12px;
    color: var(--text);
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

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

/* Disclaimer */
.disclaimer {
    background: #fff8e7;
    border: 1px solid #f0d78c;
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 40px 0;
    font-size: 14px;
    color: #7a6a3a;
}

/* Highlight Box */
.highlight-box {
    background: var(--bg-alt);
    border-left: 4px solid var(--accent);
    padding: 24px 30px;
    margin: 30px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.highlight-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text);
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        font-size: 18px;
    }

    .nav a::after {
        display: none;
    }

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

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-grid {
        gap: 30px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        height: 280px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        max-width: 100%;
    }

    .testimonials-grid {
        gap: 20px;
    }

    .testimonial-card {
        max-width: 100%;
    }
}

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

    .container {
        padding: 0 16px;
    }

    .container-wide {
        padding: 0 16px;
    }

    .header-inner {
        padding: 12px 16px;
    }

    .hero-editorial {
        padding: 50px 0 40px;
    }

    .services-section,
    .about-section,
    .testimonials-section,
    .contact-section {
        padding: 50px 0;
    }

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

    .cta-inline {
        padding: 30px 20px;
    }
}
