/* ---------- Root design tokens ---------- */
:root {
  --color-cream: #FCFBF9;
  --color-sand: #F3EBD9;
  --color-charcoal: #111111;
  --color-stone: #605E5A;
  --color-white: #FFFFFF;
  --color-orange: #D97A34;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;

  --container-max: 80rem;
  --container-pad: 1.5rem;
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
/* Native form controls (e.g. Contact Form 7's <input type="submit">) don't
   pick up the button reset above since they aren't <button> elements — without
   this they fall back to the browser's default system font. */
input, select, textarea {
  font-family: inherit;
}
img {
  display: block;
  max-width: 100%;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
}

/* ---------- Layout helpers ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
@media (min-width: 1024px) {
  .container { padding-inline: 2.5rem; }
}
.section {
  padding-block: 6rem;
}
@media (min-width: 768px) {
  .section { padding-block: 8rem; }
}
.section.bg-white + .section.bg-white,
.section.bg-sand + .section.bg-sand {
  padding-top: 0;
}
.bg-sand   { background-color: var(--color-sand); }
.bg-white  { background-color: var(--color-white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
/* Grids */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.bento__stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.tour-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.tour-filter {
  padding: 0.7rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.tour-filter:hover {
  border-color: rgba(17, 17, 17, 0.3);
}
.tour-filter.active {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
}
.tour-card.is-hidden {
  display: none;
}
.tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(3, 1fr); }
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2.5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.reviews-widgets {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.reviews-widget {
  width: 100%;
}
.journey {
  display: grid;
  grid-template-columns: 1fr;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .features-grid,
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .journey { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.dest-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}
.tours-more {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Icon sizes (used with Lucide <i data-lucide> placeholders) */
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon    { width: 1rem;     height: 1rem; }
.icon-lg { width: 1.5rem;   height: 1.5rem; }
.icon-xl { width: 2rem;     height: 2rem; }

.eyebrow {
  color: var(--color-stone);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.5rem, 2.75vw, 2.375rem);
}
.section-head {
  margin-bottom: 3.5rem;
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--dark {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}
.btn--dark:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.btn--outline {
  border: 1px solid rgba(17, 17, 17, 0.3);
  color: var(--color-charcoal);
}
.btn--outline:hover {
  border-color: var(--color-charcoal);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.link-arrow svg {
  transition: transform 0.3s ease;
}
.link-arrow:hover svg {
  transform: translateX(4px);
}
/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scroll-pulse {
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%      { transform: scaleY(1.4); opacity: 1; }
}

/* ---------- Site header & navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  /* Below WP's admin bar (z-index 99999) so the toolbar always renders on
     top of the site header instead of being covered by it. */
  z-index: 9999;
  color: var(--color-white);
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
.site-header.scrolled {
  color: var(--color-charcoal);
  background-color: rgba(252, 251, 249, 0.9);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding-inline: 1rem;
}
.logo__default,
.logo__scrolled {
  height: 4rem;
  width: auto;
  transition: opacity 0.3s ease;
}
.logo__scrolled {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.site-header.scrolled .logo__default {
  opacity: 0;
}
.site-header.scrolled .logo__scrolled {
  opacity: 1;
}
.nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
  margin-right: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (min-width: 1024px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
}
.nav-link {
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link:hover {
  color: var(--color-orange);
}
.menu-toggle {
  padding: 0.5rem;
  margin-right: -0.5rem;
}

/* ---------- Mobile drawer ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 100001;
  width: 78%;
  max-width: 24rem;
  background-color: var(--color-cream);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-smooth);
}
.drawer.open {
  transform: translateX(0);
}
.drawer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding-inline: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.drawer__bar img {
  height: 4rem;
  width: auto;
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}
.drawer__link {
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 1024px) {
  .drawer-overlay, .drawer { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.2));
}
.hero__overlay--side {
  background: linear-gradient(to right, rgba(0,0,0,0.5), transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 18vh;
}
.hero__location {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero__location.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.breadcrumb__link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}
.breadcrumb__link:hover {
  color: var(--color-white);
}
.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb__current {
  color: rgba(255, 255, 255, 0.8);
}
.hero__title {
  color: var(--color-white);
  line-height: 0.95;
  font-size: clamp(1.5rem, 2.75vw, 2.375rem);
}
.hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  max-width: 32rem;
  margin-top: 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 1.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .hero__scroll { right: 2.5rem; }
}
.hero__scroll-label {
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 3.5rem;
  background-color: rgba(255, 255, 255, 0.5);
  transform-origin: top;
}

/* ---------- Destination bento grid ---------- */
.dest-card {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.dest-card--tall { height: 380px; }
.dest-card--wide { height: 280px; }
@media (min-width: 1024px) {
  .dest-card--tall { height: 640px; }
  .dest-card--wide { height: 308px; }
}
.dest-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-smooth);
}
.dest-card:hover .dest-card__img {
  transform: scale(1.08);
}
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.1) 60%, transparent);
}
.dest-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.75rem 2rem;
}
.dest-card__title {
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.15rem;
}
.dest-card__location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.dest-card__location .icon-sm {
  flex-shrink: 0;
}

/* ---------- Tour package cards ---------- */
.tour-card {
  position: relative;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
}
.tour-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-smooth);
}
.tour-card:hover .tour-card__img {
  transform: scale(1.08);
}
.tour-card__category {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background-color: var(--color-white);
  color: var(--color-charcoal);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}
.tour-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2) 55%, rgba(0,0,0,0.05));
}
.tour-card__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.75rem;
  color: var(--color-white);
}
.tour-card__duration {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}
.tour-card__title {
  font-weight: 600;
  font-size: 1.15rem;
}
.tour-card__reveal {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.4s var(--ease-smooth), opacity 0.3s ease, margin-top 0.4s ease;
}
.tour-card:hover .tour-card__reveal {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 0.75rem;
}
.tour-card__reveal-inner {
  overflow: hidden;
}
.tour-card__desc {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-card__content .link-arrow {
  color: var(--color-white);
}

/* ---------- Why choose us ---------- */
.feature__icon {
  margin-bottom: 1.5rem;
}
.feature__title {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.feature__text {
  color: var(--color-stone);
  line-height: 1.7;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background-color: var(--color-white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.stars svg {
  fill: var(--color-charcoal);
  stroke: var(--color-charcoal);
  width: 1rem;
  height: 1rem;
}
.testimonial-quote {
  font-style: italic;
  color: rgba(17, 17, 17, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1;
}
.testimonial-name {
  font-weight: 600;
}
.testimonial-meta {
  color: var(--color-stone);
  font-size: 0.875rem;
}

/* ---------- Partners & affiliates ---------- */
.partners-marquee {
  overflow: hidden;
}
.partners-track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
  width: max-content;
  min-width: 100%;
}
.partners-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
}
.partners-item img {
  max-height: 4.5rem;
  width: auto;
}
.partners-item--dup {
  display: none;
}
@media (max-width: 1023.98px) {
  .partners-item--dup {
    display: flex;
  }
  .partners-track {
    animation: partners-scroll 18s linear infinite;
  }
  .partners-marquee:hover .partners-track {
    animation-play-state: paused;
  }
}
@media (min-width: 1024px) {
  .partners-item { width: 10rem; }
  .partners-item img { max-height: 4.5rem; }
  .partners-track { justify-content: center; gap: 1.75rem; }
}

/* Auto slider: enabled whenever there are more than 5 partner logos */
.partners-marquee--slider .partners-item--dup {
  display: flex;
}
.partners-marquee--slider .partners-track {
  animation: partners-scroll 30s linear infinite;
}
.partners-marquee--slider:hover .partners-track {
  animation-play-state: paused;
}
@media (min-width: 1024px) {
  .partners-marquee--slider .partners-track {
    justify-content: flex-start;
  }
}
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Start your journey ---------- */
.journey__media {
  position: relative;
  height: 420px;
}
@media (min-width: 768px) {
  .journey__media { height: auto; }
}
.journey__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journey__panel {
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem;
}
@media (min-width: 768px) {
  .journey__panel { padding: 5rem 3.5rem; }
}
@media (min-width: 1024px) {
  .journey__panel { padding: 5rem 5rem; }
}
.journey__title {
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.journey__text {
  color: var(--color-stone);
  line-height: 1.7;
  max-width: 28rem;
  margin-bottom: 2.25rem;
}
.journey__note {
  color: rgba(96, 94, 90, 0.8);
  font-size: 0.875rem;
  margin-top: 1.25rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--color-white);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-brand img {
  height: 4rem;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  color: var(--color-stone);
  line-height: 1.7;
  max-width: 20rem;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.social-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.social-btn:hover {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
}
.footer-heading {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--color-stone);
}
.footer-links a:hover {
  color: var(--color-charcoal);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--color-stone);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-stone);
}
.footer-bottom__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}
.footer-credit {
  text-align: center;
}
.footer-bottom a:hover {
  color: var(--color-charcoal);
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  height: 60vh;
  min-height: 26rem;
}
.page-hero .hero__content {
  justify-content: flex-end;
  padding-bottom: 4rem;
}

/* ---------- Intro block ---------- */
.intro {
  
  text-align: left;
}
.intro__text {
  color: var(--color-stone);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

/* ---------- Destination cards grid ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 700px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
}

.dcard {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}
.dcard__media {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}
.dcard__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-smooth);
}
.dcard:hover .dcard__media img {
  transform: scale(1.06);
}
.dcard__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 55%);
}
.dcard__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background-color: rgba(17, 17, 17, 0.75);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
}
.dcard__region {
  position: absolute;
  bottom: 0.85rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-white);
  font-size: 0.8rem;
}
.dcard__region svg {
  width: 14px;
  height: 14px;
}
.dcard__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: var(--color-sand);
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.dcard__title {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dcard__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-stone);
  font-size: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dcard__text {
  color: var(--color-stone);
  line-height: 1.7;
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.dcard__highlights-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-bottom: 0.75rem;
}
.dcard__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.dcard__highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-charcoal);
}
.dcard__highlights li span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dcard__highlights li svg {
  width: 14px;
  height: 14px;
  color: var(--color-stone);
  flex-shrink: 0;
}
.dcard__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.8rem;
  color: var(--color-stone);
}
.dcard__meta-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.dcard__meta-date svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---------- Story & stats ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .story {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.story__media {
  height: 100%;
}
.story__media img {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
  display: block;
}
.story__text p {
  color: var(--color-stone);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.story__text p:last-child {
  margin-bottom: 0;
}

/* ---------- Core values ---------- */
.values-section {
  position: relative;
  overflow: hidden;
}
.values-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.values-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.88));
}
.values-section__inner {
  position: relative;
  z-index: 1;
}
.values-section .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.values-section .section-title {
  color: var(--color-white);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 700px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
  }
}
.value {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
}
.value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.value__icon i {
  width: 1.375rem;
  height: 1.375rem;
}
.value__title {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}
.value__text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ---------- Team cards ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
.team-card {
  display: flex;
  flex-direction: column;
}
.team-card__media {
  position: relative;
  overflow: hidden;
  height: 380px;
  margin-bottom: 1.5rem;
}
.team-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-smooth);
}
.team-card:hover .team-card__media img {
  transform: scale(1.06);
}
.team-card__content {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 1.25rem;
}
.team-card__name {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}
.team-card__role {
  color: var(--color-stone);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.team-card__bio {
  color: var(--color-stone);
  line-height: 1.7;
  font-size: 0.925rem;
}

/* ---------- Credential badges ---------- */
.badges-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 700px) {
  .badges-row { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .badges-row { grid-template-columns: repeat(4, 1fr); }
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.badge__icon {
  color: var(--color-charcoal);
}
.badge__title {
  font-weight: 600;
  font-size: 0.95rem;
}
.badge__text {
  color: var(--color-stone);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ---------- Simple centered CTA section ---------- */
.cta-section__inner {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}
.cta-section__text {
  color: var(--color-stone);
  line-height: 1.7;
  margin: 1.5rem 0 2rem;
}

/* ---------- CTA band with background image ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.75), rgba(17, 17, 17, 0.82));
}
/* .cta-band__content reuses .container's max-width/padding so it lines up
   with the tour-card grid's container above it; only alignment/color differ. */
.cta-band__content {
  position: relative;
  z-index: 1;
  text-align: left;
}
.cta-band__content .section-title {
  color: var(--color-white);
}
.cta-band__content .cta-section__text {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.8);
}
.btn--outline-white {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}
.btn--outline-white:hover {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-charcoal);
}
.btn--white {
  background-color: var(--color-white);
  color: var(--color-charcoal);
}
.btn--white:hover {
  background-color: rgba(255, 255, 255, 0.85);
}


/* ---------- Contact split ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
}
.office-title {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  margin-bottom: 1.75rem;
}
.office-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.office-item__icon {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.office-item__text {
  color: var(--color-charcoal);
  font-weight: 600;
  line-height: 1.5;
}
.office-item__text a {
  color: inherit;
}
.office-item__text small {
  display: block;
  color: var(--color-stone);
  font-size: 0.85rem;
}
.office-hours {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.75rem;
  margin-bottom: 2rem;
}
.office-hours__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-bottom: 1rem;
}
.office-hours__row {
  display: flex;
  justify-content: space-between;
  padding-block: 0.75rem;
  font-size: 0.925rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.office-hours__row:first-of-type {
  border-top: none;
}
.office-hours__time {
  color: var(--color-stone);
}
.map-embed {
  width: 100%;
  min-height: 280px;
  border: none;
  display: block;
  flex: 1;
}

/* ---------- Inquiry form ---------- */
.form-card {
  background-color: var(--color-sand);
  padding: 2.5rem;
}
@media (min-width: 768px) {
  .form-card { padding: 3rem; }
}
.form-card__title {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  margin-bottom: 0.5rem;
}
.form-card__subtitle {
  color: var(--color-stone);
  margin-bottom: 2rem;
}
.field {
  margin-bottom: 1.5rem;
}
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-bottom: 0.6rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
  padding: 0.7rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-charcoal);
  transition: border-color 0.2s ease;
}
.field input:autofill,
.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-charcoal);
  -webkit-box-shadow: 0 0 0px 1000px var(--color-sand) inset;
  box-shadow: 0 0 0px 1000px var(--color-sand) inset;
  transition: background-color 9999s ease-in-out 0s;
}
.field input.invalid,
.field textarea.invalid {
  border-color: #C0392B;
}
.field-error {
  display: block;
  color: #C0392B;
  font-size: 0.78rem;
  margin-top: 0.4rem;
}
.field-error:empty {
  display: none;
}
.field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 1.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23605E5A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1rem;
}
.field select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}
.field select:hover {
  border-color: rgba(17, 17, 17, 0.45);
}
.field select option {
  color: var(--color-charcoal);
  background-color: var(--color-white);
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
}
.field input[type="date"] {
  cursor: text;
}
.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(38%) sepia(8%) saturate(384%) hue-rotate(11deg);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.field input[type="date"]:hover::-webkit-calendar-picker-indicator,
.field input[type="date"]:focus::-webkit-calendar-picker-indicator {
  opacity: 1;
}
.phone-field {
  display: flex;
  gap: 0.75rem;
}
.phone-field input {
  flex: 1;
  min-width: 0;
}
.code-select {
  position: relative;
  flex-shrink: 0;
}
.code-select__toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 6rem;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
  padding: 0.7rem 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-charcoal);
  transition: border-color 0.2s ease;
}
.code-select__toggle:hover {
  border-color: rgba(17, 17, 17, 0.45);
}
.code-select__toggle svg {
  flex-shrink: 0;
  margin-left: auto;
  color: var(--color-stone);
  transition: transform 0.25s ease;
}
.code-select.open .code-select__toggle {
  border-color: var(--color-charcoal);
}
.code-select.invalid .code-select__toggle {
  border-color: #C0392B;
}
.code-select.open .code-select__toggle svg {
  transform: rotate(180deg);
}
.code-select__list {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 20;
  width: 11rem;
  max-height: 14rem;
  overflow-y: auto;
  background-color: var(--color-white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
  display: none;
}
.code-select.open .code-select__list {
  display: block;
}
.code-select__option {
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  color: var(--color-charcoal);
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.code-select__option:hover,
.code-select__option.active {
  background-color: var(--color-sand);
}
.code-select--full {
  width: 100%;
}
.code-select--full .code-select__toggle {
  width: 100%;
  font-size: 1rem;
}
.code-select--full .code-select__list {
  width: 100%;
}
.code-select--full .code-select__option {
  font-size: 0.95rem;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(96, 94, 90, 0.6);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-charcoal);
}
.btn--block {
  width: 100%;
  justify-content: center;
}
.form-success {
  color: var(--color-stone);
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}
.form-success.hidden {
  display: none;
}

/* ---------- Tour itinerary page ---------- */
.tour-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-block: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-charcoal);
  font-weight: 500;
}
.tour-meta-item svg {
  color: var(--color-stone);
}
.tour-description {
  color: var(--color-stone);
  line-height: 1.8;
  max-width: 48rem;
  padding-block: 2rem;
}

.itinerary-day {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.itinerary-day:first-child {
  border-top: none;
}
.itinerary-day__toggle {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  padding-block: 1.75rem;
  text-align: left;
}
.itinerary-day__num {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(17, 17, 17, 0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.125rem;
}
.itinerary-day__head {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.itinerary-day__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-stone);
  margin-bottom: 0.25rem;
}
.itinerary-day__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
}
.itinerary-day__chevron {
  flex-shrink: 0;
  margin-top: 0.4rem;
  color: var(--color-stone);
  transition: transform 0.3s var(--ease-smooth);
}
.itinerary-day__toggle[aria-expanded="true"] .itinerary-day__chevron {
  transform: rotate(180deg);
}
.itinerary-day__reveal {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.4s var(--ease-smooth), opacity 0.3s ease;
}
.itinerary-day__reveal.open {
  grid-template-rows: 1fr;
  opacity: 1;
}
.itinerary-day__reveal-inner {
  overflow: hidden;
  padding-bottom: 1.75rem;
}
.itinerary-day__text {
  color: var(--color-stone);
  line-height: 1.7;
  padding-left: calc(2.5rem + 1.5rem);
}
.itinerary-day__overnight {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  padding-left: calc(2.5rem + 1.5rem);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-charcoal);
}
.itinerary-day__overnight .icon-sm {
  color: var(--color-stone);
  flex-shrink: 0;
}

.incl-excl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 700px) {
  .incl-excl-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.incl-excl-title {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.included-grid,
.excluded-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.included-item,
.excluded-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-charcoal);
}
.included-item svg {
  color: var(--color-stone);
  flex-shrink: 0;
}
.excluded-item {
  color: var(--color-stone);
}
.excluded-item svg {
  color: rgba(96, 94, 90, 0.6);
  flex-shrink: 0;
}
