:root {
    --nm-ink: #0b1720;
    --nm-ink-soft: #213847;
    --nm-muted: #637584;
    --nm-line: #d9e4e8;
    --nm-paper: #f7fbf9;
    --nm-surface: #ffffff;
    --nm-blue: #006e9f;
    --nm-teal: #00a98f;
    --nm-coral: #f06f38;
    --nm-sun: #f7c948;
    --nm-dark: #062836;
    --nm-radius: 14px;
    --nm-shadow: 0 26px 70px rgba(8, 38, 52, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.namaste-body {
    margin: 0;
    color: var(--nm-ink);
    background: var(--nm-paper);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 72px;
    padding: 10px clamp(18px, 4vw, 58px);
    border-bottom: 1px solid rgba(217, 228, 232, 0.88);
    background: rgba(247, 251, 249, 0.9);
    backdrop-filter: blur(18px);
}

.site-header__brand img {
    width: min(180px, 42vw);
    max-height: 52px;
    object-fit: contain;
}

.site-header__nav {
    justify-self: center;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 26px);
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--nm-ink-soft);
    font-size: 0.92rem;
    font-weight: 780;
    white-space: nowrap;
}

.site-menu a {
    display: inline-flex;
    padding: 8px 0;
}

.site-menu a:hover {
    color: var(--nm-blue);
}

.site-header__contact {
    display: grid;
    gap: 1px;
    justify-items: end;
    color: var(--nm-blue);
    font-size: 0.86rem;
    font-weight: 780;
}

.home {
    overflow: hidden;
}

.hero-v2 {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
    align-items: stretch;
    gap: clamp(22px, 4vw, 54px);
    min-height: calc(100dvh - 72px);
    padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 74px) clamp(26px, 4vw, 56px);
}

.hero-v2__copy {
    align-self: center;
    max-width: 760px;
    padding: clamp(10px, 2vw, 24px) 0;
}

.kicker {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--nm-coral);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-v2 h1 {
    max-width: 720px;
    margin: 0;
    color: var(--nm-ink);
    font-size: clamp(3.4rem, 7.6vw, 7.4rem);
    line-height: 0.9;
    letter-spacing: 0;
}

.hero-v2__copy > p {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--nm-ink-soft);
    font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.hero-v2__actions,
.affiliate-suite__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:active {
    transform: translateY(1px);
}

.button--primary {
    color: #061a22;
    background: var(--nm-sun);
}

.button--light {
    color: var(--nm-blue);
    border-color: rgba(0, 110, 159, 0.22);
    background: rgba(255, 255, 255, 0.78);
}

.hero-v2__media {
    position: relative;
    min-height: 560px;
    border-radius: calc(var(--nm-radius) + 8px);
    overflow: hidden;
    background: #d8eef0;
    box-shadow: var(--nm-shadow);
}

.hero-v2__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(6, 40, 54, 0.02), rgba(6, 40, 54, 0.52));
    pointer-events: none;
}

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

.booking-slab {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    display: grid;
    min-width: min(310px, calc(100% - 44px));
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: var(--nm-radius);
    color: #fff;
    background: rgba(6, 40, 54, 0.74);
    backdrop-filter: blur(18px);
}

.booking-slab span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
}

.booking-slab strong {
    font-size: 1.65rem;
    line-height: 1;
}

.booking-slab button {
    justify-self: start;
    margin-top: 4px;
    padding: 9px 12px;
    border: 0;
    border-radius: 999px;
    color: #061a22;
    background: var(--nm-sun);
    cursor: pointer;
    font: inherit;
    font-weight: 850;
}

.proof-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 0 clamp(18px, 5vw, 74px);
    overflow: hidden;
    border: 1px solid var(--nm-line);
    border-radius: var(--nm-radius);
    background: var(--nm-line);
}

.proof-bar article {
    padding: clamp(18px, 3vw, 30px);
    background: rgba(255, 255, 255, 0.86);
}

.proof-bar strong {
    display: block;
    color: var(--nm-blue);
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1;
}

.proof-bar span {
    display: block;
    margin-top: 7px;
    color: var(--nm-muted);
    font-weight: 760;
}

.section {
    padding: clamp(60px, 9vw, 120px) clamp(18px, 5vw, 74px);
}

.section-stack {
    max-width: 860px;
}

.section-stack h2,
.affiliate-suite h2,
.site-footer h2,
.content-page h1 {
    margin: 0;
    color: var(--nm-ink);
    font-size: clamp(2.3rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.section-stack p,
.affiliate-suite p,
.entry-content {
    max-width: 670px;
    color: var(--nm-muted);
    font-size: 1.04rem;
}

.experience-bento {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(380px, 1fr);
    gap: clamp(28px, 6vw, 86px);
    align-items: start;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bento-card {
    min-height: 240px;
    padding: 24px;
    border: 1px solid var(--nm-line);
    border-radius: var(--nm-radius);
    background: #fff;
}

.bento-card--1 {
    grid-column: 1 / -1;
    color: #fff;
    background: linear-gradient(135deg, #063246, #007f91);
}

.bento-card--2 {
    background: #ecfbf7;
}

.bento-card--3 {
    background: #fff7e0;
}

.bento-card span {
    display: inline-flex;
    margin-bottom: 30px;
    color: currentColor;
    opacity: 0.56;
    font-weight: 900;
}

.bento-card h3 {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.08;
}

.bento-card p {
    margin-bottom: 0;
    color: inherit;
    opacity: 0.74;
}

.visual-story {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    grid-template-rows: 260px 280px;
    gap: 14px;
    padding: 0 clamp(18px, 5vw, 74px) clamp(60px, 8vw, 104px);
}

.visual-story__item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--nm-radius);
    background: #d9eef0;
}

.visual-story__item--1 {
    grid-row: 1 / -1;
}

.visual-story__item--4 {
    grid-column: 2 / -1;
}

.visual-story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.42s ease;
}

.visual-story__item:hover img {
    transform: scale(1.045);
}

.visual-story figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 9px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(6, 40, 54, 0.74);
    font-size: 0.88rem;
    font-weight: 850;
}

.tour-section {
    background: #ffffff;
}

.tour-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.tour-card-v2 {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--nm-line);
    border-radius: var(--nm-radius);
    background: #fff;
}

.tour-card-v2:nth-child(2) {
    transform: translateY(28px);
}

.tour-card-v2__image {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #d9eef0;
}

.tour-card-v2__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-card-v2__content {
    display: grid;
    gap: 18px;
    padding: 20px;
}

.tour-card-v2__content span {
    display: inline-flex;
    margin-bottom: 9px;
    color: var(--nm-coral);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.tour-card-v2 h3 {
    margin: 0;
    font-size: 1.32rem;
    line-height: 1.15;
}

.tour-card-v2__meta {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--nm-muted);
}

.tour-card-v2__meta strong {
    color: var(--nm-blue);
    font-size: 1.2rem;
}

.tour-card-v2__content p {
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid var(--nm-line);
    color: var(--nm-ink-soft);
    font-weight: 850;
}

.affiliate-suite {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
    gap: clamp(26px, 6vw, 84px);
    align-items: center;
    padding: clamp(60px, 9vw, 120px) clamp(18px, 5vw, 74px);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(6, 40, 54, 0.96), rgba(0, 92, 114, 0.94)),
        radial-gradient(circle at 80% 15%, rgba(247, 201, 72, 0.2), transparent 34%);
}

.affiliate-suite--shortcode {
    border-radius: var(--nm-radius);
}

.affiliate-suite h2 {
    color: #fff;
}

.affiliate-suite p {
    color: rgba(255, 255, 255, 0.72);
}

.affiliate-suite .button--light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.12);
}

.affiliate-console {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: calc(var(--nm-radius) + 6px);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(20px);
}

.affiliate-console__top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 6px 6px 16px;
    color: rgba(255, 255, 255, 0.74);
}

.affiliate-console__top strong {
    color: #fff;
}

.affiliate-console__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.affiliate-console__stats article {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--nm-radius);
    background: rgba(255, 255, 255, 0.08);
}

.affiliate-console__stats span,
.affiliate-console__stats small {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    font-weight: 800;
}

.affiliate-console__stats strong {
    display: block;
    margin: 9px 0 4px;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1;
}

.affiliate-console__stats small {
    color: var(--nm-sun);
}

.affiliate-console__chart {
    display: flex;
    align-items: end;
    gap: 9px;
    height: 160px;
    margin-top: 12px;
    padding: 18px;
    border-radius: var(--nm-radius);
    background: rgba(0, 0, 0, 0.22);
}

.affiliate-console__chart i {
    flex: 1;
    min-width: 16px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, var(--nm-sun), var(--nm-coral));
}

.affiliate-console__rows {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.affiliate-console__rows span {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 14px;
    border-radius: var(--nm-radius);
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
}

.affiliate-console__rows b {
    color: #fff;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 74px);
    color: #fff;
    background: #041c28;
}

.site-footer h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3vw, 3.3rem);
}

.site-footer p:not(.eyebrow),
.site-footer .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__links {
    display: grid;
    align-content: center;
    gap: 8px;
    color: var(--nm-sun);
    font-weight: 850;
}

.section__heading {
    max-width: 860px;
    margin-bottom: 30px;
}

.content-page {
    max-width: 920px;
    margin: 0 auto;
}

.entry-content a {
    color: var(--nm-blue);
    font-weight: 800;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--nm-coral);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .site-header {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .site-header__nav {
        grid-column: 1 / -1;
        justify-self: start;
        width: 100%;
        overflow-x: auto;
    }

    .site-header__contact {
        justify-self: end;
    }

    .hero-v2,
    .experience-bento,
    .affiliate-suite,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .hero-v2 {
        min-height: auto;
    }

    .hero-v2__media {
        min-height: 460px;
    }

    .visual-story {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 300px 260px;
    }

    .visual-story__item--1,
    .visual-story__item--4 {
        grid-column: auto;
        grid-row: auto;
    }

    .tour-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tour-card-v2:nth-child(2) {
        transform: none;
    }
}

@media (max-width: 700px) {
    .site-header {
        gap: 12px;
    }

    .site-header__contact {
        justify-items: start;
        grid-column: 1 / -1;
        justify-self: start;
    }

    .site-menu {
        gap: 16px;
        min-width: max-content;
    }

    .hero-v2 h1 {
        font-size: clamp(3.1rem, 17vw, 4.6rem);
    }

    .hero-v2__media {
        min-height: 380px;
    }

    .hero-v2__actions,
    .affiliate-suite__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .proof-bar,
    .bento-grid,
    .visual-story,
    .tour-grid-v2,
    .affiliate-console__stats {
        grid-template-columns: 1fr;
    }

    .proof-bar {
        margin-inline: 18px;
    }

    .visual-story {
        grid-template-rows: repeat(4, 260px);
    }

    .booking-slab {
        right: 14px;
        bottom: 14px;
        min-width: calc(100% - 28px);
    }

    .site-footer__links {
        justify-items: start;
    }
}
