:root {
    --primary: #2c5530;
    --primary-light: #3d7341;
    --secondary: #f5f5f0;
    --accent: #8fbc8f;
    --text-dark: #1a1a1a;
    --text-muted: #5a5a5a;
    --white: #ffffff;
    --border: #e0e0dc;
    --shadow: rgba(0,0,0,0.08);
    --fallback-bg: #d4d4c9;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

.ad-disclosure {
    background: var(--text-dark);
    color: var(--white);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
}

.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-list a {
    color: var(--text-muted);
    font-size: 15px;
    transition: color 0.2s;
    font-weight: 500;
}

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

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

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
    font-size: 14px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.intro-section {
    padding: 80px 0;
    background: var(--secondary);
}

.intro-grid {
    display: flex;
    gap: 64px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 16px var(--shadow);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

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

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

.services-split {
    display: flex;
    gap: 32px;
}

.service-card-large {
    flex: 2;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-large img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

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

.service-card-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-card-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    flex: 1;
}

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

.service-cards-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card-small {
    padding: 24px;
    border-radius: 12px;
    flex: 1;
}

.service-card-small h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card-small p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.service-card-small .price {
    font-size: 18px;
    margin-bottom: 0;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.process-section {
    background: var(--secondary);
}

.process-split {
    display: flex;
    min-height: 500px;
}

.process-image {
    flex: 1;
    position: relative;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.process-content {
    flex: 1;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-content h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonials-section {
    padding: 80px 0;
}

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

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

.testimonial {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background: var(--secondary);
    padding: 32px;
    border-radius: 12px;
    border: none;
    margin: 0;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

.cta-section {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-light {
    background: var(--secondary);
    color: var(--text-dark);
}

.cta-light .cta-content p {
    color: var(--text-muted);
}

.page-hero {
    background: var(--secondary);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.about-split,
.team-split,
.contact-split {
    display: flex;
    min-height: 450px;
}

.about-split.reverse,
.team-split.reverse {
    flex-direction: row-reverse;
}

.about-image,
.team-image,
.contact-map {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.about-image img,
.team-image img,
.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.about-content,
.team-content {
    flex: 1;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2,
.team-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.team-facts {
    list-style: none;
    margin-top: 24px;
}

.team-facts li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-muted);
}

.team-facts li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.values-section {
    padding: 80px 0;
}

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

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

.value-item {
    flex: 1 1 calc(25% - 24px);
    min-width: 220px;
    text-align: center;
    padding: 32px 24px;
}

.value-icon {
    color: var(--primary);
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 14px;
    color: var(--text-muted);
}

.workshop-section {
    padding: 80px 0;
    background: var(--secondary);
}

.workshop-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.workshop-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.workshop-content p {
    color: var(--text-muted);
}

.workshop-gallery {
    display: flex;
    gap: 24px;
}

.workshop-item {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
    position: relative;
}

.workshop-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.services-overview {
    padding: 40px 0;
    background: var(--secondary);
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.services-intro p {
    color: var(--text-muted);
}

.service-detail-section {
    padding: 60px 0;
}

.service-detail-section.alt {
    background: var(--secondary);
}

.service-detail-split {
    display: flex;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

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

.service-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

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

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

.service-features li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-muted);
    font-size: 14px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 14px;
    color: var(--text-muted);
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 320px;
    position: relative;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.pricing-table-section {
    padding: 80px 0;
    background: var(--secondary);
}

.pricing-table-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.pricing-table-wrapper {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px var(--shadow);
}

.pricing-table th,
.pricing-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.pricing-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover {
    background: var(--secondary);
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

.service-form-section {
    padding: 80px 0;
}

.form-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.form-intro p {
    color: var(--text-muted);
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 24px var(--shadow);
}

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

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

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

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

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

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

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

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

.contact-info {
    flex: 1;
    padding: 48px;
}

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

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-item p,
.contact-item address {
    color: var(--text-muted);
    font-style: normal;
    line-height: 1.8;
}

.contact-note {
    padding: 20px;
    background: var(--secondary);
    border-radius: 8px;
}

.contact-note p {
    font-size: 14px;
    color: var(--text-muted);
}

.faq-section {
    padding: 80px 0;
    background: var(--secondary);
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-muted);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

.thanks-container {
    max-width: 500px;
    text-align: center;
}

.thanks-icon {
    color: var(--primary);
    margin-bottom: 32px;
}

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

.thanks-service {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
}

.thanks-container > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.thanks-next {
    background: var(--secondary);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 20px;
    margin-bottom: 16px;
}

.thanks-next ol {
    margin-left: 20px;
    color: var(--text-muted);
}

.thanks-next li {
    margin-bottom: 8px;
}

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

.legal-article {
    max-width: 800px;
    margin: 0 auto;
}

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

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article h3 {
    font-size: 18px;
    margin: 28px 0 12px;
    color: var(--text-dark);
}

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

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

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

.legal-article address {
    font-style: normal;
    margin: 16px 0;
    color: var(--text-muted);
    line-height: 2;
}

.legal-article a {
    color: var(--primary);
    text-decoration: underline;
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 64px 0 32px;
}

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

.footer-main {
    display: flex;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    flex: 1;
    max-width: 280px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

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

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

.footer-column a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

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

.footer-column address {
    font-size: 14px;
    font-style: normal;
    color: rgba(255,255,255,0.7);
    line-height: 2;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
}

.disclaimer {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    line-height: 1.8;
}

.copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    min-width: 280px;
}

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

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

.cookie-buttons .btn {
    padding: 10px 24px;
    font-size: 14px;
}

@media (max-width: 900px) {
    .hero-split,
    .about-split,
    .team-split,
    .process-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .about-content,
    .team-content,
    .process-content,
    .contact-info {
        padding: 48px 24px;
    }

    .hero-image,
    .about-image,
    .team-image,
    .process-image,
    .contact-map {
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .intro-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        min-width: 140px;
    }

    .services-split {
        flex-direction: column;
    }

    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        min-height: 250px;
        order: -1;
    }

    .workshop-gallery {
        flex-direction: column;
    }

    .workshop-item {
        min-height: 250px;
    }

    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 16px var(--shadow);
    }

    .main-nav.active .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

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

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

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

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

    .value-item {
        min-width: 100%;
    }

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

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

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