:root {
    --cream: #F5F0E8;
    --cream-dark: #EDE6D6;
    --saffron: #C4622D;
    --saffron-light: #E07840;
    --gold: #C9963A;
    --gold-light: #D4A843;
    --forest: #1C3A2F;
    --ink: #1A1510;
    --muted: #6B5E4E
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300
}

.lang-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: var(--forest);
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    padding: 2px 6px
}

.lang-btn.active {
    color: var(--gold-light)
}

.lang-sep {
    color: rgba(255, 255, 255, .2);
    font-size: 10px
}

nav {
    position: fixed;
    top: 28px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 56px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(28, 58, 47, 0.97);
    backdrop-filter: blur(12px)
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    letter-spacing: .05em;
    text-decoration: none
}

.nav-logo span {
    color: var(--gold-light)
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center
}

.nav-links a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--gold-light)
}

.nav-cta {
    background: var(--saffron);
    color: #fff !important;
    padding: 10px 22px
}

.hero {
    min-height: 100vh;
    background: linear-gradient(to right, rgba(8, 5, 2, .82), rgba(8, 5, 2, .42)), url('https://images.unsplash.com/photo-1548013146-72479768bada?w=1800&q=85') center/cover;
    display: flex;
    align-items: center
}

.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 80px 80px
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 500;
    margin-bottom: 20px
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(46px, 6vw, 84px);
    font-weight: 300;
    color: #fff;
    line-height: 1.02;
    letter-spacing: -.02em;
    max-width: 760px
}

h1 em {
    font-style: italic;
    color: var(--gold-light)
}

.sub {
    max-width: 580px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .74);
    font-size: 16px;
    line-height: 1.9
}

.actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase
}

.btn-primary {
    background: var(--saffron);
    color: #fff
}

.btn-ghost {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    padding: 14px 0
}

.section {
    padding: 50px 80px
}

.inner {
    max-width: 1300px;
    margin: 0 auto
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.three-col {
    grid-template-columns: repeat(3, 1fr) !important
}

.card {
    background: var(--cream-dark);
    padding: 28px
}

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 10px
}

.card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px
}

.band {
    background: var(--forest);
    color: #fff
}

.band .grid {
    grid-template-columns: repeat(4, 1fr)
}

.mini {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, .15)
}

.mini h4 {
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px
}

.mini p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
    font-size: 14px
}

footer {
    background: var(--ink);
    padding: 40px 80px;
    color: rgba(255, 255, 255, .45)
}

footer a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none
}

@media(max-width:1000px) {
    .lang-bar {
        padding: 0 24px
    }

    nav {
        padding: 0 24px
    }

    .nav-links {
        display: none
    }

    .hero-inner,
    .section,
    footer {
        padding-left: 24px;
        padding-right: 24px
    }

    .grid,
    .band .grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {

    html,
    body {
        overflow-x: hidden !important
    }

    img {
        max-width: 100%;
        height: auto
    }

    nav,
    nav.scrolled {
        padding: 0 16px !important;
        height: 64px !important
    }

    .lang-bar,
    .fbar {
        padding-left: 16px !important;
        padding-right: 16px !important
    }

    .nav-logo {
        font-size: 20px !important
    }

    .nav-links {
        display: flex !important;
        gap: 14px !important;
        overflow-x: auto !important;
        max-width: 68vw;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch
    }

    .nav-links::-webkit-scrollbar {
        display: none
    }

    .nav-links a {
        font-size: 11px !important;
        white-space: nowrap
    }

    .nav-cta {
        padding: 8px 14px !important;
        font-size: 10px !important
    }

    .hero-content,
    .page-hero-inner,
    .main-wrap,
    .section,
    .trips,
    .team,
    .jayam,
    .sdg,
    footer,
    .booking-strip,
    .trips-list,
    .page-hero-left,
    .page-hero-right {
        padding-left: 20px !important;
        padding-right: 20px !important
    }

    .hero,
    .page-hero {
        min-height: auto !important
    }

    .main-wrap,
    .booking-inner,
    .team-head,
    .trips-head,
    .sdg-head,
    .jayam-inner {
        grid-template-columns: 1fr !important;
        gap: 24px !important
    }

    .foot-grid,
    .highlights-grid,
    .why-pillars,
    .j-stats,
    .sdg-grid,
    .team-grid,
    .grid {
        grid-template-columns: 1fr !important
    }

    .cta-acts,
    .hero-actions,
    .trip-actions {
        flex-direction: column !important;
        align-items: flex-start !important
    }

    .trip-row {
        grid-template-columns: 1fr !important
    }

    .trip-img-wrap {
        height: 240px !important
    }

    .trip-detail {
        padding: 28px 20px !important
    }

    .page-title,
    .hero-title,
    .ph-title,
    .sec-title,
    .j-title {
        font-size: clamp(34px, 10vw, 54px) !important;
        line-height: 1.08 !important
    }

    .trust-item {
        flex: 0 0 84vw !important;
        max-width: none !important
    }

    .trip-meta {
        flex-direction: column !important
    }

    .trip-meta-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important
    }

    .trip-meta-item:last-child {
        border-bottom: none !important
    }
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border-radius: 10px;
    padding: 0
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.92);
    transition: transform .25s ease, opacity .25s ease
}

body.menu-open {
    overflow: hidden
}

@media(max-width:768px) {
    .menu-toggle {
        display: flex !important
    }

    .nav-links {
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 120 !important;
        display: none !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        max-width: none !important;
        width: 100% !important;
        background: rgba(28, 58, 47, 0.98) !important;
        backdrop-filter: blur(12px);
        padding: 14px 20px 22px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
        overflow: visible !important
    }

    body.menu-open .nav-links {
        display: flex !important
    }

    .nav-links li {
        width: 100%
    }

    .nav-links a {
        display: block !important;
        width: 100% !important;
        padding: 12px 0 !important;
        font-size: 12px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08)
    }

    .nav-links li:last-child a {
        border-bottom: none
    }

    .nav-cta {
        margin-top: 10px;
        border-bottom: none !important;
        width: auto !important;
        padding: 10px 16px !important
    }
}

.private-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: stretch
}

.private-tour-grid {
    grid-template-columns: repeat(2, 1fr)
}

.private-card {
    background: var(--cream-dark);
    overflow: hidden;
    border-radius: 10px;
    transition: all .35s ease;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%
}

.private-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14)
}

.private-image {
    height: 310px;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease
}

.private-card:hover .private-image {
    transform: scale(1.05)
}

.private-body {
    padding: 24px;
    flex-grow: 1
}

.private-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 14px
}

.private-body p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 14px
}

.private-body ul {
    padding-left: 18px
}

.private-body li {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 4px
}

.private-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0
}

.private-meta span {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--saffron);
    border: 1px solid rgba(196, 98, 45, .22);
    padding: 6px 9px
}

.private-card .btn {
    align-self: flex-start;
    margin-top: auto;
    background: var(--saffron);
    color: #fff
}

.private-tour-grid .private-body {
    display: flex;
    flex-direction: column
}

.private-tour-grid .private-body h3 {
    min-height: 72px
}

.private-tour-grid .private-body p {
    min-height: 76px
}

.private-tour-grid .private-meta {
    margin-top: auto
}

.private-tour-grid .private-card .btn {
    margin-top: 16px
}

.fbar {
    background: var(--forest-light, #2A5040);
    padding: 18px 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.fbar-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap
}

.fbar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    transition: color .3s
}

.fbar-link svg {
    color: var(--gold-light);
    flex-shrink: 0
}

.fbar-link:hover {
    color: #fff
}

.fbar-div {
    color: rgba(255, 255, 255, 0.2);
    font-size: 16px
}

.fbar-socials {
    display: flex;
    gap: 8px;
    margin-left: auto
}

.soc {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all .3s
}

.soc:hover {
    border-color: var(--gold-light);
    color: var(--gold-light)
}

footer {
    background: var(--ink);
    padding: 64px 80px 32px;
    color: rgba(255, 255, 255, .45)
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 28px
}

.foot-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    letter-spacing: .05em;
    text-decoration: none;
    display: block;
    margin-bottom: 14px
}

.foot-logo span {
    color: var(--gold-light)
}

.foot-tag {
    font-size: 13px;
    color: rgba(255, 255, 255, .42);
    line-height: 1.85;
    max-width: 260px
}

.foot-col-h {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 18px;
    font-weight: 500
}

.foot-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.foot-links a {
    color: rgba(255, 255, 255, .52);
    text-decoration: none;
    font-size: 14px;
    transition: color .3s
}

.foot-links a:hover {
    color: #fff
}

.foot-addr {
    margin-top: 20px;
    font-size: 11px;
    color: rgba(255, 255, 255, .22);
    line-height: 1.7
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.foot-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .22)
}

.foot-legal {
    display: flex;
    gap: 20px
}

.foot-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, .22);
    text-decoration: none
}

.foot-legal a:hover {
    color: rgba(255, 255, 255, .6)
}

@media(max-width:1050px) {
    .private-tour-grid {
        grid-template-columns: 1fr 1fr
    }

    .private-tour-grid .private-card:first-child {
        grid-column: 1/-1
    }
}

@media(max-width:700px) {

    .private-grid,
    .private-tour-grid {
        grid-template-columns: 1fr
    }

    .private-tour-grid .private-card:first-child {
        grid-column: auto
    }

    .private-image {
        height: 220px
    }

    .private-body {
        padding: 20px
    }

    .fbar,
    footer {
        padding-left: 20px !important;
        padding-right: 20px !important
    }

    .foot-grid {
        grid-template-columns: 1fr !important;
        gap: 30px
    }

    .fbar-socials {
        margin-left: 0
    }

    .foot-bottom {
        align-items: flex-start;
        flex-direction: column
    }
}

.private-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.private-card-link:hover {
    color: inherit;
    text-decoration: none;
}

.private-card-link .private-image {
    transition: transform 0.6s ease;
}

.private-card-link:hover .private-image {
    transform: scale(1.04);
}

.private-card-link .btn {
    display: inline-block;
}

.private-filter-bar {
    background: var(--cream-dark);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    border-top: 1px solid rgba(0, 0, 0, .06)
}

.private-filter-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none
}

.private-filter-inner::-webkit-scrollbar {
    display: none
}

.private-filter-tab {
    padding: 18px 28px;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: color .25s ease, border-color .25s ease
}

.private-filter-tab:hover,
.private-filter-tab.active {
    color: var(--saffron);
    border-bottom-color: var(--saffron)
}

.private-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: 7px;
    border-radius: 50%;
    background: var(--saffron);
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    vertical-align: middle
}

.private-trips-list {
    padding: 44px 80px 110px;
    background: var(--cream)
}

.private-trips-list .trips-list-inner {
    max-width: 1200px;
    margin: 0 auto
}

.trip-row {
    display: grid;
    grid-template-columns: 390px 1fr;
    margin-bottom: 30px;
    overflow: hidden;
    background: rgba(237, 230, 214, .62);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    transition: background .3s;
    cursor: pointer
}

.trip-row:first-child {
    border-top: 1px solid rgba(0, 0, 0, .08)
}

.trip-row:hover {
    background: rgba(237, 230, 214, .9)
}

.trip-row:hover .trip-img {
    transform: scale(1.04)
}

.trip-row:hover .trip-discover {
    opacity: 1;
    transform: translateX(0)
}

.trip-img-wrap {
    position: relative;
    overflow: hidden;
    height: 310px
}

.trip-img-link {
    position: absolute;
    inset: 0;
    display: block
}

.trip-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .9s cubic-bezier(.25, .46, .45, .94)
}

.trip-img-spots {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 12px;
    font-weight: 500;
    backdrop-filter: blur(8px)
}

.spot-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: sdot 2s ease-in-out infinite;
    display: inline-block
}

@keyframes sdot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px #4ade80
    }

    50% {
        opacity: .5;
        box-shadow: 0 0 12px #4ade80
    }
}

.trip-img-region {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 48px 24px 20px;
    background: linear-gradient(to top, rgba(8, 5, 2, .7), transparent);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 500
}

.trip-detail {
    padding: 38px 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.trip-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.08;
    letter-spacing: -.02em;
    margin-bottom: 6px
}

.trip-name a {
    color: inherit;
    text-decoration: none
}

.trip-name em {
    color: var(--saffron);
    font-style: italic
}

.trip-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px
}

.trip-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 440px
}

.trip-meta {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    border: 1px solid rgba(0, 0, 0, .08)
}

.trip-meta-item {
    flex: 1;
    padding: 14px 18px;
    border-right: 1px solid rgba(0, 0, 0, .08)
}

.trip-meta-item:last-child {
    border-right: none
}

.trip-meta-label {
    margin-bottom: 5px;
    color: #9A8A78;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase
}

.trip-meta-val {
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2
}

.trip-meta-val.price {
    color: var(--saffron)
}

.trip-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px
}

.highlight-tag {
    background: var(--cream-dark);
    color: var(--muted);
    border: 1px solid rgba(0, 0, 0, .07);
    padding: 5px 12px;
    font-size: 11px;
    letter-spacing: .04em
}

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

.btn-primary {
    background: var(--saffron);
    color: #fff;
    padding: 14px 28px;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    transition: background .3s, transform .2s;
    display: inline-block;
    white-space: nowrap;
}

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

.trip-discover {
    color: var(--saffron);
    border-bottom: 1px solid var(--saffron);
    padding-bottom: 2px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .15em;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .25s ease, transform .25s ease
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease
}

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

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

@media(max-width:900px) {
    .private-filter-inner,
    .private-trips-list {
        padding-left: 24px;
        padding-right: 24px
    }

    .private-trips-list {
        padding-top: 0;
        padding-bottom: 80px
    }

    .trip-row {
        grid-template-columns: 1fr
    }

    .trip-img-wrap {
        height: 260px
    }

    .trip-detail {
        padding: 28px 24px 32px
    }

    .trip-name {
        font-size: 28px
    }

    .trip-meta {
        flex-wrap: wrap
    }

    .trip-meta-item {
        flex: 1 0 45%
    }

    .trip-discover {
        opacity: 1;
        transform: none
    }
}
