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

:root {
    --primary: #2d5016;
    --secondary: #8b4789;
    --accent: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #faf9f7;
    --bg-white: #ffffff;
    --border: #e5e3df;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #3d6820;
}

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

.btn-reject:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

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

.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: var(--accent);
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.cta-primary:hover {
    background: #3d6820;
    transform: translateY(-2px);
}

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

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

.value-split,
.philosophy-split,
.testimonial-split {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
}

.value-split.reverse {
    flex-direction: row-reverse;
}

.value-visual,
.philosophy-visual,
.testimonial-visual {
    flex: 1;
    position: relative;
    background: var(--secondary);
}

.value-visual img,
.philosophy-visual img,
.testimonial-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-content,
.philosophy-content,
.testimonial-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-content {
    background: var(--bg-white);
}

.philosophy-content {
    background: var(--bg-light);
}

.testimonial-content {
    background: var(--bg-white);
}

.value-content h2,
.philosophy-content h2,
.testimonial-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.value-content p,
.philosophy-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.philosophy-content .cta-secondary {
    margin-top: 1.5rem;
    align-self: flex-start;
}

blockquote {
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 4px solid var(--primary);
}

blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-highlight {
    padding: 6rem 4rem;
    background: var(--bg-light);
}

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--accent);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--text-dark);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0 1.5rem 1.5rem;
    line-height: 1.7;
    flex: 1;
}

.service-card .price {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 1.5rem 1.5rem;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #3d6820;
}

.form-section {
    padding: 6rem 4rem;
    background: var(--bg-white);
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.form-visual {
    flex: 1;
    background: var(--secondary);
    position: relative;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.selected-service-display {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.1rem 2.5rem;
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #3d6820;
    transform: translateY(-2px);
}

.site-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 4rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-section p {
    color: #aaa;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.email-display {
    color: #aaa;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary);
}

.footer-disclaimer p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

.thanks-container {
    max-width: 800px;
    margin: 8rem auto;
    padding: 4rem;
    text-align: center;
    background: var(--bg-light);
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
}

.legal-page p,
.legal-page ul {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-page ul {
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
}

.contact-split {
    display: flex;
    min-height: 80vh;
    align-items: stretch;
}

.contact-visual {
    flex: 1;
    background: var(--primary);
    position: relative;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.contact-info h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.info-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .hero-split,
    .value-split,
    .philosophy-split,
    .testimonial-split,
    .form-container,
    .contact-split {
        flex-direction: column;
    }

    .value-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .value-content,
    .philosophy-content,
    .testimonial-content,
    .form-content,
    .contact-info {
        padding: 3rem 2rem;
    }

    .hero-visual,
    .value-visual,
    .philosophy-visual,
    .testimonial-visual,
    .form-visual,
    .contact-visual {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        justify-content: center;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
    }
}
