:root {
    --color-navy: #1A1A1A;
    --color-gold: #C9A227;
    --color-cream: #F5F0E8;
    --color-teal: #2D5A4A;
    --color-accent: #3D7A5F;
    --color-text-main: #2C2C2C;
    --color-text-muted: #6B6B6B;
    --color-wood-light: #E8DFD0;
    --color-wood-medium: #D4C4A8;
    --font-heading: "Outfit", sans-serif;
    --font-heading-serif: "Playfair Display", serif;
    --font-body: "Inter", sans-serif;
    --section-padding: 6rem 0;
    --container-width: 1200px;
    --transition-smooth: all .3s cubic-bezier(.4, 0, .2, 1)
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden
}

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

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

ul,
ol {
    list-style: none
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem
}

.section {
    padding: var(--section-padding)
}

.section__header {
    text-align: center;
    margin-bottom: 4rem
}

.section__header h2 {
    font-family: var(--font-heading-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-navy);
    margin-bottom: .5rem
}

.text-muted {
    color: var(--color-text-muted)
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background: transparent
}

.nav.scrolled {
    background: #0f172af2;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: .75rem 0;
    box-shadow: 0 4px 30px #00000026
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem
}

.nav__logo img {
    height: 50px !important;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth)
}

.nav__links {
    display: flex;
    align-items: center;
    gap: .5rem
}

.nav__item {
    position: relative
}

.nav__link {
    color: #ffffffe6;
    font-size: .95rem;
    font-weight: 500;
    padding: .75rem 1rem;
    border-radius: 8px;
    transition: var(--transition-smooth)
}

.nav__link:hover,
.nav__link--active {
    color: var(--color-gold)
}

.nav__has-dropdown {
    position: relative
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px #00000026;
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth)
}

.nav__has-dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.nav__dropdown-link {
    display: block;
    padding: .75rem 1rem;
    color: var(--color-text-main);
    border-radius: 8px;
    font-size: .9rem;
    transition: var(--transition-smooth)
}

.nav__dropdown-link:hover {
    background: var(--color-cream);
    color: var(--color-teal)
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001
}

.nav__hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition-smooth)
}

.nav__hamburger.active .nav__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.nav__hamburger.active .nav__hamburger-line:nth-child(2) {
    opacity: 0
}

.nav__hamburger.active .nav__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

@media(max-width:900px) {
    .nav__hamburger {
        display: flex
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-navy);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        gap: .5rem;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 40px #0000004d
    }

    .nav__links.active {
        right: 0
    }

    .nav__link {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem
    }

    .nav__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #ffffff0d;
        box-shadow: none;
        margin-top: .5rem
    }

    .nav__dropdown-link {
        color: #fffc
    }

    .nav__dropdown-link:hover {
        background: #ffffff1a;
        color: var(--color-gold)
    }

    .nav__has-dropdown .nav__dropdown {
        display: none
    }

    .nav__has-dropdown:hover .nav__dropdown,
    .nav__has-dropdown:focus-within .nav__dropdown {
        display: block
    }

    .nav__actions {
        display: none
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .9rem 1.75rem;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none
}

.btn--primary {
    background: var(--color-teal);
    color: #fff
}

.btn--primary:hover {
    background: #24493c;
    transform: translateY(-2px)
}

.btn--gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, #d9b84e 100%);
    color: var(--color-navy)
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px #c9a22766
}

.btn--outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .6);
    color: #fff
}

.btn--outline:hover {
    background: #fff;
    color: var(--color-navy)
}

.btn--large {
    padding: 1.1rem 2.25rem;
    font-size: 1rem
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1)
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00000080, #0006, #0009);
    z-index: 1
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem
}

.hero__trust-badge {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #ffffff1a;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: .5rem 1rem;
    border-radius: 50px
}

.hero__stars {
    color: var(--color-gold);
    font-size: 1rem
}

.hero__rating {
    color: #ffffffe6;
    font-size: .85rem
}

.hero__eyebrow {
    display: inline-block;
    background: #d4af3726;
    color: var(--color-gold);
    padding: .5rem 1.5rem;
    border-radius: 50px;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, .3)
}

.hero__title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .3)
}

.hero__title em {
    font-style: italic;
    font-weight: 500;
    color: var(--color-gold)
}

.hero__subtitle {
    color: #ffffffd9;
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem
}

.nature-hero {
    position: relative;
    background: linear-gradient(135deg, #1a3c34, #0f172a);
    padding: 10rem 0 4rem;
    text-align: center;
    overflow: hidden
}

.nature-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    opacity: .6
}

.nature-hero h1 {
    font-family: var(--font-heading-serif);
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2
}

.nature-hero p {
    color: #ffffffe6;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    font-weight: 300
}

.about-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, white 0%, var(--color-cream) 100%);
    overflow: hidden
}

.about-section__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center
}

.about-section__image-wrapper {
    position: relative
}

.about-section__image-wrapper img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px #00000026
}

.about-section__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-gold);
    border-radius: 24px;
    z-index: -1
}

.about-section__eyebrow {
    display: inline-block;
    color: var(--color-teal);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 600;
    margin-bottom: 1rem
}

.about-section__content h2 {
    font-family: var(--font-heading-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-navy);
    margin-bottom: 1.5rem
}

.about-section__lead {
    font-size: 1.15rem;
    color: var(--color-text-main);
    margin-bottom: 1rem;
    line-height: 1.7
}

.about-section__text {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.7
}

.about-section__credentials {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.credential {
    text-align: center
}

.credential__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy)
}

.credential__label {
    font-size: .85rem;
    color: var(--color-text-muted)
}

@media(max-width:900px) {
    .about-section__inner {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .about-section__credentials {
        justify-content: center
    }
}

.services {
    background: var(--color-cream)
}

.services__header {
    text-align: center;
    margin-bottom: 4rem
}

.services__header h2 {
    font-family: var(--font-heading-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-navy);
    margin-bottom: .5rem
}

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 5rem
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.feature-row--reverse {
    direction: rtl
}

.feature-row--reverse>* {
    direction: ltr
}

.feature-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px #0000001f
}

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform .6s ease
}

.feature-row:hover .feature-image img {
    transform: scale(1.05)
}

.feature-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: .85rem;
    color: var(--color-teal);
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: .75rem
}

.feature-title {
    font-family: var(--font-heading-serif);
    font-size: 2rem;
    color: var(--color-navy);
    margin-bottom: 1rem
}

.feature-text {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem
}

.feature-why {
    color: var(--color-text-main);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #2a9d8f14;
    border-left: 3px solid var(--color-teal);
    border-radius: 0 8px 8px 0
}

.feature-meta {
    color: var(--color-text-muted);
    font-size: .85rem;
    margin-bottom: 1.5rem
}

.feature-meta span {
    color: var(--color-navy);
    font-weight: 500
}

.feature-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.feature-link {
    color: var(--color-teal);
    font-weight: 600;
    transition: var(--transition-smooth)
}

.feature-link:hover {
    color: var(--color-gold)
}

@media(max-width:900px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .feature-row--reverse {
        direction: ltr
    }

    .feature-image img {
        height: 300px
    }
}

.premium {
    background: #fff
}

.premium__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem
}

.premium-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px #0000000f;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, .06)
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px #0000001a
}

.premium-card--featured {
    border: 2px solid var(--color-gold)
}

.premium-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: .25rem .75rem;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em
}

.premium-card__badge--gold {
    background: #d4af3726;
    color: var(--color-gold)
}

.premium-card__badge--teal {
    background: #2a9d8f26;
    color: var(--color-teal)
}

.premium-card__badge--green {
    background: #22c55e26;
    color: #22c55e
}

.premium-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #2a9d8f1a, #2a9d8f0d);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal)
}

.premium-card h3 {
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: .75rem
}

.premium-card>p {
    color: var(--color-text-muted);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 65px
}

.premium-card__price {
    margin-bottom: 1.5rem
}

.premium-card__amount {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy)
}

.premium-card__term {
    color: var(--color-text-muted);
    font-size: .85rem
}

@media(max-width:1100px) {
    .premium__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .premium__grid {
        grid-template-columns: 1fr
    }
}

.experts {
    background: var(--color-cream)
}

.experts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.expert-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px #0000000f;
    transition: var(--transition-smooth)
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px #0000001a
}

.expert-card__image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-gold)
}

.expert-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.expert-card h3 {
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: .25rem
}

.expert-card__title {
    color: var(--color-teal);
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 1rem
}

.expert-card__bio {
    color: var(--color-text-muted);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 1rem
}

.resource-card__hook {
    color: #ffffffd9;
    font-size: .9rem;
    font-style: italic;
    margin-top: .5rem
}

@media(max-width:900px) {
    .experts__grid {
        grid-template-columns: 1fr
    }
}

.booking-cinematic {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden
}

.booking__bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

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

.booking__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172ae6, #0f172ab3);
    z-index: 1
}

.booking__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem
}

.booking__content h2 {
    font-family: var(--font-heading-serif);
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem
}

.booking__content p {
    color: #ffffffd9;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7
}

.booking__perks {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    color: #fff9;
    font-size: .9rem
}

.footer {
    background: var(--color-navy);
    color: #fffc;
    padding: 5rem 0 2rem
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem
}

.footer__brand {
    padding-right: 2rem
}

.footer__tagline {
    color: #fff9;
    line-height: 1.7;
    margin-top: 1rem
}

.footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600
}

.footer p {
    margin-bottom: .5rem;
    font-size: .95rem
}

.footer a {
    color: #fffc;
    transition: var(--transition-smooth)
}

.footer a:hover {
    color: var(--color-gold)
}

.footer__copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #ffffff80;
    font-size: .85rem
}

@media(max-width:900px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr
    }

    .footer__brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center
    }
}

@media(max-width:600px) {
    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center
    }
}

.floating-sidebar {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999
}

.floating-sidebar__toggle {
    width: 50px;
    height: 50px;
    background: var(--color-navy);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 20px #0003;
    transition: var(--transition-smooth)
}

.floating-sidebar__toggle:hover {
    background: var(--color-gold);
    color: var(--color-navy)
}

.floating-sidebar__menu {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 16px;
    padding: 1rem;
    min-width: 180px;
    box-shadow: 0 10px 40px #00000026;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth)
}

.floating-sidebar__menu.active {
    opacity: 1;
    visibility: visible
}

.floating-sidebar__link {
    display: block;
    padding: .75rem 1rem;
    color: var(--color-text-main);
    font-size: .9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-smooth);
    text-align: left
}

.floating-sidebar__link:hover {
    background: var(--color-cream);
    color: var(--color-teal);
    padding-left: 1.25rem
}

@media(max-width:768px) {
    .floating-sidebar {
        left: .75rem;
        bottom: 5rem;
        top: auto;
        transform: none
    }

    .floating-sidebar__toggle {
        width: 44px;
        height: 44px
    }

    .floating-sidebar__menu {
        left: 0;
        bottom: 55px;
        top: auto;
        transform: none
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px #25d36666;
    z-index: 999;
    transition: var(--transition-smooth)
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px #25d36680
}

.whatsapp-float svg {
    width: 28px;
    height: 28px
}

.fade-in,
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease
}

.fade-in.is-visible,
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0)
}