:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8fb996;
    --accent-color: #4a7c59;
    --text-color: #2c3e2d;
    --text-light: #5a6b5c;
    --bg-light: #f7faf7;
    --bg-cream: #fafdf9;
    --bg-muted: #e8f0e9;
    --white: #ffffff;
    --border-color: #d4e5d6;
    --shadow-soft: 0 4px 20px rgba(45, 90, 61, 0.08);
    --shadow-medium: 0 8px 32px rgba(45, 90, 61, 0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

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

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

.header-top {
    background: var(--bg-muted);
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

.header-main {
    padding: 16px 0;
}

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

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

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

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

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

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero h1 {
    font-size: 3rem;
    max-width: 600px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 520px;
    margin-bottom: 2rem;
}

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

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

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

.section {
    padding: 80px 0;
}

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

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

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

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.editorial-intro {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.editorial-intro p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
}

.editorial-intro p:first-of-type::first-letter {
    font-size: 4rem;
    float: left;
    line-height: 1;
    margin-right: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.inline-image {
    margin: 40px -60px;
    background-color: var(--bg-muted);
}

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

.inline-image figcaption {
    padding: 12px 60px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.pull-quote {
    margin: 48px 0;
    padding: 32px 40px;
    border-left: 4px solid var(--primary-color);
    background: var(--bg-light);
}

.pull-quote p {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-color);
    margin: 0;
}

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

.content-section h2 {
    margin-bottom: 24px;
}

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

.cta-inline p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}

.cta-inline h3 {
    color: var(--white);
    margin-bottom: 8px;
}

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

.cta-inline .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

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

.service-item {
    display: flex;
    gap: 32px;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 280px;
    background-color: var(--bg-muted);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-content h3 {
    color: var(--primary-color);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 12px 0 16px;
}

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

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

.team-intro {
    margin-bottom: 48px;
}

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

.team-member {
    flex: 0 0 calc(50% - 12px);
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
}

.team-photo {
    flex: 0 0 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--bg-muted);
}

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

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

.team-info .role {
    font-size: 14px;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.team-info p {
    font-size: 14px;
    margin: 0;
}

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

.value-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.value-icon {
    flex: 0 0 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.value-content h4 {
    margin-bottom: 8px;
}

.value-content p {
    margin: 0;
    font-size: 15px;
}

.contact-info {
    padding: 48px 0;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    margin-bottom: 24px;
}

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

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

.contact-item p {
    margin: 0;
}

.contact-map {
    flex: 1;
    background: var(--bg-muted);
    border-radius: 12px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.form-container h2 {
    text-align: center;
    margin-bottom: 8px;
}

.form-container > p {
    text-align: center;
    margin-bottom: 32px;
}

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

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

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

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

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

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

.form-submit .btn {
    min-width: 200px;
}

.form-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

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

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

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

.legal-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

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

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

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

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

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

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

.thanks-content h1 {
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

footer {
    background: var(--text-color);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 24px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.disclaimer {
    margin-top: 32px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

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

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

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.btn-reject {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

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

@media (max-width: 900px) {
    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 calc(50% - 24px);
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: none;
    }

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

    .team-member {
        flex: 0 0 100%;
    }
}

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

    h2 {
        font-size: 1.6rem;
    }

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

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

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

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

    nav a {
        display: block;
        padding: 12px 0;
    }

    .mobile-toggle {
        display: block;
    }

    .inline-image {
        margin: 32px -24px;
    }

    .inline-image figcaption {
        padding: 12px 24px;
    }

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

    .footer-col {
        flex: 0 0 100%;
    }

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

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

@media (max-width: 480px) {
    .section {
        padding: 48px 0;
    }

    .hero {
        min-height: 50vh;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons button {
        width: 100%;
    }
}
