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

:root {
    --gold: #f5c400;
    --gold-dark: #c49a00;
    --black: #0e0e0c;
    --white: #ffffff;
    --off-white: #f6f5f1;
    --stone: #eceae3;
    --text: #1a1a17;
    --muted: #9a9890;
    --surface: #f6f5f1;
    --dark: #ffffff;
    --forest: #1e2d1e;
}

html {
    scroll-behavior: smooth;
    scroll-padding: 60px;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
    font-weight: 300;
    cursor: none;
}

/* --- NAV --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.2rem;
    transition:
        background 0.4s ease,
        backdrop-filter 0.4s ease,
        border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

.nav-logo img {
    height: 30px;
    width: 150px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(14px);
    border-color: rgba(0, 0, 0, 0.07);
}

nav.scrolled .nav-logo img {
    filter: none;
}

nav.scrolled .nav-links a {
    color: var(--muted);
}

nav.scrolled .nav-lang {
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--muted);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: "DM Sans", sans-serif;
    letter-spacing: 2px;
}

.nav-links a:hover {
    color: var(--gold) !important;
}

.nav-lang {
    font-size: 12px;
    background: none;
    border: 1px solid rgba(168, 166, 166, 0.506);
    color: rgba(168, 166, 166, 0.506);
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s;
    width: fit-content;
    place-self: end;
}

.nav-lang:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hamburger {
    display: none;
}
.mobile-menu {
    display: none;
}

/* --- HERO --- */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.556) 0%,
            rgba(0, 0, 0, 0.2) 100%
        ),
        url(/static/img/new-hero-wandspirit.jpg);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content {
    z-index: 2;
    position: relative;
    padding: 0 3rem 6rem;
    max-width: 860px;
}

#hero h1 {
    display: block;
    font-family: "Bebas Neue", serif;
    font-size: clamp(4rem, 13vw, 9rem);
    font-weight: 300;
    line-height: 0.92;
    color: var(--white);
}

#hero h1.diferente {
    color: var(--gold);
}

.hero-scroll {
    z-index: 2;
    position: absolute;
    bottom: 4.1rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-lr;
}

.hero-title-bold {
    font-family: "Bebas Neue", sans-serif;
    display: block;
    color: var(--white);
}

.hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 400px;
    line-height: 1.8;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: "DM Sans", sans-serif;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 13px 26px;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.btn-ghost {
    background: none;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    padding: 13px 0;
    font-size: 11px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-ghost:hover {
    color: var(--white);
}

/* --- STATS BAR --- */
.stats-bar {
    background: var(--off-white);
    border-bottom: 1px solid var(--stone);
    display: flex;
}

.stat-item {
    flex: 1;
    padding: 40px 32px;
    text-align: center;
    border-right: 1px solid var(--stone);
    transition: background 0.25s ease;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--stone);
}

.stat-num {
    font-family: "Bebas Neue", serif;
    font-size: 48px;
    font-weight: 500;
    color: var(--black);
    display: block;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
    display: block;
}

/* --- EXPERIENCES --- */
#experiences {
    background: var(--white);
    padding: 96px 48px;
}

.btn-ghost-light {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    text-decoration: none;
    color: var(--muted);
    transition: color 0.2s;
}

.btn-ghost-light:hover {
    color: var(--black);
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

#experiences h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1;
    color: var(--black);
    text-transform: uppercase;
}

#experiences h2 em {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    color: var(--gold-dark);
    text-transform: capitalize;
}

.section-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.exp-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2px;
}

.exp-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.exp-card:nth-child(1) .exp-card-bg {
    background-image: url(/static/img/hiking-trail.jpg);
    background-size: cover;
    background-position: center;
}
.exp-card:nth-child(2) .exp-card-bg {
    background-image: url(/static/img/rock-climbing.jpg);
    background-size: cover;
    background-position: center;
}
.exp-card:nth-child(3) .exp-card-bg {
    background-image: url(/static/img/trips-camps.jpg);
    background-size: cover;
    background-position: center;
}
.exp-card:nth-child(4) .exp-card-bg {
    background-image: url(/static/img/women-group.jpg);
    background-size: cover;
    background-position: center;
}
.exp-card:nth-child(5) .exp-card-bg {
    background-image: url(/static/img/city-tour.jpg);
    background-size: cover;
    background-position: center;
}

.exp-card:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

.exp-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.65s ease;
}

.exp-card:hover .exp-card-bg {
    transform: scale(1.05);
}

.exp-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        transparent 100%
    );
    z-index: 1;
}

.exp-name {
    font-family: "Bebas Neue", serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--white);
}

.exp-tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.exp-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

.carousel-dots {
    display: none;
}

/* --- CALENDAR --- */

#calendar {
    display: none;
    background: var(--off-white);
    background-image:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.556) 0%,
            rgba(0, 0, 0, 0.2) 100%
        ),
        url(/static/img/calendar-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 96px 48px;
}

#calendar h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 48px;
}

#calendar h2 em {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    color: var(--gold);
}

#calendar .section-label {
    color: var(--gold);
}

.cal-wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2px;
    background: var(--stone);
    border: 1px solid var(--stone);
}

.mini-cal {
    background: var(--white);
    padding: 1.8rem;
    user-select: none;
}

.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cal-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.cal-nav-btn:hover {
    background: var(--stone);
    color: var(--black);
}

.cal-month-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 500;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cal-day-header {
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    padding: 6px 0;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--muted);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.15s;
    gap: 3px;
}

.cal-day:hover:not(.other-month) {
    background: var(--stone);
    color: var(--black);
}

.cal-day.has-events {
    color: var(--black);
}

.dot {
    display: none;
    width: 4px;
    height: 4px;
    background: var(--gold-dark);
    border-radius: 50%;
}

.cal-day.has-events .dot {
    display: block;
}

.cal-day.selected {
    background: var(--gold) !important;
    color: var(--black) !important;
}

.cal-day.selected .dot {
    background: var(--black);
}

.cal-day.today:not(.selected) {
    color: var(--gold-dark);
    font-weight: 500;
}

.cal-day.other-month {
    opacity: 0.25;
    cursor: default;
}

/* Right panel */
.right-panel {
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.panel-header {
    padding: 1.4rem 2rem;
    border-bottom: 1px solid var(--stone);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

.panel-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
}

.panel-meta {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.back-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
    font-family: "DM Sans", sans-serif;
}

.back-btn:hover {
    color: var(--black);
}
.back-btn.visible {
    display: flex;
}

/* Event list */
.event-list-view {
    flex: 1;
    overflow-y: auto;
}

.event-row {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 1.4rem;
    padding: 1.1rem 2rem;
    border-bottom: 1px solid var(--stone);
    cursor: pointer;
    transition: background 0.15s;
}

.event-row:last-child {
    border-bottom: none;
}
.event-row:hover {
    background: var(--off-white);
}

.event-row.active {
    background: rgba(245, 196, 0, 0.08);
    border-left: 3px solid var(--gold);
    padding-left: calc(2rem - 3px);
}

.edate .num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.2rem;
    color: var(--black);
    display: block;
    line-height: 1;
    letter-spacing: 0.02em;
}

.edate .day {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
}

.ename {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 3px;
}

.edetails {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
}

.ebadge {
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 2px;
    white-space: nowrap;
}

.b-open {
    border: 1px solid rgba(0, 0, 0, 0.18);
    color: var(--text);
}
.b-limited {
    background: rgba(245, 196, 0, 0.15);
    color: #8a6e00;
    border: 1px solid rgba(245, 196, 0, 0.4);
}
.b-sold {
    background: rgba(180, 50, 30, 0.07);
    color: #a03320;
    border: 1px solid rgba(180, 50, 30, 0.2);
}

/* Detail view */
.detail-view {
    display: none;
    flex: 1;
    flex-direction: column;
    overflow-y: auto;
}

.detail-view.visible {
    display: flex;
}

.detail-hero {
    background: var(--off-white);
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--stone);
}

.detail-tag {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.detail-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.02em;
    color: var(--black);
    line-height: 0.92;
    margin-bottom: 0.6rem;
}

.detail-date-line {
    font-size: 12px;
    color: var(--muted);
}

.detail-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--stone);
    border-bottom: 1px solid var(--stone);
}

.detail-meta-item {
    background: var(--white);
    padding: 1rem 2rem;
}

.dmeta-label {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
}

.dmeta-value {
    font-size: 13px;
    color: var(--black);
    font-weight: 400;
}

.detail-desc {
    padding: 1.5rem 2rem;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.9;
    border-bottom: 1px solid var(--stone);
    flex: 1;
}

.detail-cta {
    padding: 1.2rem 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-wa {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #1a9e4a;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-wa:hover {
    background: rgba(37, 211, 102, 0.15);
}

.detail-spots {
    font-size: 11px;
    color: var(--muted);
}

.no-selection {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 48px;
    color: var(--muted);
}

.no-selection-icon {
    font-size: 2rem;
    opacity: 0.25;
}
.no-selection p {
    font-size: 13px;
    text-align: center;
    line-height: 1.7;
}

/* --- HOW IT WORKS --- */
#how {
    background: var(--white);
    padding: 96px 48px;
    border-top: 2px solid rgba(0, 0, 0, 0.06);
}

.how-header {
    margin-bottom: 10px;
}

#how h2 {
    font-family: "Bebas Neue", serif;
    font-size: clamp(42px, 5.5vw, 72px);
    letter-spacing: 3px;
    font-weight: 300;
    color: var(--black);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--stone);
}

.how-step {
    background: var(--white);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
}

.how-step:hover {
    background: var(--off-white);
}

.step-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 72px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.06);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
}

.step-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 12px;
    margin-top: 48px;
}

.step-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.85;
}

/* --- TESTIMONIALS --- */
#testimonials {
    background: var(--off-white);
    padding: 96px 48px;
}

.testimonials-header {
    margin-bottom: 36px;
}

#testimonials h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 300;
    color: var(--black);
    line-height: 1;
}

#testimonials h2 em {
    font-family: "Bebas Neue", serif;
    color: var(--gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--stone);
}

.testimonial-card {
    background: var(--white);
    padding: 40px 36px;
    position: relative;
    transition: background 0.2s;
}

.testimonial-card:hover {
    background: var(--white);
}

.testimonial-quote {
    font-family: "Cormorant Garamond", serif;
    font-size: 60px;
    color: var(--gold);
    line-height: 0.6;
    margin-bottom: 10px;
    display: block;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.9;
    font-weight: 300;
    flex: 1;
}

.testimonial-author {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--stone);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
}

.author-trip {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Mobile */
@media (max-width: 768px) {
    #testimonials {
        padding: 48px 20px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 28px 24px;
    }

    .testimonial-quote {
        font-size: 52px;
        margin-bottom: 14px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .testimonial-author {
        margin-top: 18px;
        padding-top: 14px;
    }
}

/* --- ABOUT --- */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.about-text {
    background: var(--white);
    padding: 96px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-visual {
    position: relative;
    overflow: hidden;
    background-image: url(/static/img/founders.jpg);
    background-size: cover;
    background-position: center;
}

.about-text .section-label {
    color: var(--gold);
}

.about-text h2 {
    font-family: "Bebas Neue", serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 300;
    color: var(--black);
    margin-top: 12px;
}

.about-text em {
    font-family: "Bebas Neue", serif;
    color: var(--gold);
}

.about-text p {
    font-size: 13px;
    color: rgba(28, 28, 28, 0.45);
    line-height: 1.9;
    margin-top: 20px;
    max-width: 380px;
}

.guide-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 42px;
}

.pill {
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border: 1px solid rgba(28, 28, 28, 0.45);
    color: rgba(28, 28, 28, 0.45);
    transition: all 0.2s;
    cursor: default;
}

.pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* --- CTA --- */
#join {
    background: var(--black);
    padding: 156px 64px;
    position: relative;
    overflow: hidden;
}

#join::before {
    content: "WANDSPIRIT";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Bebas Neue", sans-serif;
    font-size: 20vw;
    color: rgba(238, 201, 51, 0.03);
    letter-spacing: 0.1em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.cta-title {
    font-family: "Bebas Neue", serif;
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-top: 0;
    text-align: center;
}

.cta-title em {
    font-style: italic;
    font-family: "Cormorant Garamond", serif;
    color: var(--gold);
}

.cta-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    max-width: 380px;
    margin: 20px auto 48px;
    line-height: 1.95;
    text-align: center;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whats {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 28px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-whats:hover {
    background: rgba(37, 211, 102, 0.2);
}

.btn-ig {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 28px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-ig:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* --- FOOTER --- */
footer {
    background: var(--off-white);
    border-top: 1px solid var(--stone);
    padding: 35px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: block;
    height: 25px;
}

.footer-logo img {
    height: 25px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.2s;
    filter: none;
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    font-size: 11px;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--black);
}

.footer-copy {
    font-size: 11px;
    color: rgba(154, 152, 144, 0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- CURSOR --- */
#cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        width 0.15s,
        height 0.15s;
    mix-blend-mode: multiply;
}

#cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(245, 196, 0, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    /* Nav */
    nav {
        padding: 1rem 1.2rem;
    }
    .nav-links {
        display: none;
    }
    .nav-lang {
        font-size: 10px;
        padding: 6px 10px;
        margin: auto 0px;
    }

    /* Hero */

    #hero {
        height: 105vh;
    }
    .hero-content {
        padding: 0 1.5rem 6.7rem;
    }
    #hero h1 {
        font-size: clamp(3rem, 16vw, 5rem);
    }
    .hero-desc {
        font-size: 0.8rem;
    }
    .hero-scroll {
        display: none;
    }
    .hero-bg {
        background-image:
            linear-gradient(
                to top,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.2) 100%
            ),
            url("/static/img/new-hero-wandspirit.jpg");
        background-position: center;
    }

    /* Stats */
    .stats-bar {
        flex-wrap: wrap;
    }
    .stat-item {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid var(--stone);
        padding: 28px 16px;
    }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--stone);
    }
    .stat-num {
        font-size: 36px;
    }

    /* Experiences */
    #experiences {
        padding: 48px 0 48px 20px;
    }
    .exp-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 28px;
    }

    /* CARROUSEL VIEW */

    .exp-grid {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .exp-grid::-webkit-scrollbar {
        display: none;
    }

    .exp-card {
        flex: 0 0 85%;
        aspect-ratio: 3/4;
        scroll-snap-align: start;
    }

    .exp-card:first-child {
        grid-row: span 1;
        aspect-ratio: 3/4;
        flex: 0 0 85%;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 16px;
        padding-right: 20px;
    }

    .carousel-dots .dot {
        display: inline-block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--stone);
        transition:
            background 0.2s,
            width 0.2s;
    }

    .carousel-dots .dot.active {
        background: var(--gold);
        width: 18px;
        border-radius: 3px;
    }

    /* Calendar */
    #calendar {
        padding: 48px 20px;
    }
    .cal-wrap {
        grid-template-columns: 1fr;
    }
    .mini-cal {
        display: none;
    }
    .right-panel {
        min-height: 400px;
    }
    .panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 1.2rem;
    }
    .event-row {
        padding: 0.9rem 1.2rem;
        gap: 0.8rem;
        grid-template-columns: 48px 1fr auto;
    }
    .edate .num {
        font-size: 1.6rem;
    }
    .detail-meta {
        grid-template-columns: 1fr;
    }
    .detail-meta-item {
        padding: 0.8rem 1.2rem;
    }
    .detail-hero {
        padding: 1.2rem;
    }
    .detail-desc {
        padding: 1rem 1.2rem;
    }
    .detail-cta {
        padding: 1rem 1.2rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .back-btn {
        color: var(--gold);
    }
    /* How it works */
    #how {
        padding: 48px 20px;
    }
    .how-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    .how-step {
        padding: 28px 24px;
    }

    /* About */
    .about {
        grid-template-columns: 1fr;
    }
    .about-visual {
        height: 320px;
    }
    .about-text {
        padding: 52px 28px;
    }

    /* CTA */
    #join {
        padding: 80px 24px;
    }
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
    .btn-whats,
    .btn-ig {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    footer {
        flex-direction: column;
        gap: 1.5rem;
        padding: 28px 24px;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    #cursor,
    #cursor-ring {
        display: none;
    }

    /* HAMBURGER */

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        width: 28px;
        place-self: end;
    }

    .ham-line {
        display: block;
        width: 100%;
        height: 1.5px;
        background: var(--white);
        transition: all 0.3s;
    }
    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--white);
        transition: all 0.3s;
    }

    nav.scrolled .ham-line {
        background: var(--black);
    }

    nav.scrolled .hamburger span {
        background: var(--black);
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--off-white);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--stone);
        flex-direction: column;
        z-index: 99;
        padding: 0;
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--text);
        text-decoration: none;
        padding: 1.1rem 1.5rem;
        border-bottom: 1px solid var(--stone);
        transition:
            background 0.15s,
            color 0.15s;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }

    .mobile-menu a:hover {
        background: var(--off-white);
        color: var(--gold-dark);
    }
}

/* EXPERIENCES PAGE */

/* NAV */
.exp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.nav-logo img {
    height: 30px;
    width: auto;
}
.nav-back {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}
.nav-back:hover {
    color: var(--black);
}

/* PAGE HERO */
.page-hero {
    background: var(--black);
    padding: 10rem 4rem 6rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "EXPERIENCES";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Bebas Neue";
    font-size: 14vw;
    color: rgba(245, 196, 0, 0.04);
    letter-spacing: 0.1em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.page-hero-label {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
}
.page-hero h1 {
    font-family: "Bebas Neue";
    font-size: clamp(3.5rem, 8vw, 8rem);
    line-height: 0.88;
    letter-spacing: 0.02em;
    color: var(--white);
    position: relative;
    max-width: 700px;
}
.page-hero h1 em {
    font-family: "Cormorant Garamond";
    font-style: italic;
    color: var(--gold);
}
.page-hero-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 480px;
    line-height: 1.9;
    margin-top: 1.5rem;
    position: relative;
}

/* SECTION BASE */
.exp-section {
    padding: 96px 4rem;
}
.exp-section.alt {
    background: var(--off-white);
}
.section-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.8rem;
}
.section-title {
    font-family: "Bebas Neue";
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.88;
    letter-spacing: 0.02em;
    color: var(--black);
    margin-bottom: 2.5rem;
}
.section-title em {
    font-family: "Cormorant Garamond";
    font-style: italic;
    color: var(--gold-dark);
}
.section-body {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.95;
    max-width: 620px;
}

/* WHY WANDSPIRIT */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}
.why-text p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.95;
    font-weight: 300;
}
.why-text p + p {
    margin-top: 1.2rem;
}
.why-highlight {
    background: var(--black);
    color: var(--white);
    padding: 2.5rem;
    margin-top: 2rem;
    border-left: 4px solid var(--gold);
}
.why-highlight p {
    font-size: 0.85rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}
.why-highlight strong {
    color: var(--gold);
    font-weight: 500;
}
.why-img {
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
}
.why-img-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1a2e1a, #0e1808 60%, #2a1a06);
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-img-placeholder span {
    font-family: "Bebas Neue";
    font-size: 4rem;
    color: rgba(245, 196, 0, 0.15);
    letter-spacing: 0.1em;
}

/* EXPERIENCE TYPES */
.exp-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--stone);
    margin-top: 3rem;
}
.exp-type-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
    border-top: 3px solid transparent;
}
.exp-type-card:hover {
    background: var(--off-white);
    border-top-color: var(--gold);
}
.exp-type-num {
    font-family: "Cormorand Garamond", serif;
    font-size: 2.5rem;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    position: absolute;
    top: 0.8rem;
    right: 1.2rem;
    letter-spacing: 0.02em;
}
.exp-type-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}
.exp-type-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.6rem;
}
.exp-type-desc {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.8;
}

/* DESTINATION SECTIONS */
.destination-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.destination-wrap.reverse {
    direction: rtl;
}
.destination-wrap.reverse > * {
    direction: ltr;
}
.destination-img {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background: url(/static/img/exp-main-img.jpg);
    background-size: cover;
    background-position: center;
}
.destination-img-inner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s ease;
}
.destination-img:hover .destination-img-inner {
    transform: scale(1.04);
}
.destination-img-1 {
    background: url(/static/img/discover-van.jpg);
    background-size: cover;
    background-position: center;
}
.destination-img-2 {
    background: url(/static/img/cayak.jpg);
    background-size: cover;
    background-position: center;
}
.destination-img-3 {
    background: linear-gradient(150deg, #1a0e2e, #0a0614 50%, #2e1a06);
}

.destination-label {
    margin-bottom: 2rem;
}
.destination-body {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.95;
}
.destination-list {
    margin-top: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.destination-item {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--stone);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.destination-item:last-child {
    border-bottom: none;
}
.dest-bullet {
    color: var(--gold-dark);
    font-size: 0.7rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.dest-item-title {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.2rem;
}
.dest-item-desc {
    font-size: 0.72rem;
    color: var(--muted);
}

/* YUKON — special dark section */
.yukon-section {
    background: var(--black);
    padding: 96px 4rem;
    position: relative;
    overflow: hidden;
}
.yukon-section::before {
    content: "YUKON";
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    font-family: "Bebas Neue";
    font-size: 20vw;
    color: rgba(245, 196, 0, 0.04);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
.yukon-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}
.yukon-section .section-title {
    color: var(--white);
}
.yukon-section .section-title em {
    color: var(--gold);
}
.yukon-section .section-label {
    color: var(--gold);
}
.yukon-body {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.95;
    margin-bottom: 2rem;
}
.yukon-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.yukon-feature {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.yukon-feature:last-child {
    border-bottom: none;
}
.yukon-feature-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 0.4rem;
    flex-shrink: 0;
}
.yukon-feature-title {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.2rem;
}
.yukon-feature-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}
.yukon-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}
.yukon-img {
    background: var(--stone);
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}
.yukon-img-inner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.yukon-img:nth-child(1) .yukon-img-inner {
    background: url(/static/img/wildlife-1.jpeg);
    background-size: cover;
    background-position: center;
}
.yukon-img:nth-child(2) .yukon-img-inner {
    background: url(/static/img/lights-1\ Medium.jpeg);
    background-size: cover;
    background-position: center;
}
.yukon-img:nth-child(3) .yukon-img-inner {
    background: url(/static/img/hot-springs-yukon.jpg);
    background-size: cover;
    background-position: center;
}
.yukon-img:nth-child(4) .yukon-img-inner {
    background: url(/static/img/dog-sleeding-yukon.webp);
    background-size: cover;
    background-position: center;
}
.yukon-img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.8rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
}
.yukon-badge {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 196, 0, 0.1);
    border: 1px solid rgba(245, 196, 0, 0.3);
    color: var(--gold);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}
.yukon-badge span {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* CTA STRIP */
.cta-strip {
    background: var(--gold);
    padding: 5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: "GO";
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Bebas Neue";
    font-size: 20rem;
    color: rgba(0, 0, 0, 0.06);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
.cta-strip-text {
    position: relative;
}
.cta-strip-title {
    font-family: "Bebas Neue";
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.88;
    letter-spacing: 0.02em;
    color: var(--black);
}
.cta-strip-sub {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 0.8rem;
}
.btn-dark {
    background: var(--black);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}
.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

/* FOOTER */
footer {
    background: var(--off-white);
    border-top: 1px solid var(--stone);
    padding: 2.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copy {
    font-size: 0.6rem;
    color: rgba(154, 152, 144, 0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.v {
    opacity: 1;
    transform: translateY(0);
}

.d1 {
    transition-delay: 0.1s;
}
.d2 {
    transition-delay: 0.2s;
}
.d3 {
    transition-delay: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.2rem;
    }
    .page-hero {
        padding: 8rem 1.5rem 4rem;
    }
    .exp-section {
        padding: 56px 1.5rem;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .why-img {
        display: none;
    }
    .exp-types-grid {
        grid-template-columns: 1fr;
    }
    .destination-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .destination-wrap.reverse {
        direction: ltr;
    }
    .destination-img {
        aspect-ratio: 16/9;
    }
    .yukon-section {
        padding: 56px 1.5rem;
    }
    .yukon-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .cta-strip {
        flex-direction: column;
        gap: 2rem;
        padding: 4rem 1.5rem;
        text-align: center;
    }
    footer {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .exp-type-card {
        padding: 24px 32px;
    }

    .yukon-badge {
        display: none;
    }
}

/* ── 404 PAGE ── */
.notfound-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.notfound-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.35) 100%
        ),
        url(/static/img/rocky-mountain.jpg);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.notfound-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Bebas Neue", serif;
    font-size: 38vw;
    line-height: 1;
    color: rgba(245, 196, 0, 0.05);
    letter-spacing: 0.05em;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.notfound-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 0 2rem;
}

.notfound-content h1 {
    font-family: "Bebas Neue", serif;
    font-size: clamp(4rem, 13vw, 9rem);
    font-weight: 300;
    line-height: 0.92;
    color: var(--white);
}

.notfound-content h1.accent {
    color: var(--gold);
}

.notfound-content .hero-desc {
    max-width: 480px;
    margin: 1.5rem auto;
}

.notfound-content .hero-actions {
    justify-content: center;
}

@media (max-width: 768px) {
    .notfound-hero {
        height: 105vh;
    }
    .notfound-content h1 {
        font-size: clamp(3rem, 16vw, 5rem);
    }
    .notfound-watermark {
        font-size: 55vw;
    }
    .notfound-content .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
}
