    :root {
      --cream: #F5F0E8;
      --cream-dark: #EDE6D6;
      --cream-deep: #E4D9C4;
      --saffron: #C4622D;
      --saffron-light: #E07840;
      --gold: #C9963A;
      --gold-light: #D4A843;
      --forest: #1C3A2F;
      --forest-light: #2A5040;
      --ink: #1A1510;
      --muted: #6B5E4E;
      --muted-l: #9A8A78;
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--cream);
      color: var(--ink);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 999;
      opacity: 0.35
    }

    /* ── LANG BAR ── */
    .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);
      transition: transform 0.4s ease
    }

    .lang-bar.hidden {
      transform: translateY(-100%)
    }

    .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: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      padding: 2px 6px;
      transition: color 0.3s;
      font-weight: 400
    }

    .lang-btn.active {
      color: var(--gold-light)
    }

    .lang-btn:hover {
      color: rgba(255, 255, 255, 0.8)
    }

    .lang-sep {
      color: rgba(255, 255, 255, 0.2);
      font-size: 10px
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 28px;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0 56px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.4s ease
    }

    nav.scrolled {
      background: rgba(28, 58, 47, 0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
      top: 0
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      color: white;
      letter-spacing: 0.05em;
      text-decoration: none
    }

    .nav-logo span {
      color: var(--gold-light)
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
      align-items: center
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.82);
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 400;
      transition: color 0.3s
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--gold-light)
    }

    .nav-cta {
      background: var(--saffron) !important;
      color: white !important;
      padding: 10px 22px;
      font-size: 12px !important;
      font-weight: 500 !important;
      white-space: nowrap
    }

    /* ── PAGE HERO ── */
    .page-hero {
      padding-top: 100px;
      background: var(--forest);
      position: relative;
      overflow: hidden;
    }

    .page-hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(201, 150, 58, 0.4), transparent);
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1600&q=80') center/cover no-repeat;
      opacity: 0.12;
    }

    .page-hero-inner {
      position: relative;
      z-index: 2;
      padding: 64px 80px 72px;
    }

    /* 
    .page-hero-left {} */

    .page-eyebrow {
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 500;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px
    }

    .page-eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold-light)
    }

    .page-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px, 5vw, 68px);
      font-weight: 300;
      color: white;
      line-height: 1.05;
      letter-spacing: -0.02em
    }

    .page-title em {
      font-style: italic;
      color: var(--gold-light)
    }

    .page-desc {
      color: rgba(255, 255, 255, 0.55);
      font-size: 15px;
      line-height: 1.85;
      max-width: 560px;
      margin-top: 16px
    }

    /* ── FILTER TABS ── */
    .filter-bar {
      background: var(--cream-dark);
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .filter-inner {
      padding: 0 80px;
      display: flex;
      align-items: center;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .filter-inner::-webkit-scrollbar {
      display: none
    }

    .filter-tab {
      padding: 18px 28px;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      background: none;
      border: none;
      cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: all 0.3s;
      white-space: nowrap;
      position: relative;
      top: 1px;
    }

    .filter-tab:hover {
      color: var(--ink)
    }

    .filter-tab.active {
      color: var(--saffron);
      border-bottom-color: var(--saffron)
    }

    .filter-count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--saffron);
      color: white;
      font-size: 9px;
      font-weight: 500;
      margin-left: 7px;
      vertical-align: middle;
    }

    /* ── TRIPS LIST ── */
    .trips-list {
      padding: 44px 80px 120px;
      background: var(--cream)
    }

    .trips-list-inner {
      max-width: 1200px;
      margin: 0 auto
    }

    /* trip row */
    .trip-row {
      display: grid;
      grid-template-columns: 390px 1fr;
      margin-bottom: 30px;
      overflow: hidden;
      background: rgba(237, 230, 214, 0.62);
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 14px;
      transition: background 0.3s;
      cursor: pointer;
    }

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

    .trip-row:hover {
      background: rgba(237, 230, 214, 0.9)
    }

    .trip-row:hover .trip-img {
      transform: scale(1.04)
    }

    .trip-row:hover .trip-discover {
      opacity: 1;
      transform: translateX(0)
    }

    /* image side */
    .trip-img-wrap {
      position: relative;
      overflow: hidden;
      height: 310px;
    }

    .trip-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .trip-img-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 2;
      background: var(--saffron);
      color: white;
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 12px;
      font-weight: 500;
    }

    .trip-img-spots {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(8px);
      color: white;
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 12px;
      font-weight: 500;
    }

    .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: 0.5;
        box-shadow: 0 0 12px #4ade80
      }
    }

    .trip-img-region {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 48px 24px 20px;
      background: linear-gradient(to top, rgba(8, 5, 2, 0.7), transparent);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 500;
      z-index: 2;
    }

    /* detail side */
    .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: -0.02em;
      margin-bottom: 6px;
    }

    .trip-name em {
      font-style: italic;
      color: var(--saffron)
    }

    .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 {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.85;
      margin-bottom: 28px;
      max-width: 440px;
    }

    /* meta row */
    .trip-meta {
      display: flex;
      gap: 0;
      margin-bottom: 28px;
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .trip-meta-item {
      flex: 1;
      padding: 14px 18px;
      border-right: 1px solid rgba(0, 0, 0, 0.08);
    }

    .trip-meta-item:last-child {
      border-right: none
    }

    .trip-meta-label {
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted-l);
      font-weight: 500;
      margin-bottom: 5px;
    }

    .trip-meta-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      color: var(--ink);
      font-weight: 400;
      line-height: 1.2;
    }

    .trip-meta-val.price {
      color: var(--saffron)
    }

    /* highlights */
    .trip-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }

    .highlight-tag {
      background: var(--cream-dark);
      font-size: 11px;
      color: var(--muted);
      padding: 5px 12px;
      letter-spacing: 0.04em;
      border: 1px solid rgba(0, 0, 0, 0.07);
    }

    /* actions */
    .trip-actions {
      display: flex;
      align-items: center;
      gap: 20px
    }

    .btn-primary {
      background: var(--saffron);
      color: white;
      padding: 14px 28px;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      transition: background 0.3s, transform 0.2s;
      display: inline-block;
      white-space: nowrap;
    }

    .btn-primary:hover {
      background: var(--saffron-light);
      transform: translateY(-1px)
    }

    .trip-discover {
      color: var(--saffron);
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid var(--saffron);
      padding-bottom: 2px;
      opacity: 0;
      transform: translateX(-8px);
      transition: all 0.35s;
      white-space: nowrap;
    }

    /* ── BOTTOM CTA ── */
    .bottom-cta {
      background: var(--forest);
      padding: 88px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .bcta-left {}

    .bcta-eyebrow {
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 500;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px
    }

    .bcta-eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold-light)
    }

    .bcta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 3.5vw, 52px);
      font-weight: 300;
      color: white;
      line-height: 1.1;
      letter-spacing: -0.02em
    }

    .bcta-title em {
      font-style: italic;
      color: var(--gold-light)
    }

    .bcta-desc {
      color: rgba(255, 255, 255, 0.55);
      font-size: 15px;
      line-height: 1.9;
      margin-top: 18px
    }

    .bcta-right {
      display: flex;
      flex-direction: column;
      gap: 20px
    }

    .bcta-option {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 28px 32px;
      display: flex;
      align-items: center;
      gap: 20px;
      text-decoration: none;
      transition: all 0.3s;
      cursor: pointer;
    }

    .bcta-option:hover {
      background: rgba(255, 255, 255, 0.09);
      border-color: rgba(201, 150, 58, 0.4)
    }

    .bcta-option-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      color: var(--gold-light)
    }

    .bcta-option-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      color: white;
      font-weight: 400;
      margin-bottom: 4px
    }

    .bcta-option-desc {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.6
    }

    .bcta-option-arrow {
      margin-left: auto;
      color: rgba(255, 255, 255, 0.3);
      font-size: 20px;
      flex-shrink: 0;
      transition: transform 0.3s
    }

    .bcta-option:hover .bcta-option-arrow {
      transform: translateX(4px);
      color: var(--gold-light)
    }

    /* ── FOOTER BAR ── */
    .fbar {
      background: var(--forest-light);
      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 0.3s
    }

    .fbar-link svg {
      color: var(--gold-light);
      flex-shrink: 0
    }

    .fbar-link:hover {
      color: white
    }

    .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 0.3s
    }

    .soc:hover {
      border-color: var(--gold-light);
      color: var(--gold-light)
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      padding: 64px 80px 32px
    }

    .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: white;
      letter-spacing: 0.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, 0.42);
      line-height: 1.85;
      max-width: 260px
    }

    .foot-col-h {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.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, 0.52);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s
    }

    .foot-links a:hover {
      color: white
    }

    .foot-addr {
      margin-top: 20px;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.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, 0.22)
    }

    .foot-legal {
      display: flex;
      gap: 20px
    }

    .foot-legal a {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.22);
      text-decoration: none;
      transition: color 0.3s
    }

    .foot-legal a:hover {
      color: rgba(255, 255, 255, 0.6)
    }

    /* ── REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.8s ease, transform 0.8s ease
    }

    .reveal.on {
      opacity: 1;
      transform: translateY(0)
    }

    .d1 {
      transition-delay: 0.1s
    }

    .d2 {
      transition-delay: 0.2s
    }

    .d3 {
      transition-delay: 0.3s
    }

    /* ── MOBILE ── */
    @media(max-width:900px) {
      nav {
        padding: 0 24px
      }

      .lang-bar {
        padding: 0 24px
      }

      .page-hero-inner {
        padding: 48px 24px 56px;
        flex-direction: column;
        align-items: flex-start
      }

      .page-hero-stats {
        gap: 28px
      }

      .filter-inner {
        padding: 0 24px
      }

      .trips-list {
        padding: 0 24px 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
      }

      .bottom-cta {
        padding: 60px 24px;
        grid-template-columns: 1fr
      }

      .fbar {
        padding: 18px 24px
      }

      footer {
        padding: 48px 24px 28px
      }

      .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
      }
    }

    /* Added mobile responsiveness refinement */
    @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
      }
    }


    /* Hamburger mobile menu enhancement */
    .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;
      }
    }


    .trip-name a {
      color: inherit;
      text-decoration: none;
      display: inline-block;
    }

    .trip-name a:hover {
      color: inherit;
      text-decoration: none;
    }
