:root {
    --primary: #2d5a27;
    --primary-dark: #1e3d1a;
    --secondary: #e8a838;
    --accent: #c45c26;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --bg: #fdfbf7;
    --bg-alt: #f5f0e8;
    --bg-dark: #2c2c2c;
    --white: #ffffff;
    --border: #e0d8cc;
    --shadow: rgba(0,0,0,0.08);
    --radius: 6px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

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

.narrow {
    max-width: 760px;
    margin: 0 auto;
}

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

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

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

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

h1 {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

.ad-disclosure {
    background: var(--bg-alt);
    padding: 8px 0;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.top-nav {
    background: var(--white);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px var(--shadow);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

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

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

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

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

.hero-editorial {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-image-wrap {
    margin: 40px auto;
    max-width: 900px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #d4c9b8;
    box-shadow: 0 20px 50px var(--shadow);
}

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

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

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

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

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

.btn-secondary:hover {
    background: #d4962f;
}

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

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

.section {
    padding: 70px 0;
}

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

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

.section-dark h2, .section-dark h3 {
    color: var(--white);
}

.section-dark p {
    color: #c9c9c9;
}

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

.mb-lg {
    margin-bottom: 48px;
}

.mb-md {
    margin-bottom: 32px;
}

.mb-sm {
    margin-bottom: 16px;
}

.story-block {
    margin-bottom: 48px;
}

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

.inline-img {
    margin: 32px 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: #d4c9b8;
}

.inline-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.inline-img.small {
    max-width: 500px;
}

.inline-img.float-left {
    float: left;
    margin-right: 32px;
    margin-bottom: 16px;
    max-width: 45%;
}

.inline-img.float-right {
    float: right;
    margin-left: 32px;
    margin-bottom: 16px;
    max-width: 45%;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.inline-cta {
    background: var(--bg-alt);
    padding: 32px;
    border-radius: var(--radius);
    margin: 40px 0;
    border-left: 4px solid var(--primary);
}

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

.inline-cta p {
    margin-bottom: 16px;
}

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

.service-card {
    display: flex;
    gap: 28px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-card-img {
    flex-shrink: 0;
    width: 200px;
    height: 160px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #d4c9b8;
}

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

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

.service-card-content h3 {
    margin-bottom: 8px;
}

.service-card-content p {
    margin-bottom: 12px;
    color: var(--text-light);
}

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

.service-price span {
    font-size: 0.9rem;
    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: var(--radius);
    overflow: hidden;
    background: #d4c9b8;
}

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

.testimonial-block {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    margin: 40px 0;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
}

.testimonial-block::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-block p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.contact-info {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-info-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
}

.form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

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

.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;
}

.footer {
    background: var(--bg-dark);
    color: #c9c9c9;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #a9a9a9;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.9rem;
}

.disclaimer {
    background: var(--bg-alt);
    padding: 24px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 40px;
}

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

.legal-content h1 {
    margin-bottom: 32px;
}

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

.legal-content p, .legal-content ul {
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 24px;
}

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

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

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

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

.cookie-inner p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

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

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

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

.grid-2 > * {
    flex: 1;
}

.page-header {
    background: var(--bg-alt);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-light);
    margin: 0;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.card-img {
    height: 200px;
    background: #d4c9b8;
}

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

.card-body {
    padding: 24px;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px var(--shadow);
    }

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

    .nav-links li {
        border-bottom: 1px solid var(--border);
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

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

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

    .service-card {
        flex-direction: column;
    }

    .service-card-img {
        width: 100%;
        height: 200px;
    }

    .inline-img.float-left,
    .inline-img.float-right {
        float: none;
        margin: 24px 0;
        max-width: 100%;
    }

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

    h1 {
        font-size: 2rem;
    }

    .hero-editorial h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .hero-image-wrap img {
        height: 300px;
    }

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