:root {
    --primary: #2C5F41;
    --primary-dark: #1E4530;
    --secondary: #D4A574;
    --accent: #8B6B4D;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F0E8;
    --bg-sage: #E8EDE9;
    --text-dark: #2A2A2A;
    --text-medium: #5A5A5A;
    --text-light: #8A8A8A;
    --white: #FFFFFF;
    --border: #E0DCD4;
    --shadow: rgba(44, 95, 65, 0.08);
    --shadow-strong: rgba(44, 95, 65, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

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

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

a:hover {
    color: var(--primary-dark);
}

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

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

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

.ad-disclosure {
    background-color: var(--bg-cream);
    padding: 8px 0;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
}

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

nav ul li a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: transform 0.3s ease;
}

.hero-editorial {
    padding: 80px 0 60px;
    background-color: var(--bg-light);
}

.hero-editorial .container-narrow {
    text-align: center;
}

.hero-editorial h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-editorial .lead {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-wrapper {
    margin: 40px 0;
    background-color: var(--bg-sage);
}

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

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

.editorial-section:nth-child(even) {
    background-color: var(--bg-cream);
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
}

.editorial-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

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

.inline-image-caption {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    padding: 12px;
    background-color: var(--bg-cream);
}

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

.cta-inline h3 {
    margin-bottom: 1rem;
}

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

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

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

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

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

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.service-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.testimonial-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
}

.testimonial-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 22px);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-author {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    opacity: 0.8;
}

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

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    background-color: var(--bg-sage);
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-medium);
}

.contact-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    margin-bottom: 0;
    color: var(--text-dark);
}

.contact-form-wrapper {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

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

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

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

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

.disclaimer {
    background-color: var(--bg-cream);
    padding: 30px 0;
    border-top: 1px solid var(--border);
}

.disclaimer p {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0;
    line-height: 1.6;
}

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

.page-header h1 {
    margin-bottom: 0.5rem;
}

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

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

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.page-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.page-content ul li {
    margin-bottom: 0.5rem;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
    background-color: var(--bg-light);
}

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

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

.thanks-section h1 {
    margin-bottom: 1rem;
}

.thanks-section p {
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto 2rem;
}

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

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

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

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

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

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

.cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

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

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

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

@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 30px);
    }

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

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

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

    h2 {
        font-size: 1.6rem;
    }

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

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

    nav ul.active {
        display: flex;
    }

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

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 16px 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-image-wrapper img {
        height: 300px;
    }
}
