:root {
    --primary: #2d5a4a;
    --primary-light: #3d7a64;
    --secondary: #f5f0e8;
    --accent: #c49a6c;
    --text-dark: #1a1a1a;
    --text-muted: #5a5a5a;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-heavy: 0 12px 48px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

* {
    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-dark);
    background: var(--white);
}

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

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

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

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

a:hover {
    color: var(--accent);
}

h1, h2, h3, h4, h5 {
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

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

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

.nav-links a {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

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

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

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

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

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

.hero-editorial h1 {
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

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

.hero-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

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

.editorial-section:nth-child(even) {
    background: var(--secondary);
}

.editorial-intro {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    border-left: 3px solid var(--accent);
    padding-left: 24px;
}

.editorial-text {
    margin-bottom: 28px;
}

.editorial-text p {
    margin-bottom: 20px;
}

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

.inline-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.inline-image figcaption {
    padding: 16px 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(0,0,0,0.02);
    font-style: italic;
}

/* Quote Block */
.quote-block {
    margin: 48px 0;
    padding: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    position: relative;
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 6rem;
    opacity: 0.2;
    line-height: 1;
}

.quote-block p {
    font-size: 1.3rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.quote-block cite {
    display: block;
    margin-top: 16px;
    font-size: 0.95rem;
    font-style: normal;
    opacity: 0.8;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item {
    display: flex;
    gap: 40px;
    padding: 40px;
    background: var(--secondary);
    border-radius: var(--radius-lg);
    align-items: flex-start;
    transition: var(--transition);
}

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

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    min-width: 80px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.service-price {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
}

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

.cta-inline-text {
    color: var(--white);
}

.cta-inline-text h3 {
    margin-bottom: 4px;
}

.cta-inline-text p {
    opacity: 0.9;
    font-size: 0.95rem;
}

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

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

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

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

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

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

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

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

.btn-accent:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

.testimonial-info strong {
    display: block;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.85;
}

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

.form-wrapper {
    background: var(--secondary);
    padding: 60px;
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h2 {
    margin-bottom: 12px;
}

.form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

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

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

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

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

.form-submit {
    margin-top: 32px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1.1rem;
}

/* About Page */
.about-hero {
    padding: 140px 0 80px;
    background: var(--secondary);
    text-align: center;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.about-grid.reverse {
    flex-direction: row-reverse;
}

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

.about-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
}

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

/* Values */
.values-section {
    padding: 100px 0;
    background: var(--secondary);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
}

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

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Page */
.contact-hero {
    padding: 140px 0 60px;
    background: var(--secondary);
    text-align: center;
}

.contact-content {
    padding: 80px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.contact-item-text strong {
    display: block;
    margin-bottom: 4px;
}

.contact-item-text span {
    color: var(--text-muted);
}

.contact-form-wrap {
    flex: 1;
    background: var(--secondary);
    padding: 48px;
    border-radius: var(--radius-lg);
}

/* Services Page */
.services-hero {
    padding: 140px 0 60px;
    background: linear-gradient(165deg, var(--secondary) 0%, var(--white) 100%);
    text-align: center;
}

.services-detailed {
    padding: 80px 0;
}

.service-detailed-item {
    display: flex;
    gap: 48px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    align-items: center;
}

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

.service-detailed-item:last-child {
    border-bottom: none;
}

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

.service-detailed-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.service-detailed-content {
    flex: 1;
}

.service-detailed-content h3 {
    margin-bottom: 16px;
    font-size: 1.8rem;
}

.service-detailed-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-muted);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    background: linear-gradient(165deg, var(--secondary) 0%, var(--white) 100%);
}

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

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

.thanks-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.thanks-content h1 {
    margin-bottom: 16px;
    color: var(--primary);
}

.thanks-content p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.15rem;
}

.thanks-service {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 32px;
}

/* Legal Pages */
.legal-hero {
    padding: 140px 0 40px;
    background: var(--secondary);
    text-align: center;
}

.legal-content {
    padding: 60px 0 100px;
}

.legal-content h2 {
    margin-top: 48px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
    color: var(--text-muted);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 32px;
}

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

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

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

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

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

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

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

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

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

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

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

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

.cookie-inner p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

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

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

.cookie-buttons .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-heavy);
}

/* Mobile */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .about-grid,
    .about-grid.reverse,
    .contact-grid,
    .service-detailed-item,
    .service-detailed-item:nth-child(even) {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
        gap: 20px;
    }

    .inline-image {
        margin: 32px -12px;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

@media (max-width: 600px) {
    .hero-editorial {
        padding: 120px 0 60px;
    }

    .editorial-section {
        padding: 60px 0;
    }

    .services-section,
    .testimonials-section,
    .form-section,
    .about-content,
    .contact-content,
    .services-detailed {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .quote-block {
        padding: 28px;
    }

    .quote-block p {
        font-size: 1.1rem;
    }
}
