:root {
    --primary: #c45c26;
    --primary-dark: #9e4a1f;
    --secondary: #2c3e50;
    --accent: #e67e22;
    --light: #faf8f5;
    --cream: #f5f0e8;
    --dark: #1a1a1a;
    --text: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

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

.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

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

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

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

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

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

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

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

.nav-link {
    padding: 10px 18px;
    color: var(--text);
    font-weight: 500;
    border-radius: var(--radius);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: var(--cream);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

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

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

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-editorial h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image-wrap {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

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

/* Editorial Sections */
.section-editorial {
    padding: 80px 0;
}

.section-editorial.alt-bg {
    background: var(--cream);
}

.section-editorial h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--secondary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.section-editorial p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.section-editorial .inline-image {
    margin: 40px -60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.section-editorial .inline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.editorial-quote {
    padding: 40px;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-lg);
    margin: 40px 0;
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    position: relative;
}

.editorial-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 30px;
    font-size: 4rem;
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* Services Section */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-card-image {
    height: 200px;
    overflow: hidden;
}

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

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

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

.service-card h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

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

.service-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

/* CTA Inline */
.cta-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-lg);
    margin: 60px 0;
    color: var(--white);
}

.cta-inline h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cta-inline p {
    opacity: 0.9;
}

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

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

/* Features */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
}

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

.testimonials-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
    opacity: 0.95;
}

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

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

.testimonial-info strong {
    display: block;
    margin-bottom: 4px;
}

.testimonial-info span {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* About Section */
.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

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

/* Form Section */
.form-section {
    padding: 80px 0;
    background: var(--cream);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-container h2 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 12px;
}

.form-container .lead {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.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(196, 92, 38, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-info-item {
    flex: 1 1 200px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-info-item h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item p {
    color: var(--text);
    line-height: 1.6;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.legal-content .last-update {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 0.9rem;
}

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

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin: 24px 0 12px;
}

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

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

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

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    text-align: center;
    padding: 40px 20px;
}

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

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

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

.thanks-service {
    display: inline-block;
    padding: 12px 24px;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
}

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

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-text h4 {
    color: var(--secondary);
    margin-bottom: 8px;
}

.cookie-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cookie-text a {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

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

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

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

.cookie-reject {
    background: #e0e0e0;
    color: var(--text);
}

.cookie-reject:hover {
    background: #d0d0d0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.sticky-cta .btn {
    box-shadow: var(--shadow-hover);
    padding: 16px 28px;
}

/* Stats */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

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

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.2rem;
}

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

    .cta-inline {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-120%);
        transition: var(--transition);
    }

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

    .nav-toggle {
        display: flex;
    }

    .section-editorial .inline-image {
        margin: 30px -20px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .form-container {
        padding: 30px 20px;
    }

    .stats-row {
        gap: 40px;
    }

    .footer-grid {
        gap: 40px;
    }

    .sticky-cta {
        bottom: 80px;
        right: 20px;
    }

    .sticky-cta .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .cookie-btn {
        width: 100%;
    }
}
