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

:root {
    --primary-color: #2c5530;
    --secondary-color: #7a9b76;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0dcd5;
}

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

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

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

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    margin-top: 3rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.nav-brand {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.narrow-text {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-editorial {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--bg-white);
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-lead {
    font-size: 1.5rem;
    font-style: italic;
}

.story-intro {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.drop-cap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    margin: 0.1rem 0.2rem 0 0;
    font-weight: bold;
    color: var(--primary-color);
}

.inline-cta {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.2rem;
}

.inline-cta:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.image-break {
    width: 100%;
    margin: 4rem 0;
}

.image-break img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.story-content {
    padding: 4rem 5%;
}

.story-quote {
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--accent-color);
    color: var(--text-light);
    background-color: var(--bg-light);
}

.visual-grid {
    display: flex;
    gap: 2rem;
    padding: 4rem 5%;
    flex-wrap: wrap;
}

.grid-item {
    flex: 1;
    min-width: 300px;
}

.grid-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.caption {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

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

.inline-cta-box h3 {
    margin-top: 0;
}

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 3rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card-detailed {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.service-image {
    width: 100%;
}

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

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    margin-top: 0;
    font-size: 1.8rem;
}

.service-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.service-price-large {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0 2rem 0;
}

.service-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-content li {
    margin-bottom: 0.8rem;
}

.testimonial-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.testimonial {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary-color);
}

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

.testimonial cite {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
}

.form-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-white);
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #00a910;
    background-color: transparent;
    border: 2px solid #00a910;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.btn-secondary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--bg-white);
    background-color: var(--accent-color);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-secondary-large:hover {
    background-color: #c49563;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

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

.final-cta {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.final-message {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--bg-white);
}

.page-header {
    text-align: center;
    padding: 5rem 5% 3rem 5%;
    background-color: var(--bg-light);
}

.header-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-info {
    padding: 3rem 5%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.thanks-hero {
    padding: 5rem 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-lead {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-style: italic;
}

.thanks-content {
    margin-top: 2rem;
}

.service-confirm {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
}

.thanks-next-steps ol {
    margin-top: 1.5rem;
    padding-left: 2rem;
}

.thanks-next-steps li {
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.thanks-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.legal-page .legal-content {
    padding: 3rem 5%;
}

.legal-page ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 5% 2rem 5%;
    margin-top: 5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
}

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

.footer-section li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #ccc;
    font-size: 0.95rem;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    padding: 1rem;
    text-align: center;
    z-index: 99;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-btn {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-white);
}

.sticky-cta-btn:hover {
    color: var(--text-dark);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .footer-content {
        flex-direction: column;
    }

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

    .thanks-cta-group {
        flex-direction: column;
    }

    .thanks-cta-group a {
        margin-right: 0;
    }
}

@media (min-width: 769px) {
    .service-card {
        flex-direction: row;
    }

    .service-image {
        width: 45%;
        flex-shrink: 0;
    }

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