/* ==============================================
   TOKENS
   Palette: warm white / deep sea / terracotta
============================================== */
:root {
  --cream: #FAFAF7;
  --cream2: #F3F1EB;
  --sea: #1B3A4B;
  --sea-mid: #2C5364;
  --terra: #C4622D;
  --terra-lt: #D4743F;
  --ink: #1A1A18;
  --muted: #6B6B65;
  --line: #E2DFD8;
  --white: #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Instrument Sans', system-ui, sans-serif;

  --container: 1160px;
  --pad: clamp(24px, 5vw, 80px);
}

/* ==============================================
   RESET
============================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ==============================================
   NAV
============================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--pad);
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.nav-brand img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

.nav-brand span {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-brand .brand-name {
  display: flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}

.brand-main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--terra);
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sea);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a:not(.nav-book) {
  position: relative;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-links a:not(.nav-book)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--terra);
  transition: width 0.2s ease;
}

.nav-links a:not(.nav-book):hover {
  color: var(--ink);
}

.nav-links a:not(.nav-book):hover::after {
  width: 100%;
}

.nav-book {
  color: var(--white) !important;
  background: var(--sea);
  padding: 9px 20px;
  border-radius: 3px;
  font-size: 0.84rem !important;
  letter-spacing: 0.04em;
  transition: background 0.2s !important;
}

.nav-book:hover {
  background: var(--sea-mid) !important;
  color: var(--white) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* ==============================================
   MOBILE MENU
============================================== */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 20px var(--pad) 28px;
  gap: 4px;
  transform: translateY(-120%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--ink);
}

/* ==============================================
   HERO
============================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
}

.hero-img img {
  object-position: center 35%;
}

/* layered gradient: protect bottom text, keep top photo visible */
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(26, 26, 24, 0.04) 0%,
      rgba(26, 26, 24, 0.08) 40%,
      rgba(26, 26, 24, 0.55) 72%,
      rgba(26, 26, 24, 0.82) 100%),
    linear-gradient(to right,
      rgba(26, 26, 24, 0.45) 0%,
      rgba(26, 26, 24, 0.18) 42%,
      transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) 28px;
  max-width: calc(var(--container) + var(--pad) * 2);
  width: 100%;
  margin: 0 auto;
}

.hero-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.78);
  margin-bottom: 12px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(250, 250, 247, 0.88);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(250, 250, 247, 0.86);
  font-weight: 400;
  max-width: 420px;
  line-height: 1.6;
}

.hero-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px var(--pad);
  background: rgba(27, 58, 75, 0.92);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  max-width: 100%;
  flex-wrap: wrap;
}

.hero-bar span {
  color: rgba(250, 250, 247, 0.55);
  letter-spacing: 0.04em;
}

.hero-bar strong {
  color: var(--white);
  font-weight: 500;
}

.hero-bar .dot {
  color: var(--terra);
  font-size: 1rem;
}

/* ==============================================
   INTRO STRIP
============================================== */
.intro-strip {
  background: var(--cream2);
  border-bottom: 1px solid var(--line);
  padding: 28px var(--pad);
}

.intro-strip p {
  max-width: 820px;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  font-family: var(--font-serif);
  font-weight: 1000;
  font-style: italic;
  color: rgba(27, 58, 75, 0.88);
  line-height: 1.65;
}

/* ==============================================
   TOURS
============================================== */
.tours {
  padding: 80px 0 60px;
  background: var(--cream);
}

.tours-header {
  padding: 0 var(--pad) 40px;
  max-width: calc(var(--container) + var(--pad) * 2);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}

.tours-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.tours-header p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 320px;
  text-align: right;
}

.tour-list {
  max-width: calc(var(--container) + var(--pad) * 2);
  margin: 0 auto;
}

.tour-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px var(--pad);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  transition: background 0.25s;
  text-decoration: none;
  color: inherit;
}

.tour-row:hover {
  background: var(--cream2);
}

.tour-row:hover .tour-hover-img {
  opacity: 1;
  transform: translateX(0);
}

.tour-row:hover .tour-num {
  color: var(--terra);
}

.tour-row:hover .tour-arrow {
  transform: translateX(4px);
  color: var(--terra);
}

.tour-row-left {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex: 1;
  min-width: 0;
}

.tour-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 3px;
  width: 24px;
  transition: color 0.2s;
}

.tour-row-info {
  min-width: 0;
}

.tour-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 4px;
}

.tour-row-info h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}

.tour-row-info p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 480px;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tour-meta span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--sea);
  background: rgba(27, 58, 75, 0.06);
  border: 1px solid rgba(27, 58, 75, 0.12);
  padding: 4px 9px;
  border-radius: 999px;
}

.tour-row-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.tour-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sea);
  white-space: nowrap;
}

.tour-arrow {
  font-size: 1.1rem;
  color: var(--muted);
  transition: transform 0.2s, color 0.2s;
}

/* hover photo reveal */
.tour-hover-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 220px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.tour-hover-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.tour-hover-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream2) 0%, transparent 30%);
  z-index: 1;
}

.tour-row--transfer {
  background: var(--cream2);
}

.tour-row--transfer:hover {
  background: #EDE9E1;
}

.tours-note {
  max-width: calc(var(--container) + var(--pad) * 2);
  margin: 0 auto;
  padding: 20px var(--pad) 0;
  font-size: 0.84rem;
  color: var(--muted);
  font-style: italic;
}

/* ==============================================
   PHOTO BAND
============================================== */
.photo-band {
  display: flex;
  height: 280px;
  overflow: hidden;
  background: var(--sea);
}

.pb-img {
  flex: 0 0 calc(25% + 34px);
  height: 100%;
  overflow: hidden;
  margin-left: -34px;
  position: relative;
}

.pb-img:first-child {
  margin-left: 0;
}

.pb-img:not(:first-child) {
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 34px, black 100%);
  mask-image: linear-gradient(to right, transparent 0, black 34px, black 100%);
}

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

/* ==============================================
   ABOUT
============================================== */
.about {
  background: var(--sea);
  padding: 100px 0;
}

.about-inner {
  max-width: calc(var(--container) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  aspect-ratio: 4/4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.45);
  margin-bottom: 16px;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.about-text h2 em {
  font-style: italic;
  color: rgba(250, 250, 247, 0.72);
}

.about-text p {
  font-size: 1rem;
  color: rgba(250, 250, 247, 0.65);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 520px;
}

.about-facts {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 250, 247, 0.12);
  flex-wrap: wrap;
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fact strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
}

.fact span {
  font-size: 0.8rem;
  color: rgba(250, 250, 247, 0.45);
  letter-spacing: 0.04em;
}

/* ==============================================
   REVIEWS
============================================== */
.reviews {
  background: var(--cream2);
  padding: 110px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews-inner {
  max-width: calc(var(--container) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.reviews-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 42px;
}

.reviews-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

.reviews-source {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sea);
  white-space: nowrap;
  transition: border-color 0.2s, transform 0.2s;
}

.reviews-source:hover {
  border-color: var(--terra);
  transform: translateY(-1px);
}

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

.review {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px 28px 30px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 34px rgba(26, 26, 24, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.review:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 98, 45, 0.35);
  box-shadow: 0 18px 46px rgba(26, 26, 24, 0.08);
}

.review::before {
  content: "“";
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: rgba(196, 98, 45, 0.12);
  pointer-events: none;
}

.review-stars {
  font-size: 0.82rem;
  color: var(--terra);
  letter-spacing: 3px;
  margin-bottom: 22px;
}

.review p {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 26px;
}

.review cite {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Reviews responsive */
@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .reviews-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .review {
    min-height: auto;
  }
}

/* ==============================================
   CONTACT
============================================== */
.contact {
  background: var(--cream);
  padding: 100px 0 120px;
}

.contact-inner {
  max-width: calc(var(--container) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text .eyebrow {
  color: var(--terra);
  opacity: 0.8;
}

.contact-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.contact-text h2 em {
  font-style: italic;
  color: var(--sea);
}

.contact-text p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 12px;
}

.contact-depart {
  font-size: 0.88rem !important;
}

.contact-depart span {
  display: inline-flex;
  align-items: center;
  color: var(--terra);
  background: rgba(20, 44, 56, 0.06);
  border: 1px solid rgba(196, 98, 45, 0.18);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
  margin: 0 2px;
}

.contact-methods {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 50px rgba(26, 26, 24, 0.06);
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 2px 4px 4px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--cream);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  background: var(--cream2);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wa {
  background: #25D366;
  color: #fff;
}

.contact-icon-email {
  background: #E8F0FE;
  color: #2563EB;
}

.contact-icon-phone {
  background: rgba(196, 98, 45, 0.12);
  color: var(--terra);
}

.contact-link strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.contact-link small {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-wa {
  background: #e9fbf1;
  border-color: rgba(37, 211, 102, 0.28);
}


/* ==============================================
   FOOTER
============================================== */
.footer {
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  max-width: calc(var(--container) + var(--pad) * 2);
  margin: 0 auto;
  padding: 56px var(--pad) 44px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
}

.footer-brand span {
  font-size: 0.88rem;
  color: rgba(250, 250, 247, 0.45);
}

.footer-nav-main {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.footer-nav-main a {
  font-size: 0.9rem;
  color: rgba(250, 250, 247, 0.5);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-nav-main a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 250, 247, 0.08);
  padding: 18px var(--pad) 26px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(250, 250, 247, 0.42);
}

.footer-bottom a {
  color: rgba(250, 250, 247, 0.75);
  font-weight: 600;
  margin: 0 6px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom span {
  color: rgba(250, 250, 247, 0.25);
  margin: 0 4px;
}

@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 44px var(--pad) 34px;
  }

  .footer-nav-main {
    justify-content: center;
  }
}

/* ==============================================
   FLOATING WHATSAPP
============================================== */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.38);
  transition: transform 0.2s, box-shadow 0.2s;
}

.float-wa:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

/* ==============================================
   DESTINATIONS PAGE
============================================== */
.dest-hero {
  padding: 120px var(--pad) 72px;
  max-width: calc(var(--container) + var(--pad) * 2);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.dest-hero .eyebrow {
  color: var(--terra);
  opacity: 0.85;
}

.dest-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 20px;
}

.dest-hero h1 em {
  font-style: italic;
  color: var(--sea);
}

.dest-hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.65;
}

.pricing-note {
  max-width: calc(var(--container) + var(--pad) * 2);
  margin: 0 auto;
  padding: 24px var(--pad);
  background: var(--cream2);
  border-bottom: 1px solid var(--line);
}

.pricing-note strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--sea);
  margin-bottom: 6px;
}

.pricing-note p {
  max-width: 760px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.dest-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.dest-section:nth-of-type(even) {
  background: var(--cream2);
}

.dest-section:nth-of-type(odd) {
  background: var(--cream);
}

.dest-section-inner {
  max-width: calc(var(--container) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.dest-section-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 6px;
}

.dest-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.dest-section-desc {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(26, 26, 24, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dcard:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 98, 45, 0.28);
  box-shadow: 0 22px 54px rgba(26, 26, 24, 0.09);
}

.dcard-img {
  height: 250px;
  overflow: hidden;
  background: var(--cream2);
}

.dcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dcard:hover .dcard-img img {
  transform: scale(1.06);
}

.dcard-info {
  padding: 26px 26px 28px;
}

.dcard-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--terra);
}

.dcard-info h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}

.dcard-info p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 18px;
}

.dcard-info a {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sea);
}

.dcard-info a::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.dcard-info a:hover::after {
  transform: translateX(4px);
}

.dest-cta {
  background: var(--sea);
  padding: 80px var(--pad);
  text-align: center;
}

.dest-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 10px;
}

.dest-cta p {
  font-size: 1rem;
  color: rgba(250, 250, 247, 0.6);
  margin-bottom: 32px;
}

.dest-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: #25D366;
  color: #fff;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.btn-wa:hover {
  background: #20b857;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  border: 1.5px solid rgba(250, 250, 247, 0.3);
  color: rgba(250, 250, 247, 0.8);
  border-radius: 3px;
  font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: rgba(250, 250, 247, 0.7);
  color: var(--white);
}

/* ==============================================
   LEGAL
============================================== */
.legal-top {
  padding: 120px var(--pad) 60px;
  max-width: calc(var(--container) + var(--pad) * 2);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.legal-top h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 6px;
}

.legal-top p {
  font-size: 0.88rem;
  color: var(--muted);
}

.legal-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px var(--pad) 100px;
}

.legal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin: 2.5rem 0 0.7rem;
}

.legal-body p,
.legal-body li {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.legal-body ul {
  padding-left: 1.4rem;
  list-style: disc;
}

.legal-body a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-back {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: var(--sea);
  font-weight: 500;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.footer-brand-logo img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

.footer-brand-logo div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ==============================================
   RESPONSIVE
============================================== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-brand img {
    width: 36px;
    height: 36px;
  }

  .nav-brand span {
    font-size: 1rem;
  }

  .tour-hover-img {
    display: none;
  }

  .tour-row-info p {
    display: none;
  }

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

  .about-img {
    max-width: 320px;
    aspect-ratio: 3/4;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .photo-band {
    grid-template-columns: repeat(2, 1fr);
    height: 360px;
  }

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

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: clamp(3.5rem, 16vw, 5.5rem);
  }

  .tours-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .tours-header p {
    text-align: left;
  }

  .tour-row {
    padding: 22px var(--pad);
    gap: 12px;
  }

  .tour-row-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }

  .tour-row-left {
    gap: 16px;
  }

  .photo-band {
    grid-template-columns: repeat(2, 1fr);
    height: 220px;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-img {
    max-width: 100%;
    aspect-ratio: 4/3;
  }

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

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

  .footer-inner {
    flex-direction: column;
    gap: 16px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .brand-main {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}