:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c2c;
    --accent-color: #8b9d7c;
    --dark-color: #1a1a1a;
    --light-bg: #f9f7f4;
    --white: #ffffff;
    --text-color: #333333;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.nav-disclosure {
    font-size: 0.7rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-color);
    transition: color 0.3s;
}

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

.hero-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 600px;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s;
}

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

.intro-minimal {
    padding: 8rem 2rem;
    background-color: var(--light-bg);
}

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

.intro-text {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
    color: var(--text-color);
    text-align: center;
}

.visual-section {
    padding: 0;
}

.visual-split {
    display: flex;
    align-items: stretch;
}

.visual-image {
    flex: 0 0 50%;
    background-color: var(--accent-color);
}

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

.visual-content {
    flex: 0 0 50%;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

.visual-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.visual-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.image-immersive {
    position: relative;
    width: 100%;
    height: 70vh;
    background-color: var(--accent-color);
}

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

.immersive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
}

.immersive-overlay blockquote {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    font-style: italic;
}

.services-showcase {
    padding: 8rem 2rem;
    background-color: var(--light-bg);
}

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

.section-heading {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 5rem;
    letter-spacing: -0.02em;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-card {
    flex: 0 0 calc(50% - 1.5rem);
    background-color: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: var(--accent-color);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    margin: 2rem 2rem 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0 2rem 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin: 0 2rem 2rem;
}

.btn-select {
    margin: 0 2rem 2rem;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-section {
    padding: 0;
}

.form-visual-container {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
}

.form-image-side {
    flex: 0 0 45%;
    background-color: var(--accent-color);
}

.form-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-content-side {
    flex: 0 0 55%;
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

.form-content-side h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-content-side > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    background-color: var(--light-bg);
    color: var(--text-color);
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 1.2rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

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

.final-visual {
    position: relative;
    width: 100%;
    height: 60vh;
    background-color: var(--accent-color);
}

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

.final-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

.final-text {
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    text-align: center;
    max-width: 700px;
    padding: 0 2rem;
}

.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section p,
.footer-section li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-section a {
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.8rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    margin-top: 80px;
    background-color: var(--accent-color);
}

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

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
}

.page-hero-overlay h1 {
    font-size: 4rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.02em;
}

.content-narrative {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.content-narrative h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.content-narrative p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.visual-break {
    width: 100%;
    height: 70vh;
    background-color: var(--accent-color);
}

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

.split-content {
    padding: 0;
}

.split-container {
    display: flex;
    align-items: stretch;
}

.split-text {
    flex: 0 0 50%;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-bg);
}

.split-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.split-image {
    flex: 0 0 50%;
    background-color: var(--accent-color);
}

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

.cta-section {
    padding: 8rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
}

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

.services-intro {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.intro-large {
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 300;
    color: var(--text-color);
    text-align: center;
}

.service-detail {
    padding: 0;
}

.service-detail-container {
    display: flex;
    align-items: stretch;
    min-height: 80vh;
}

.service-detail.alternate .service-detail-container {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: var(--accent-color);
}

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

.service-detail-content {
    flex: 0 0 55%;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-bg);
}

.service-detail.alternate .service-detail-content {
    background-color: var(--white);
}

.service-detail-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.feature-list {
    margin-bottom: 2.5rem;
}

.feature-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.reservation-prompt {
    padding: 8rem 2rem;
    background-color: var(--dark-color);
    text-align: center;
}

.reservation-prompt-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.reservation-prompt-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.page-header-simple {
    padding: 10rem 2rem 4rem;
    background-color: var(--light-bg);
}

.page-header-simple h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: -0.02em;
}

.contact-content {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 0 0 60%;
}

.contact-visual {
    flex: 0 0 40%;
    background-color: var(--accent-color);
}

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

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-block h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.note {
    font-style: italic;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.link-text {
    color: var(--primary-color);
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: var(--white);
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.thanks-content {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-visual {
    flex: 0 0 40%;
    background-color: var(--accent-color);
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: var(--light-bg);
    margin-bottom: 2.5rem;
}

.service-confirmation p {
    font-size: 1rem;
    color: var(--text-color);
}

.thanks-next h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.steps-list {
    margin-bottom: 3rem;
}

.steps-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
}

.steps-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
}

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

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

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

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

.legal-content {
    padding: 4rem 2rem 6rem;
    background-color: var(--white);
}

.legal-content h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    list-style: disc;
}

.legal-update {
    margin-top: 3rem;
    font-style: italic;
    color: var(--accent-color);
}

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

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

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

.cookie-table td {
    font-size: 0.95rem;
    color: var(--text-color);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .visual-split,
    .split-container,
    .service-detail-container,
    .form-visual-container,
    .contact-layout,
    .thanks-container {
        flex-direction: column;
    }

    .visual-image,
    .visual-content,
    .split-text,
    .split-image,
    .service-detail-image,
    .service-detail-content,
    .form-image-side,
    .form-content-side,
    .contact-info,
    .contact-visual,
    .thanks-content,
    .thanks-visual {
        flex: 0 0 100%;
    }

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

@media (max-width: 768px) {
    .nav-overlay {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-heading,
    .page-hero-overlay h1 {
        font-size: 2.5rem;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}