*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #fdfbf7;
  color: #1e3d2b;
  overflow-x: hidden
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none
}

p {
  margin: 0
}

:root {
  --dg: #1e3d2b;
  --teal: #1c6e6e;
  --teal2: #1c7373;
  --gold: #c6a75e;
  --cream: #e8d8c3;
  --ivory: #fffff0;
  --ow: #fdfbf7;
  --navy: #0f172a;
}

/* ══ NAVBAR ══ */
#navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 91px;
  background: rgba(0, 0, 0, .10);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  transition: background .3s, box-shadow .3s;
}

#navbar.sticky {
  position: fixed;
  background: rgba(19, 31, 31, .94);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .22);
}

.nw {
  height: 91px;
  display: flex;
  align-items: center;
  padding: 0 48px
}

.nlogo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(19, 236, 236, .20);
  border: 1px solid rgba(19, 236, 236, .30);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nlogo img {
  width: 20px;
  height: 21px;
  object-fit: contain
}

.nbrand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: -.5px;
  white-space: nowrap;
  margin-left: 12px;
  text-shadow: 0 2px 2px rgba(0, 0, 0, .06), 0 4px 3px rgba(0, 0, 0, .07);
}

.nlinks {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 42px
}

.nlinks a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
  white-space: nowrap;
  transition: color .2s;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.nlinks a:hover {
  color: var(--gold)
}

.nacts {
  display: flex;
  gap: 16px;
  margin-left: auto
}

.btn-signin {
  height: 42px;
  padding: 0 20px 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}

.btn-signin img {
  width: 14px;
  height: 14px;
  object-fit: contain
}

.btn-signin:hover {
  background: rgba(255, 255, 255, .18)
}

.btn-book {
  height: 42px;
  padding: 0 16px 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: none;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 15px -3px rgba(19, 236, 236, .25), 0 4px 6px -4px rgba(19, 236, 236, .25);
  transition: opacity .2s;
}

.btn-book img {
  width: 12px;
  height: 12px;
  object-fit: contain
}

.btn-book:hover {
  opacity: .88
}

.ntog {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px
}

.ntog svg {
  width: 24px;
  height: 24px
}

.mob-nav {
  display: none;
  position: fixed;
  top: 91px;
  left: 0;
  right: 0;
  z-index: 899;
  background: rgba(19, 31, 31, .97);
  backdrop-filter: blur(16px);
  padding: 20px 24px 28px;
}

.mob-nav.open {
  display: block
}

.mob-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, .9);
  transition: color .2s;
}

.mob-nav a:hover {
  color: var(--gold)
}

.mob-btns {
  display: flex;
  gap: 12px;
  margin-top: 20px
}

.mob-btns button {
  flex: 1;
  height: 42px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.mob-btns .mb-si {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .20);
  color: #fff
}

.mob-btns .mb-bn {
  background: var(--cream);
  border: none;
  color: var(--navy)
}

/* ══ HERO ══ */
#hero {
  position: relative;
  width: 100%;
  height: 130vh;
  min-height: 680px;
  overflow: hidden
}

.hbg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 12s ease;
}

.hbg.rdy {
  transform: scale(1)
}

.hov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .60) 0%, rgba(0, 0, 0, .30) 50%, rgba(0, 0, 0, .70) 100%);
}

.hcon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  padding-top: 1px;
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 9999px;
  padding: 7px 16px;
  backdrop-filter: blur(6px);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--cream);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hdot {
  width: 6px;
  height: 6px;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0
}

.hh1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(52px, 6.25vw, 80px);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-shadow: 0 4px 3px rgba(0, 0, 0, .10), 0 10px 8px rgba(0, 0, 0, .04);
}

.hh1 .grn {
  color: var(--dg)
}

.hsub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.56vw, 20px);
  color: #e2e8f0;
  line-height: 1.6;
  max-width: 664px;
  margin-bottom: 40px;
  text-shadow: 0 2px 2px rgba(0, 0, 0, .06), 0 4px 3px rgba(0, 0, 0, .07);
}

.hbtns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center
}

.btn-hp {
  height: 56px;
  padding: 0 28px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 20px 25px -5px rgba(19, 236, 236, .20), 0 8px 10px -6px rgba(19, 236, 236, .20);
  transition: opacity .2s, transform .2s;
}

.btn-hp img {
  width: 20px;
  height: 20px;
  object-fit: contain
}

.btn-hp:hover {
  opacity: .90;
  transform: translateY(-2px)
}

.btn-hs {
  height: 56px;
  padding: 0 20px 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .30);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: background .2s, transform .2s;
}

.btn-hs img {
  width: 16px;
  height: 12px;
  object-fit: contain
}

.btn-hs:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px)
}

.scrl {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scrl-lbl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.scrl-pill {
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .30);
  border-radius: 9999px;
  position: relative
}

.scrl-dot {
  width: 4px;
  height: 8px;
  background: var(--cream);
  border-radius: 9999px;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  animation: sbounce 1.8s ease-in-out infinite;
}

@keyframes sbounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1
  }

  50% {
    transform: translateX(-50%) translateY(14px);
    opacity: .4
  }
}

/* ══ EXPERIENCES ══ */
#exp {
  background: var(--ow);
  padding: 80px 0 0
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2.8px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.sec-ttl {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 4.7vw, 60px);
  line-height: 1;
  color: var(--dg);
  text-align: center;
  margin-bottom: 16px;
}

.sec-div {
  width: 96px;
  height: 4px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, rgba(198, 167, 94, 0), #c6a75e 50%, rgba(198, 167, 94, 0));
  opacity: .70;
}

.sec-desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(30, 61, 43, .8);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.625;
}

.exp-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 48px;
}

.ecard {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 482px;
  border: 1px solid rgba(198, 167, 94, .2);
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  cursor: pointer;
  transition: transform .35s, box-shadow .35s;
}

.ecard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .18)
}

.ecard-img {
  position: absolute;
  inset: 0
}

.ecard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.ecard:hover .ecard-img img {
  transform: scale(1.06)
}

.ecard-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 61, 43, .8) 0%, rgba(30, 61, 43, 0) 50%);
  opacity: .70;
}

.ecard-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px
}

.etag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.etag img {
  width: 18px;
  height: 18px;
  object-fit: contain
}

.etag-txt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .6px;
  text-transform: uppercase;
}

.eth3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 30px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2
}

.equote {
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, .9);
  line-height: 1.5;
  letter-spacing: .35px;
}

.vaw {
  text-align: center;
  padding-bottom: 80px
}

.valink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--teal);
  border-bottom: 1px solid rgba(198, 167, 94, .3);
  padding-bottom: 4px;
  transition: color .2s;
}

.valink img {
  width: 12px;
  height: 9px;
  object-fit: contain
}

.valink:hover {
  color: var(--gold)
}

/* ══ DISCOVER ══ */
#discover {
  background: #fff;
  border-top: 1px solid rgba(198, 167, 94, .2);
  padding: 64px 0
}

.disc-in {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.disc-txt {
  flex: 1 1 350px
}

.disc-txt h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--dg);
  margin-bottom: 20px;
  line-height: 1.2
}

.disc-txt p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: rgba(30, 61, 43, .80);
  line-height: 1.625;
  margin-bottom: 28px
}

.disc-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .7px;
  transition: color .2s
}

.disc-link:hover {
  color: var(--gold)
}

.disc-img {
  flex: 1 1 350px;
  height: 256px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(198, 167, 94, .2);
  background: #f3f4f6;
}

.disc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*filter: saturate(0) brightness(1.05)*/
}

/* ══ PHILOSOPHY ══ */
#phil {
  background: var(--ow);
  padding: 96px 80px
}

.phil-in {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 1120px;
  margin: 0 auto
}

.phil-lcol {
  flex: 0 0 520px
}

.phil-iwrap {
  position: relative;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .10), 0 8px 10px -6px rgba(0, 0, 0, .10);
  height: 734px;
}

.phil-iwrap>img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.phil-iov {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .10);
  pointer-events: none
}

.pchip {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255, 255, 255, .90);
  border: 1px solid rgba(255, 255, 255, .20);
  backdrop-filter: blur(2px);
  border-radius: 32px;
  padding: 16px;
  width: 320px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}

.pchip-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--teal);
  letter-spacing: .6px;
  text-transform: uppercase;
}

.pchip-loc img {
  width: 10px;
  height: 13px;
  object-fit: contain
}

.pchip-q {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--dg)
}

.phil-rcol {
  flex: 1 1 0;
  padding-top: 32px
}

.peyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.peyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0
}

.ph1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.7vw, 60px);
  line-height: 1;
  color: var(--dg);
  margin-bottom: 32px
}

.ph1 .t {
  color: var(--teal)
}

.pbody {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--dg);
  line-height: 1.625;
  margin-bottom: 20px
}

.pbtns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px
}

.btn-pp {
  height: 56px;
  padding: 0 28px 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--teal);
  border: none;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--cream);
  letter-spacing: .4px;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .10), 0 4px 6px -4px rgba(0, 0, 0, .10);
  transition: opacity .2s, transform .2s;
}

.btn-pp img {
  width: 10px;
  height: 10px;
  object-fit: contain
}

.btn-pp:hover {
  opacity: .88;
  transform: translateY(-2px)
}

.btn-ps {
  height: 56px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--dg);
  letter-spacing: .4px;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.btn-ps:hover {
  background: rgba(198, 167, 94, .10);
  transform: translateY(-2px)
}

.stats {
  border-top: 1px solid #e2e8f0;
  padding-top: 32px;
  display: flex;
  gap: 0
}

.si {
  flex: 1
}

.snum {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 30px;
  color: var(--dg);
  line-height: 1.2;
  margin-bottom: 4px
}

.slbl {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .6px;
  text-transform: uppercase
}

/* ══ FEATURES ══ */
#feat {
  background: #fff;
  border-top: 1px solid #f1f5f9;
  padding: 64px 80px
}

.feat-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1120px;
  margin: 0 auto
}

.fi {
  border-radius: 16px;
  padding: 24px;
  text-align: center
}

.fi-icon {
  width: 48px;
  height: 48px;
  background: rgba(198, 167, 94, .10);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.fi-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain
}

.fi-h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--dg);
  text-align: center;
  margin-bottom: 12px
}

.fi-body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--dg);
  text-align: center;
  line-height: 1.5
}

/* ══ TESTIMONIALS ══ */
#testi {
  background: var(--ow);
  padding: 80px 80px
}

.thead {
  text-align: center;
  margin-bottom: 48px
}

.ttitle {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.75vw, 48px);
  color: var(--dg);
  letter-spacing: -1.2px;
  line-height: 1;
  margin-bottom: 12px
}

.tdiv {
  width: 96px;
  height: 4px;
  background: var(--gold);
  border-radius: 9999px;
  margin: 0 auto 12px
}

.tsub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: rgba(30, 61, 43, .80);
  letter-spacing: .5px
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto 48px
}

.tcard {
  background: var(--ivory);
  border: 1px solid rgba(30, 61, 43, .05);
  border-radius: 16px;
  position: relative;
  box-shadow: 0 17px 5px rgba(0, 0, 0, 0), 0 11px 4px rgba(0, 0, 0, .01), 0 6px 4px rgba(0, 0, 0, .05), 0 3px 3px rgba(0, 0, 0, .09), 0 1px 1px rgba(0, 0, 0, .10), 0 10px 40px -10px rgba(0, 0, 0, .08);
}

.tq-img {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 42.5px;
  height: 30px
}

.tq-img img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.tavwrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 32px auto 0
}

.tavring {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 96px;
  height: 96px;
  border: 2px solid rgba(198, 167, 94, .30);
  border-radius: 50%;
}

.tav {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05)
}

.tav img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.tstars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 16px auto 0
}

.tstars img {
  width: 12px;
  height: 11px;
  object-fit: contain
}

.tbq {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--dg);
  text-align: center;
  line-height: 1.625;
  padding: 16px 32px 0;
}

.tfooter {
  border-top: 1px solid rgba(30, 61, 43, .10);
  margin: 16px 32px 0;
  padding: 16px 0 24px
}

.tname {
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  font-size: 16px;
  color: var(--dg);
  text-align: center;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tloc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  font-size: 14px;
  color: rgba(30, 61, 43, .60);
}

.tloc img {
  width: 11px;
  height: 13px;
  object-fit: contain
}

.tcta {
  text-align: center
}

.btn-sj {
  height: 56px;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--teal);
  border: none;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}

.btn-sj img {
  width: 16px;
  height: 16px;
  object-fit: contain
}

.btn-sj:hover {
  opacity: .88;
  transform: translateY(-2px)
}

/* ══ GALLERY ══ */
#gal {
  background: #fff;
  padding: 64px 80px
}

.ghead {
  text-align: center;
  margin-bottom: 48px
}

.geyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gtitle {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 3.75vw, 48px);
  color: var(--dg);
  margin-bottom: 16px;
  line-height: 1
}

.gdesc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #475569;
  text-align: center;
  max-width: 672px;
  margin: 0 auto;
  line-height: 1.625
}

/* Top row */
.gtop {
  display: grid;
  grid-template-columns: 66% 34%;
  grid-template-rows: 524px;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto 24px;
}

.gi {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  position: relative;
  cursor: pointer
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s
}

.gi:hover img {
  transform: scale(1.05)
}

/* Bottom row */
.gbot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.gm {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  height: 250px;
  cursor: pointer
}

.gm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s
}

.gm:hover img {
  transform: scale(1.05)
}

.gcta {
  text-align: center;
  margin-top: 48px
}

.btn-vg {
  height: 56px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal2);
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: .7px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(28, 115, 115, .25), 0 4px 6px -4px rgba(28, 115, 115, .25);
  transition: opacity .2s, transform .2s;
}

.btn-vg:hover {
  opacity: .88;
  transform: translateY(-2px)
}

/* ══ CTA JOURNEY ══ */
#ctaj {
  position: relative;
  overflow: hidden;
  background: #131f1f
}

.ctabg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center
}

.ctaov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 61, 43, .40) 0%, rgba(30, 61, 43, .60) 50%, rgba(30, 61, 43, .80) 100%);
  mix-blend-mode: multiply;
}

.ctacon {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 118px 24px
}

.ctatitle {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(44px, 5.6vw, 72px);
  color: var(--cream);
  letter-spacing: -1.8px;
  line-height: 1;
  margin-bottom: 24px;
}

.ctasub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.56vw, 20px);
  color: #f9f6f0;
  letter-spacing: .5px;
  max-width: 660px;
  margin: 0 auto 48px;
  line-height: 1.5;
  opacity: .90;
}

.ctabtns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.btn-cp {
  height: 56px;
  padding: 0 28px 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--cream);
  letter-spacing: .4px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .10), 0 4px 6px -4px rgba(0, 0, 0, .10);
  transition: opacity .2s, transform .2s;
}

.btn-cp img {
  width: 14px;
  height: 14px;
  object-fit: contain
}

.btn-cp:hover {
  opacity: .88;
  transform: translateY(-2px)
}

.btn-cs {
  height: 56px;
  padding: 0 24px 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--cream);
  letter-spacing: .4px;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: background .2s, transform .2s;
}

.btn-cs img {
  width: 15px;
  height: 17px;
  object-fit: contain
}

.btn-cs:hover {
  background: rgba(198, 167, 94, .15);
  transform: translateY(-2px)
}

/* ══ FOOTER ══ */
#foot {
  background: var(--dg);
  overflow: hidden;
  padding: 96px 48px 0
}

.fg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1184px;
  margin: 0 auto 56px
}

.fbrand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px
}

.fbrand-row img {
  width: 30px;
  height: 30px;
  object-fit: contain
}

.fbname {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 30px;
  color: var(--gold);
  letter-spacing: .75px;
  line-height: 1
}

.ftagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(232, 216, 195, .9);
  line-height: 1.625;
  margin-bottom: 16px
}

.fslogan {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 1.5
}

.fch {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 24px
}

.fl {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(232, 216, 195, .80);
  margin-bottom: 16px;
  transition: color .2s
}

.fl:hover {
  color: var(--gold)
}

.fcrow {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px
}

.fcicon {
  flex-shrink: 0;
  width: 17px;
  padding-top: 2px
}

.fcicon img {
  width: 18px;
  height: 18px;
}

.fctxt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(232, 216, 195, .80);
  line-height: 1.5
}

.btn-wa {
  height: 40px;
  padding: 0 16px 0 20px;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--cream);
  letter-spacing: .35px;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .20), 0 4px 6px -4px rgba(0, 0, 0, .20);
  transition: opacity .2s;
}

.btn-wa img {
  width: 17px;
  height: 17px;
  object-fit: contain
}

.btn-wa:hover {
  opacity: .88
}

.socials {
  display: flex;
  gap: 16px;
  margin-bottom: 24px
}

.socials a {
  display: flex;
  align-items: center;
  opacity: .9;
  transition: opacity .2s
}

.socials a:hover {
  opacity: .60
}

.socials img {
  width: 20px;
  height: 22px;
  object-fit: contain
}

.nltxt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(232, 216, 195, .80);
  line-height: 1.5;
  margin-bottom: 16px
}

.nlrow {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px
}

.nlinput {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(232, 216, 195, .6)
}

.nlinput::placeholder {
  color: rgba(232, 216, 195, .4)
}

.nlbtn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center
}

.nlbtn img {
  width: 16px;
  height: 16px;
  object-fit: contain
}

.fbot {
  border-top: 1px solid rgba(198, 167, 94, .3);
  max-width: 1184px;
  margin: 0 auto;
  padding: 20px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.fcopy {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(232, 216, 195, .60);
  letter-spacing: .3px
}

.flegal {
  display: flex;
  gap: 24px
}

.flegal a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(232, 216, 195, .60);
  letter-spacing: .3px;
  transition: color .2s
}

.flegal a:hover {
  color: var(--gold)
}

/* ══ REVEAL ══ */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease
}

.rv.in {
  opacity: 1;
  transform: none
}

.rv.d1 {
  transition-delay: .10s
}

.rv.d2 {
  transition-delay: .20s
}

.rv.d3 {
  transition-delay: .30s
}

/* ══ RESPONSIVE ══ */
@media(max-width:1100px) {
  #phil {
    padding: 80px 32px
  }

  .phil-in {
    gap: 40px
  }

  .phil-lcol {
    flex: 0 0 400px
  }

  .phil-iwrap {
    height: 580px
  }

  #feat {
    padding: 64px 32px
  }

  #testi {
    padding: 80px 32px
  }

  #gal {
    padding: 64px 32px
  }

  #foot {
    padding: 64px 32px 0
  }
}

@media(max-width:991px) {

  .nlinks,
  .nacts {
    display: none !important
  }

  .ntog {
    display: flex !important;
    align-items: center
  }

  .exp-row {
    grid-template-columns: 1fr
  }

  .ecard {
    height: 420px
  }

  .phil-in {
    flex-direction: column
  }

  .phil-lcol {
    flex: none;
    width: 100%;
    max-width: 520px
  }

  .phil-iwrap {
    height: 450px
  }

  .feat-g {
    grid-template-columns: 1fr
  }

  .tgrid {
    grid-template-columns: 1fr
  }

  .gtop {
    grid-template-columns: 1fr;
    grid-template-rows: 320px 320px
  }

  .gbot {
    grid-template-columns: 1fr 1fr
  }

  .fg {
    grid-template-columns: 1fr 1fr
  }

  .ctabtns {
    flex-direction: column;
    align-items: center
  }
}

@media(max-width:767px) {
  .nw {
    padding: 0 20px
  }

  #phil {
    padding: 60px 20px
  }

  .phil-iwrap {
    height: 380px;
    border-radius: 24px
  }

  .pchip {
    width: calc(100% - 40px)
  }

  #feat {
    padding: 60px 20px
  }

  #testi {
    padding: 60px 20px
  }

  #gal {
    padding: 60px 20px
  }

  .gbot {
    grid-template-columns: 1fr
  }

  #foot {
    padding: 48px 20px 0
  }

  .fg {
    grid-template-columns: 1fr
  }

  .fbot {
    flex-direction: column;
    text-align: center
  }

  .disc-in {
    flex-direction: column
  }

  .hbtns {
    flex-direction: column;
    align-items: center
  }

  .btn-hp,
  .btn-hs {
    width: 280px;
    justify-content: center
  }

  .tsub {
    font-size: 16px
  }

  .phil-iwrap {
    border-radius: 24px
  }

  .card-title {

    font-size: 24px !important;

  }

  .section-heading {

    font-size: 30px !important;

  }

  .section-subtext {

    max-width: 100% !important;

  }
}


/* conservation page  */



/* ============================================================
       CSS VARIABLES
    ============================================================ */
:root {
  --color-dark-green: #1e3e2b;
  --color-teal: #1c6e6e;
  --color-gold: #c6a75e;
  --color-sand: #e8d8c3;
  --color-cream-bg: #fdfbf7;
  --color-slate: #475569;
  --color-near-black: #0f172a;
  --color-white: #ffffff;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-label: 'Public Sans', sans-serif;
}

/* ============================================================
       RESET / BASE
    ============================================================ */

#page-root {
  overflow-x: hidden;
  font-family: var(--font-body);
  background-color: var(--color-cream-bg);
}

/* ============================================================
       SECTION 1 – HERO
    ============================================================ */
#hero-section {
  position: relative;
  width: 100%;
  min-height: 870px;
  overflow: hidden;
}

#hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 147%;
  top: -23.5%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

#hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
}

#hero-content {
  position: relative;
  z-index: 2;
  padding: 253px 80px 80px 80px;
  max-width: 752px;
}

#hero-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 16px;
  display: block;
}

#hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 72px;
  color: var(--color-white);
  margin-bottom: 24px;
}

#hero-subtext {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 408px;
  margin-bottom: 44px;
}

#hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#btn-join-conservation {
  background-color: var(--color-sand);
  border: none;
  border-radius: 12px;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-near-black);
  box-shadow: 0 20px 25px -5px rgba(28, 110, 110, 0.3), 0 8px 10px -6px rgba(28, 110, 110, 0.3);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#btn-explore-journeys {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px 25px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#btn-join-conservation:hover {
  opacity: 0.9;
}

#btn-explore-journeys:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

/* ============================================================
       SECTION 2 – CARDS (Conservation & Heritage)
    ============================================================ */
#cards-section {
  background-color: var(--color-cream-bg);
  padding: 80px 88px;
}

#cards-header {
  text-align: center;
  max-width: 672px;
  margin: 0 auto 56px auto;
}

#cards-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: block;
}

#cards-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  color: var(--color-dark-green);
  margin-bottom: 16px;
}

#cards-subtext {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-slate);
  margin-bottom: 0;
}

/* EXPERIENCE CARD */
.experience-card {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 80px;
}

.experience-card:last-child {
  margin-bottom: 0;
}

.experience-card.card-flipped {
  flex-direction: row-reverse;
}

.card-img-wrap {
  flex: 0 0 504px;
  width: 504px;
  height: 630px;
  border-radius: 12px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 125%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin-left: -12.5%;
}

.card-content {
  flex: 1;
  padding: 0 0 0 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-flipped .card-content {
  padding: 0 96px 0 0;
  align-items: flex-end;
  text-align: right;
}

.card-quote-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
}

.card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  color: var(--color-dark-green);
  margin-bottom: 16px;
}

.card-description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-slate);
  margin-bottom: 28px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-teal);
  text-decoration: none;
}

.card-link:hover {
  opacity: 0.75;
}

.card-link-icon {
  width: 12px;
  height: 12px;
}

/* ============================================================
       SECTION 3 – LEGACY (Stats + Grid)
    ============================================================ */
#legacy-section {
  background-color: var(--color-cream-bg);
  padding: 40px 64px 80px 64px;
}

#legacy-header {
  text-align: center;
  max-width: 896px;
  margin: 0 auto 60px auto;
}

#legacy-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  display: block;
}

#legacy-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  color: var(--color-dark-green);
  margin-bottom: 16px;
}

#legacy-subtext {
  font-family: 'Plus Jakarta Sans', var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 29.25px;
  color: rgba(30, 62, 43, 0.6);
  margin-bottom: 0;
}

/* STATS BOX */
#stats-box {
  background-color: var(--color-sand);
  border: 1px solid rgba(30, 62, 43, 0.05);
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(30, 62, 43, 0.05), 0 8px 10px -6px rgba(30, 62, 43, 0.05);
  padding: 80px;
  margin-bottom: 80px;
}

#stats-grid {
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.stat-item:not(:first-child) {
  border-left: 1px solid rgba(30, 62, 43, 0.1);
}

.stat-divider {
  width: 48px;
  height: 1px;
  background-color: rgba(198, 167, 94, 0.4);
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 72px;
  line-height: 72px;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.stat-label-line {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-dark-green);
  line-height: 16px;
}

/* IMAGE GRID */
#imagery-grid-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 24px;
}

#imagery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.imagery-grid-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 317px;
}

.imagery-grid-item img {
  width: 100%;
  height: 177.78%;
  object-fit: cover;
  object-position: center;
  margin-top: -38.89%;
}

.imagery-grid-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(30, 62, 43, 0.2);
}

/* ============================================================
       SECTION 4 – CLOSING CTA
    ============================================================ */
#closing-section {
  position: relative;
  width: 100%;
  min-height: 819px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#closing-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 156.25%;
  top: -28.13%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

#closing-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

#closing-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 768px;
  padding: 0 24px;
}

#closing-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: -1.8px;
  color: var(--color-white);
  margin-bottom: 32px;
}

#closing-subtext {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 56px;
}

#closing-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

#btn-closing-join {
  background-color: var(--color-teal);
  border: none;
  border-radius: 9999px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

#btn-closing-plan {
  background-color: var(--color-white);
  border: none;
  border-radius: 9999px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-teal);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

#btn-closing-join:hover {
  opacity: 0.88;
}

#btn-closing-plan:hover {
  opacity: 0.88;
}

#scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

#scroll-indicator-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
}

#scroll-indicator-arrow {
  width: 20px;
  height: 20px;
  margin-top: 20px;
}

/* adventure page  */

/* ─── CSS VARIABLES ─────────────────────────────────── */
:root {
  --cream: #fdfbf7;
  --forest: #1e3e2b;
  --teal: #1c6e6e;
  --gold: #c6a75e;
  --warm-beige: #e8d8c3;
  --footer-bg: #1e3d2b;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --font-ui: 'Plus Jakarta Sans', sans-serif;
}

/* ─── RESET / BASE ──────────────────────────────────── */

/* ─── UTILITY ───────────────────────────────────────── */
.label-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-divider {
  width: 96px;
  height: 1px;
  background: var(--warm-beige);
  margin: 0 auto;
}

.section-divider-gold {
  width: 96px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
}

.btn-auro-beige {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 54px;
  border-radius: 999px;
  background: var(--warm-beige);
  border: 1px solid var(--warm-beige);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #0f172a;
  transition: background 0.25s, color 0.25s;
}

.btn-auro-beige:hover {
  background: #d9c5aa;
  color: #0f172a;
}

.btn-auro-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 32px;
  height: 56px;
  border-radius: 999px;
  background: var(--teal);
  border: none;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  transition: background 0.25s;
}

.btn-auro-teal:hover {
  background: #155959;
  color: #fff;
}

.btn-discover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--teal);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.25s;
}

.btn-discover:hover {
  background: #155959;
  color: #fff;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--teal);
}

.explore-link svg {
  transition: transform 0.2s;
}

.explore-link:hover svg {
  transform: translateX(3px);
}

/* ─── NAVBAR ────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0px 48px;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
}

#navbar.scrolled {
  background: rgba(30, 61, 43, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .25);
  padding: 12px 48px;
}

.navbar-brand-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.75px;
  color: var(--gold);
  line-height: 1;
}

.navbar-logo {
  width: 28px;
  height: 28px;
}

.nav-link-custom {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 16px;
  transition: color 0.2s;
}

.nav-link-custom:hover {
  color: var(--gold);
}

.navbar-toggler-custom {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
}

.navbar-toggler-custom span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: all 0.3s;
}

#navMenu {
  background: rgba(30, 61, 43, 0.98);
}

/* ─── HERO SECTION ──────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

#hero .hero-bg {
  position: absolute;
  inset: 0;
}

#hero .hero-bg img {
  width: 100%;
  height: 183%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-22%);
}

#hero .hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
}

#hero .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

#hero .hero-text {
  text-align: center;
  max-width: 680px;
}

#hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: #fff;
  margin-bottom: 24px;
}

#hero p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
}

/* ─── STORYTELLING SECTION ──────────────────────────── */
#story {
  background: var(--cream);
  padding: 40px;
}

.story-inner {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}

.story-left {
  position: relative;
  flex: 0 0 50%;
  min-height: 560px;
}

.story-left img {
  width: 133.33%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin-left: -16.67%;
}

.story-left-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 62, 43, 0.1);
  mix-blend-mode: multiply;
}

.story-right {
  position: relative;
  flex: 0 0 50%;
  background: var(--warm-beige);
  padding: 96px 96px 96px 96px;
  overflow: hidden;
}

.story-right .deco-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 140px;
    pointer-events: none;
}

.story-right .deco-corner img {
  width: 100%;
  height: 100%;
}

.story-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.story-right h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1;
  color: var(--forest);
  margin-bottom: 32px;
}

.story-right p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.625;
  color: rgba(30, 62, 43, 0.8);
  margin-bottom: 32px;
}

.story-features {
  display: flex;
  gap: 28px;
  border-top: 1px solid rgba(30, 62, 43, 0.1);
  padding-top: 32px;
  margin-bottom: 32px;
}

.story-feature {
  flex: 1;
}

.story-feature .feat-icon {
  height: 25px;
  margin-bottom: 12px;
}

.story-feature .feat-icon img {
  height: 100%;
}

.story-feature h4 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1.35;
  margin-bottom: 4px;
}

.story-feature p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(30, 62, 43, 0.6);
  line-height: 1.25;
  margin: 0;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid rgba(30, 62, 43, 0.2);
  padding-bottom: 6px;
  transition: color 0.2s;
}

.story-link:hover {
  color: var(--teal);
}

/* ─── CURATED JOURNEYS ──────────────────────────────── */
#journeys {
  background: var(--cream);
  padding: 100px 0 80px;
}

#journeys .section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--forest);
  line-height: 1;
}

#journeys .section-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: rgba(30, 62, 43, 0.7);
  max-width: 640px;
  margin: 0 auto;
}

.journey-card {
  position: relative;
}

.journey-card .jcard-img {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 20px 25px -5px rgba(30, 62, 43, 0.05), 0 8px 10px -6px rgba(30, 62, 43, 0.05);
}

.journey-card .jcard-img img {
  width: 133.33%;
  height: 100%;
  object-fit: cover;
  
}

.journey-card .jcard-img .jcard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 62, 43, 0.1);
}

.journey-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--forest);
  line-height: 1.35;
  margin-top: 20px;
  margin-bottom: 10px;
}

.journey-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.625;
  color: rgba(30, 62, 43, 0.6);
  margin-bottom: 12px;
}

/* ─── CINEMATIC SECTION ─────────────────────────────── */
#cinematic {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

#cinematic .cin-bg {
  position: absolute;
  inset: 0;
}

#cinematic .cin-bg img {
  width: 100%;
  height: 166%;
  object-fit: cover;
  transform: translateY(-20%);
}

#cinematic .cin-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0.6) 100%);
}

#cinematic .cin-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 80px;
}

.cin-divider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.cin-divider-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.cin-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  color: var(--warm-beige);
}

#cinematic h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 3px rgba(0, 0, 0, .1), 0 10px 8px rgba(0, 0, 0, .04);
  margin-bottom: 32px;
}

#cinematic h2 em {
  font-style: italic;
  font-weight: 400;
}

#cinematic .cin-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 660px;
  margin: 0 auto 40px;
}

#cinematic .cin-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--warm-beige);
}

#cinematic .cin-location svg {
  flex-shrink: 0;
}

/* ─── DISCOVERY CARDS ───────────────────────────────── */
#discovery {
  background: var(--cream);
  padding: 90px 0 80px;
}

#discovery .section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--forest);
  letter-spacing: -1.2px;
}

.disc-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px -15px rgba(30, 61, 43, 0.1);
  height: 100%;
}

.disc-card .disc-img {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.disc-card .disc-img img {
  width: 125%;
  height: 100%;
  object-fit: cover;
 
}

.disc-card .disc-badge {
  position: absolute;
  top: 17px;
  left: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 7px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--forest);
}

.disc-card .disc-body {
  padding: 32px;
}

.disc-card .disc-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
}

.disc-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--forest);
  line-height: 1.35;
  margin-bottom: 16px;
}

.disc-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.625;
  color: rgba(30, 62, 43, 0.7);
  margin-bottom: 24px;
}

/* ─── FOOTER ────────────────────────────────────────── */
#footer {
  background: var(--footer-bg);
  padding: 96px 48px 0;
}

.footer-logo-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.75px;
  color: var(--gold);
  line-height: 1;
}

.footer-logo-img {
  width: 30px;
  height: 30px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.625;
  color: rgba(232, 216, 195, 0.9);
  margin: 16px 0;
}

.footer-motto {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.45;
}

.footer-col-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--warm-beige);
  margin-bottom: 28px;
}

.footer-nav-link {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(232, 216, 195, 0.8);
  line-height: 1.45;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.footer-nav-link:hover {
  color: var(--gold);
}

.footer-contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-icon img {
  width: 14px;
  height: auto;
  filter: brightness(0) invert(1) opacity(0.7);
}

.footer-contact-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(232, 216, 195, 0.8);
  line-height: 1.45;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--teal);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.35px;
  color: var(--warm-beige);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .2), 0 4px 6px -4px rgba(0, 0, 0, .2);
  transition: background 0.2s;
}

.btn-whatsapp:hover {
  background: #155959;
  color: var(--warm-beige);
}

.btn-whatsapp img {
  width: 17px;
  height: 17px;
}

.footer-social {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-social a img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1) opacity(0.6);
  transition: opacity 0.2s;
}

.footer-social a:hover img {
  opacity: 1;
}

.footer-newsletter-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(232, 216, 195, 0.8);
  line-height: 1.45;
  margin-bottom: 16px;
}

.footer-newsletter-form {
  position: relative;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
}

.footer-newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(232, 216, 195, 0.9);
  width: calc(100% - 30px);
}

.footer-newsletter-form input::placeholder {
  color: rgba(232, 216, 195, 0.4);
}

.footer-newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.footer-newsletter-form button img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(0) invert(1) opacity(0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(198, 167, 94, 0.3);
  padding: 24px 0;
  margin-top: 60px;
}

.footer-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(232, 216, 195, 0.6);
}

.footer-legal a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(232, 216, 195, 0.6);
  margin-left: 28px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ─── SCROLL INDICATOR ──────────────────────────────── */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2.5s infinite;
}

.scroll-cue span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-cue svg {
  opacity: 0.5;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 991.98px) {
  .story-inner {
    flex-direction: column;
  }

  .story-left {
    flex: none;
    width: 100%;
    min-height: 340px;
  }

  .story-left img {
    width: 100%;
    margin: 0;
    height: 100%;
  }

  .story-right {
    flex: none;
    width: 100%;
    padding: 56px 40px;
  }

  .story-right h2 {
    font-size: 42px;
  }

  #footer {
    padding: 60px 24px 0;
  }

  .footer-legal {
    margin-top: 8px;
  }

  .footer-legal a {
    margin-left: 0;
    margin-right: 20px;
  }
}

@media (max-width: 767.98px) {
  #navbar {
    padding: 16px 24px;
  }

  #navbar.scrolled {
    padding: 10px 24px;
  }

  #story {
    padding: 20px;
  }

  .story-right {
    padding: 40px 24px;
  }

  .story-features {
    flex-direction: column;
    gap: 20px;
  }

  #journeys {
    padding: 60px 0 50px;
  }

  #cinematic .cin-content {
    padding: 80px 16px;
  }

  #discovery {
    padding: 60px 0 50px;
  }

  #footer {
    padding: 50px 20px 0;
  }
}

@media (max-width: 575.98px) {
  #hero h1 {
    font-size: 38px;
  }

  .story-right h2 {
    font-size: 34px;
  }

  #cinematic h2 {
    font-size: 40px;
  }
}

/* ============================================================
       RESPONSIVE – TABLET (≤1024px)
    ============================================================ */
@media (max-width: 1024px) {
  #hero-content {
    padding: 200px 48px 80px 48px;
  }

  #hero-heading {
    font-size: 56px;
    line-height: 60px;
  }

  #cards-section {
    padding: 60px 48px;
  }

  .card-img-wrap {
    flex: 0 0 420px;
    width: 420px;
    height: 520px;
  }

  .card-content {
    padding-left: 48px;
  }

  .card-flipped .card-content {
    padding-right: 48px;
  }

  #legacy-section {
    padding: 40px 48px 60px 48px;
  }

  #stats-box {
    padding: 48px;
  }

  .stat-number {
    font-size: 56px;
    line-height: 60px;
  }

  #closing-heading {
    font-size: 56px;
    line-height: 60px;
  }
}

/* ============================================================
       RESPONSIVE – MOBILE (≤768px)
    ============================================================ */
@media (max-width: 768px) {
    .gtop {
  
    display: flex;
    flex-direction: column;
}
  #hero-section {
    min-height: 85svh;
  }

  #hero-content {
    padding: 120px 24px 60px 24px;
    max-width: 100%;
  }

  #hero-heading {
    font-size: 40px;
    line-height: 44px;
  }

  #hero-subtext {
    font-size: 16px;
    max-width: 100%;
  }

  #btn-join-conservation,
  #btn-explore-journeys {
    width: 100%;
    justify-content: center;
  }

  #cards-section {
    padding: 48px 20px;
  }

  #cards-heading {
    font-size: 36px;
    line-height: 40px;
  }

  .experience-card,
  .experience-card.card-flipped {
    flex-direction: column;
    gap: 0;
  }

  .card-img-wrap {
    flex: none;
    width: 100%;
    height: 280px;
    border-radius: 12px 12px 0 0;
  }

  .card-img-wrap img {
    width: 100%;
    margin-left: 0;
  }

  .card-content {
    padding: 28px 20px 0 20px;
  }

  .card-flipped .card-content {
    padding: 28px 20px 0 20px;
    text-align: left;
    align-items: flex-start;
  }

  #legacy-section {
    padding: 40px 20px 60px 20px;
  }

  #legacy-heading {
    font-size: 32px;
    line-height: 38px;
  }

  #legacy-subtext {
    font-size: 15px;
  }

  #stats-box {
    padding: 32px 20px;
  }

  #stats-grid {
    flex-direction: column;
    gap: 28px;
  }

  .stat-item:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(30, 62, 43, 0.1);
    padding-top: 28px;
  }

  #imagery-grid {
    grid-template-columns: 1fr;
  }

  .imagery-grid-item {
    height: 220px;
  }

  #closing-section {
    min-height: 600px;
  }

  #closing-heading {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -0.5px;
  }

  #closing-subtext {
    font-size: 15px;
  }

  #btn-closing-join,
  #btn-closing-plan {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
       RESPONSIVE – SMALL MOBILE (≤480px)
    ============================================================ */
@media (max-width: 480px) {
  #hero-heading {
    font-size: 34px;
    line-height: 38px;
  }

  #cards-section {
    padding: 40px 16px;
  }

  #legacy-section {
    padding: 32px 16px 48px 16px;
  }

  #stats-box {
    padding: 28px 16px;
  }

  .stat-number {
    font-size: 48px;
    line-height: 54px;
  }
}


/* culture */


/* ============================================================
       CSS VARIABLES
    ============================================================ */
:root {
  --color-dark-green: #1e3e2b;
  --color-teal: #1c6e6e;
  --color-gold: #c6a75e;
  --color-sand: #e8d8c3;
  --color-cream-bg: #fdfbf7;
  --color-slate: #475569;
  --color-near-black: #0f172a;
  --color-white: #ffffff;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

/* ============================================================
       BASE
    ============================================================ */

/* ============================================================
       SECTION 1 – HERO
    ============================================================ */
#hero-section {
  position: relative;
  width: 100%;
  min-height: 870px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

#hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/Hero\ Background.webp');
  background-size: cover;
  background-position: center 30%;
}

#hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.05) 100%);
}

#hero-content {
  position: relative;
  z-index: 2;
  padding: 0 128px 160px 152px;
  max-width: 960px;
  width: 100%;
}

#hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 4px;
  padding: 7px 17px;
  margin-bottom: 44px;
}

#hero-badge-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-white);
}

#hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 72px;
  color: var(--color-white);
  margin-bottom: 28px;
  max-width: 700px;
}

#hero-subtext {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 637px;
  margin-bottom: 48px;
}

#hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

#btn-hero-primary {
  background-color: var(--color-sand);
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-near-black);
  box-shadow: 0 20px 25px -5px rgba(28, 110, 110, 0.3), 0 8px 10px -6px rgba(28, 110, 110, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

#btn-hero-primary svg {
  flex-shrink: 0;
}

#btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px 33px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

#btn-hero-primary:hover {
  opacity: 0.9;
}

#btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Scroll Indicator */
#hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#scroll-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

#scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.5);
}

/* ============================================================
       SECTION 2 – EDITORIAL SPLIT
    ============================================================ */
#editorial-section {
  display: flex;
  width: 100%;
  min-height: 936px;
}

#editorial-left {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

#editorial-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#editorial-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 62, 43, 0.1) 0%, rgba(30, 62, 43, 0.35) 100%);
}

#editorial-right {
  flex: 0 0 50%;
  background-color: var(--color-cream-bg);
  position: relative;
  overflow: hidden;
}

#editorial-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background-color: var(--color-sand);
  opacity: 0.6;
  border-bottom-left-radius: 128px;
}

#editorial-right-content {
  padding: 110px 96px 80px 96px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#editorial-label {
  display: inline-flex;
  align-items: center;
  background: rgba(30, 62, 43, 0.07);
  border: 1px solid rgba(30, 62, 43, 0.12);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 40px;
  width: fit-content;
}

#editorial-label-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-dark-green);
}

#editorial-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 52px;
  line-height: 64px;
  color: var(--color-dark-green);
  margin-bottom: 32px;
  max-width: 365px;
}

#editorial-divider {
  width: 80px;
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: 32px;
}

#editorial-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-slate);
  margin-bottom: 40px;
  max-width: 448px;
}

#editorial-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--color-teal);
  text-decoration: none;
}

.editorial-link:hover {
  opacity: 0.7;
}

/* ============================================================
       SECTION 3 – SPIRIT SECTION (3 CARDS)
    ============================================================ */
#spirit-section {
  background-color: var(--color-cream-bg);
  padding: 40px 80px 60px 80px;
}

#spirit-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}

#spirit-header-left {
  max-width: 485px;
}

#spirit-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 44px;
  color: var(--color-dark-green);
  margin-bottom: 16px;
}

#spirit-subtext {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-slate);
  margin-bottom: 0;
}

#spirit-nav {
  display: flex;
  gap: 16px;
}

.spirit-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(30, 62, 43, 0.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-dark-green);
  transition: background 0.2s;
}

.spirit-nav-btn:hover {
  background: var(--color-sand);
}

#spirit-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.spirit-card {
  display: flex;
  flex-direction: column;
}

.spirit-card-img-wrap {
  position: relative;
  width: 100%;
  height: 469px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.spirit-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.spirit-card:hover .spirit-card-img-wrap img {
  transform: scale(1.04);
}

.spirit-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(30, 62, 43, 0.35) 100%);
}

.spirit-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: var(--color-dark-green);
  margin-bottom: 10px;
}

.spirit-card-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-slate);
  margin-bottom: 0;
}

/* ============================================================
       SECTION 4 – CURATED JOURNEYS GRID
    ============================================================ */
#journeys-section {
  background-color: var(--color-cream-bg);
  padding: 24px 24px 80px 24px;
}

#journeys-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 0 8px;
}

#journeys-header-left {
  max-width: 672px;
}

#journeys-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 16px;
}

#journeys-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 60px;
  color: var(--color-dark-green);
  margin-bottom: 12px;
}

#journeys-subtext {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-slate);
  margin-bottom: 0;
}

#journeys-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-teal);
  text-decoration: none;
  white-space: nowrap;
}

#journeys-view-all:hover {
  opacity: 0.7;
}

#journeys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 40px;
}

.journey-card {
  display: flex;
  flex-direction: column;
}

.journey-card-img-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.journey-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.journey-card:hover .journey-card-img-wrap img {
  transform: scale(1.04);
}

.journey-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 62, 43, 0.05) 0%, rgba(30, 62, 43, 0.28) 100%);
}

.journey-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-dark-green);
  margin-bottom: 10px;
}

.journey-card-meta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: var(--color-slate);
  margin-bottom: 14px;
}

.journey-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-teal);
  text-decoration: none;
}

.journey-card-link:hover {
  opacity: 0.7;
}

/* Custom Request Card */
#custom-request-card {
  background-color: var(--color-dark-green);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 594px;
  padding: 48px 34px;
  text-align: center;
}

#custom-card-icon {
  margin-bottom: 24px;
  opacity: 0.85;
}

#custom-card-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-white);
  margin-bottom: 20px;
}

#custom-card-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 290px;
}

#btn-custom-request {
  background-color: var(--color-sand);
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--color-dark-green);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

#btn-custom-request:hover {
  opacity: 0.88;
}

/* ============================================================
       SECTION 5 – CLOSING CTA
    ============================================================ */
#closing-section {
  position: relative;
  min-height: 656px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#closing-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/Background\ Image\ with\ Overlay.webp');
  background-size: cover;
  background-position: center;
}

#closing-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 100%);
}

#closing-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 896px;
  padding: 0 24px;
}

#closing-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 60px;
  color: var(--color-white);
  margin-bottom: 28px;
}

#closing-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 664px;
  margin: 0 auto 48px auto;
}

#closing-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

#btn-closing-primary {
  background-color: var(--color-teal);
  border: none;
  border-radius: 9999px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--color-white);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

#btn-closing-secondary {
  background-color: var(--color-white);
  border: none;
  border-radius: 9999px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--color-teal);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

#btn-closing-primary:hover,
#btn-closing-secondary:hover {
  opacity: 0.88;
}

.ct-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 147%;
  top: -23.5%;
  object-fit: contain;
  object-position: center;
  pointer-events: auto;
}

.ct-section #hero-heading {
  color: #1E3E2B;
  font-family: 'Playfair Display', serif;
}

.ct-section #hero-subtext {
  color: #1E3E2BCC;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
}

/* custom tours */
.label {
  display: flex;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  gap: 10px;
  font-weight: 700;
  /* space between line and text */
}

.travel-section {
  font-family: 'Poppins', sans-serif;
  background: #f8f7f5;
}

/* IMAGE */
.travel-image {
  position: relative;
  height: 100%;
}

.travel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay Box */
.experience-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 12px;
}

.experience-box p {
  margin: 0;
  font-size: 13px;
  font-family: 'Playfair Display', serif;
}

/* CONTENT */
.travel-content {
  padding: 80px 60px;
}

.travel-content .label {
  letter-spacing: 2px;
  font-size: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #C6A75E;
}

.travel-content h2 {
  font-size: 42px;
  font-weight: 500;
  color: #1c2b24;
  margin: 15px 0;
  line-height: 1.2;
}

.travel-content .desc {
  color: #7a746f;
  margin-bottom: 25px;
}

/* BUTTONS */
.btn-group {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-primary {
  background: #1c6b63;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #ccc;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  color: #333;
}

/* STATS */
.auto-standard-care {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #1E3E2B;
  text-align: center;
  margin: 20px 0 30px;
}

.care {
  background-color: #F6F7F7;
  margin: 0 10px;
}

.stats {
  display: flex;
  gap: 50px;
}

.stats div strong {
  display: block;
  font-size: 18px;
  color: #1c2b24;
}

.stats span {
  font-size: 11px;
  color: #999;
}

/* custom tours */
/* the journey start */
.process-section {
  background: var(--light-bg);
  padding: 80px 20px;
  text-align: center;
}

.process-label {
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 400;
  color: #C6A75E;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #1E3E2B;
  margin-bottom: 10px;
}

.process-subtitle {
  color: #1E3E2BB2;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
}

.process-wrapper {
  position: relative;
}

.process-line {
  position: absolute;
  top: 50px;
  left: 14%;
  width: 73%;
  height: 1px;
  background: #e3d8c6;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 80px;
  height: 80px;
  border: 1px solid #e3d8c6;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  position: relative;
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: white;
  font-size: 10px;
  padding: 4px 6px;
  border-radius: 50%;
}

.step-title {
  font-family: 'Playfair Display', serif;
  color: #1E3E2B;
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 30px;
  font-weight: bold;
}

.step-text {
  font-size: 14px;
  color: #1E3E2BB2;
  font-family: 'Montserrat', sans-serif;
  max-width: 250px;
  margin: auto;
}


.process-btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}



.process-btn a {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: fit-content !important;
  flex: 0 0 auto !important;
  padding: 12px 28px;
  border-radius: 30px;
  background: #1f4d3a !important;
  color: #F9F7F2;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  white-space: nowrap;
}

.process-btn a:hover {
  background: #163b2c;
}

/* the journey end */

/* gallery section */
/* SECTION */
.gallery-section {
  padding: 80px 20px;
  text-align: center;
}

.gallery-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #C6A75E;
  font-weight: 600;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: #1E3E2B;
  margin: 10px 0;
  letter-spacing: 0;
}

.gallery-subtitle {
  font-size: 18px;
  color: #1E3E2BB2;
  max-width: 500px;
  margin: auto;
  font-family: 'Montserrat', sans-serif;
}

.gallery-menu {
  margin: 30px 0 50px;
  font-size: 11px;
  letter-spacing: 1px;
}

.gallery-menu span {
  font-family: 'Montserrat', sans-serif;
  margin: 0 10px;
  cursor: pointer;
  color: #1E3E2B66;
  font-size: 14px;
  font-weight: 700;
}

.gallery-menu span.active {
  border-bottom: 1px solid #1E3E2B;
  padding: 5px;
  color: #1E3E2B;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;
  gap: 20px;
}

/* ITEMS */
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CUSTOM SIZES (MATCH IMAGE) */
.item1 {
  grid-row: span 2;
}

.item2 {
  grid-row: span 1;
}

.item3 {
  grid-column: span 2;
}

.item4 {
  grid-row: span 1;
}

.item5 {
  grid-row: span 2;
}

.item6 {
  grid-row: span 1;
}

/* gallery section */

/* travel landing */
/* ── TOP BORDER ── */
.top-border {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg,
      var(--dark-teal) 0%,
      var(--mid-teal) 40%,
      var(--gold) 70%,
      var(--dark-teal) 100%);
}

/* ── SECTION 1 ── */
.section-light {
  background: var(--cream);
  padding: 52px 16px 60px;
  text-align: center;
}

.eyebrow {
  font-style: italic;
  font-size: 22px;

  color: #1E3E2B;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 22px;
  font-family: 'Playfair Display', serif;
}

/* Buttons */
.btn-itinerary {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  width: 250px;
  text-transform: uppercase;
  padding: 12px 24px;
  background: #1C6E6E;
  color: #fff;
  border: none;
  border-radius: 50px;
  transition: background 0.25s ease;
}

.btn-itinerary:hover,
.btn-itinerary:focus {
  background: #1C6E6E;
  color: #fff;
  border-radius: 50px;

  font-weight: 700;
  font-size: 14px;
}

.btn-journal {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  width: 215px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 11px 24px;
  background: transparent;
  color: #1E3E2B;
  border-radius: 50px;
  border: 1.5px solid #1E3E2B;

  transition: border-color 0.25s ease, color 0.25s ease;
}

.btn-journal:hover,
.btn-journal:focus {
  border-color: var(--dark-teal);
  color: var(--dark-teal);
}

/* Label tag */
.label-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Section 1 headline */
.s1-headline {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.22;
  color: #1E3E2B;
  margin-bottom: 18px;
}

.s1-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.78;
  color: #475569;
}

/* ── SECTION 2: Forest ── */
.section-forest {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 16px;
  background:
    linear-gradient(to bottom,
      rgba(8, 20, 15, 0.74) 0%,
      rgba(8, 20, 15, 0.52) 45%,
      rgba(8, 20, 15, 0.76) 100%),
    url("assets/your-journey-your-way-bg.png") center / cover no-repeat;
}

/* Card */
.forest-card {
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.card-headline {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  color: #1E3E2B;
  margin-bottom: 10px;
}

.gold-divider {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 14px auto 18px;
}

.card-body-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Card buttons */
.btn-design {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 18px;
  background: #1C6E6E;
  color: #fff;
  border: none;
  border-radius: 10px;
  transition: background 0.25s ease;
}

.btn-design:hover,
.btn-design:focus {
  background: #1C6E6E;
  color: #fff;
}

.btn-consult {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 20px;
  background: transparent;
  color: #1C6E6E;
  border: 1.5px solid #1C6E6E;
  border-radius: 10px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.btn-consult:hover,
.btn-consult:focus {
  border-color: #1C6E6E;
  color: var(--dark-teal);
}


/* travel landing */


/* contact us */
.bespoke-section {
  background-color: #f5f3ef;
  padding: 72px 16px 80px;
}

/* ── Eyebrow label ── */
.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1d7a68;
  margin-bottom: 14px;
}

/* ── Heading ── */
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 400;
  color: #1E3E2B;
  line-height: 1.15;
  margin-bottom: 18px;
}

/* ── Sub-copy ── */
.section-subtext {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #475569;
  line-height: 1.7;
  max-width: 50%;
  margin: 0 auto 52px;
}

/* ── Card ── */
.contact-card {
  background: #ffffff;
  border: 1px solid #e8e5df;
  border-radius: 6px;
  padding: 40px 28px 36px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}

/* ── Icon wrapper ── */
.icon-wrap {
  width: 60px;
  height: 60px;
  background-color: #F9F7F2;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.icon-wrap svg {
  width: 26px;
  height: 26px;
  color: #1d7a68;
  fill: none;

}

/* ── Card title ── */
.contact-section .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: #1E3E2B;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* ── Card description ── */
.card-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #64748B;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}

/* ── CTA button ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #1C6E6E;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, letter-spacing 0.2s ease;
  white-space: nowrap;
}

.form-panel .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #C6A75E;
  margin-bottom: 12px;
  text-align: left;
}

.cta-btn:hover {
  background-color: #155c4f;
  color: #ffffff;
  letter-spacing: 0.19em;
}

.cta-btn .arrow {
  font-size: 13px;
  line-height: 1;
}



.contact-section #hero-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
  display: block;
}

.contact-section #hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 72px;
  color: var(--color-white);
  margin-bottom: 28px;
  max-width: 700px;
}


/* ── Outer card wrapper ── */
.enquire-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 82%;
  display: flex;
  flex-direction: row;
  min-height: 620px;
  margin: auto;
  box-shadow: none !important;
}

/* ══════════════════════════
       LEFT — Form panel
    ══════════════════════════ */
.form-panel {
  flex: 0 0 55%;
  padding: 44px 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #C6A75E;
  margin-bottom: 12px;
}

.form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: bold;
  color: #1E3E2B;
  line-height: 1.2;
  margin-bottom: 14px;
}

.form-subtext {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #1E3E2B99;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 340px;
}

/* ── Field labels ── */
.field-label {
  display: block;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #1E3E2BCC;
  margin-bottom: 6px;
}

/* ── Inputs & selects ── */
.form-control,
.form-select {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #1E3E2B4D;
  padding: 9px 12px;
  height: auto;
  transition: border-color 0.2s;
  width: 100%;
}

.form-control::placeholder {
  color: #bbb;
}

.form-control:focus,
.form-select:focus {
  border-color: #1d7a68;
  box-shadow: none;
  outline: none;
}

textarea.form-control {
  resize: none;
  height: 88px;
}

.form-select {
  appearance: auto;
  -webkit-appearance: auto;
  background-image: none;
  padding-right: 12px;
  cursor: pointer;
}

/* ── Field groups ── */
.field-group {
  margin-bottom: 16px;
}

/* ── Submit button ── */
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #1C6E6E;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: none;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}

.submit-btn:hover {
  background-color: #155c4f;
}

.submit-btn .arrow {
  font-size: 15px;
}

/* ══════════════════════════
       RIGHT — Image panel
    ══════════════════════════ */
.image-panel {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  border-radius: 0 10px 10px 0;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dark overlay for readability */
.image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.10) 55%,
      rgba(0, 0, 0, 0.05) 100%);
}

/* Location pill (top right) */
.location-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.location-pill .pin-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.location-pill .pin-icon svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-pill .place-name {
  font-family: 'Lato', sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* Quote block (bottom) */
.image-quote {
  position: absolute;
  bottom: 28px;
  left: 24px;
  right: 24px;
  z-index: 2;
}

.image-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.45;
  margin: 0 0 10px;
}



.image-quote .quote-source {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}


/* contact us */


/* ============================================================
       RESPONSIVE – TABLET (≤1024px)
    ============================================================ */
@media (max-width: 1024px) {
  #hero-content {
    padding: 0 64px 120px 64px;
  }

  #hero-heading {
    font-size: 56px;
    line-height: 60px;
  }

  #editorial-section {
    flex-direction: column;
  }

  #editorial-left {
    flex: none;
    height: 480px;
  }

  #editorial-right {
    flex: none;
  }

  #editorial-right-content {
    padding: 64px 64px;
  }

  #editorial-heading {
    font-size: 42px;
    line-height: 52px;
  }

  #spirit-section {
    padding: 40px 48px 60px 48px;
  }

  #spirit-cards-grid {
    gap: 20px;
  }

  .spirit-card-img-wrap {
    height: 360px;
  }

  #journeys-section {
    padding: 24px 24px 60px 24px;
  }

  #journeys-heading {
    font-size: 36px;
    line-height: 48px;
  }

  .journey-card-img-wrap {
    height: 360px;
  }

  #closing-heading {
    font-size: 44px;
    line-height: 52px;
  }
}


@media (max-width: 991px) {
  .travel-content {
    padding: 40px 20px;
    text-align: center;
  }

  .travel-content h2 {
    font-size: 30px;
  }

  .btn-group {
    justify-content: center;
    flex-wrap: wrap;
  }

  .stats {
    justify-content: center;
    gap: 25px;
  }

  .experience-box {
    left: 15px;
    bottom: 15px;
  }

  .contact-card {
    padding: 32px 22px 28px;
  }
}

/* ============================================================
       RESPONSIVE – MOBILE (≤768px)
    ============================================================ */
@media (max-width: 768px) {
  #hero-section {
    min-height: 100svh;
  }

  #hero-content {
    padding: 0 24px 100px 24px;
    max-width: 100%;
  }

  #hero-heading {
    font-size: 40px;
    line-height: 44px;
  }

  #hero-subtext {
    font-size: 16px;
  }

  #btn-hero-primary,
  #btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  #editorial-section {
    flex-direction: column;
  }

  #editorial-left {
    flex: none;
    height: 320px;
  }

  #editorial-right-content {
    padding: 48px 24px;
  }

  #editorial-heading {
    font-size: 32px;
    line-height: 42px;
    max-width: 100%;
  }

  #editorial-links {
    flex-direction: column;
    gap: 16px;
  }

  #spirit-section {
    padding: 40px 20px 48px 20px;
  }

  #spirit-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  #spirit-cards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .spirit-card-img-wrap {
    height: 280px;
  }

  #journeys-section {
    padding: 24px 16px 48px 16px;
  }

  #journeys-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  #journeys-heading {
    font-size: 30px;
    line-height: 38px;
  }

  #journeys-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .journey-card-img-wrap {
    height: 260px;
  }

  #custom-request-card {
    min-height: 380px;
  }

  #closing-section {
    min-height: 500px;
  }

  #closing-heading {
    font-size: 32px;
    line-height: 38px;
  }

  #closing-body {
    font-size: 15px;
  }

  #btn-closing-primary,
  #btn-closing-secondary {
    width: 100%;
    justify-content: center;
  }

  .process-title {
    font-size: 32px;
  }

  .process-line {
    display: none;
  }

  .process-step {
    margin-bottom: 40px;
  }

  .gallery-title {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .section-light {
    padding: 40px 16px 48px;
  }

  .forest-card {
    padding: 36px 22px;
  }

  .section-forest {
    padding: 52px 5px;
  }

  .contact-section #hero-content {
    padding: 100px 16px 80px 16px;
  }

  .contact-section #btn-join-conservation,
  #btn-explore-journeys {
    width: 80%;
    justify-content: center;
    margin: auto;
    font-size: 14px;
  }

  .contact-section #hero-heading {

    font-size: 42px;
    line-height: 40px;

  }

  .contact-section .eyebrow {

    font-size: 14px;

  }

  .s1-headline {

    font-size: 28px;

  }

  .card-headline {

    font-size: 30px;

  }

  .card-body-text {

    font-size: 16px;

  }

  .btn-itinerary,
  .btn-journal {
    width: 100%;
    text-align: center;
  }

  .btn-design,
  .btn-consult {
    width: 100%;
    text-align: center;
  }

  .btn-design {

    font-size: 12px;

  }

  .btn-consult {

    font-size: 12px;
    padding: 11px 7px;

  }

  .gallery-section {
    padding: 20px;
    text-align: center;
  }

  .gallery-menu span {

    line-height: 2;
  }

  .process-section {
    background: var(--light-bg);
    padding: 20px;

  }

  .bespoke-section {
    padding: 52px 16px 60px;
  }

  .section-subtext {
    margin-bottom: 36px;
  }

  .card-col {
    margin-bottom: 20px;
  }

  .card-col:last-child {
    margin-bottom: 0;
  }


  .enquire-card {
    flex-direction: column;
    min-height: auto;
    max-width: 540px;
  }

  .form-panel {
    flex: none;
    padding: 36px 28px 32px;
  }

  .image-panel {
    flex: none;
    height: 260px;
    border-radius: 0 0 10px 10px;
  }

}

/* ============================================================
       RESPONSIVE – SMALL MOBILE (≤480px)
    ============================================================ */
@media (max-width: 480px) {
  #hero-content {
    padding: 0 16px 80px 16px;
  }

  .ct-section #hero-content {
    padding: 100px 16px 80px 16px;
  }

  .ct-section #hero-subtext {
    color: #1E3E2BCC;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
  }

  #hero-heading {
    font-size: 34px;
    line-height: 38px;
  }

  .travel-section .pbtns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    justify-content: center;
  }

  #spirit-section {
    padding: 32px 16px 40px 16px;
  }

  #journeys-section {
    padding: 20px 12px 40px 12px;
  }

  .form-panel {
    padding: 28px 20px 24px;
  }

  .form-heading {
    font-size: 26px;
  }

  .image-panel {
    height: 220px;
  }

  .image-quote blockquote {
    font-size: 14px;
  }
}