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

:root {
    --forest-dark: #1a2e1a;
    --forest-medium: #2d4a2d;
    --forest-light: #4a6b4a;
    --earth: #8b7355;
    --cream: #f5f1e8;
    --white: #ffffff;
    --accent: #d4a574;
    --text-dark: #2c2c2c;
    --text-light: #666666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--cream);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--forest-dark);
    color: var(--cream);
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
    gap: 15px;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #e0b485;
}

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

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

.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255,255,255,0.95);
    padding: 15px 40px;
    border-radius: 50px;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: var(--forest-dark);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--forest-dark);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--forest-medium);
    transform: translateY(-2px);
}

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

.hero-image-overlay {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.hero-overlay-text h1 {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-overlay-text p {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-hero {
    display: inline-block;
    background: var(--white);
    color: var(--forest-dark);
    padding: 18px 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.visual-story {
    padding: 0;
    background: var(--cream);
}

.story-block {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.story-image-large {
    width: 65%;
    height: 700px;
    overflow: hidden;
}

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

.story-text-overlay {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 60px;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.story-text-overlay h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--forest-dark);
    line-height: 1.3;
}

.story-text-overlay p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.immersive-section {
    padding: 120px 5%;
    background: var(--forest-dark);
    color: var(--cream);
}

.immersive-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.immersive-left {
    flex: 1;
}

.immersive-left h3 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.3;
}

.immersive-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-inline {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #e0b485;
    border-color: #e0b485;
}

.immersive-right {
    flex: 1;
    max-width: 500px;
}

.immersive-right img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.trust-visual {
    padding: 100px 5%;
    background: var(--cream);
}

.trust-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.trust-quote {
    flex: 1;
}

.trust-quote blockquote {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--forest-dark);
    font-style: italic;
    margin-bottom: 25px;
}

.trust-quote cite {
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.trust-image {
    flex: 1;
    max-width: 600px;
}

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

.experience-grid {
    padding: 100px 5%;
    background: var(--white);
}

.section-title-center {
    text-align: center;
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 70px;
    color: var(--forest-dark);
}

.exp-cards {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.exp-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exp-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 25px;
}

.exp-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--forest-dark);
}

.exp-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.offer-reveal {
    padding: 120px 5%;
    background: var(--cream);
}

.offer-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.offer-intro h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--forest-dark);
}

.offer-intro p {
    font-size: 19px;
    color: var(--text-light);
}

.offer-list {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.offer-item.reverse {
    flex-direction: row-reverse;
}

.offer-visual {
    flex: 1;
    max-width: 700px;
}

.offer-visual img {
    width: 100%;
    height: auto;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.offer-details {
    flex: 1;
}

.offer-details h3 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--forest-dark);
}

.offer-details p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.offer-details ul {
    list-style: none;
    margin-bottom: 30px;
}

.offer-details ul li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.offer-details ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--forest-medium);
    font-weight: 700;
}

.offer-details .price {
    font-size: 32px;
    font-weight: 600;
    color: var(--forest-dark);
    margin-bottom: 25px;
}

.cta-offer {
    display: inline-block;
    background: var(--forest-dark);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-offer:hover {
    background: var(--forest-medium);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.testimonials-visual {
    padding: 100px 5%;
    background: var(--forest-medium);
    color: var(--cream);
}

.testimonials-visual h2 {
    text-align: center;
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 70px;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial span {
    font-size: 14px;
    opacity: 0.8;
}

.booking-section {
    padding: 120px 5%;
    background: var(--white);
}

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

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

.booking-text h2 {
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--forest-dark);
}

.booking-text p {
    font-size: 18px;
    color: var(--text-light);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--forest-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 18px;
    background: var(--forest-dark);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--forest-medium);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.final-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.final-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.final-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.final-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
}

.final-text h2 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 35px;
}

.cta-final {
    display: inline-block;
    background: var(--white);
    color: var(--forest-dark);
    padding: 18px 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.footer {
    background: var(--forest-dark);
    color: var(--cream);
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto 40px;
    gap: 60px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: var(--cream);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--forest-dark);
    padding: 16px 35px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: #e0b485;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 15px;
        padding: 12px 25px;
        gap: 25px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-overlay-text h1 {
        font-size: 52px;
    }

    .story-text-overlay {
        padding: 40px;
        max-width: 450px;
    }

    .immersive-content {
        flex-direction: column;
        gap: 50px;
    }

    .trust-container {
        flex-direction: column;
    }

    .exp-cards {
        flex-direction: column;
    }

    .offer-item,
    .offer-item.reverse {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        top: 10px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-overlay-text h1 {
        font-size: 38px;
    }

    .hero-overlay-text p {
        font-size: 18px;
    }

    .story-block {
        min-height: auto;
    }

    .story-image-large {
        width: 100%;
        height: 400px;
    }

    .story-text-overlay {
        position: static;
        transform: none;
        margin: -50px 20px 0;
        padding: 30px;
    }

    .story-text-overlay h2 {
        font-size: 32px;
    }

    .immersive-section {
        padding: 60px 5%;
    }

    .immersive-left h3 {
        font-size: 28px;
    }

    .trust-quote blockquote {
        font-size: 22px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .offer-intro h2 {
        font-size: 34px;
    }

    .offer-details h3 {
        font-size: 28px;
    }

    .testimonials-visual h2 {
        font-size: 32px;
    }

    .booking-text h2 {
        font-size: 34px;
    }

    .final-text h2 {
        font-size: 38px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 28px;
        font-size: 14px;
    }

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

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