:root {
  --primary: #ff2800;
  --primary-container: #cc2000;
  --primary-fixed: #ffdad6;
  --primary-fixed-dim: #ffb4ab;
  --on-primary: #ffffff;
  --bg: #fbf9f8;
  --surface-low: #f5f3f3;
  --on-surface: #1b1c1c;
  --on-surface-variant: #5e3f3c;
  --outline-variant: #e7bcb8;
  --footer: #1c1c19;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--on-surface);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%
}

a {
  text-decoration: none;
  color: inherit
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none
}

.wrap {
  margin: 0 auto;
  padding-inline: 14vw
}

@media(min-width:768px) {
  .wrap {
    padding-inline: 7vw
  }
}

.display {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  font-size: clamp(32px, 3.33vw, 80px);
  line-height: 1.12
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(16px, 1.67vw, 32px);
  color: var(--primary);
  display: block;
  margin-bottom: 8px
}

.headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.67vw, 32px);
  line-height: 1.33
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 1em;
  height: 1em;
  line-height: 1;
  flex-shrink: 0
}

.fill .material-symbols-outlined,
.material-symbols-outlined.fill {
  font-variation-settings: 'FILL' 1
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--on-primary);
  font-family: 'Inter';
  font-weight: 700;
  font-size: clamp(12px, 0.97vw, 18px);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: clamp(13px, 1.11vw, 22px) clamp(22px, 2.22vw, 48px);
  border-radius: 8px;
  box-shadow: 0 10px 25px -8px rgba(187, 0, 19, .5);
  transition: .3s
}

.btn:hover {
  background: var(--on-surface)
}

.btn:active {
  transform: scale(.96)
}

.btn .material-symbols-outlined {
  transition: transform .3s
}

.btn:hover .material-symbols-outlined {
  transform: translateX(4px)
}

.section {
  padding-block: clamp(64px, 8.33vw, 180px)
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-size: clamp(0.95vw, 0.95vw, 16px);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.4
}

.announcement-bar strong {
  font-weight: 700
}

/* SITE HEADER */
#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}

/* NAV */
nav {
  position: relative;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 188, 184, .3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
  transition: padding .3s
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3vw 7vw;
}


nav.shrink .nav-inner {
  padding-block: 18px
}

.nav-logo {
  width: 10.3vw;
  height: auto;
  object-fit: contain;
  transition: transform .2s
}

.nav-logo:active {
  transform: scale(.95)
}

.nav-links {
  display: none;
  gap: clamp(20px, 3.22vw, 48px);
  align-items: center;
  margin: 0
}

@media(min-width:768px) {
  .nav-links {
    display: flex
  }
}

@media(min-width:1024px) {
  .nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    right: 1%;
  }
  .nav-phone {
    margin-left: auto
  }
}

.nav-links a {
  font-weight: 600;
  font-size: clamp(1vw, 1.5vw, 16px);
  letter-spacing: .05em;
  transition: color .3s
}

.nav-links a:hover {
  color: var(--primary)
}

.nav-links a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: clamp(14px, 1vw, 20px);
  color: var(--primary);
  white-space: nowrap;
  transition: color .3s
}

.nav-phone:hover {
  color: var(--on-surface)
}

.nav-phone .material-symbols-outlined {
  font-size: clamp(30px, 1.8vw, 40px);
  width: clamp(30px, 2.2vw, 40px);
  height: clamp(30px, 2.2vw, 40px)
}

.nav-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 2px
}

.phone-ext {
  font-size: 0.62em;
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: .03em
}

@media(min-width:768px) {
  .nav-phone {
    display: flex
  }
}

.nav-pay {
  display: none;
  align-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: clamp(12px, 1vw, 15px);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 8px;
  white-space: nowrap;
  margin-left: clamp(16px, 1.8vw, 32px);
  box-shadow: 0 6px 16px -4px rgba(255,40,0,.4);
  transition: background .3s, transform .2s
}

.nav-pay:hover {
  background: var(--on-surface);
  color: #fff
}

.nav-pay:active {
  transform: scale(.96)
}

@media(min-width:768px) {
  .nav-pay { display: flex }
}

.burger {
  display: flex;
  background: none;
  color: var(--on-surface)
}

@media(min-width:768px) {
  .burger {
    display: none
  }
}

/* HERO */
header.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: clamp(110px, 9.03vw, 200px);
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .2) 60%, rgba(0, 0, 0, 0) 100%)
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 3.33vw, 80px);
  width: 100%
}

@media(min-width:1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr
  }
}

.hero-arrow {
  position: absolute;
  z-index: 20;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .3s
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, .28)
}

.hero-prev {
  left: 24px
}

.hero-next {
  right: 24px
}

.hero-dots {
  position: absolute;
  z-index: 20;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  align-items: center
}

.hero-dots .dot {
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .25);
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: width .35s ease
}

.hero-dots .dot.active {
  width: 72px
}

.dot-fill {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left
}

.dot.active .dot-fill {
  animation: dot-progress 2s linear forwards
}

.dot.done .dot-fill {
  transform: scaleX(1)
}

@keyframes dot-progress {
  from { transform: scaleX(0) }
  to { transform: scaleX(1) }
}

.hero-copy {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.dest-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.dest-pulse {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-fixed);
  flex-shrink: 0
}

.dest-pulse::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-fixed);
  animation: dest-ring 1.8s ease-out infinite
}

@keyframes dest-ring {
  0% { transform: scale(1); opacity: .9 }
  100% { transform: scale(2.4); opacity: 0 }
}

.dest-name {
  color: rgba(255, 255, 255, .85);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase
}

.badge {
  align-self: flex-start;
  display: inline-block;
  padding: 5px 16px;
  background: rgba(187, 0, 19, .2);
  backdrop-filter: blur(4px);
  border: 1px solid var(--primary);
  color: var(--primary-fixed);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 999px
}

.hero h1 {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: clamp(34px, 3.33vw, 80px);
  line-height: 1.1;
  letter-spacing: -.02em
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 16px
}

.price-row .from {
  font-size: clamp(17px, 1.67vw, 32px);
  font-weight: 300;
  color: rgba(255, 255, 255, .9)
}

.price {
  font-size: clamp(36px, 3.33vw, 80px);
  font-weight: 700;
  color: var(--primary-fixed-dim)
}

.price small {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, .7)
}

.hero p.lead {
  font-size: clamp(15px, 1.25vw, 26px);
  line-height: 1.7;
  max-width: 32rem;
  color: rgba(255, 255, 255, .8)
}

.hero .btn:hover {
  background: #fff;
  color: var(--primary)
}

.quick-cards {
  display: none
}

@media(min-width:1024px) {
  .quick-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-self: end;
    padding-bottom: 48px
  }
}

@keyframes qcard-in {
  from {
    opacity: 0;
    transform: translateX(36px)
  }
  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.hero-slide .qcard {
  opacity: 0;
  transform: translateX(36px)
}

.hero-slide.active .qcard:nth-child(1) {
  animation: qcard-in .5s ease .25s forwards
}

.hero-slide.active .qcard:nth-child(2) {
  animation: qcard-in .5s ease .42s forwards
}

.qcard {
  background: linear-gradient(135deg, rgba(30, 0, 4, .55) 0%, rgba(0, 0, 0, .42) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(187, 0, 19, .18);
  padding: 24px;
  border-radius: 12px;
  color: #fff;
  transition: background .3s;
  cursor: pointer
}

.qcard:hover {
  background: linear-gradient(135deg, rgba(40, 0, 6, .65) 0%, rgba(0, 0, 0, .52) 100%)
}

.qcard .loc {
  color: var(--primary-fixed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px
}

.qcard .nights {
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: clamp(18px, 1.67vw, 36px);
  margin-bottom: 16px
}

.qcard .price-sm {
  color: rgba(255, 255, 255, .7)
}

.qcard .price-sm b {
  color: #fff
}

/* DESTINATIONS */
.section-head {
  margin-bottom: clamp(32px, 3.33vw, 80px)
}

.dest-grid {
  display: grid;
  gap: clamp(16px, 1.67vw, 40px);
  grid-template-columns: 1fr
}

@media(min-width:768px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:1024px) {
  .dest-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.dest {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: clamp(480px, 33.33vw, 900px);
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, .25);
  cursor: pointer;
  display: block
}

@media(min-width:768px) {
  .dest.offset {
    margin-top: 48px
  }
}

.dest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s
}

.dest:hover img {
  transform: scale(1.1)
}

.dest .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 55%, transparent 100%)
}

.dest .label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px
}

.dest .tag {
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(12px);
  padding: 4px 12px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase
}

.dest .title {
  color: #fff;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: clamp(18px, 1.67vw, 36px);
  margin-top: 8px
}

.dest .arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s
}

.dest:hover .arrow {
  opacity: 1
}

/* ABOUT */
.about {
  background: var(--surface-low)
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center
}

@media(min-width:1024px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(64px, 6.67vw, 140px)
  }
}

.mosaic {
  position: relative;
  height: clamp(560px, 38.89vw, 1000px)
}

.mos-a {
  position: absolute;
  top: 0;
  left: 0;
  width: 64%;
  height: 78%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px -12px rgba(0, 0, 0, .25)
}

.mos-a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.mos-a:hover img { transform: scale(1.05) }

.mos-b {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 52%;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, .22)
}

.mos-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.mos-b:hover img { transform: scale(1.05) }

.mos-c {
  position: absolute;
  bottom: 48%;
  left: 69%;
  width: 26%;
  height: 26%;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, .2);
  transform: rotate(-4deg);
  z-index: 5
}

.mos-c img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.mos-badge {
  position: absolute;
  bottom: 24%;
  left: 2%;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px -6px rgba(187, 0, 19, .22);
  z-index: 10
}

.mos-badge-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #ff4422);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0
}

.mos-badge strong {
  display: block;
  font-size: 17px;
  color: var(--on-surface)
}

.mos-badge span {
  font-size: 11px;
  color: var(--on-surface-variant);
  font-weight: 500
}

.mos-dots {
  position: absolute;
  top: 12px;
  right: 4px;
  width: 88px;
  height: 88px;
  background-image: radial-gradient(circle, rgba(187, 0, 19, .35) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  pointer-events: none;
  z-index: 0
}

.mos-ring {
  position: absolute;
  bottom: 52%;
  left: 58%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--primary-fixed);
  opacity: .55;
  pointer-events: none;
  z-index: 6
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.about-copy p {
  font-size: clamp(14px, 1.11vw, 20px);
  line-height: 1.9;
  color: var(--on-surface-variant)
}

.about-copy p+p {
  margin-top: 16px
}

.about-copy strong {
  color: var(--primary)
}

.about-copy strong.acc {
  color: var(--primary-container)
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.stat {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--outline-variant);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  transition: transform .3s, box-shadow .3s
}

.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -6px rgba(187, 0, 19, .18)
}

.stat .ic {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  flex: none;
  background: linear-gradient(135deg, var(--primary) 0%, #ff4422 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  box-shadow: 0 6px 18px -4px rgba(187, 0, 19, .5);
  transition: box-shadow .3s
}

.stat:hover .ic {
  box-shadow: 0 10px 24px -4px rgba(187, 0, 19, .6)
}

.stat .ic .material-symbols-outlined {
  font-variation-settings: 'FILL' 1;
  font-size: 20px;
  transform: rotate(-45deg)
}

.stat b {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3
}

/* PACKAGES */
.center {
  text-align: center
}

.center .section-head {
  max-width: none
}

.lead-c {
  max-width: 42rem;
  margin: 0 auto clamp(48px, 7vw, 96px);
  color: var(--on-surface-variant)
}

.pkg-grid {
  display: grid;
  gap: clamp(16px, 1.67vw, 40px);
  grid-template-columns: 1fr;
  text-align: left
}

@media(min-width:768px) {
  .pkg-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:1280px) {
  .pkg-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.pkg {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(231, 188, 184, .1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .10);
  transition: box-shadow .5s
}

.pkg:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25)
}

.pkg-img {
  position: relative;
  height: clamp(320px, 22.22vw, 600px);
  overflow: hidden
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s
}

.pkg:hover .pkg-img img {
  transform: scale(1.1)
}

.pkg .nights-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase
}

.pkg .pkg-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .45) 30%, transparent 70%)
}

.pkg .pkg-cap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
  padding: 3%;
}

.pkg .pkg-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7vw;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px
}

.pkg .pkg-loc .material-symbols-outlined {
  font-size: 1vw
}

.pkg .pkg-title {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: clamp(1.2vw, 1.3vw, 28px);
  line-height: 1.2
}

.pkg-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(18px, 1.67vw, 36px);
  background: var(--surface-low);
  flex: 1
}

.pkg-body .from {
  font-size: clamp(11px, 0.83vw, 16px);
  text-transform: uppercase;
  color: var(--on-surface-variant)
}

.pkg-body .amt {
  color: var(--primary);
  font-weight: 700;
  font-size: clamp(18px, 1.67vw, 36px)
}

.pkg-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px -8px rgba(187, 0, 19, .5);
  transition: .3s
}

.pkg-arrow:hover {
  background: var(--on-surface)
}

.pkg-arrow:active {
  transform: scale(.95)
}

.center-btn {
  margin-top: clamp(48px, 7vw, 96px);
  display: flex;
  justify-content: center
}

/* GALLERY */
.gal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: clamp(600px, 41.67vw, 1000px)
}

@media(min-width:768px) {
  .gal-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.gal-item {
  overflow: hidden;
  border-radius: 12px
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.pos-left img {
  object-position: left center
}

.gal-item:hover img {
  transform: scale(1.1)
}

.gal-tall {
  grid-row: span 2
}

.gal-big {
  grid-row: span 2
}

@media(min-width:768px) {
  .gal-big {
    grid-column: span 2
  }
}

/* PLANT A TREE */
.plant-wrap {
  margin-bottom: 80px
}

.plant {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  padding: clamp(40px, 3.33vw, 80px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .4)
}

.plant-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.plant-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3
}

.plant-bg .g {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--on-surface), rgba(27, 28, 28, .8) 50%, transparent)
}

.plant-inner {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.tree-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  font-size: 20px;
  font-weight: 700
}

.tree-pill .material-symbols-outlined {
  color: var(--primary);
  font-variation-settings: 'FILL' 1
}

.tree-pill span.sub {
  font-weight: 400;
  color: rgba(255, 255, 255, .7)
}

.plant h2 {
  color: #fff
}

.plant h2 .accent {
  color: var(--primary-fixed-dim)
}

.plant p {
  font-size: clamp(15px, 1.25vw, 26px);
  color: rgba(255, 255, 255, .8);
  line-height: 1.6
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  opacity: .6;
  filter: grayscale(1);
  transition: filter .7s;
  animation: scroll 30s linear infinite
}

@media(min-width:768px) {
  .marquee-track {
    gap: 96px
  }
}

.marquee:hover .marquee-track {
  filter: grayscale(0)
}

.airline {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: clamp(18px, 1.67vw, 36px);
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--on-surface);
  white-space: nowrap
}

.airline .material-symbols-outlined {
  font-size: clamp(24px, 2.5vw, 56px)
}

@keyframes scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}


.less-top-padding{
  padding-top: 3vw !important;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding-top: clamp(60px, 5.56vw, 120px);
  font-size: clamp(14px, 1.11vw, 20px)
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px
}

@media(min-width:768px) {
  .foot-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.foot-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1)
}

.foot-col p {
  line-height: 1.6;
  opacity: .9;
  margin-top: 24px
}

.foot-col h4 {
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: clamp(16px, 1.39vw, 28px);
  margin-bottom: 24px
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: .9
}

.foot-col a:hover {
  color: rgba(255, 255, 255, .7)
}

.foot-col li.row {
  display: flex;
  gap: 12px
}

.badge-img {
  height: 64px;
  width: auto;
  object-fit: contain
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 48px;
  text-align: center
}

.legal h5 {
  font-weight: 700;
  font-size: clamp(14px, 1.25vw, 24px);
  margin-bottom: 32px
}

.legal p {
  font-size: 13px;
  opacity: .7;
  line-height: 1.7;
  max-width: 72rem;
  margin: 0 auto
}

.botbar {
  margin-top: 64px;
  background: rgba(255, 255, 255, .05);
  padding: 24px 0
}

.botbar-in {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: space-between
}

@media(min-width:768px) {
  .botbar-in {
    flex-direction: row
  }
}

.botbar p {
  font-size: 12px;
  opacity: .6
}

.pays {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center
}

.pays span {
  font-weight: 700;
  font-size: 12px
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }
}

/* ============================================================
   INNER PAGES — shared across destinations / packages / about / contact
   ============================================================ */

/* PAGE HERO */
.page-hero {
  position: relative;
  min-height: clamp(420px, 29.17vw, 700px);
  display: flex;
  align-items: center;
  padding-top: 130px;
  overflow: hidden
}

.page-hero-bg {
  position: absolute;
  inset: 0
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.page-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.78) 0%, rgba(0,0,0,.38) 55%, rgba(0,0,0,.12) 100%)
}

.page-hero-inner {
  position: relative;
  z-index: 10;
  color: #fff;
  padding-block: 56px;
  text-align: center;
}

.page-hero-inner .eyebrow {
  color: var(--primary-fixed)
}

.page-hero-inner h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 3.89vw, 80px);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 12px 0 20px
}

.page-hero-inner p {
  font-size: clamp(15px, 1.25vw, 26px);
  max-width: 38rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7
}

/* FILTER TABS */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px
}

.filter-tab {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--outline-variant);
  background: transparent;
  color: var(--on-surface);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .05em;
  cursor: pointer;
  transition: .3s
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px -4px rgba(255,40,0,.4)
}

/* DESTINATION GRID FULL (no offset on inner page) */
.dest-grid.full .dest.offset {
  margin-top: 0
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #cc2000 0%, #ff2800 100%);
  border-radius: 24px;
  padding: clamp(48px, 7vw, 96px) clamp(36px, 3.33vw, 80px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.12)
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -70px; left: -50px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.08)
}

.cta-banner .eyebrow {
  color: rgba(255,255,255,.8)
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px
}

.cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: clamp(15px, 1.25vw, 26px);
  max-width: 36rem;
  margin: 0 auto 32px;
  line-height: 1.7
}

.cta-banner .btn {
  background: #fff;
  color: var(--primary);
  box-shadow: none
}

.cta-banner .btn:hover {
  background: var(--on-surface);
  color: #fff
}

/* VALUES GRID */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px
}

@media(min-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.value-card {
  background: #fff;
  border: 1px solid var(--outline-variant);
  border-radius: 20px;
  padding: clamp(24px, 2.22vw, 48px) clamp(20px, 1.94vw, 40px);
  transition: transform .3s, box-shadow .3s
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -12px rgba(255,40,0,.15)
}

.value-card-ic {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, #ff4422 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px -6px rgba(255,40,0,.4)
}

.value-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.39vw, 28px);
  margin-bottom: 12px
}

.value-card p {
  color: var(--on-surface-variant);
  line-height: 1.7
}

/* ACCREDITATIONS SECTION */
.accred-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px
}

@media(min-width: 768px) {
  .accred-grid {
    grid-template-columns: 1fr 1fr
  }
}

.accred-card {
  background: #fff;
  border: 1px solid var(--outline-variant);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: box-shadow .3s
}

.accred-card:hover {
  box-shadow: 0 16px 40px -10px rgba(255,40,0,.12)
}

.accred-ic {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #ff4422 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(255,40,0,.4)
}

.accred-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px
}

.accred-card p {
  color: var(--on-surface-variant);
  line-height: 1.7
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start
}

@media(min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr
  }
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--outline-variant);
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow .3s, transform .3s
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -8px rgba(255,40,0,.15)
}

.contact-card-ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #ff4422 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px -4px rgba(255,40,0,.4)
}

.contact-card h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px
}

.contact-card p,
.contact-card a {
  font-size: 15px;
  color: var(--on-surface-variant);
  line-height: 1.6
}

.contact-card a:hover { color: var(--primary) }

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--outline-variant);
  font-size: 15px
}

.hours-list li:last-child { border-bottom: none }
.hours-list .day { color: var(--on-surface-variant) }
.hours-list .time { font-weight: 600 }

/* CONTACT FORM */
.contact-form {
  background: #fff;
  border: 1px solid var(--outline-variant);
  border-radius: 24px;
  padding: 40px
}

.contact-form h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 8px
}

.contact-form > p {
  color: var(--on-surface-variant);
  margin-bottom: 32px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px
}

@media(min-width: 640px) {
  .form-row.two-col {
    grid-template-columns: 1fr 1fr
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--on-surface-variant)
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--outline-variant);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--on-surface);
  background: var(--bg);
  transition: border-color .3s, box-shadow .3s;
  outline: none;
  appearance: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,40,0,.1)
}

.form-group textarea {
  resize: vertical;
  min-height: 130px
}

.form-submit {
  margin-top: 8px
}

.form-submit .btn {
  width: 100%;
  justify-content: center
}

/* ACCRED LOGO BOX — dark crop container replacing the icon */
.accred-logo-box {
  background: #1b1c1c;
  border-radius: 14px;
  width: 136px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden
}

.accred-logo-box img {
  width: 136px;
  height: 72px;
  object-fit: cover
}

.atol-badge { object-position: 0% center }
.iata-badge { object-position: 100% center }

/* Wrap a light-on-transparent logo on a dark pill */
.badge-dark-wrap {
  background: #1b1c1c;
  border-radius: 14px;
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

/* MAP */
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 340px;
  border: 1px solid var(--outline-variant)
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block
}

/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */

@keyframes menu-slide-in {
  from { opacity: 0; transform: translateY(-6px) }
  to   { opacity: 1; transform: translateY(0) }
}

/* Phone link injected by JS — hidden at desktop widths */
.mobile-phone-link { display: none }

/* ---- max 1023px: collapse to burger for mobile + tablet ---- */
@media (max-width: 1023px) {
  .nav-links { display: none }
  .nav-phone { display: none }
  .burger    { display: flex; align-items: center; justify-content: center; padding: 8px; border-radius: 10px }
  .nav-inner { padding: 18px 5vw }
  .nav-logo  { width: 35vw }
  .nav-pay   { display: flex; padding: 8px 14px; font-size: 11px; letter-spacing: .07em; box-shadow: none; margin-left: auto; margin-right: 10px }

  /* Dropdown panel — floating card */
  nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-radius: 0 0 24px 24px;
    padding: 10px 12px 14px;
    gap: 3px;
    margin: 0;
    box-shadow: 0 28px 48px -10px rgba(0,0,0,.18), 0 0 0 1px rgba(231,188,184,.35);
    border-top: 2px solid rgba(255,40,0,.12);
    z-index: 100;
    animation: menu-slide-in .22s ease forwards
  }

  /* Individual link items — pill style */
  nav.menu-open .nav-links a {
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .03em;
    border-radius: 12px;
    color: var(--on-surface);
    transition: background .18s, color .18s
  }

  nav.menu-open .nav-links a:hover {
    background: rgba(255,40,0,.06);
    color: var(--primary)
  }

  /* Active page highlight */
  nav.menu-open .nav-links a.active {
    color: var(--primary);
    background: rgba(255,40,0,.07);
    border-left: 3px solid var(--primary);
    padding-left: 13px
  }

  /* Phone CTA row pinned at bottom */
  nav.menu-open .nav-links .mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
    background: rgba(255,40,0,.06);
    border: 1.5px solid rgba(255,40,0,.18);
    border-radius: 12px;
    letter-spacing: .04em
  }
}

/* ---- max 767px: mobile ---- */
@media (max-width: 767px) {

  /* Layout: tighter horizontal padding for all sections; hero keeps its 14vw */
  .wrap { padding-inline: 5vw }
  .hero-inner.wrap { padding-inline: 14vw }

  /* Announcement bar */
  .announcement-bar { font-size: 11px; padding: 8px 12px }

  /* Hero */
  .hero-slide  { padding-top: 110px }
  .hero-copy   { gap: 16px }
  .hero h1     { font-size: clamp(26px, 7.5vw, 36px) }
  .price       { font-size: 36px }
  .price-row   { gap: 10px }
  .hero p.lead { font-size: 15px; max-width: 100% }
  .hero-arrow  { width: 36px; height: 36px }
  .hero-prev   { left: 10px }
  .hero-next   { right: 10px }

  /* Destinations */
  .dest { height: clamp(260px, 72vw, 320px) }

  /* About mosaic — 2-col image grid */
  .mosaic {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-areas: "a b" "badge badge";
    gap: 10px
  }
  .mos-a {
    position: static; width: 100%; height: 220px;
    grid-area: a; border-radius: 14px
  }
  .mos-b {
    position: static; width: 100%; height: 220px;
    grid-area: b; border-radius: 14px; border: none; box-shadow: none
  }
  .mos-c, .mos-dots, .mos-ring { display: none }
  .mos-badge {
    position: static; grid-area: badge;
    width: fit-content;
    box-shadow: 0 4px 16px rgba(255,40,0,.15)
  }

  /* Packages */
  .pkg-img { height: 260px }
  .pkg .pkg-loc { font-size: 11px }
  .pkg .pkg-loc .material-symbols-outlined { font-size: 13px }
  .pkg .pkg-title { font-size: clamp(15px, 4.5vw, 20px); line-height: 1.25 }
  .pkg-body { padding: 16px }
  .lead-c { margin-bottom: 32px }
  .center-btn { margin-top: 32px }

  /* Gallery — masonry: tall left col + 2 stacked right + wide bottom strip */
  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 175px 175px 210px;
    grid-auto-flow: dense;
    height: auto;
    gap: 8px
  }
  .gal-item { height: auto }
  .gal-tall { grid-row: span 2; height: auto }
  .gal-big  { grid-column: span 2; grid-row: span 1; height: auto }

  /* Stats cards */
  .stat   { padding: 16px 14px; gap: 12px }
  .stat b { font-size: 13px }
  .stat .ic { width: 42px; height: 42px; border-radius: 10px }

  /* Plant section */
  .plant     { padding: 40px 24px }
  .tree-pill { font-size: 16px; padding: 10px 18px; gap: 12px }
  .plant-pic { display: block }
  .plant-pic img { height: 660px !important; object-fit: cover; object-position: top center }

  /* CTA banner */
  .cta-banner   { padding: 48px 24px; border-radius: 16px }
  .cta-banner p { font-size: 16px }

  /* Page hero */
  .page-hero         { padding-top: 110px; min-height: 300px }
  .page-hero-inner   { padding-block: 40px }
  .page-hero-inner p { font-size: 15px }

  /* Contact form */
  .contact-form { padding: 28px 20px }

  /* Accreditation cards */
  .accred-card { flex-direction: column }

  /* Map */
  .map-wrap { height: 260px }

  /* Footer */
  .foot-logo       { height: 50px }
  .foot-col h4     { font-size: 17px }
  .legal h5        { font-size: 15px }
  .botbar-in > img { width: 60vw !important }
}

/* ---- 768–1023px: tablet ---- */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Nav: compact phone + pay so they fit beside the burger */
  .nav-phone { font-size: 12px; gap: 8px }
  .nav-phone .material-symbols-outlined { font-size: 22px; width: 22px; height: 22px }
  .nav-pay   { padding: 9px 16px; font-size: 11px; margin-left: 10px }

  /* Mosaic — smaller but keep absolute layout */
  .mosaic { height: 460px }

  /* Gallery */
  .gal-grid { height: 440px }

  /* Footer: 2-col grid instead of 4 */
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px }

  /* CTA banner */
  .cta-banner { padding: 56px 40px }
}

/* ---- 1024–1279px: small desktop — prevent nav overlap ---- */
@media (min-width: 1024px) and (max-width: 1279px) {
  .nav-inner {
    padding: 1vw 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    width: 8vw;
    flex-shrink: 0;
  }

  .nav-links {
    display: flex;
    gap: 1.2vw;
    flex: 1;
    justify-content: center;
    min-width: 0;
  }

  .nav-links a {
    font-size: 12px;
    white-space: nowrap;
  }

  .nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .nav-phone .material-symbols-outlined {
    font-size: 22px;
    width: 22px;
    height: 22px;
  }

  .nav-pay {
    padding: 8px 14px;
    font-size: 11px;
    margin-left: 10px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}