:root {
    --color-primary: #2d5016;
    --color-secondary: #8b4513;
    --color-accent: #d4a574;
    --color-dark: #1a1a1a;
    --color-light: #faf8f5;
    --color-cream: #f5f0e8;
    --color-text: #333333;
    --color-muted: #6b6b6b;
    --color-border: #e0dcd4;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', sans-serif;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-light);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

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

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

.top-bar {
    background-color: var(--color-dark);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ad-disclosure {
    color: var(--color-accent);
    font-style: italic;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: #ccc;
    font-size: 0.8rem;
}

.top-links a:hover {
    color: #fff;
}

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

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    letter-spacing: 1px;
}

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

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

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

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

nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-dark);
}

.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background-color: var(--color-cream);
    overflow: hidden;
}

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

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

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

.hero-tag {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    padding: 6px 16px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
    font-size: 3rem;
}

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

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

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

.btn-primary:hover {
    background-color: #1e3a0f;
    color: #fff;
}

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

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

.btn-accent {
    background-color: var(--color-secondary);
    color: #fff;
}

.btn-accent:hover {
    background-color: #6d3610;
    color: #fff;
}

.section {
    padding: 80px 0;
}

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

.section-dark {
    background-color: var(--color-dark);
    color: #fff;
}

.section-dark h2,
.section-dark h3 {
    color: #fff;
}

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

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

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

.magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.magazine-main {
    flex: 2;
    min-width: 300px;
}

.magazine-sidebar {
    flex: 1;
    min-width: 280px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--color-border);
    margin-bottom: 30px;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-medium);
}

.feature-card-image {
    height: 280px;
    background-color: var(--color-cream);
    overflow: hidden;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-card-image img {
    transform: scale(1.05);
}

.feature-card-content {
    padding: 28px;
}

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

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

.price-tag {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-dark);
    padding: 8px 16px;
    font-weight: 600;
    font-size: 1.1rem;
}

.sidebar-box {
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-box h4 {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary);
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 32px;
    transition: var(--transition);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

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

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

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

.service-price span {
    font-size: 0.9rem;
    color: var(--color-muted);
    font-weight: 400;
}

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

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

.split-image {
    flex: 1;
    min-width: 300px;
    height: 450px;
    background-color: var(--color-cream);
}

.split-image img {
    width: 100%;
    height: 100%;
}

.testimonial-section {
    position: relative;
}

.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 32px;
    border-left: 4px solid var(--color-primary);
}

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

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

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

.cta-banner {
    background-color: var(--color-primary);
    color: #fff;
    padding: 60px;
    text-align: center;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-banner p {
    margin-bottom: 28px;
    opacity: 0.9;
}

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

.contact-form {
    background: #fff;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
}

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

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

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

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background-color: #1e3a0f;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.info-block {
    flex: 1;
    min-width: 200px;
}

.info-block h4 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

.info-block p {
    color: var(--color-muted);
}

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

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

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: #aaa;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

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

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

.legal-links a {
    color: #888;
    font-size: 0.9rem;
}

.disclaimer {
    background-color: #f0ebe3;
    padding: 24px;
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--color-muted);
    border-left: 3px solid var(--color-secondary);
}

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

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

.page-header p {
    color: var(--color-muted);
}

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

.content-section h2 {
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 16px;
}

.content-section ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

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

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

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

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

.thanks-content h1 {
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.cookie-accept:hover {
    background-color: #1e3a0f;
}

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #666;
}

.cookie-reject:hover {
    border-color: #fff;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: var(--color-cream);
    overflow: hidden;
}

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

.team-member h4 {
    margin-bottom: 4px;
}

.team-member p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

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

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

.contact-form-wrapper {
    flex: 1.5;
    min-width: 320px;
}

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

.contact-item h4 {
    margin-bottom: 8px;
    color: var(--color-primary);
}

.references-list {
    list-style: none;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    margin-top: 40px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }

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

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--color-border);
        padding: 20px;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }

    .hero-content {
        padding: 0 24px;
    }

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

    .split-image {
        height: 300px;
        order: -1;
    }

    .cta-banner {
        padding: 40px 24px;
    }

    .contact-form {
        padding: 24px;
    }

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

    .legal-links {
        justify-content: center;
    }
}
