/* ============================================================
   DESIGN SYSTEM / ROOT VARIABLES
============================================================ */

:root {
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;

    --color-bg: #ffffff;
    --color-bg-soft: #f7f4ef;
    --color-text: #333333;
    --color-muted: #555555;
    --color-accent: #b8900b;
    --color-border-soft: #e2ded5;
    --color-footer-bg: #f7f4ef;
    --color-hero-overlay: rgba(0,0,0,0.35);

    --transition-fast: 0.3s ease;
    --transition-med: 0.6s ease;

    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 10px;

    --shadow-soft: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-card: 0 8px 22px rgba(0,0,0,0.08);

    --section-padding-y: 90px;
}


/* ============================================================
   GLOBAL RESET & BASE
============================================================ */

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

html, body {
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    cursor: default;
}

/* Universal hover softness */
a,
button,
.hamburger,
.hero-btn,
.brand img,
.service-btn,
.footer-btn {
    transition: var(--transition-fast);
}

a:hover,
button:hover,
.hero-btn:hover,
.hamburger:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}


/* ============================================================
   UNIVERSAL REVEAL SYSTEM
============================================================ */

/* Base reveal class */
.reveal,
.fade-in,
.reveal-on-scroll,
.about-bhutan,
.about-title,
.about-text,
.about-divider,
.about-subtext {
    opacity: 0;
    transform: translateY(20px);
    transition: 1s ease;
}

.reveal.show,
.fade-in.show,
.reveal-on-scroll.show,
.show-about {
    opacity: 1 !important;
    transform: translateY(0) !important;
}


/* ============================================================
   NAVBAR
============================================================ */

/* Default navbar (home page before scroll) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 45px;
    display: flex;
    justify-content: center;
    z-index: 999;
    background: transparent;
    transition:
        background 0.4s ease,
        padding 0.3s ease,
        box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 12px 45px;
}

/* Inner pages: ALWAYS opaque */
.inner-page .navbar {
    background: rgba(255,255,255,0.98) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    padding: 18px 45px !important;
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Space under fixed navbar for inner pages */
.about-empty-space {
    height: 200px;
    width: 100%;
}

/* Space under index hero page spilling onto services section fixed */
.index-empty-space {
    height: 50px;
    width: 100%;
}

/* ---------------------------------------------------
   LOGO / BRAND
--------------------------------------------------- */

.brand img {
    height: 150px;
    width: 150px;
    padding: 18px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    object-fit: contain;
    transition: 0.4s ease;
}

.brand:hover img {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* After scroll: shrink + remove circle */
.navbar.scrolled .brand img {
    background: transparent;
    padding: 0;
    height: 60px;
    width: auto;
    box-shadow: none;
}


/* ---------------------------------------------------
   NAV LINKS
--------------------------------------------------- */

.nav-links {
    display: flex;
    gap: 40px;
}

/* Home page default (transparent navbar → white text) */
.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffff;
}

/* Home page after scroll */
.navbar.scrolled .nav-links a {
    color: #333333;
}

/* Inner pages: always dark text */
.inner-page .nav-links a {
    color: #000000 !important;
}

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


/* ---------------------------------------------------
   HAMBURGER MENU
--------------------------------------------------- */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s ease;
}

/* After scroll (home) */
.navbar.scrolled .hamburger span {
    background: #333333;
}

/* Inner pages */
.inner-page .hamburger span {
    background: #000000 !important;
}


/* ---------------------------------------------------
   MOBILE MENU
--------------------------------------------------- */

@media (max-width: 850px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        width: 220px;
        padding: 25px 20px;
        border-bottom-left-radius: 12px;
    }

    .nav-links a {
        color: #333 !important;
        padding: 12px 0;
        font-size: 16px;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}


/* ============================================================
   HERO SECTION (HOME)
============================================================ */

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero {
    height: 100vh;
    background: url('../img/landing/landing.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 10%;
    color: #ffffff;
    position: relative;
    animation: heroZoom 18s ease-in-out infinite alternate;
}

/* Overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-hero-overlay);
    z-index: 0;
}

/* Vignette */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    height: 35%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
    z-index: 1;
}

/* Hero text */
.hero-text {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
    animation-delay: 0.4s;
}

.hero-text h4,
.hero-text h1 {
    font-family: var(--font-serif);
}

.hero-text h4 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.15;
}

/* Hero button */
.hero-btn {
    display: inline-block;
    margin-top: 22px;
    padding: 10px 26px;
    border: 1px solid #ffffff;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background: #ffffff;
    color: #333333;
    transform: translateY(-2px);
}

/* Hero responsive */
@media (max-width: 768px) {
    .hero {
        padding-left: 5%;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text h4 {
        font-size: 13px;
    }
}


/* ============================================================
   KEYFRAME: FADE IN UP (REUSED)
============================================================ */

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   SERVICES SECTION (HOME)
============================================================ */

.services {
    width: 100%;
    max-width: 1500px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 20px;
}

/* Reveal animation */
.service-card {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card.image-card {
  cursor: default;
}

.service-card.image-card::after {
  pointer-events: none;
}
.service-card.image-card {
  pointer-events: none;
}

.service-card.image-card .service-btn {
  pointer-events: auto;
}
/* ============================================================
   TEXT CARD
============================================================ */

.text-card {
    grid-row: span 2;
    background: #ffffff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-card h2 {
    font-family: var(--font-serif);
    font-size: 34px;
    margin-bottom: 20px;
}

.text-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ============================================================
   CTA BUTTON (Arrow style – no border)
============================================================ */

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: transparent;
    padding: 0;
    color: var(--color-accent);
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 16px;
    letter-spacing: 0.6px;
    width: fit-content;
    position: relative;
    transition: opacity 250ms ease;
}

/* underline */
.service-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    height: 1px;
    width: 100%;
    background: currentColor;
    opacity: 0.4;
    transition: opacity 250ms ease, transform 250ms ease;
}

/* arrow */
.service-btn::after {
    content: "→";
    transition: transform 320ms cubic-bezier(.16,.84,.44,1);
}

/* hover */
.service-btn:hover::after {
    transform: translateX(7px);
}

.service-btn:hover::before {
    opacity: 0.9;
}

/* ============================================================
   IMAGE CARDS (Photo top, content below)
============================================================ */

.image-card {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 450ms ease;
}

.image-card:hover {
    transform: translateY(-4px);
}

/* Photo area */
.image-bg {
    width: 100%;
    height: 100%;
    min-height: 260px;
    background-size: cover;
    background-position: center;
    transition: transform 500ms cubic-bezier(.16,.84,.44,1);
}

.image-card:hover .image-bg {
    transform: scale(1.03);
}

/* Content below photo */
.image-meta {
    padding: 18px 22px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Title */
.card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: #1f1f1f;
    letter-spacing: 0.6px;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1024px) {
    .services {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .text-card {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .text-card {
        padding: 42px 28px;
    }

    .image-bg {
        min-height: 240px;
    }

    .image-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .card-title {
        font-size: 20px;
    }
}


/* ============================================================
   ABOUT BHUTAN PREVIEW (HOME)
============================================================ */

.about-bhutan {
    background: #f7f4ef;
    padding: 100px 20px;
    margin-top: 80px;
}

.about-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-subtitle {
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 10px;
}

.about-title {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #333333;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 60px;
}

.about-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    gap: 20px;
}

.about-divider span {
    display: block;
    height: 1px;
    width: 120px;
    background: #cccccc;
}

.about-divider p {
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777777;
}

.about-subtext {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    max-width: 750px;
    margin: 0 auto;
}






/* ============================================================
   DISCOVER BHUTAN — CLEAN PREMIUM GRID LAYOUT
============================================================ */

.discover-bhutan{
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
  padding: 120px 0 110px;
}

.discover-bhutan .db-wrap{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 90px;
}

.discover-bhutan .db-stage{
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;

  aspect-ratio: 16 / 9;
  min-height: 600px;
  max-height: 820px;
}

/* ============================================================
   ALL OUTER IMAGES — SAME SIZE
============================================================ */

.discover-bhutan .db-sketch{
  position: absolute;
  width: min(300px, 24%);   /* SAME SIZE for all 6 */
  height: auto;
  opacity: 0;

  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.08));
  will-change: opacity, transform;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   3 x 2 GRID STYLE POSITIONING
============================================================ */

/* --- TOP ROW --- */

/* Iconography 1 (top-left) */
.discover-bhutan .db-float{
  top: 6%;
  left: 4%;
  right: auto;
}

/* Iconography 2 (top-right) */
.discover-bhutan .db-bottom-left{
  top: 6%;
  right: 4%;
  left: auto;
}

/* --- MIDDLE ROW --- */

/* Buddha (middle-left) */
.discover-bhutan .db-left{
  top: 50%;
  left: 4%;
  right: auto;
  transform: translateY(-50%);
}

/* Tiger's Nest (middle-right) */
.discover-bhutan .db-right{
  top: 50%;
  right: 4%;
  left: auto;
  transform: translateY(-50%);
}

/* --- BOTTOM ROW --- */

/* Dochula (bottom-left) */
.discover-bhutan .db-top{
  bottom: 6%;
  left: 4%;
  right: auto;
}

/* Drukgyel (bottom-right) */
.discover-bhutan .db-bottom-right{
  bottom: 6%;
  right: 4%;
  left: auto;
}

/* ============================================================
   CENTER IMAGE
============================================================ */

.discover-bhutan .db-center{
  position: absolute;
  width: min(520px, 42%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;

  opacity: 0;
  filter: drop-shadow(0 24px 36px rgba(0,0,0,0.10));
}

/* ============================================================
   CTA
============================================================ */

.discover-bhutan .db-cta{
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 4;

  opacity: 0;
}

.discover-bhutan .db-line{
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.3px;
  color: rgba(0,0,0,0.78);
}

.discover-bhutan .db-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.6px;

  color: rgba(0,0,0,0.86);
  text-decoration: none;

  border-bottom: 1px solid rgba(0,0,0,0.25);
  padding-bottom: 6px;

  transition: transform 240ms ease, border-color 240ms ease;
}

.discover-bhutan .db-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(0,0,0,0.55);
}

.discover-bhutan .db-arrow{
  display: inline-block;
  transition: transform 300ms cubic-bezier(.16,.84,.44,1);
}

.discover-bhutan .db-btn:hover .db-arrow{
  transform: translateX(7px);
}


/* ============================================================
   MOBILE — 3 ROWS OF 2 + HERO LAST + CENTER CTA
============================================================ */
@media (max-width: 640px){

  .discover-bhutan{
    padding: 70px 0 70px;
  }

  .discover-bhutan .db-wrap{
    padding: 0 18px;
  }

  /* Stage becomes a layout container */
  .discover-bhutan .db-stage{
    position: relative;
    aspect-ratio: auto;
    min-height: auto;
    max-height: none;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 14px; /* row gap, col gap */
    align-items: center;
    justify-items: center;
  }

  /* Kill absolute positioning on mobile */
  .discover-bhutan .db-sketch,
  .discover-bhutan .db-center{
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  /* Outer 6 images: uniform sizing */
  .discover-bhutan .db-sketch{
    width: 100%;
    max-width: 150px;   /* small + premium */
    height: auto;
  }

  /* HERO: last, bigger, centered, spans both columns */
  .discover-bhutan .db-center{
    grid-column: 1 / -1;
    width: 100%;
    max-width: 260px;
    margin-top: 10px;
    z-index: 3;
  }


  /* CTA — FULLY CENTERED (mobile fix) */
.discover-bhutan .db-cta{
  grid-column: 1 / -1;

  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;

  width: 100%;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin-top: 12px;
}
  /* ============================================================
     MOBILE GRID ORDER (FORCE ICON1 LEFT / ICON2 RIGHT)
  ============================================================ */

  /* TOP ROW */
  .discover-bhutan .db-float{        /* discover_bhutan_icongraphy1.PNG */
    order: 1;  /* top-left */
  }

  .discover-bhutan .db-bottom-left{  /* discover_bhutan_icongraphy2.PNG */
    order: 2;  /* top-right */
  }

  /* MIDDLE ROW */
  .discover-bhutan .db-left{         order: 3; }  /* Buddha */
  .discover-bhutan .db-right{        order: 4; }  /* Tiger’s Nest */

  /* BOTTOM ROW */
  .discover-bhutan .db-top{          order: 5; }  /* Dochula */
  .discover-bhutan .db-bottom-right{ order: 6; }  /* Drukgyel */

  /* HERO + CTA always last */
  .discover-bhutan .db-center{ order: 90; }
  .discover-bhutan .db-cta{    order: 100; }
}
















/* ============================================================
   TWO PHOTO CARDS – KINGDOM & ZHINGKHAM (IMAGE TOP, TEXT BELOW)
============================================================ */

.kingdom-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 100px 100px;
}

/* Card becomes a stacked layout */
.kc-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.9s ease;
}

.kc-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Image area only */
.kc-media {
  position: relative;
  height: 560px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Overlay stays on the image only */
.kc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  transition: 0.4s ease;
}

/* Content now below image */
.kc-content {
  background: #f7f4ef;            /* matches your warm palette */
  padding: 26px 26px 30px;
  text-align: left;
}

.kc-content h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 300;
  color: #1f1f1f;
  margin: 0 0 10px;
}

.kc-sub {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 14px;
}

/* Short description */
.kc-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(0,0,0,0.70);
  margin: 0 0 18px;
  max-width: 52ch;
}



.kc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: none;
    background: transparent;
    padding: 0;

    color: var(--color-accent);
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 16px;
    letter-spacing: 0.6px;

    width: fit-content;
    position: relative;
    transition: transform 250ms ease, opacity 250ms ease;
}

/* thin underline */
.kc-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    height: 1px;
    width: 100%;
    background: currentColor;
    opacity: 0.45;
    transition: opacity 250ms ease, transform 250ms ease;
}

/* arrow */
.kc-btn::after {
    content: "→";
    display: inline-block;
    transform: translateX(0);
    transition: transform 320ms cubic-bezier(.16,.84,.44,1);
    opacity: 0.95;
}

/* hover */
.kc-btn:hover {
    opacity: 0.95;
}

.kc-btn:hover::after {
    transform: translateX(7px);
}

.kc-btn:hover::before {
    opacity: 0.9;
    transform: scaleX(1.02);
}


/* Mobile */
@media (max-width: 900px) {
  .kingdom-cards {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 25px;
  }

  .kc-media {
    height: 420px;
  }

  .kc-content h2 {
    font-size: 28px;
  }
}







/* ============================================================
   BHUTAN REMOTE JOURNEYS (FULL PAGE)
============================================================ */

.remote-journeys{
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  font-family: var(--font-sans);
}

/* Hidden map layer (revealed by JS using a moving mask) */
.rj-map{
  position: absolute;
  inset: 0;
  background-image: url("img/remote_journeys/bhutan-map.webp");
  background-size: cover;
  background-position: center;

  /* Base visibility (stronger than before) */
  opacity: 0.20;

  pointer-events: none;
  z-index: 0;

  /* default: hidden until JS updates mask */
  -webkit-mask-image: radial-gradient(circle 0px at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 72%);
  mask-image: radial-gradient(circle 0px at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 72%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  /* Soft “bloom” feel */
  filter: brightness(1.22) contrast(1.08) saturate(1.05);
}

/* Main layout container */
.rj-stage{
  position: relative;
  z-index: 2;
  min-height: 100vh;

  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 70px;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto 1fr;
  gap: 32px 60px;
}

/* Title: far-left top */
.rj-title-wrap{
  grid-column: 1 / 2;
  grid-row: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.rj-title{
  font-family: var(--font-serif);
  color: #ffffff;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin: 0;
  text-align: left;
}

/* Left descriptive text (bottom-left) */
.rj-left{
  grid-column: 1 / 2;
  grid-row: 2;

  display: flex;
  align-items: flex-end; /* push it toward bottom */
}

.rj-text{
  max-width: 640px;
  color: rgba(255,255,255,0.86);
  font-size: 16px;
  line-height: 1.9;
  margin: 0;

  padding-bottom: 10px;
}

/* Right side: actions + outline */
.rj-right{
  grid-column: 2 / 3;
  grid-row: 1 / span 2;

  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;

  padding-bottom: 10px;
}

/* Buttons column sits left of the outline */
.rj-actions{
  display: flex;
  flex-direction: column;
  gap: 16px;

  position: absolute;
  right: 260px;
  bottom: 70px;
}

/* CTA button style (white arrow, glow on hover) */
.rj-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  border: none;
  background: transparent;
  padding: 0;

  width: fit-content;
  color: rgba(255,255,255,0.95);
  text-decoration: none;

  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.6px;

  position: relative;
  transition: transform 240ms ease, opacity 240ms ease, filter 240ms ease;
}

/* subtle underline */
.rj-btn::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 1px;
  width: 100%;
  background: currentColor;
  opacity: 0.40;
  transition: opacity 240ms ease, transform 240ms ease;
}

/* arrow */
.rj-btn span{
  display: inline-block;
  transform: translateX(0);
  transition: transform 320ms cubic-bezier(.16,.84,.44,1);
  opacity: 0.98;
}

/* hover (stronger soft gold glow) */
.rj-btn:hover{
  opacity: 1;
  transform: translateY(-1px);
  filter: drop-shadow(0 0 16px rgba(184,144,11,0.60));
}

.rj-btn:hover span{
  transform: translateX(7px);
}

.rj-btn:hover::before{
  opacity: 0.90;
  transform: scaleX(1.02);
}

/* Outline image bottom-right */
.rj-outline{
  width: min(320px, 42vw);
  height: auto;
  display: block;

  position: absolute;
  right: 0;
  bottom: 0;

  opacity: 0.95;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* Tablet */
@media (max-width: 1024px){
  .rj-stage{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 26px;
    padding: 80px 40px;
  }

  .rj-right{
    grid-column: 1;
    grid-row: 3;
    min-height: 360px;
  }

  .rj-actions{
    right: 220px;
    bottom: 60px;
  }

  .rj-outline{
    width: min(300px, 60vw);
  }

  .rj-left{
    align-items: flex-start;
  }
}

/* Mobile */
@media (max-width: 640px){
  .rj-stage{
    padding: 70px 22px 44px;
  }

  .rj-title{
    font-size: 32px;
  }

  .rj-text{
    font-size: 15px;
    line-height: 1.85;
  }

  .rj-right{
    min-height: 360px;
  }

  /* prevent overlap with outline */
  .rj-actions{
    position: static;
    margin-top: 22px;
    margin-bottom: 18px;
    align-items: flex-start;
    padding-right: 170px; /* reserve space so buttons don't sit under outline */
  }

  .rj-btn{
    font-size: 17px;
  }

  .rj-outline{
    right: -6px;
    bottom: -6px;
    width: min(250px, 72vw);
    opacity: 0.90;
  }
}



























/* ============================================================
   BLOG / JOURNAL PREVIEW (HOME)
============================================================ */

.blog-section {
    background: #f7f4ef;
    border-top: 1px solid #e2ded5;
    padding: 90px 40px 110px;
}

.blog-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr);
    column-gap: 70px;
    align-items: flex-start;
}

.blog-heading {
    font-family: var(--font-serif);
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #333333;
}

.blog-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 28px;
}

.blog-view-all {
    display: inline-block;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid #222222;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #222222;
}

.blog-view-all:hover {
    background: #222222;
    color: #f7f4ef;
    transform: translateY(-1px);
}

/* Peek carousel */
.blog-right {
    overflow: hidden;
    position: relative;
}

.blog-track {
    display: flex;
    transition: transform 0.6s ease;
}

.blog-card {
    background: #fdfbf7;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex: 0 0 38%;
    margin-right: 24px;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
}

.blog-card:last-child {
    margin-right: 0;
}

.blog-card.show {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.16);
    transform: translateY(-4px);
}

.blog-image {
    height: 260px;
    background-size: cover;
    background-position: center;
}

.blog-meta {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999999;
    margin: 16px 18px 6px 18px;
}

.blog-title {
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.4;
    margin: 0 18px 18px;
    color: #333333;
}

@media (max-width: 1024px) {
    .blog-inner {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 70px 20px 90px;
    }

    .blog-card {
        flex: 0 0 75%;
    }

    .blog-image {
        height: 220px;
    }
}


/* ============================================================
   FINAL LONG IMAGE BANNER
============================================================ */

.final-banner {
    position: relative;
    width: 100%;
    height: 75vh;
    background: url('../img/banner/bhutan-awaits.webp') center/cover no-repeat;
    margin-top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: 1.2s ease;
}

.final-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.final-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.15) 35%,
        rgba(0,0,0,0) 60%
    );
    z-index: 1;
}

.final-banner-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.final-banner-text h2 {
   font-family: var(--font-serif);
    font-size: 22px;
    letter-spacing: 1.5px;
    margin-top: 14px;
    color: rgba(255,255,255,0.85);
}

.final-banner-sub {
    font-family: var(--font-serif);
    font-size: 18px;
    letter-spacing: 1.5px;
    margin-top: 14px;
    color: rgba(255,255,255,0.85);
}
.final-banner-divider {
    display: block;
    width: 80px;
    height: 1px;
    background: rgba(255,255,255,0.6);
    margin: 18px auto;
}
.final-banner-text {
    opacity: 0;
    transform: translateY(20px);
    transition: 1.5s ease;
}

.final-banner.show .final-banner-text {
    opacity: 1;
    transform: translateY(0);
}
.final-banner{
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .final-banner {
        height: 55vh;
    }

    .final-banner-text h2 {
        font-size: 32px;
    }
}


/* ============================================================
   FOOTER
============================================================ */

.footer {
    background: var(--color-footer-bg);
    padding: 80px 60px 40px;
    font-family: var(--font-sans);
    color: #333333;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-brand p {
    line-height: 1.8;
    font-size: 14px;
}

.footer-brand a {
    color: #333333;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer-brand a:hover {
    border-bottom: 1px solid #333333;
}

.footer-map {
    display: inline-block;
    margin-top: 4px;
}

.footer-inspire h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-inspire p {
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 380px;
    line-height: 1.7;
}

.footer-btn {
    padding: 10px 26px;
    border: 1px solid #222222;
    text-decoration: none;
    color: #222222;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.footer-btn:hover {
    background: #222222;
    color: #f7f4ef;
}

.footer-line {
    border: none;
    border-top: 1px solid #e5ded5;
    margin: 50px auto;
}

/* Link columns */
.footer-columns {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col h5 {
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #555555;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #000000;
}

/* Social row */
.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 20px;
    letter-spacing: 3px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social span {
    font-size: 14px;
    color: #555555;
}

.footer-icon img {
    height: 22px;
    opacity: 0.75;
}

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

.footer-copy {
    font-size: 13px;
    color: #777777;
}

@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


/* ============================================================
   LAZY-LOADED BACKGROUND (SHIMMER)
============================================================ */

.lazy-bg {
    background: #e6e6e6;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.lazy-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(230,230,230,0) 0%,
        rgba(255,255,255,0.6) 50%,
        rgba(230,230,230,0) 100%
    );
    animation: shimmer 1.5s infinite linear;
    opacity: 1;
}

.lazy-bg.loaded::after {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.lazy-bg.loaded {
    transition: background-image 0.6s ease-out, opacity 0.6s ease-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}


/* ============================================================
   LUXURY SLIDESHOW (ABOUT PAGE)
============================================================ */

.luxury-slideshow {
    background: #faf7f2;
    padding: 60px 0 80px;
    text-align: center;
    width: 100%;
}

.slideshow-title h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    letter-spacing: 1px;
    font-weight: 300;
    color: #3a3a3a;
    margin-bottom: 40px;
}

.slideshow-frame {
    position: relative;
    width: 88%;
    max-width: 1400px;
    height: 680px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 2s ease, transform 8s ease;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1.0);
}

/* Caption */
.slide-caption {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-size: 22px;
    color: rgba(255,255,255,0.92);
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 5;
}

.slide-caption.show {
    opacity: 1;
}

@media (max-width: 900px) {
    .slideshow-frame {
        height: 420px;
        width: 92%;
    }

    .slideshow-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 700px) {
    .slide-caption {
        font-size: 16px;
        bottom: 20px;
    }
}

@media (max-width: 600px) {
    .slideshow-frame {
        height: 300px;
    }
}


/* ============================================================
   ZHINGKHAM STORY SECTION (ABOUT PAGE)
============================================================ */

.zs-section {
    background: #f7f4ef;
    padding: 120px 0 10px;
    font-family: var(--font-sans);
}

.zs-intro {
    max-width: 820px;
    margin: 0 auto 100px auto;
    text-align: center;
}

.zs-intro h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.zs-intro p {
    font-size: 17px;
    line-height: 1.9;
    color: #555555;
}

/* Grid layouts */
.zs-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 120px auto;
    padding: 0 40px;
}

/* Single-image version */
.zs-pair-single {
    grid-template-columns: 1fr 1.2fr !important;
}

/* Figures / images */
.zs-figure {
    width: 100%;
    height: 600px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

/* Text blocks */
.zs-text-only,
.zs-text-block {
    max-width: 600px;
    color: #444444;
}

.zs-text-only h4,
.zs-text-block h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 10px;
}

.zs-text-block h5 {
    font-family: var(--font-serif);
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #666666;
}

.zs-text-only p,
.zs-text-block p {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 14px;
}

/* Quote */
.zs-quote {
    max-width: 800px;
    margin: 80px auto 140px auto;
    text-align: left;
    padding: 0 40px;
}

.zs-quote-line {
    width: 2px;
    height: 80px;
    background: #bbbbbb;
    margin-bottom: 20px;
}

.zs-quote blockquote {
    font-family: var(--font-serif);
    font-size: 30px;
    font-style: italic;
    color: #333333;
    line-height: 1.4;
}

.zs-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    color: #888888;
}

/* CTA link */
.zs-link-action {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--font-serif);
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 1px solid #222222;
    color: #222222;
}

.zs-link-action:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* Scroll fade */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: 1s ease;
}

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

/* Responsive */
@media (max-width: 980px) {
    .zs-pair {
        grid-template-columns: 1fr;
        margin-bottom: 90px;
    }

    .zs-figure {
        height: 380px;
    }

    .zs-intro h2 {
        font-size: 32px;
    }

    .zs-quote blockquote {
        font-size: 24px;
    }
}


/* ============================================================
   ZS SECTION – MOBILE POLISH (WHO ARE WE FIX)
============================================================ */
@media (max-width: 980px) {

  /* Reduce top spacing so it doesn’t feel “broken” on phones */
  .zs-section{
    padding: 70px 0 30px;
  }

  /* Intro spacing */
  .zs-intro{
    padding: 0 20px;
    margin: 0 auto 55px auto;
    max-width: 680px;
  }

  .zs-intro p{
    font-size: 15px;
    line-height: 1.8;
  }

  /* Pair container: better side padding + spacing */
  .zs-pair{
    padding: 0 20px;
    gap: 26px;
    margin: 0 auto 70px auto;
  }

  /* IMPORTANT: neutralize the single layout rule on mobile */
  .zs-pair-single{
    grid-template-columns: 1fr !important;
  }

  /* Image */
  .zs-figure{
    height: 320px;           /* slightly shorter for mobile */
    border-radius: 10px;     /* looks nicer on mobile */
  }

  /* Text blocks should fill width on mobile */
  .zs-text-only,
  .zs-text-block{
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  /* Headings scale */
  .zs-text-only h4,
  .zs-text-block h3{
    font-size: 22px;
    line-height: 1.25;
  }

  .zs-text-block h5{
    font-size: 14px;
    letter-spacing: 0.8px;
  }

  /* Body text readability */
  .zs-text-only p,
  .zs-text-block p{
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
  }

  /* Quote block spacing */
  .zs-quote{
    padding: 0 20px;
    margin: 50px auto 80px auto;
  }

  .zs-quote blockquote{
    font-size: 21px;
    line-height: 1.5;
  }

  .zs-quote cite{
    font-size: 14px;
  }

  /* Touch devices: remove hover jump */
  .zs-link-action:hover{
    transform: none;
  }
}


/* ============================================================
   CONTACT PAGE
============================================================ */

.contact-hero-heading {
    background: #f7f4ef;
    text-align: center;
    padding: 40px 20px 10px;
    margin-top: 5px;
}

.contact-hero-heading h1 {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 12px;
}

.contact-hero-heading p {
    font-size: 16px;
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Two-column layout */
.contact-aman-layout {
    background: #f7f4ef;
    max-width: 1400px;
    margin: 0 auto 100px auto;
    padding: 40px 40px 80px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

/* Left column */
.contact-aman-left {
    font-size: 15px;
    line-height: 1.9;
    color: #444444;
}

.contact-aman-left h2 {
    font-family: var(--font-serif);
    font-size: 30px;
    margin-bottom: 16px;
}

.contact-intro-text {
    margin-bottom: 26px;
}

.contact-block {
    margin-bottom: 26px;
}

.contact-block h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-block a {
    color: #333333;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.contact-block a:hover {
    border-bottom: 1px solid #333333;
}

/* Bullet notes */
.contact-notes {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0;
}

.contact-notes li {
    margin-bottom: 10px;
}

/* FAQ link */
.faq-link {
    font-family: var(--font-serif);
    font-size: 17px;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-bottom: 1px solid #222222;
    color: #222222;
}

.faq-link:hover {
    opacity: 0.8;
}

/* Right column hero image */
.contact-aman-right {
    display: flex;
    align-items: stretch;
}

.contact-hero-image {
    width: 100%;
    min-height: 520px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

/* Contact responsive */
@media (max-width: 1024px) {
    .contact-aman-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 30px 20px 70px;
    }

    .contact-hero-image {
        min-height: 420px;
    }
}

@media (max-width: 700px) {
    .contact-hero-heading h1 {
        font-size: 32px;
    }

    .contact-hero-heading {
        padding-top: 20px;
    }

    .contact-hero-image {
        min-height: 320px;
    }
}


/* ============================================================
   BLOG HERO (BLOG LIST PAGE)
============================================================ */

.blog-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.blog-hero.show {
    opacity: 1;
    transform: translateY(0);
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.blog-hero-text {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.blog-hero-text h1 {
    font-family: var(--font-serif);
    font-size: 52px;
    margin-bottom: 10px;
}

.blog-hero-text p {
    font-size: 18px;
    opacity: 0.9;
}


/* ============================================================
   BLOG GRID (BLOG LIST PAGE)
============================================================ */

.blog-page-grid {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 50px;
}

.blog-page-card {
    text-decoration: none;
    color: inherit;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.9s ease, transform 0.9s ease, transform 0.3s ease;
}

.blog-page-card.show {
    opacity: 1;
    transform: translateY(0);
}

.blog-page-card:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

.blog-page-img {
    height: 260px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
}

.blog-page-content {
    margin-top: 18px;
}

.blog-date {
    font-size: 13px;
    letter-spacing: 1px;
    color: #777777;
}

.blog-page-content h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin: 6px 0;
}

.blog-page-content p {
    font-size: 15px;
    opacity: 0.7;
}


/* ============================================================
   BLOG POST PAGE
============================================================ */

.blog-post-content {
    padding: 80px 8%;
}

.blog-post-inner {
    max-width: 800px;
    margin: auto;
}

.blog-post-date {
    font-size: 13px;
    letter-spacing: 2px;
    color: #777777;
    margin-bottom: 20px;
}

.blog-post-heading {
    font-family: var(--font-serif);
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-post-intro {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.blog-post-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.blog-post-subheading {
    font-family: var(--font-serif);
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
}

/* Prev / Next Navigation */
.blog-nav {
    max-width: 800px;
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid #dddddd;
}

.blog-nav a {
    text-decoration: none;
    color: #444444;
    font-size: 16px;
}

.blog-nav a:hover {
    opacity: 0.7;
}


/* ============================================================
   ABOUT BHUTAN – FULL PAGE
============================================================ */

.bhutan-intro {
    padding: 90px 20px;
    background-color: #f7f3ee;
}

.bhutan-intro-wrapper {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.bhutan-intro-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 25px;
}

.bhutan-intro-text {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.75;
    color: #555555;
    margin-bottom: 22px;
}

/* Hero image under intro */
.bhutan-hero-image {
    position: relative;
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bhutan-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.05);
}

/* ============================================================
   ABOUT BHUTAN – SECTIONS
============================================================ */

/* Shared section spacing */
.bhutan-section,
.bhutan-split,
.bhutan-values,
.bhutan-quote,
.bhutan-strip,
.bhutan-map-section,
.bhutan-cta {
    padding: 90px 20px;
    position: relative;
}

/* Centered section text */
.bhutan-section-center .bhutan-section-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

/* Titles */
.bhutan-section-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* Paragraph text */
.bhutan-section-text {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 22px;
    max-width: 780px;
}

/* ============================================================
   DUAL IMAGES – SIDE BY SIDE
============================================================ */

.bhutan-dual-images {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
}

.bhutan-image-block {
    width: 48%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1s ease, transform 1s ease;
}

.bhutan-image-block.loaded {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .bhutan-dual-images {
        flex-direction: column;
    }
    .bhutan-image-block {
        width: 100%;
        height: 340px;
    }
}

/* ============================================================
   SPLIT SECTIONS (IMAGE LEFT / RIGHT)
============================================================ */

.bhutan-split {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.bhutan-split-image {
    flex: 1;
    height: 460px;
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1s ease, transform 1s ease;
}

.bhutan-split-image.loaded {
    opacity: 1;
    transform: translateY(0);
}

.bhutan-split-text {
    flex: 1;
}

/* Reverse layout */
.bhutan-split-image-right {
    flex-direction: row-reverse;
}

@media (max-width: 900px) {
    .bhutan-split {
        flex-direction: column;
        text-align: center;
    }

    .bhutan-split-image {
        width: 100%;
        height: 340px;
    }
}


/* ============================================================
   Time Line
============================================================ */


.bhutan-timeline {
    position: relative;
    padding: 100px 0;
    background: #faf7f3;
}

.bhutan-timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    justify-items: center;   /* center each block */
}

.bhutan-timeline-grid .bhutan-timeline-item {
    max-width: 280px; /* keeps text consistent */
}

.bhutan-timeline-item {
    padding: 20px 30px;
    position: relative;
}

.bhutan-timeline-item h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 10px;
}

.bhutan-timeline-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Timeline dots */
.bhutan-timeline-item::before {
    content: "";
    position: absolute;
    top: 12px;
    width: 15px;
    height: 15px;
    background: #b89b5e;
    border-radius: 50%;
}

/* Dot on left items */
.bhutan-timeline-item:nth-child(odd)::before {
    right: -8px;
}

/* Dot on right items */
.bhutan-timeline-item:nth-child(even)::before {
    left: -8px;
}

@media (max-width: 768px) {

    .bhutan-timeline-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bhutan-timeline-line {
        left: 12px; /* subtle line on the left */
        transform: none;
    }

    .bhutan-timeline-item {
        padding-left: 40px;
    }

    /* Dots on mobile appear on the line */
    .bhutan-timeline-item::before {
        left: 12px;
        right: auto;
    }
}
/* Center 1907 and 2008 on their own row */
.bhutan-timeline-years-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;     /* keeps them visually centered */
    margin: 0 auto;       /* centers the whole block */
    column-gap: 60px;     /* spacing between the two */
    text-align: center;
}

/* each item inside bottom row */
.bhutan-timeline-years-bottom .bhutan-value-item {
    padding: 0 20px;
}

/* ================================
   MOBILE TIMELINE — SINGLE COLUMN
==================================*/
@media (max-width: 650px) {

    /* Top row becomes 1-column */
    .bhutan-values-grid {
        grid-template-columns: 1fr !important;
        row-gap: 35px;
    }

    /* Restore the 4th item back to normal (remove center override) */
    .bhutan-value-item:nth-child(4) {
        grid-column: auto !important;
    }

    /* Bottom row becomes 1-column */
    .bhutan-timeline-years-bottom {
        grid-template-columns: 1fr !important;
        max-width: 500px;
        margin-top: 40px;
        row-gap: 35px;
    }
}


/* ============================================================
   FULL-WIDTH IMAGE (OLD BHUTAN)
============================================================ */

.bhutan-full-image {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.bhutan-full-image.loaded {
    opacity: 1;
}

.bhutan-full-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
    .bhutan-split {
        flex-direction: column;
        text-align: center;
    }

    .bhutan-split-image {
        width: 100%;
        height: 340px;
    }
}
/* ============================================================
   VALUES SECTION (4 PILLARS)
============================================================ */
.bhutan-values-intro {
    max-width: 700px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.bhutan-values-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bhutan-values-intro {
    margin-bottom: 45px;
}

.bhutan-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.bhutan-value-item {
    padding: 0 20px;
}

/* Center the 4th item perfectly */
.bhutan-value-item:nth-child(4) {
    grid-column: 2; /* centers it in the middle column */
}


.bhutan-value-item h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.bhutan-value-item p {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.65;
    color: #666;
}

@media (max-width: 768px) {
    .bhutan-values-grid {
        grid-template-columns: 1fr;
    }

    .bhutan-value-item:nth-child(4) {
        grid-column: auto;
    }
}

/* ============================================================
   *** QUOTE SECTION — ELEGANT & HIGH-END ***
============================================================ */

.bhutan-quote {
    background: #faf7f3;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.bhutan-quote-inner {
    max-width: 820px;
    text-align: center;
    position: relative;
}

.bhutan-quote-line {
    width: 80px;
    height: 1.6px;
    background: #a68a5a;
    margin: 0 auto 30px;
    opacity: 0;
    transform: translateY(10px);
    transition: 1s ease;
}

.bhutan-quote.fade-in.show .bhutan-quote-line {
    opacity: 1;
    transform: translateY(0);
}

.bhutan-quote blockquote {
    font-family: var(--font-serif);
    font-size: 30px;
    line-height: 1.45;
    color: #2a2a2a;
    margin: 0 0 20px;
    opacity: 0;
    transform: translateY(15px);
    transition: 1s ease 0.2s;
}

.bhutan-quote.fade-in.show blockquote {
    opacity: 1;
    transform: translateY(0);
}

.bhutan-quote cite {
    display: block;
    font-family: var(--font-sans);
    font-size: 14px;
    color: #777;
    letter-spacing: 1px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(15px);
    transition: 1s ease 0.35s;
}

.bhutan-quote.fade-in.show cite {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   PHOTO STRIP
============================================================ */

.bhutan-strip {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    margin: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.bhutan-strip.loaded {
    opacity: 1;
}

.bhutan-strip-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.08);
}

/* ============================================================
   MAP SECTION
============================================================ */

.bhutan-map-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.bhutan-map-text {
    flex: 1;
}

.bhutan-map-preview {
    flex: 1;
    height: 420px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 20px;
    color: #fff;
    background-color: #ccc;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1s ease, transform 1s ease;
}

.bhutan-map-preview.loaded {
    opacity: 1;
    transform: translateY(0);
}

.bhutan-map-btn {
    margin-top: 25px;
    padding: 12px 26px;
    background: #b89b5e;
    color: #fff;
    font-family: var(--font-sans);
    border: none;
    cursor: pointer;
    border-radius: 0px;
    transition: background 0.3s ease;
}

.bhutan-map-btn:hover {
    background: #a4874f;
}

/* ============================================================
   MAP VIEWER (MODAL)
============================================================ */

.map-viewer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.map-viewer-overlay.active {
    display: flex;
}

.map-viewer-dialog {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 0px;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.map-viewer-close {
    position: absolute;
    right: 12px;
    top: 10px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.map-viewer-img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
}

.map-viewer-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.map-viewer-controls button {
    padding: 6px 14px;
    background: #eee;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0px;
}

.map-viewer-controls button:hover {
    background: #ddd;
}

/* ============================================================
   CALL TO ACTION
============================================================ */

.bhutan-cta-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.bhutan-cta-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 34px;
    background: #b89b5e;
    color: #fff;
    font-family: var(--font-sans);
    border-radius: 0px;
    transition: background 0.3s ease;
}

.bhutan-cta-btn:hover {
    background: #a4874f;
}

/* ============================================================
   FADE-IN ANIMATION SUPPORT
============================================================ */

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Blog carousel – title-only clickable */
.blog-title-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    position: relative;
    z-index: 5;
}

.blog-title-link:hover {
    color: var(--color-accent);
}

/* Prevent accidental clicks on images */
.blog-image {
    cursor: grab;
}

/* ============================================================
   FAQ PAGE
============================================================ */

.faq-hero {
    background: #f7f4ef;
    padding: 90px 20px 40px;
}

.faq-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.faq-kicker {
    font-size: 12px;
    letter-spacing: 3px;
    color: #777;
    margin-bottom: 16px;
}

.faq-hero h1 {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #2a2a2a;
}

.faq-lead {
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.85;
    color: #555;
}

.faq-wrap {
    background: #f7f4ef;
    padding: 40px 20px 90px;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-block {
    background: rgba(255,255,255,0.55);
    border: 1px solid #e2ded5;
    padding: 40px 38px;
}

.faq-section-title {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 12px;
}

.faq-section-sub {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 26px;
    max-width: 900px;
}

/* Accordion */
.faq-accordion {
    border-top: 1px solid #e2ded5;
}

.faq-item {
    border-bottom: 1px solid #e2ded5;
}

.faq-q {
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    text-align: left;
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 14px;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    font-size: 22px;
    line-height: 1;
    color: #7a7a7a;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-question {
    font-family: var(--font-serif);
    font-size: 18px;
    letter-spacing: 0.2px;
    color: #2a2a2a;
}

.faq-q:hover .faq-question {
    color: var(--color-accent);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.faq-a-inner {
    padding: 0 0 20px 46px;
    font-size: 15px;
    line-height: 1.85;
    color: #555;
}

/* Open state */
.faq-item.open .faq-icon {
    color: #2a2a2a;
    transform: translateY(-1px);
}

/* Flights section */
.faq-flights {
    background: #ffffff;
    padding: 95px 20px;
}

.faq-flights-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.flight-panel {
    margin-top: 35px;
    border-top: 1px solid #e2ded5;
    border-bottom: 1px solid #e2ded5;
    padding: 40px 0;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.flight-left h3 {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.flight-note {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 520px;
}

.flight-right {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flight-right li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(226,222,213,0.8);
    font-size: 14px;
    color: #444;
}

.flight-right li:last-child {
    border-bottom: none;
}

.flight-right span:last-child {
    color: #777;
    white-space: nowrap;
}

/* Border section */
.faq-border {
    background: #faf7f2;
    padding: 95px 20px;
}

.border-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.border-card {
    background: #ffffff;
    border: 1px solid #e2ded5;
    padding: 26px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.border-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}

.border-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.border-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

/* Gateway feature */
.faq-gateway {
    background: #ffffff;
    padding: 95px 20px 110px;
}

.gateway-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.gateway-image {
    min-height: 520px;
    border-radius: 0px;
    position: relative;
}

.gateway-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.04));
}

.gateway-text h2 {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 14px;
}

.gateway-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 14px;
}

.gateway-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gateway-btn {
    display: inline-block;
    padding: 11px 22px;
    border: 1px solid #222;
    color: #222;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transition: 0.25s ease;
}

.gateway-btn:hover {
    background: #222;
    color: #f7f4ef;
    transform: translateY(-1px);
}

.gateway-btn.ghost {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.gateway-btn.ghost:hover {
    background: var(--color-accent);
    color: #fff;
}

/* Responsive */
@media (max-width: 980px) {
    .faq-block {
        padding: 34px 22px;
    }

    .flight-panel {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .border-grid {
        grid-template-columns: 1fr;
    }

    .gateway-grid {
        grid-template-columns: 1fr;
    }

    .gateway-image {
        min-height: 360px;
    }

    .faq-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    .faq-q {
        grid-template-columns: 26px 1fr;
    }

    .faq-a-inner {
        padding-left: 40px;
    }
}

/* ============================================================
   TOURS – HERO
============================================================ */

.tours-hero {
    padding: 140px 24px 100px;
    background: #f7f5f0;
    text-align: center;
}

.tours-hero-inner {
    max-width: 820px;
    margin: 0 auto;
}

.tours-kicker {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 14px;
}

.tours-hero h1 {
    font-family: var(--font-serif);
    font-size: 52px;
    margin-bottom: 22px;
}

.tours-lead {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}


/* ============================================================
   SECTION BREAK (BHUTAN / SELECTIONS)
============================================================ */

.tours-break {
    padding: 90px 24px 70px;
    background: #f7f5f0;
}

.tours-break-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.tours-break-line {
    flex: 1;
    height: 1px;
    background: #ddd;
}

.tours-break-title {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #777;
}


/* ============================================================
   BHUTAN – IMAGE COMPOSITION
============================================================ */

.tours-bhutan {
    padding: 0 24px 120px;
    background: #f7f5f0;
}

.tours-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tours-bhutan-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: start;
}

.tours-img {
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.tours-img.loaded {
    opacity: 1;
}

.tours-img-small {
    height: 420px;
    margin-bottom: 28px;
}

.tours-img-big {
    height: 640px;
}

.tours-bhutan-note h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    margin-bottom: 14px;
}

.tours-bhutan-note p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #555;
}


/* ============================================================
   PACKAGE CARDS – SELECTIONS
============================================================ */

.tours-packages {
    padding: 0 24px 130px;
    background: #f7f5f0;
}

.tours-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.tour-card {
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.tour-card-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.tour-card-img.loaded {
    opacity: 1;
}

.tour-card-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-nights {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}

.tour-title {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 12px;
}

.tour-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 22px;
}

.tour-btn {
    margin-top: auto;
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #111;
    color: #111;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.tour-btn:hover {
    background: #111;
    color: #fff;
}


/* ============================================================
   PERSONALISED JOURNEYS
============================================================ */

.pj-wrap {
    padding: 120px 24px 140px;
    background: #ffffff;
}

.pj-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: center;
}

.pj-image {
    height: 520px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.pj-image.loaded {
    opacity: 1;
}

.pj-text h2 {
    font-family: var(--font-serif);
    font-size: 34px;
    margin-bottom: 22px;
}

.pj-text p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.pj-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 12px 26px;
    border: 1px solid #111;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    transition: all 0.35s ease;
}

.pj-btn:hover {
    background: #111;
    color: #fff;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1024px) {

    .tours-bhutan-grid,
    .pj-grid {
        grid-template-columns: 1fr;
    }

    .tours-img-big {
        height: 520px;
    }

    .pj-image {
        height: 420px;
    }

    .tours-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .tours-hero h1 {
        font-size: 38px;
    }

    .tours-break-inner {
        gap: 18px;
    }

    .tours-cards {
        grid-template-columns: 1fr;
    }

    .tours-img-small,
    .tours-img-big {
        height: 360px;
    }

    .pj-text h2 {
        font-size: 28px;
    }
}

/* ============================================================
   PACKAGE PAGE: SIGNATURE BHUTAN – ITINERARY
============================================================ */

.pkg-container{
  width: min(1120px, 92%);
  margin: 0 auto;
}

.pkg-hero{
  padding: 88px 0 40px;
  background: #f6f3ee;
}

.pkg-hero-inner{
  width: min(980px, 92%);
  margin: 0 auto;
  text-align: center;
}

.pkg-kicker{
  letter-spacing: .22em;
  font-size: .78rem;
  opacity: .72;
}

.pkg-title{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  margin: 10px 0 10px;
}

.pkg-meta{
  font-size: .98rem;
  opacity: .75;
  margin-bottom: 18px;
}

.pkg-lead{
  width: min(760px, 96%);
  margin: 18px auto 0;
  line-height: 1.85;
  opacity: .9;
}

/* Toggle */
.pkg-toggle{
  position: relative;
  width: min(420px, 92%);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.55);
}

.pkg-toggle-btn{
  appearance: none;
  background: transparent;
  border: 0;
  padding: 12px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.pkg-toggle-btn.is-active{
  color: #111;
}

.pkg-toggle-pill{
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 15px); /* accounts for left + right spacing */
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.16);
  background: rgba(255,255,255,.9);
  transform: translateX(0%);
  transition: transform .45s ease;
}

.pkg-toggle[data-active="international"] .pkg-toggle-pill{
  transform: translateX(100%);
}

/* Itinerary */
.pkg-itin{
  padding: 56px 0 80px;
  background: #fbfaf7;
}

.itin-panel{
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}

.itin-panel.is-active{
  display: block;
}

.itin-panel.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Day divider */
.day-divider{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 56px 0 22px;
}

.day-divider span{
  height: 1px;
  background: rgba(0,0,0,.14);
}

.day-divider p{
  margin: 0;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .7;
}

/* Day card layout */
.day-card{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.day-card.reverse{
  grid-template-columns: 1fr 1.05fr;
}

.day-card.reverse .day-media{
  order: 2;
}

.day-media{
  min-height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 0; /* sharp corners */
  overflow: hidden;
  filter: saturate(.95) contrast(1.02);
}

.day-media-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0));
  opacity: .9;
}

.day-content{
  padding: 6px 4px;
}

.day-route{
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .74rem;
  opacity: .65;
  margin: 0 0 10px;
}

.day-title{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.85rem;
  margin: 0 0 12px;
}

.day-text p{
  line-height: 1.9;
  margin: 0 0 12px;
  opacity: .92;
}

.day-bullets{
  margin: 10px 0 14px 18px;
  line-height: 1.85;
}

.day-optional{
  opacity: .86;
}

.day-overnight{
  margin-top: 10px;
  opacity: .9;
}

/* Notes + CTA */
.pkg-note{
  margin-top: 56px;
}

.pkg-note-inner{
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.65);
  padding: 26px 22px;
}

.pkg-note-inner h3{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0 0 10px;
}

.pkg-note-inner p{
  margin: 0 0 16px;
  line-height: 1.9;
}

.pkg-cta{
  display: inline-block;
  border: 1px solid rgba(0,0,0,.35);
  padding: 12px 16px;
  text-decoration: none;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
  background: transparent;
  transition: transform .25s ease, background .25s ease;
}

.pkg-cta:hover{
  background: rgba(0,0,0,.06);
  transform: translateY(-1px);
}

/* Small helper block */
.pkg-mini{
  margin: 22px 0 0;
  border-left: 2px solid rgba(0,0,0,.14);
  padding: 12px 14px;
  opacity: .92;
}

/* Mobile */
@media (max-width: 900px){
  .day-card,
  .day-card.reverse{
    grid-template-columns: 1fr;
  }
  .day-card.reverse .day-media{
    order: 0;
  }
  .day-media{
    min-height: 260px;
  }
  .day-divider{
    margin-top: 44px;
  }
}
/* ============================================================
   PACKAGE – NEXT STEPS (BOOK + OUR SELECTIONS)
============================================================ */
.pkg-nextsteps {
  padding: 70px 0 90px;
}

.nextsteps-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 28px;
}

.nextsteps-kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.75;
  margin-bottom: 10px;
}

.nextsteps-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  margin-bottom: 10px;
}

.nextsteps-sub {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0 auto;
  max-width: 720px;
}

.nextsteps-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nextstep-card {
  position: relative;
  display: block;
  padding: 22px 22px 20px;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.nextstep-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(0,0,0,0.03), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.nextstep-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0,0,0,0.18);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.nextstep-card:hover::before {
  opacity: 1;
}

.nextstep-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.nextstep-badge {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nextstep-arrow {
  font-size: 18px;
  opacity: 0.8;
  transform: translateX(0);
  transition: transform 240ms ease, opacity 240ms ease;
}

.nextstep-card:hover .nextstep-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.nextstep-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 10px;
}

.nextstep-p {
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.85;
  margin: 0 0 18px;
}

.nextstep-bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.nextstep-action {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 13px;
  text-transform: uppercase;
}

.nextstep-hint {
  font-size: 13px;
  opacity: 0.75;
  white-space: nowrap;
}

/* Ghost variant */
.nextstep-card.ghost {
  background: transparent;
}

/* Mobile */
@media (max-width: 900px) {
  .pkg-nextsteps {
    padding: 55px 0 70px;
  }

  .nextsteps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nextstep-card {
    padding: 20px;
  }

  .nextstep-h {
    font-size: 24px;
  }

  .nextstep-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .nextstep-hint {
    white-space: normal;
  }
}


/* ===== BESPOKE: force panels to actually show/hide (override any older rules) ===== */
.pkg-itin { padding: 46px 0 10px; }

.pkg-itin .itin-panel{
  display: none !important;     /* force hide by default */
}

.pkg-itin .itin-panel.is-active{
  display: block !important;    /* force show active panel */
}

/* ===== BESPOKE: better spacing + premium toggle ===== */
.pkg-toggle{
  position: relative;
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.045);
  border: 1px solid rgba(0,0,0,0.10);
  margin-top: 20px;
}

.pkg-toggle-btn{
  position: relative;
  z-index: 2;
  border: 0;
  background: transparent;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2a2a2a;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease;
}
.pkg-toggle-btn:hover{ transform: translateY(-1px); }

.pkg-toggle-pill{
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 8px;
  height: calc(100% - 16px);
  width: calc(50% - 15px); /* accounts for left + right spacing */
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  transition: transform .26s ease, width .26s ease;
  pointer-events: none;
}

/* mobile */
@media (max-width: 520px){
  .pkg-toggle{ width: 100%; justify-content: space-between; gap: 6px; }
  .pkg-toggle-btn{ flex: 1; padding: 12px 10px; font-size: .86rem; }
}

.pkg-map-wrap{
  width: min(980px, 92%);
  margin: 24px auto 10px;
}

.pkg-map-btn{
  width: 100%;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.65);
  padding: 14px;
  cursor: pointer;
  display: grid;
  gap: 10px;
}

.pkg-map-btn img{
  width: 100%;
  height: auto;
  display: block;
}

.pkg-map-hint{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
}

/* Modal */
.map-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 5000;
}

.map-modal.is-open{ display: block; }

.map-modal-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}

.map-modal-dialog{
  position: relative;
  width: min(1100px, 94vw);
  height: min(82vh, 780px);
  margin: 7vh auto 0;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
}

.map-modal-close{
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 18px;
}

.map-modal-stage{
  position: absolute;
  inset: 0;
  padding: 60px 18px 18px; /* space for close button */
  overflow: auto;          /* pan/scroll around full-res image */
  background: #f7f4ef;
}

/* IMPORTANT: show the image at its natural size (full resolution) */
.map-modal-stage img{
  display: block;
  max-width: none;
  height: auto;
}

/* ================= MAP THUMB ================= */
.pkg-map-wrap{
  width: min(920px, 92%);
  margin: 22px auto 16px;
  text-align: center;
}

.pkg-map-btn{
  width: 100%;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.55);
  padding: 10px;
  cursor: pointer;
  display: block;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pkg-map-btn img{
  width: 100%;
  height: auto;
  display: block;
}

.pkg-map-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(0,0,0,0.18);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.pkg-map-hint{
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .7;
}

.pkg-map-credit{
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .55;
}

/* ================= MAP VIEWER (MODAL) ================= */
.map-viewer-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.70);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 24px;
}

.map-viewer-overlay.active{
  display: flex;
}

.map-viewer-dialog{
  position: relative;
  background: #fff;
  max-width: min(1100px, 96vw);
  max-height: 92vh;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.map-viewer-img{
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 24px);
  height: auto;
}

.map-viewer-close{
  position: absolute;
  top: 8px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  background: rgba(0,0,0,0.06);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  transition: transform .18s ease, background .18s ease;
}

.map-viewer-close:hover{
  background: rgba(0,0,0,0.10);
  transform: translateY(-1px);
}

/* Ensure toggle stays centered regardless of parent text-align */
.pkg-toggle{
  width: fit-content;
  margin: 18px auto 0;
  display: flex;              /* not inline-flex */
  justify-content: center;
}


/* ======================================================
   SDF POLICY PAGE
====================================================== */

.sdf-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px 80px;
}

.sdf-hero {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.sdf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 20%,
    rgba(0,0,0,0.6) 85%
  );
}

.sdf-hero-inner {
  position: relative;
  padding: 36px;
  max-width: 900px;
  color: #fff;
}

.sdf-kicker {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .9;
}

.sdf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  margin: 10px 0;
}

.sdf-sub {
  font-size: 15px;
  line-height: 1.7;
  max-width: 760px;
}

.sdf-meta {
  font-size: 12px;
  opacity: .85;
  margin-top: 10px;
}

.sdf-section {
  margin-top: 42px;
}

.sdf-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  margin-bottom: 10px;
}

.sdf-lead {
  color: #444;
  line-height: 1.8;
  max-width: 900px;
}

.sdf-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.sdf-card {
  grid-column: span 3;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

.sdf-card h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.sdf-card p {
  font-size: 13px;
  color: #555;
}

.sdf-steps {
  grid-column: span 8;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,.06);
}

.sdf-note {
  grid-column: span 4;
  background: #faf7ef;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(184,144,11,.25);
}

.sdf-cta {
  margin-top: 64px;
  padding: 42px;
  border-radius: 22px;
  background: #f6f4ef;
  text-align: center;
}

.sdf-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
}

.sdf-cta p {
  max-width: 680px;
  margin: 12px auto 22px;
  color: #555;
}

@media (max-width: 900px) {
  .sdf-card,
  .sdf-steps,
  .sdf-note {
    grid-column: span 12;
  }

  .sdf-title {
    font-size: 36px;
  }
}
/* ============================================================
   SDF POLICY PAGE (sdf-policy.html)
   Paste near the bottom of css/style.css
============================================================ */

/* Page base */
.sdf-page{
  background: #fff;
}

/* Container */
.sdf-container{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

@media (max-width: 640px){
  .sdf-container{ width: calc(100% - 32px); }
}

/* Sections */
.sdf-section{
  padding: 60px 0;
}

@media (max-width: 640px){
  .sdf-section{ padding: 44px 0; }
}

/* Headings */
.sdf-h2{
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: clamp(28px, 2.4vw, 36px);
  margin-bottom: 10px;
}

.sdf-lead{
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #555;
  line-height: 1.75;
  max-width: 70ch;
}

.sdf-section-head{
  margin-bottom: 26px;
}

/* ============================================================
   HERO
============================================================ */
.sdf-hero{
  padding: 64px 0 34px;
  background: linear-gradient(180deg, #faf9f7 0%, #ffffff 70%);
}

.sdf-hero-inner{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

@media (max-width: 640px){
  .sdf-hero-inner{ width: calc(100% - 32px); }
}

.sdf-kicker{
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}

.sdf-title{
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin-bottom: 10px;
}

.sdf-subtitle{
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  line-height: 1.8;
  max-width: 80ch;
  margin-bottom: 18px;
}

.sdf-hero-meta{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sdf-badge{
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(40, 37, 26, 0.08);
  border: 1px solid rgba(184,144,11,0.18);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #ffffff;
}

.sdf-link{
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #2a2a2a;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.9;
  transition: opacity .2s ease, transform .2s ease;
}

.sdf-link:hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* ============================================================
   RATE CARDS
============================================================ */
.sdf-rate-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 980px){
  .sdf-rate-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .sdf-rate-grid{ grid-template-columns: 1fr; }
}

.sdf-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.sdf-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
}

.sdf-card-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #222;
  margin-bottom: 8px;
}

.sdf-card-value{
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 2px;
}

.sdf-card-note{
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #666;
}

/* ============================================================
   HOW IT WORKS + NOTE (two-column)
============================================================ */
.sdf-two-col{
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 980px){
  .sdf-two-col{ grid-template-columns: 1fr; }
}

.sdf-panel{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.05);
}

.sdf-steps{
  margin-top: 10px;
  display: grid;
  gap: 12px;
}

.sdf-step{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform .22s ease, box-shadow .22s ease;
}

.sdf-step:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

.sdf-step-num{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #2b2b2b;
  background: rgba(184,144,11,0.10);
  border: 1px solid rgba(184,144,11,0.22);
  margin-top: 2px;
}

.sdf-step-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.sdf-step-text{
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* Note card */
.sdf-note{
  background: #fbf7ed;
  border: 1px solid rgba(184,144,11,0.22);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.04);
}

.sdf-note-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.sdf-note-text{
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.8;
}

.sdf-note-mini{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.sdf-note-mini p{
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.7;
}

/* ============================================================
   INFO GRID
============================================================ */
.sdf-info-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 980px){
  .sdf-info-grid{ grid-template-columns: 1fr; }
}

.sdf-info-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.sdf-info-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
}

.sdf-info-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.sdf-info-text{
  font-family: "Montserrat", sans-serif;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

/* ============================================================
   MINI FAQ STRIP
============================================================ */
.sdf-mini-faq{
  padding-top: 0;
}

.sdf-mini-faq-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: #f7f6f4;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 18px 20px;
}

@media (max-width: 720px){
  .sdf-mini-faq-wrap{
    flex-direction: column;
    align-items: flex-start;
  }
}

.sdf-mini-title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 6px;
}

.sdf-mini-text{
  font-family: "Montserrat", sans-serif;
  color: #555;
  line-height: 1.7;
}

.sdf-mini-faq-right{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sdf-ghost-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #222;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.sdf-ghost-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(184,144,11,0.35);
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
}

/* ============================================================
   CTA (Elegant hover animation)
============================================================ */
.sdf-cta{
  padding-top: 40px;
}

.sdf-cta-box{
  position: relative;
  overflow: hidden;
  background: #f5f2ec;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 26px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 18px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.06);
}

@media (max-width: 900px){
  .sdf-cta-box{
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

/* subtle animated sheen */
.sdf-cta-box::before{
  content:"";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(184,144,11,0.14), transparent 45%);
  transform: translate3d(-10px, -10px, 0);
  opacity: 0.8;
  transition: transform .8s cubic-bezier(.2,.8,.2,1), opacity .6s ease;
  pointer-events: none;
}

.sdf-cta-box:hover::before{
  transform: translate3d(30px, 20px, 0);
  opacity: 1;
}

.sdf-cta-title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(30px, 2.6vw, 40px);
  margin-bottom: 8px;
}

.sdf-cta-text{
  font-family: "Montserrat", sans-serif;
  color: #555;
  line-height: 1.8;
  max-width: 70ch;
  margin-bottom: 14px;
}

.sdf-cta-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sdf-cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1f1f1f;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
}

.sdf-cta-arrow{
  display: inline-block;
  transform: translateX(0);
  transition: transform .22s ease;
}

.sdf-cta-btn:hover{
  transform: translateY(-3px);
  border-color: rgba(184,144,11,0.40);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}

.sdf-cta-btn:hover .sdf-cta-arrow{
  transform: translateX(4px);
}

.sdf-cta-link{
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #2b2b2b;
  opacity: 0.9;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity .2s ease, transform .2s ease;
}

.sdf-cta-link:hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* CTA chips */
.sdf-cta-side{
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: flex-end;
}

@media (max-width: 900px){
  .sdf-cta-side{ align-items: flex-start; }
}

.sdf-cta-chip{
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #333;
  transition: transform .22s ease, box-shadow .22s ease;
}

.sdf-cta-box:hover .sdf-cta-chip{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.10);
}

/* ============================================================
   "TRACTION" / REVEAL ANIMATION (scroll-in)
   JS will toggle: .reveal.is-visible
============================================================ */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .sdf-card,
  .sdf-info-card,
  .sdf-step,
  .sdf-cta-btn,
  .sdf-ghost-btn,
  .sdf-link{
    transition: none !important;
  }
}
/* ============================================================
   SDF NOTE – RESPONSIVE + ELEGANT BEHAVIOR
============================================================ */

/* Base styling (desktop + mobile) */
.sdf-note {
  background: #faf7f1;
  border: 1px solid #eadfc9;
  border-radius: 18px;
  padding: 28px 28px;
  max-width: 100%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Title */
.sdf-note-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

/* Main text */
.sdf-note-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Tip box */
.sdf-note-mini {
  margin-top: 16px;
  padding: 14px 16px;
  background: #fff;
  border-left: 3px solid #b8900b;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* Hover interaction (desktop only) */
@media (hover: hover) {
  .sdf-note:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  }
}

/* ============================================================
   MOBILE FIX – STACKING & SPACING
============================================================ */

@media (max-width: 900px) {

  /* Force column stacking if parent was grid/flex */
  .sdf-split,
  .sdf-two-col,
  .sdf-how-note {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Important Note tweaks */
  .sdf-note {
    padding: 22px 20px;
    border-radius: 16px;
  }

  .sdf-note-title {
    font-size: 1.25rem;
  }

  .sdf-note-text {
    font-size: 0.92rem;
  }

  .sdf-note-mini {
    font-size: 0.88rem;
  }
}

/* ============================================================
   REVEAL / TRACTION ANIMATION
============================================================ */

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

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

/* ================= SDF HERO ================= */
.sdf-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.55)
    ),
    url("../img/hero/bhutan-stupa-75kb.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: clamp(4rem, 8vw, 7rem) 1.25rem;
  color: #fff;
}

/* Inner content */
.sdf-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* Text styles */
.sdf-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.sdf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 1rem;
}

.sdf-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* Badge */
.sdf-badge {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

/* ======================================================
   CULTURAL TOURS – PACKAGE CARDS
====================================================== */

.cultural-packages{
  padding: clamp(70px, 10vw, 110px) 0;
  background: #fff;
}

.cultural-container{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.cultural-cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
}

/* ------------------------------------------------------
   CARD
------------------------------------------------------ */
.cultural-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cultural-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.10);
}

/* ------------------------------------------------------
   IMAGE
------------------------------------------------------ */
.cultural-card-img{
  position: relative;
  width: 100%;
  padding-top: 62%;
  background-size: cover;
  background-position: center;
}

.cultural-card-img::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.00),
    rgba(0,0,0,0.25)
  );
}

/* ------------------------------------------------------
   BODY
------------------------------------------------------ */
.cultural-card-body{
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cultural-nights{
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 6px;
}

.cultural-title{
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 10px;
}

.cultural-desc{
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* ------------------------------------------------------
   BUTTON (ALIGNED + CLASSY)
------------------------------------------------------ */
.cultural-btn{
  margin-top: auto;
  align-self: flex-start;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;
  border-radius: 999px;

  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;

  color: #2a2a2a;
  background: transparent;
  border: 1px solid rgba(184,144,11,0.45);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.cultural-btn::after{
  content: "→";
  font-size: 0.9rem;
  transform: translateX(0);
  transition: transform 0.25s ease;
  opacity: 0.85;
}

.cultural-btn:hover{
  transform: translateY(-2px);
  background: rgba(184,144,11,0.08);
  border-color: rgba(184,144,11,0.75);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

.cultural-btn:hover::after{
  transform: translateX(4px);
}

/* ------------------------------------------------------
   MOBILE TUNING
------------------------------------------------------ */
@media (max-width: 520px){
  .cultural-cards{
    gap: 26px;
  }

  .cultural-title{
    font-size: 1.25rem;
  }

  .cultural-btn{
    font-size: 0.9rem;
    padding: 11px 20px;
  }
}
/* ============================================================
   SERVICES PAGE — REVAMP (Collage style like framed reference)
   NO lazyloading. Mobile-friendly. Smooth reveal.
   (Place near your page sections in style.css)
============================================================ */

/* ================= PAGE WRAPPER ================= */
.services-page{
  width: 100%;
  background: transparent;
}

/* ================= TYPOGRAPHY ================= */
.services-kicker{
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .75;
  margin-bottom: .6rem;
}

.services-title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.05;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 0 0 .9rem;
}

.services-sub{
  font-size: 1rem;
  line-height: 1.8;
  opacity: .88;
  max-width: 56ch;
  margin: 0 0 1.2rem;
}

.services-quote{
  margin: 1.2rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(0,0,0,.18);
  font-style: italic;
  line-height: 1.8;
  opacity: .9;
  max-width: 56ch;
}

/* ================= HERO ================= */
.services-hero{
  padding: clamp(2.2rem, 4vw, 4rem) 0;
}

.services-hero-inner{
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
}

.services-hero-media{
  display: grid;
  gap: 1rem;
}

.services-hero-img{
  width: 100%;
  height: clamp(280px, 34vw, 420px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  /* reduce shimmer */
  transform: translateZ(0);
  backface-visibility: hidden;
}

.services-hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.services-mini-img{
  width: 100%;
  height: 170px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ================= SERVICES LIST ================= */
.services-list{
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(3rem, 5vw, 5rem);
}

.services-container{
  width: min(1180px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2.4rem, 4vw, 3.8rem);
}

.service-block{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  align-items: center;
}

.service-left .service-media{ order: 1; }
.service-left .service-content{ order: 2; }

.service-right .service-content{ order: 1; }
.service-right .service-media{ order: 2; }

/* ================= CONTENT ================= */
.service-tag{
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .75;
  margin: 0 0 .6rem;
}

.service-heading{
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: .01em;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 .9rem;
}

.service-text{
  font-size: 1rem;
  line-height: 1.9;
  opacity: .88;
  max-width: 62ch;
  margin: 0 0 1rem;
}

.service-quote{
  margin: 1.2rem 0 1.4rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(0,0,0,.18);
  font-style: italic;
  opacity: .9;
}

/* ============================================================
   BUTTONS — underline + arrow like your “Get Your Bespoke... →”
============================================================ */

.service-actions{
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: .2rem;
}

/* Link-style CTA (no filled button) */
.service-link-btn,
.service-mail-btn{
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;

  padding: 0;                 /* link vibe */
  margin-top: .2rem;

  font-size: 1rem;
  letter-spacing: .01em;
  text-decoration: none;
  color: inherit;

  border: 0;
  background: none;

  position: relative;
  line-height: 1.35;
}

/* underline */
.service-link-btn::after,
.service-mail-btn::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: rgba(0,0,0,.35);

  transform: scaleX(.65);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(.16,.84,.44,1), background 420ms ease;
}

/* arrow */
.btn-arrow{
  display: inline-block;
  transform: translateX(0);
  transition: transform 420ms cubic-bezier(.16,.84,.44,1), opacity 420ms ease;
  opacity: .95;
}

/* hover */
.service-link-btn:hover::after,
.service-mail-btn:hover::after{
  transform: scaleX(1);
  background: rgba(0,0,0,.55);
}

.service-link-btn:hover .btn-arrow,
.service-mail-btn:hover .btn-arrow{
  transform: translateX(6px);
}

/* focus */
.service-link-btn:focus-visible,
.service-mail-btn:focus-visible{
  outline: none;
}
.service-link-btn:focus-visible::after,
.service-mail-btn:focus-visible::after{
  transform: scaleX(1);
  background: rgba(0,0,0,.75);
}

/* ============================================================
   COLLAGE BASE — framed grid look (like your reference)
============================================================ */

.service-media{
  position: relative;
}

.service-collage{
  position: relative;
  width: 100%;

  /* gives a “frame mat” look */
  padding: clamp(14px, 1.6vw, 18px);
  background: rgba(255,255,255,.62);
  box-shadow: 0 20px 60px rgba(0,0,0,.10);

  border-radius: 0;
}

/* 6-tile grid system: soft separators */
.service-collage{
  display: grid;
  gap: 10px;
}

/* shared tile styling */
.collage-tile{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  overflow: hidden;

  box-shadow: 0 10px 26px rgba(0,0,0,.10);

  /* reduce shimmer: avoid frequent repaint */
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* subtle hover (keep minimal, no shimmer) */
@media (hover:hover){
  .collage-tile{
    transition: transform 420ms cubic-bezier(.16,.84,.44,1), box-shadow 520ms cubic-bezier(.16,.84,.44,1);
    will-change: transform;
  }
  .collage-tile:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0,0,0,.14);
  }
}

/* ============================================================
   COLLAGE LAYOUTS — 6 photos each (unique per section)
   Uses: .collage-a6 / .collage-b6 / .collage-c6 / .collage-d6
============================================================ */

/* ---------- A6 (Cultural) ----------
   Big left, 2 right, 3 small bottom strip
----------------------------------- */
.collage-a6{
  grid-template-columns: 1.35fr .85fr;
  grid-template-rows: 1fr 1fr auto;
  align-items: stretch;
}

.collage-a6 .t1{ grid-column: 1; grid-row: 1 / span 2; min-height: 320px; }
.collage-a6 .t2{ grid-column: 2; grid-row: 1; min-height: 155px; }
.collage-a6 .t3{ grid-column: 2; grid-row: 2; min-height: 155px; }

.collage-a6 .t4{ grid-column: 1; grid-row: 3; min-height: 120px; }
.collage-a6 .t5{ grid-column: 2; grid-row: 3; min-height: 120px; }
.collage-a6 .t6{
  grid-column: 1 / span 2;
  grid-row: 4;
  min-height: 120px;
}

/* ---------- B6 (Bespoke) ----------
   Mosaic: big base + 4 tiles + strip
----------------------------------- */
.collage-b6{
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr auto;
}

.collage-b6 .t1{ grid-column: 1 / span 2; grid-row: 1 / span 2; min-height: 340px; }
.collage-b6 .t2{ grid-column: 3; grid-row: 1; min-height: 160px; }
.collage-b6 .t3{ grid-column: 3; grid-row: 2; min-height: 160px; }

.collage-b6 .t4{ grid-column: 1; grid-row: 3; min-height: 120px; }
.collage-b6 .t5{ grid-column: 2; grid-row: 3; min-height: 120px; }
.collage-b6 .t6{ grid-column: 3; grid-row: 3; min-height: 120px; }

/* ---------- C6 (MICE) ----------
   3 columns: two tall + one stacked
----------------------------------- */
.collage-c6{
  grid-template-columns: 1fr 1fr .9fr;
  grid-template-rows: 1fr 1fr;
}

.collage-c6 .t1{ grid-column: 1; grid-row: 1 / span 2; min-height: 340px; }
.collage-c6 .t2{ grid-column: 2; grid-row: 1 / span 2; min-height: 340px; }

.collage-c6 .t3{ grid-column: 3; grid-row: 1; min-height: 165px; }
.collage-c6 .t4{ grid-column: 3; grid-row: 2; min-height: 165px; }

.collage-c6 .t5{ grid-column: 1; grid-row: 3; min-height: 120px; }
.collage-c6 .t6{ grid-column: 2 / span 2; grid-row: 3; min-height: 120px; }

/* ---------- D6 (Consultations) ----------
   Tall main + 2 strips + 3 minis
----------------------------------- */
.collage-d6{
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 1fr auto auto;
}

.collage-d6 .t1{ grid-column: 1; grid-row: 1 / span 3; min-height: 380px; }
.collage-d6 .t2{ grid-column: 2; grid-row: 1; min-height: 150px; }
.collage-d6 .t3{ grid-column: 2; grid-row: 2; min-height: 150px; }

.collage-d6 .t4{ grid-column: 1; grid-row: 4; min-height: 120px; }
.collage-d6 .t5{ grid-column: 2; grid-row: 3; min-height: 120px; }
.collage-d6 .t6{ grid-column: 2; grid-row: 4; min-height: 120px; }

/* ============================================================
   REVEAL ANIMATION (smooth, no shimmer)
   Works with your classes: .reveal-up, .reveal-fade + .reveal-show
============================================================ */

/* Only animate transform/opacity on text blocks, not on the tiles themselves. */
.reveal-up,
.reveal-fade{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 750ms ease, transform 750ms ease;
}

.reveal-fade{
  transform: none;
}

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

/* ============================================================
   MOBILE RESPONSIVE
============================================================ */
@media (max-width: 980px){
  .services-hero-inner{
    grid-template-columns: 1fr;
  }

  .services-hero-img{
    height: 360px;
  }

  .services-mini-img{
    height: 150px;
  }

  .service-block{
    grid-template-columns: 1fr;
  }

  .service-left .service-media,
  .service-right .service-media{ order: 1; }
  .service-left .service-content,
  .service-right .service-content{ order: 2; }

  /* Make collages stack cleaner */
  .service-collage{
    padding: 14px;
    gap: 9px;
  }

  /* Simplify collage grids on mobile */
  .collage-a6,
  .collage-b6,
  .collage-c6,
  .collage-d6{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .collage-a6 .t1,
  .collage-b6 .t1,
  .collage-c6 .t1,
  .collage-d6 .t1{
    grid-column: 1 / span 2;
    grid-row: auto;
    min-height: 260px;
  }

  /* all other tiles become equal minis */
  .collage-a6 .t2, .collage-a6 .t3, .collage-a6 .t4, .collage-a6 .t5, .collage-a6 .t6,
  .collage-b6 .t2, .collage-b6 .t3, .collage-b6 .t4, .collage-b6 .t5, .collage-b6 .t6,
  .collage-c6 .t2, .collage-c6 .t3, .collage-c6 .t4, .collage-c6 .t5, .collage-c6 .t6,
  .collage-d6 .t2, .collage-d6 .t3, .collage-d6 .t4, .collage-d6 .t5, .collage-d6 .t6{
    grid-column: auto;
    grid-row: auto;
    min-height: 130px;
  }
}

@media (max-width: 520px){
  .services-hero-img{ height: 300px; }
  .services-mini-img{ height: 130px; }

  .service-collage{
    padding: 12px;
    gap: 8px;
  }

  .service-link-btn,
  .service-mail-btn{
    font-size: .98rem;
  }

  /* 1-column collage for very small screens */
  .collage-a6,
  .collage-b6,
  .collage-c6,
  .collage-d6{
    grid-template-columns: 1fr;
  }

  .collage-tile{
    min-height: 140px;
  }
  .collage-a6 .t1,
  .collage-b6 .t1,
  .collage-c6 .t1,
  .collage-d6 .t1{
    min-height: 240px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal-up,
  .reveal-fade{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .collage-tile{
    transition: none !important;
  }
}

/* ============================================================
   BESPOKE PLANNING SECTION
   Calm, editorial, Aman-inspired
============================================================ */

.bespoke-section{
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: #ffffff;
}

.bespoke-inner{
  width: min(980px, 90%);
  margin: 0 auto;
}

/* ---------- TEXT ---------- */
.bespoke-kicker{
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .7;
  margin-bottom: .7rem;
}

.bespoke-title{
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.bespoke-text{
  font-size: 1rem;
  line-height: 1.9;
  opacity: .88;
  max-width: 64ch;
  margin-bottom: 1.1rem;
}

/* ---------- ACTION ---------- */
.bespoke-actions{
  margin-top: 1.8rem;
}

/* Button inspired by “Get Your Bespoke Itinerary Now →” */
.bespoke-btn{
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .95rem 1.4rem;
  font-size: .95rem;
  letter-spacing: .04em;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid rgba(0,0,0,.35);
  transition:
    gap .35s ease,
    border-color .35s ease,
    opacity .35s ease;
}

.bespoke-arrow{
  transition: transform .35s ease;
}

/* Hover — subtle, refined */
.bespoke-btn:hover{
  gap: 1.1rem;
  border-color: rgba(0,0,0,.7);
  opacity: .85;
}

.bespoke-btn:hover .bespoke-arrow{
  transform: translateX(3px);
}

/* ---------- MOBILE ---------- */
@media (max-width: 600px){
  .bespoke-text{
    font-size: .96rem;
  }

  .bespoke-btn{
    width: 100%;
    justify-content: space-between;
  }
}

/* ---------- REVEAL ---------- */
.reveal-up{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-show{
  opacity: 1;
  transform: translateY(0);
}
/* ============================================================
   MICE PAGE — Aman-inspired, sharp edges, calm motion
   Add to style.css
============================================================ */

.mice-page{
  width: 100%;
  background: #fff;
}

/* ---------- HERO ---------- */
.mice-hero{
  padding: clamp(2.2rem, 4vw, 4rem) 0;
}

.mice-hero-inner{
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
}

.mice-kicker{
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .72;
  margin: 0 0 .7rem;
}

.mice-title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.06;
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  margin: 0 0 1rem;
}

.mice-sub{
  font-size: 1rem;
  line-height: 1.9;
  opacity: .88;
  max-width: 60ch;
  margin: 0 0 1.4rem;
}

.mice-hero-actions{
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.mice-mini-note{
  font-size: .92rem;
  opacity: .78;
  margin: 0;
}
.mice-mini-note a{ color: inherit; }

/* Button like your reference */
.mice-cta{
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .95rem 1.4rem;
  font-size: .95rem;
  letter-spacing: .04em;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid rgba(0,0,0,.35);
  width: fit-content;
  transition: gap .35s ease, border-color .35s ease, opacity .35s ease;
}
.mice-cta-arrow{
  transition: transform .35s ease;
}
.mice-cta:hover{
  gap: 1.1rem;
  border-color: rgba(0,0,0,.7);
  opacity: .86;
}
.mice-cta:hover .mice-cta-arrow{
  transform: translateX(3px);
}

/* ---------- Collage (6 tiles, editorial layout) ---------- */
.mice-hero-media{
  width: 100%;
}

.mice-collage{
  width: 100%;
  height: clamp(360px, 36vw, 520px);
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 1rem;
  align-items: stretch;
}

.mice-tile{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  overflow: hidden;
  transform: translateZ(0);
}

/* Left big tile */
.mice-tile.tile-a{
  grid-row: 1 / span 3;
  min-height: 100%;
}

/* Right mosaic */
.mice-tile.tile-b{ height: 100%; }
.mice-tile.tile-c{ height: 100%; }
.mice-tile.tile-d{ height: 100%; }

/* Small framed accents */
.mice-tile.tile-e,
.mice-tile.tile-f{
  border: 10px solid rgba(255,255,255,.85);
  box-shadow: 0 22px 52px rgba(0,0,0,.14);
}

/* Make the right column a 3-row grid */
.mice-collage{
  grid-template-rows: 1fr 1fr 1fr;
}
.mice-tile.tile-b{ grid-column: 2; grid-row: 1; }
.mice-tile.tile-c{ grid-column: 2; grid-row: 2; }
.mice-tile.tile-d{ grid-column: 2; grid-row: 3; }

/* Place framed accents as overlays (calm) */
.mice-tile.tile-e{
  position: relative;
  grid-column: 1;
  grid-row: 3;
  width: min(260px, 60%);
  height: 160px;
  justify-self: end;
  align-self: end;
  margin: 0 14px 14px 0;
  z-index: 2;
}
.mice-tile.tile-f{
  position: relative;
  grid-column: 1;
  grid-row: 2;
  width: min(240px, 56%);
  height: 150px;
  justify-self: start;
  align-self: end;
  margin: 0 0 14px 14px;
  z-index: 2;
}

/* Subtle hover lift (desktop only feel) */
.mice-tile{
  transition: transform 550ms cubic-bezier(.16,.84,.44,1), box-shadow 650ms cubic-bezier(.16,.84,.44,1);
  will-change: transform;
}
.mice-tile:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(0,0,0,.16);
}

/* ---------- Sections ---------- */
.mice-section{
  padding: clamp(2.2rem, 4vw, 4rem) 0;
}

.mice-section-alt{
  background: #f6f6f6;
}

.mice-wrap{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.mice-head{
  margin-bottom: 1.6rem;
}

.mice-section-kicker{
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .72;
  margin: 0 0 .55rem;
}

.mice-h2{
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.12;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 0 0 .75rem;
}

.mice-lead{
  font-size: 1rem;
  line-height: 1.9;
  opacity: .88;
  max-width: 72ch;
  margin: 0;
}

/* Cards grid */
.mice-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

.mice-card{
  padding: 1.2rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}
.mice-card h3{
  font-size: .98rem;
  letter-spacing: .02em;
  margin: 0 0 .55rem;
}
.mice-card p{
  margin: 0;
  line-height: 1.85;
  opacity: .85;
  font-size: .95rem;
}

/* Steps */
.mice-steps{
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.mice-steps li{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  padding: 1.15rem 1.1rem;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}
.mice-steps h3{
  margin: 0 0 .5rem;
  font-size: .98rem;
}
.mice-steps p{
  margin: 0;
  opacity: .86;
  line-height: 1.85;
  font-size: .95rem;
}

.mice-reasons{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
}
.reason{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  padding: 1.15rem 1.1rem;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}
.reason h3{
  margin: 0 0 .5rem;
  font-size: .98rem;
}
.reason p{
  margin: 0;
  opacity: .86;
  line-height: 1.85;
  font-size: .95rem;
}

/* Action row */
.mice-action-row{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.mice-action-note{
  font-size: .92rem;
  opacity: .78;
}
.mice-action-note a{ color: inherit; }

/* Gallery */
.mice-gallery{
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mice-shot{
  margin: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  overflow: hidden;
}

.mice-shot img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
}

/* ---------- Reveal helpers (use your existing JS) ---------- */
.reveal-up,
.reveal-fade{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-fade{ transform: none; }
.reveal-show{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- MOBILE ---------- */
@media (max-width: 980px){
  .mice-hero-inner{
    grid-template-columns: 1fr;
  }

  .mice-collage{
    height: 440px;
    grid-template-columns: 1fr;
    grid-template-rows: 1.2fr .9fr .9fr;
  }

  .mice-tile.tile-a{
    grid-column: 1;
    grid-row: 1;
  }

  .mice-tile.tile-b{ grid-column: 1; grid-row: 2; }
  .mice-tile.tile-c{ grid-column: 1; grid-row: 3; }
  .mice-tile.tile-d{ display: none; }

  .mice-tile.tile-e,
  .mice-tile.tile-f{
    display: none; /* clean on mobile */
  }

  .mice-grid{
    grid-template-columns: 1fr 1fr;
  }

  .mice-steps{
    grid-template-columns: 1fr;
  }

  .mice-reasons{
    grid-template-columns: 1fr;
  }

  .mice-gallery{
    grid-template-columns: 1fr 1fr;
  }

  .mice-shot img{
    height: 220px;
  }
}

@media (max-width: 560px){
  .mice-gallery{
    grid-template-columns: 1fr;
  }
  .mice-shot img{
    height: 240px;
  }

  .mice-cta{
    width: 100%;
    justify-content: space-between;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; }
}
/* ============================================================
   CONSULTATIONS PAGE — clean, sharp, calm motion
============================================================ */

.consult-page{ width:100%; background:#fff; }

/* Hero */
.consult-hero{
  padding: clamp(2.2rem, 4vw, 4rem) 0;
}

.consult-hero-inner{
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
}

.consult-kicker{
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .72;
  margin: 0 0 .7rem;
}

.consult-title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.06;
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  margin: 0 0 1rem;
}

.consult-sub{
  font-size: 1rem;
  line-height: 1.9;
  opacity: .88;
  max-width: 64ch;
  margin: 0 0 1rem;
}

.consult-actions{
  margin-top: .8rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.consult-note{
  font-size: .92rem;
  opacity: .78;
  margin: 0;
}
.consult-note a{ color: inherit; }

/* CTA like reference (underline + arrow motion) */
.consult-cta{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .95rem 1.4rem;
  font-size: .95rem;
  letter-spacing: .04em;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid rgba(0,0,0,.35);
  width: fit-content;
  transition: gap .35s ease, border-color .35s ease, opacity .35s ease;
}
.consult-cta-arrow{
  transition: transform .35s ease;
}
.consult-cta:hover{
  gap: 1.1rem;
  border-color: rgba(0,0,0,.7);
  opacity: .86;
}
.consult-cta:hover .consult-cta-arrow{
  transform: translateX(3px);
}

/* Hero collage */
.consult-collage{
  width: 100%;
  height: clamp(360px, 34vw, 500px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  position: relative;
}

.consult-tile{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 550ms cubic-bezier(.16,.84,.44,1), box-shadow 650ms cubic-bezier(.16,.84,.44,1);
  will-change: transform;
}
.consult-tile:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(0,0,0,.16);
}

/* Layout */
.consult-tile.t1{ grid-column: 1; grid-row: 1 / span 2; }
.consult-tile.t2{ grid-column: 2; grid-row: 1; }
.consult-tile.t3{ grid-column: 2; grid-row: 2; }

.consult-tile.t4{
  position: absolute;
  width: min(260px, 56%);
  height: 160px;
  left: 18px;
  bottom: 18px;
  border: 10px solid rgba(255,255,255,.85);
  box-shadow: 0 22px 52px rgba(0,0,0,.14);
}

/* Sections */
.consult-section{
  padding: clamp(2.2rem, 4vw, 4rem) 0;
}

.consult-alt{
  background: #f6f6f6;
}

.consult-wrap{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.consult-head{
  margin-bottom: 1.5rem;
}

.consult-section-kicker{
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .72;
  margin: 0 0 .55rem;
}

.consult-h2{
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.12;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 0 0 .75rem;
}

.consult-lead{
  font-size: 1rem;
  line-height: 1.9;
  opacity: .88;
  max-width: 76ch;
  margin: 0;
}

/* Cards */
.consult-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.consult-card{
  padding: 1.15rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}

.consult-card h3{
  margin: 0 0 .55rem;
  font-size: .98rem;
  letter-spacing: .02em;
}

.consult-card p{
  margin: 0;
  opacity: .85;
  line-height: 1.85;
  font-size: .95rem;
}

/* Steps */
.consult-steps{
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.consult-steps li{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  padding: 1.15rem 1.1rem;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}

.consult-steps h3{ margin: 0 0 .5rem; font-size: .98rem; }
.consult-steps p{ margin: 0; opacity: .86; line-height: 1.85; font-size: .95rem; }

/* Split panels */
.consult-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
}

.consult-panel{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  padding: 1.15rem 1.1rem;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}

.consult-panel h3{ margin: 0 0 .65rem; font-size: .98rem; }
.consult-panel ul{ margin: 0; padding-left: 1.1rem; line-height: 1.9; opacity: .86; }

.consult-action-row{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.consult-action-note{
  font-size: .92rem;
  opacity: .78;
}

/* Final */
.consult-final{
  display: grid;
  gap: .9rem;
  align-items: start;
}
.consult-final .consult-cta{ margin-top: .4rem; }

/* Reveal helpers (use your reveal JS) */
.reveal-up,
.reveal-fade{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-fade{ transform: none; }
.reveal-show{
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 980px){
  .consult-hero-inner{ grid-template-columns: 1fr; }

  .consult-collage{
    height: 440px;
    grid-template-columns: 1fr;
    grid-template-rows: 1.3fr .9fr .9fr;
  }
  .consult-tile.t1{ grid-column: 1; grid-row: 1; }
  .consult-tile.t2{ grid-column: 1; grid-row: 2; }
  .consult-tile.t3{ grid-column: 1; grid-row: 3; }
  .consult-tile.t4{ display: none; }

  .consult-grid{ grid-template-columns: 1fr 1fr; }
  .consult-steps{ grid-template-columns: 1fr; }
  .consult-split{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .consult-grid{ grid-template-columns: 1fr; }
  .consult-cta{ width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; }
}

/* ============================================================
   FOUNDER SECTION – Premium / Calm / Personal
============================================================ */

.founder-section {
    padding: 100px 6vw;
    background: #ffffff;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* IMAGE */
.founder-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 1.2s ease;
}

.founder-image:hover img {
    transform: scale(1.04);
}

/* TEXT */
.founder-content {
    max-width: 560px;
}

.founder-subtitle {
    font-size: 12px;
    letter-spacing: 0.22em;
    color: #7f8c99; /* cool muted accent */
    margin-bottom: 14px;
}

.founder-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1e1e1e;
}

.founder-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 22px;
}

/* BUTTON */
.founder-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: #1e1e1e;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.25);
    transition: all 0.4s ease;
}

.founder-btn .arrow {
    transition: transform 0.4s ease;
}

.founder-btn:hover {
    color: #000;
    border-color: #000;
}

.founder-btn:hover .arrow {
    transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .founder-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founder-title {
        font-size: 36px;
    }
}

/* ============================================================
   NEW BLOG UPDATE (FRESH START) — FULL CSS
   (Drop this near your blog-section styles, or at the end of style.css)
============================================================ */

/* Section background + divider feel (non-white) */
.blog-update{
  width: 100%;
  padding: clamp(2.6rem, 4vw, 4.2rem) 0;
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(120, 160, 185, .14), transparent 60%),
    linear-gradient(180deg, rgba(245, 247, 250, 0) 0%, rgba(240, 244, 247, 1) 25%, rgba(240, 244, 247, 1) 75%, rgba(245, 247, 250, 0) 100%);
  position: relative;
}

/* Thin “divider” line at top and bottom */
.blog-update::before,
.blog-update::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.14), transparent);
}
.blog-update::before{ top: 0; }
.blog-update::after{ bottom: 0; }

.blog-update-wrap{
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
}

/* Left side */
.blog-update-left{
  padding: clamp(1rem, 2.2vw, 1.8rem);
}

.blog-update-kicker{
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .8;
  margin-bottom: .6rem;
}

.blog-update-title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.08;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin: 0 0 .75rem;
}

.blog-update-meta{
  font-size: .95rem;
  opacity: .75;
  margin-bottom: 1.05rem;
}

.blog-update-desc{
  font-size: 1rem;
  line-height: 1.9;
  opacity: .88;
  max-width: 62ch;
  margin-bottom: 1.5rem;
}

/* CTA button — no box outline, premium underline + arrow motion */
.blog-update-cta{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: inherit;
  font-size: .95rem;
  letter-spacing: .03em;
  padding: .25rem 0;
  position: relative;
  opacity: .95;
  transition: opacity 220ms ease;
}

.blog-update-cta::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,.22);
  transform: scaleX(.55);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(.16,.84,.44,1), background 420ms ease;
}

.blog-update-arrow{
  display: inline-block;
  transform: translateX(0);
  transition: transform 420ms cubic-bezier(.16,.84,.44,1), opacity 220ms ease;
  opacity: .9;
}

.blog-update-cta:hover{
  opacity: 1;
}

.blog-update-cta:hover::after{
  transform: scaleX(1);
  background: rgba(0,0,0,.34);
}

.blog-update-cta:hover .blog-update-arrow{
  transform: translateX(6px);
  opacity: 1;
}

/* Right card (image) */
.blog-update-right{
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-update-image{
  width: 100%;
  height: clamp(280px, 28vw, 390px);
  background-size: cover;
  background-position: center;
  border-radius: 0; /* boxy aesthetic */
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

/* soft top vignette */
.blog-update-image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0) 55%);
  pointer-events: none;
}

/* subtle hover: image only, not jittery */
.blog-update-right:hover .blog-update-image{
  box-shadow: 0 26px 70px rgba(0,0,0,.14);
}

/* ============================================================
   OPTIONAL: Scroll reveal hooks
   Add class="reveal-up" or "reveal-fade" to blog-update elements
============================================================ */
.blog-update.reveal-fade,
.blog-update .reveal-up,
.blog-update .reveal-fade{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
}
.blog-update.reveal-fade,
.blog-update .reveal-fade{
  transform: none;
}
.reveal-show{
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 980px){
  .blog-update-wrap{
    grid-template-columns: 1fr;
  }

  .blog-update-left{
    padding: 0;
  }

  .blog-update-image{
    height: 340px;
  }
}

@media (max-width: 520px){
  .blog-update{
    padding: 2.2rem 0;
  }

  .blog-update-image{
    height: 300px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .blog-update-cta,
  .blog-update-cta::after,
  .blog-update-arrow,
  .blog-update-image{
    transition: none !important;
  }
}

.page-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 42px;
  margin-bottom: 14px;
}

.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(0,0,0,0.7);
  line-height: 1.7;
}
