
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  img { max-width: 100%; height: auto; }

  :root {
    --ink:        #1a1410;
    --cream:      #f7f2ea;
    --warm:       #ede6d8;
    --gold:       #b8892a;
    --gold-light: #d4a84b;
    --teal:       #2d6b6b;
    --teal-light: #3d8e8e;
    --crimson:    #8b2635;
    --mist:       #c8d8d8;
    --snow:       #eef3f3;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
  }

  /* ── CUSTOM CURSOR ── */
  .cursor {
    position: fixed; top: 0; left: 0; z-index: 10001;
    pointer-events: none;
  }
  .cursor-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: transform .1s;
  }
  .cursor-ring {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid var(--gold);
    transform: translate(-50%, -50%);
    transition: transform .18s ease, width .3s, height .3s, opacity .3s;
    opacity: .65;
  }
  .cursor-dot, .cursor-ring { position: absolute; }
  body.modal-open .cursor-ring { opacity: 1; border-color: var(--gold-light); }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 300;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.8rem 5rem;
    background: rgba(10,20,20,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(184,137,42,.2);
    transition: padding .4s, box-shadow .4s;
  }
  nav.scrolled {
    padding: 1.2rem 5rem;
    box-shadow: 0 2px 24px rgba(0,0,0,.45);
    border-bottom-color: rgba(184,137,42,.35);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: .12em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold-light); font-style: italic; }
  .nav-links { display: flex; gap: 2.4rem; list-style: none; }
  .nav-links a {
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: color .25s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta {
    font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
    padding: .6rem 1.6rem;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    text-decoration: none;
    transition: background .3s, color .3s;
  }
  .nav-cta:hover { background: var(--gold); color: var(--ink); }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: calc(100vh - 85px);
    min-height: 620px;
    margin-top: 85px; /* push hero below the fixed nav */
    display: flex; align-items: center; justify-content: flex-start;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 60% 30%, rgba(45,107,107,.45) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 20% 70%, rgba(139,38,53,.2) 0%, transparent 55%),
      linear-gradient(160deg, #0e2020 0%, #1a3535 25%, #2d4a4a 50%, #162828 100%);
    transform: scale(1.06);
    animation: heroZoom 18s ease-in-out infinite alternate;
  }
  @keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.0); } }

  /* Mountains SVG layer */
  .hero-mountains {
    position: absolute; bottom: 0; left: 0; right: 0;
    pointer-events: none;
  }

  /* Bokeh particles */
  .hero-particles {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  }
  .particle {
    position: absolute; border-radius: 50%;
    background: rgba(212,168,75,.6);
    animation: float linear infinite;
  }
  @keyframes float {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: .9; }
    90%  { opacity: .4; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
  }

  .hero-content {
    position: relative; z-index: 10;
    padding: 0 5rem;
    max-width: 780px;
    width: 100%;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: .8rem;
    font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 1.4rem;
    animation: fadeUp .9s .2s both;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 36px; height: 1px; background: var(--gold);
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.6rem, 7vw, 6.4rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -.01em;
    margin-bottom: 1.6rem;
    animation: fadeUp .9s .35s both;
  }
  .hero-title em { color: var(--gold-light); font-style: italic; }
  .hero-sub {
    font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,.68);
    line-height: 1.8; max-width: 480px; margin-bottom: 2.6rem;
    animation: fadeUp .9s .5s both;
  }
  .hero-actions {
    display: flex; gap: 1.2rem; flex-wrap: wrap;
    animation: fadeUp .9s .65s both;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: .7rem;
    padding: .9rem 2.2rem;
    background: var(--gold); color: var(--ink);
    font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
    text-decoration: none; font-weight: 600;
    transition: background .25s, transform .2s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: .7rem;
    padding: .9rem 2.2rem;
    border: 1px solid rgba(255,255,255,.35);
    color: rgba(255,255,255,.8);
    font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
    text-decoration: none;
    transition: border-color .25s, color .25s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

  /* Scroll indicator */
  .scroll-cue {
    position: absolute; right: 4rem; bottom: 4rem; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: .7rem;
    animation: fadeUp .9s .9s both;
  }
  .scroll-cue span {
    font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
    color: rgba(255,255,255,.45); writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%,100% { opacity: .4; transform: scaleY(1); }
    50%      { opacity: 1;  transform: scaleY(.6); }
  }

  /* Stats bar */
  .stats-bar {
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex; flex-direction: column; gap: 0;
    animation: fadeUp .9s .8s both;
  }
  .stat-item {
    padding: 1.4rem 2rem;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(8px);
    border-left: 2px solid var(--gold);
    border-bottom: 1px solid rgba(255,255,255,.07);
    min-width: 150px;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300; color: var(--gold-light);
  }
  .stat-label {
    font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
    color: rgba(255,255,255,.5); margin-top: .2rem;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── MARQUEE ── */
  .marquee-wrap {
    background: var(--ink);
    padding: .9rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(184,137,42,.25);
    border-bottom: 1px solid rgba(184,137,42,.25);
  }
  .marquee-inner {
    display: flex; gap: 4rem;
    animation: marquee 32s linear infinite;
    white-space: nowrap;
  }
  .marquee-inner span {
    font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
    color: rgba(255,255,255,.4);
  }
  .marquee-inner strong {
    color: var(--gold); font-weight: 400;
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── SECTION COMMONS ── */
  section { padding: 9rem 5rem; }
  .section-label {
    display: inline-flex; align-items: center; gap: .8rem;
    font-size: .65rem; letter-spacing: .32em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 1rem;
  }
  .section-label::before { content: ''; width: 28px; height: 1px; background: var(--teal); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 300; line-height: 1.15;
    color: var(--ink);
  }
  .section-title em { color: var(--teal); font-style: italic; }

  /* ── DESTINATIONS ── */
  .destinations { background: var(--cream); }
  .dest-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; }
  .dest-head-right { text-align: right; }
  .dest-head p { max-width: 360px; font-size: .95rem; font-weight: 300; color: #6b5a4a; line-height: 1.8; }
  .dest-view-all {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--teal); text-decoration: none; margin-top: 1rem;
    border-bottom: 1px solid var(--teal); padding-bottom: 2px;
    transition: gap .2s;
  }
  .dest-view-all:hover { gap: .9rem; }

  .dest-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 320px 280px;
    gap: 14px;
  }
  .dest-card {
    position: relative; overflow: hidden;
    cursor: none;
  }
  .dest-card:first-child { grid-row: 1 / 3; }
  .dest-card-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
  }
  .dest-card:hover .dest-card-bg { transform: scale(1.07); }
  .dest-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,20,20,.85) 0%, rgba(10,20,20,.1) 50%, transparent 100%);
  }
  .dest-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.8rem;
  }
  .dest-tag {
    display: inline-block;
    font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold-light); background: rgba(184,137,42,.15);
    border: 1px solid rgba(184,137,42,.35);
    padding: .3rem .7rem; margin-bottom: .8rem;
  }
  .dest-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem; font-weight: 300; color: #fff;
    line-height: 1.2;
  }
  .dest-card:first-child .dest-name { font-size: 2.4rem; }
  .dest-info {
    display: flex; align-items: center; gap: 1.2rem;
    margin-top: .6rem;
  }
  .dest-info span { font-size: .72rem; color: rgba(255,255,255,.55); letter-spacing: .05em; }
  .dest-info span strong { color: rgba(255,255,255,.85); font-weight: 400; }

  /* Destination classes kept for potential future use */
  .d1, .d2, .d3, .d4, .d5 { /* Color classes preserved */ }

  /* SVG scene overlays on cards */
  .scene-svg { position:absolute; inset:0; pointer-events:none; }

  /* ── EXPERIENCES ── */
  .experiences { background: var(--ink); }
  .experiences .section-title { color: #fff; }
  .experiences .section-title em { color: var(--gold-light); }
  .exp-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
    margin-top: 3.5rem;
    border: 1px solid rgba(255,255,255,.07);
  }
  .exp-card {
    padding: 2.8rem 2rem;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.05);
    transition: background .3s, transform .3s;
    position: relative; overflow: hidden;
  }
  .exp-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s ease;
  }
  .exp-card:hover { background: rgba(184,137,42,.06); transform: translateY(-4px); }
  .exp-card:hover::after { transform: scaleX(1); }
  .exp-icon {
    width: 48px; height: 48px; margin-bottom: 1.6rem;
  }
  .exp-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 300; color: #fff; margin-bottom: .8rem;
  }
  .exp-desc { font-size: .85rem; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.75; }
  .exp-link {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); text-decoration: none; margin-top: 1.4rem;
    transition: gap .2s;
  }
  .exp-link:hover { gap: .9rem; }

  /* ── PACKAGES ── */
  .packages { background: var(--warm); }
  .pkg-head { margin-bottom: 3.5rem; }
  .pkg-tabs {
    display: flex; gap: 0; margin-top: 2rem;
    border-bottom: 1px solid #c8bfb0;
  }
  .pkg-tab {
    padding: .7rem 1.6rem;
    font-size: .75rem; letter-spacing: .16em; text-transform: uppercase;
    background: none; border: none; border-bottom: 2px solid transparent;
    color: #8a7a6a; cursor: pointer;
    margin-bottom: -1px; transition: color .2s, border-color .2s;
  }
  .pkg-tab.active { color: var(--teal); border-bottom-color: var(--teal); }
  .pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; margin-top: 2.4rem; }
  .pkg-card {
    background: #fff;
    box-shadow: 0 2px 24px rgba(0,0,0,.06);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
  }
  .pkg-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
  .pkg-img {
    height: 200px; position: relative; overflow: hidden;
  }
  .pkg-img-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s;
  }
  .pkg-card:hover .pkg-img-bg { transform: scale(1.08); }
  .pkg-badge {
    position: absolute; top: 1rem; left: 1rem;
    font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
    padding: .35rem .8rem;
    background: var(--crimson); color: #fff;
  }
  .pkg-body { padding: 1.8rem; }
  .pkg-meta {
    display: flex; gap: 1.4rem; margin-bottom: 1rem;
  }
  .pkg-meta span {
    font-size: .7rem; letter-spacing: .1em; color: #8a7a6a;
    display: flex; align-items: center; gap: .35rem;
  }
  .pkg-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: .6rem;
  }
  .pkg-desc { font-size: .83rem; font-weight: 300; color: #6b5a4a; line-height: 1.75; }
  .pkg-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 1.8rem;
    border-top: 1px solid #ede6d8;
  }
  .pkg-price { font-family: 'Cormorant Garamond', serif; }
  .pkg-price-from { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: #8a7a6a; display: block; }
  .pkg-price-amount { font-size: 1.5rem; font-weight: 400; color: var(--teal); }
  .pkg-book {
    font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
    padding: .55rem 1.3rem;
    background: var(--teal); color: #fff;
    border: none; cursor: pointer;
    transition: background .25s;
  }
  .pkg-book:hover { background: var(--teal-light); }

  /* Package color fallbacks for static placeholders */
  .pi1 .pkg-img-bg { background-color: #0d2a2a; }
  .pi2 .pkg-img-bg { background-color: #1a1a2a; }
  .pi3 .pkg-img-bg { background-color: #2a2010; }

  /* ── TESTIMONIALS ── */
  .testimonials {
    background: linear-gradient(135deg, #0e2828 0%, #1a3535 50%, #0e1f1f 100%);
    position: relative; overflow: hidden;
  }
  .testimonials::before {
    content: '"';
    position: absolute; top: -2rem; left: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30rem; color: rgba(255,255,255,.03); line-height: 1;
    pointer-events: none;
  }
  .testi-head { margin-bottom: 3.5rem; }
  .testi-head .section-title { color: #fff; }
  .testi-head .section-title em { color: var(--gold-light); }
  .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
  .testi-card {
    padding: 2.4rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(4px);
    transition: background .3s;
  }
  .testi-card:hover { background: rgba(255,255,255,.07); }
  .testi-stars { display: flex; gap: .3rem; margin-bottom: 1.4rem; }
  .testi-stars span { color: var(--gold); font-size: 1rem; }
  .testi-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-style: italic; font-weight: 300;
    color: rgba(255,255,255,.85); line-height: 1.75;
    margin-bottom: 1.8rem;
  }
  .testi-author { display: flex; align-items: center; gap: 1rem; }
  .testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: #fff; font-weight: 400;
    flex-shrink: 0;
  }
  .testi-name { font-size: .88rem; color: #fff; font-weight: 400; }
  .testi-origin { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: .15rem; letter-spacing: .08em; }

  /* ── GALLERY ROW ── */
  .gallery { padding: 0; overflow: hidden; }
  .gallery-strip {
    display: flex; gap: 6px;
    height: 340px;
  }
  .gallery-item {
    flex: 1; position: relative; overflow: hidden; cursor: none;
    transition: flex .5s ease;
  }
  .gallery-item:hover { flex: 2.2; }
  .gallery-item-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform .5s;
  }
  .gallery-item:hover .gallery-item-bg { transform: scale(1.04); }
  .gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.65));
    opacity: 0; transition: opacity .3s;
  }
  .gallery-item:hover .gallery-item-overlay { opacity: 1; }
  .gallery-item-label {
    position: absolute; bottom: 1.2rem; left: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: #fff; opacity: 0;
    transition: opacity .3s .1s, transform .3s .1s;
    transform: translateY(8px);
  }
  .gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }
  .g1 .gallery-item-bg { background: linear-gradient(160deg,#0a2a2a,#1a4040); }
  .g2 .gallery-item-bg { background: linear-gradient(160deg,#2a1a1a,#4a2a2a); }
  .g3 .gallery-item-bg { background: linear-gradient(160deg,#1a2a1a,#2a4030); }
  .g4 .gallery-item-bg { background: linear-gradient(160deg,#1a1a2a,#2a2a45); }
  .g5 .gallery-item-bg { background: linear-gradient(160deg,#2a2a1a,#404020); }
  .g6 .gallery-item-bg { background: linear-gradient(160deg,#2a1a2a,#3a2040); }

  /* ── CONTACT ── */
  .contact { background: var(--cream); }
  .contact-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .contact-info .section-title { margin-bottom: 1.2rem; }
  .contact-info p { font-size: .95rem; font-weight: 300; color: #6b5a4a; line-height: 1.9; margin-bottom: 2.4rem; }
  .contact-details { display: flex; flex-direction: column; gap: 1rem; }
  .contact-detail {
    display: flex; align-items: center; gap: 1rem;
    font-size: .88rem; color: #5a4a3a;
  }
  .contact-detail svg { flex-shrink: 0; }
  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .form-group { display: flex; flex-direction: column; gap: .4rem; }
  .form-group label {
    font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
    color: #8a7a6a;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: .85rem 1rem;
    border: 1px solid #c8bfb0;
    background: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: .88rem; color: var(--ink);
    outline: none;
    transition: border-color .25s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--teal); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    display: inline-flex; align-items: center; gap: .7rem;
    padding: 1rem 2.4rem;
    background: var(--ink); color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
    border: none; cursor: pointer;
    transition: background .25s, transform .2s;
    align-self: flex-start;
  }
  .form-submit:hover { background: var(--teal); transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    padding: 5rem 5rem 2.5rem;
    color: rgba(255,255,255,.5);
  }
  .footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer-brand { }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 300; color: #fff; letter-spacing: .1em;
    text-decoration: none;
    display: block; margin-bottom: 1rem;
  }
  .footer-logo span { color: var(--gold-light); font-style: italic; }
  .footer-brand p { font-size: .85rem; line-height: 1.85; }
  .footer-tagline {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    color: var(--gold); font-size: .95rem; margin-top: 1rem; display: block;
  }
  .footer-col h4 {
    font-size: .65rem; letter-spacing: .28em; text-transform: uppercase;
    color: rgba(255,255,255,.7); margin-bottom: 1.4rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
  .footer-col ul a {
    font-size: .84rem; color: rgba(255,255,255,.45); text-decoration: none;
    transition: color .2s;
  }
  .footer-col ul a:hover { color: var(--gold-light); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 2rem;
    font-size: .75rem; color: rgba(255,255,255,.3);
  }
  .footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
  .footer-bottom a:hover { color: var(--gold-light); }
  .social-links { display: flex; gap: 1.2rem; }
  .social-links a {
    width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.45); text-decoration: none; font-size: .8rem;
    transition: border-color .25s, color .25s;
  }
  .social-links a:hover { border-color: var(--gold); color: var(--gold-light); }

  /* ── REVEAL ANIMATIONS ── */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .22s; }
  .reveal-delay-3 { transition-delay: .34s; }
  .reveal-delay-4 { transition-delay: .46s; }

  /* ── BLOG ── */
  .blog {
    background: var(--cream);
    padding: 6rem 4rem;
  }
  .blog-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3rem;
  }
  .blog-head .section-title { margin-bottom: 0; }
  .blog-view-all {
    font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
    color: var(--teal); text-decoration: none;
    border-bottom: 1px solid transparent; transition: border-color .25s;
  }
  .blog-view-all:hover { border-bottom-color: var(--teal); }
  .blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  }
  .blog-card {
    background: #fff; border-radius: 8px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    transition: transform .3s, box-shadow .3s;
  }
  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.1); }
  .blog-card-img {
    height: 200px; position: relative; overflow: hidden;
  }
  .blog-card-img-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform .6s;
  }
  .blog-card:hover .blog-card-img-bg { transform: scale(1.05); }
  .blog-card-body { padding: 1.8rem; }
  .blog-card-meta {
    display: flex; gap: 1rem; margin-bottom: .8rem;
    font-size: .7rem; letter-spacing: .1em; color: #8a7a6a;
  }
  .blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 400; color: var(--ink);
    margin-bottom: .6rem; line-height: 1.4;
  }
  .blog-card-excerpt {
    font-size: .83rem; font-weight: 300; color: #6b5a4a;
    line-height: 1.7; margin-bottom: 1.2rem;
  }
  .blog-card-readmore {
    font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--teal); text-decoration: none;
    border-bottom: 1px solid transparent; transition: border-color .25s;
  }
  .blog-card-readmore:hover { border-bottom-color: var(--teal); }

  /* ── HAMBURGER & MOBILE MENU ── */
  .nav-hamburger {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px;
    background: none; border: none; cursor: pointer; padding: 6px;
    position: relative; z-index: 310; /* always above mobile-menu overlay */
  }
  .nav-hamburger span {
    display: block; width: 100%; height: 2px;
    background: #fff; border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,20,20,.97);
    backdrop-filter: blur(20px);
    z-index: 280; /* below nav (300) so hamburger stays clickable */
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu ul { list-style: none; text-align: center; padding: 0; }
  .mobile-menu ul li { margin: 1.2rem 0; }
  .mobile-menu .mob-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 300; color: rgba(255,255,255,.8);
    text-decoration: none; letter-spacing: .06em;
    transition: color .25s, letter-spacing .25s;
    display: block;
  }
  .mobile-menu .mob-link:hover { color: var(--gold-light); letter-spacing: .12em; }
  .mobile-menu .mob-cta {
    font-family: 'Outfit', sans-serif;
    font-size: .82rem; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid var(--gold);
    padding: .85rem 2.4rem;
    margin-top: 1.4rem; display: inline-block;
    transition: background .25s, color .25s;
  }
  .mobile-menu .mob-cta:hover { background: var(--gold); color: var(--ink); }
  /* Gold divider line in mobile menu */
  .mobile-menu::after {
    content: '';
    display: block;
    width: 40px; height: 1px;
    background: var(--gold);
    opacity: .4;
    margin-top: 2rem;
  }

  /* ── MOBILE RESPONSIVENESS ── */
  @media (max-width: 1024px) {
    nav { padding: 1.6rem 2.5rem; }
    nav.scrolled { padding: 1.1rem 2.5rem; }
    .hero-content { padding: 4rem 3rem 6rem; }
    section { padding: 7rem 3rem; }
    .dest-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
      gap: 14px;
    }
    .dest-card { min-height: 260px; }
    .dest-card:first-child { grid-row: auto; grid-column: 1 / -1; min-height: 320px; }
    .exp-grid { grid-template-columns: repeat(2,1fr); }
    .pkg-grid { grid-template-columns: repeat(2,1fr); }
    .testi-grid { grid-template-columns: repeat(2,1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .stats-bar { min-width: 130px; }
    .stat-item { padding: 1.2rem 1.5rem; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    nav { padding: 1.2rem 1.5rem; }
    nav.scrolled { padding: 1rem 1.5rem; }

    .hero { margin-top: 70px; height: calc(100vh - 70px); min-height: 560px; padding-top: 0; }
    .hero-content { padding: 0 2rem; max-width: 100%; }
    .hero-title { font-size: clamp(2.6rem, 8vw, 3.8rem); }
    .hero-sub { font-size: .95rem; max-width: 100%; }
    .stats-bar {
      position: relative; right: auto; top: auto;
      transform: none;
      flex-direction: row; flex-wrap: wrap;
      width: 100%; justify-content: flex-start;
      gap: 0; padding: 0 2rem 3rem;
    }
    .stat-item {
      border-left: 2px solid var(--gold);
      border-bottom: none;
      padding: 1rem 1.8rem;
      flex: 1; min-width: 110px;
    }
    .scroll-cue { display: none; }

    section { padding: 5rem 2rem; }
    .dest-head { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
    .dest-head-right { text-align: left; }
    .dest-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .dest-card:first-child { grid-column: 1; min-height: 300px; }
    .dest-card { min-height: 230px; }
    .exp-grid { grid-template-columns: repeat(2,1fr); }
    .pkg-grid { grid-template-columns: 1fr; }
    .pkg-tabs { flex-wrap: wrap; }
    .testi-grid { grid-template-columns: 1fr; }
    .gallery-strip { flex-direction: column; height: auto; gap: 6px; }
    .gallery-item { flex: none; height: 200px; }
    .gallery-item:hover { flex: none; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog { padding: 5rem 2rem; }
    .blog-head { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; gap: 1.2rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    footer { padding: 4rem 2rem 2rem; }
    .footer-bottom { flex-direction: column; gap: 1.2rem; align-items: flex-start; text-align: left; }
  }

  @media (max-width: 480px) {
    nav { padding: 1rem 1.2rem; }
    .hero { margin-top: 65px; height: calc(100vh - 65px); padding-top: 0; min-height: 500px; }
    .hero-content { padding: 0 1.5rem; }
    .hero-title { font-size: clamp(2.2rem, 10vw, 2.8rem); }
    .hero-sub { font-size: .88rem; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 1rem; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
    .stats-bar { padding: 0 1.5rem 2.5rem; flex-direction: column; }
    .stat-item { min-width: 100%; }
    section { padding: 4rem 1.5rem; }
    .dest-head { margin-bottom: 2rem; }
    .section-title { font-size: clamp(1.9rem, 8vw, 2.4rem); }
    .exp-grid { grid-template-columns: 1fr; }
    .pkg-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    footer { padding: 3.5rem 1.5rem 2rem; }
    .form-submit { width: 100%; justify-content: center; }
    .blog { padding: 4rem 1.5rem; }
    .nav-logo { font-size: 1.25rem; }
  }

  /* Disable custom cursor on touch devices */
  @media (hover: none) and (pointer: coarse) {
    .cursor { display: none !important; }
    body { cursor: default !important; }
    .dest-card, .gallery-item { cursor: default; }
  }

.hero-subpage{min-height: 400px; height: 50vh; margin-top: 85px;}
.editable-content{min-height: 400px; padding: 4rem 2rem;}
