:root {
    --primary: #2d4a3e;
    --primary-light: #3d6b54;
    --secondary: #8b7355;
    --accent: #c4a77d;
    --bg-light: #faf8f5;
    --bg-cream: #f5f1eb;
    --bg-sage: #e8ede9;
    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --border: #e0dcd5;
    --shadow: rgba(45, 74, 62, 0.08);
    --shadow-strong: rgba(45, 74, 62, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

.ad-disclosure {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

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

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

nav a {
    color: var(--text-medium);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.25s ease;
    font-size: 15px;
}

nav a:hover {
    background-color: var(--bg-sage);
    color: var(--primary);
}

nav a.active {
    background-color: var(--primary);
    color: var(--white);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
}

.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-sage);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 60px 0;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-strong);
}

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

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

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

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

section {
    padding: 80px 0;
}

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

.section-sage {
    background-color: var(--bg-sage);
}

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

.section-header h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.editorial-content {
    font-size: 18px;
    line-height: 1.85;
}

.editorial-content h2 {
    font-size: 30px;
    color: var(--primary);
    margin: 48px 0 20px;
}

.editorial-content h3 {
    font-size: 24px;
    color: var(--primary);
    margin: 36px 0 16px;
}

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

.editorial-content ul,
.editorial-content ol {
    margin: 20px 0 20px 24px;
    color: var(--text-medium);
}

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

.inline-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-sage);
}

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

.inline-image figcaption {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-light);
    background-color: var(--bg-cream);
}

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

.service-card {
    flex: 1 1 320px;
    max-width: 360px;
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px var(--shadow-strong);
}

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

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

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

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

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

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

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

.split-section {
    display: flex;
    gap: 48px;
    align-items: center;
}

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

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--bg-sage);
}

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

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--bg-sage);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.feature-text h4 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 15px;
    color: var(--text-medium);
}

.testimonial-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.testimonial-section .section-header h2 {
    color: var(--white);
}

.testimonial-section .section-header p {
    color: rgba(255,255,255,0.8);
}

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

.testimonial-card {
    flex: 1 1 300px;
    max-width: 380px;
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

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

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
}

.testimonial-location {
    font-size: 13px;
    opacity: 0.8;
}

.contact-form-section {
    background-color: var(--bg-cream);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px var(--shadow);
}

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

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

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

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

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

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

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

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

.contact-info-block {
    flex: 1 1 280px;
}

.contact-info-block h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-info-block p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.contact-info-block .email-text {
    color: var(--secondary);
    font-weight: 500;
}

footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 24px;
}

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

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

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

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.25s ease;
}

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

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

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

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

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

.footer-legal a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

.disclaimer {
    background-color: var(--bg-cream);
    padding: 24px;
    border-radius: 12px;
    margin: 40px 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-medium);
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

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

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

.cookie-reject {
    background-color: var(--bg-cream);
    color: var(--text-dark);
}

.cookie-reject:hover {
    background-color: var(--border);
}

.page-header {
    background: linear-gradient(135deg, var(--bg-sage) 0%, var(--bg-cream) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-medium);
}

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

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

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

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

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

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

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: var(--primary);
}

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

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

.cta-inline {
    background-color: var(--bg-sage);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
}

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

.cta-inline p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about-team {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.team-member {
    flex: 1 1 200px;
    max-width: 260px;
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--bg-sage);
    margin: 0 auto 16px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-member p {
    font-size: 14px;
    color: var(--text-light);
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 24px var(--shadow-strong);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.sticky-cta a:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
    }

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

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

    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 8px 24px var(--shadow);
    }

    nav.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        min-height: 400px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    section {
        padding: 50px 0;
    }

    .form-wrapper {
        padding: 24px;
    }

    .footer-grid {
        gap: 32px;
    }

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

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