/* =========================================================
   Wanderlust Voyages — minimal brand theme
   Brand: Yellow #FCBC12 · Black #333 · Orange #FE901B
   ========================================================= */

:root {
  --yellow: #FCBC12;
  --orange: #FE901B;
  --black: #333333;
  --black-deep: #1f1f1f;
  --white: #ffffff;
  --dot: #eeeeee;
  --line: #ececec;

  --font-display: 'Birthstone', cursive;
  --font-body: 'Google Sans Flex', 'Roboto Flex', -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --header-h: 78px;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html, body {
  background-color: var(--white);
  color: var(--black);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;

  /* Light grey dotted pattern over white */
  background-color: var(--white);
  background-image: radial-gradient(circle, var(--dot) 1px, transparent 1.2px);
  background-size: 22px 22px;
  background-position: 0 0;
}
body.page-inner { padding-top: var(--header-h); }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.005em;
}

a { color: var(--orange); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--yellow); }

p { color: var(--black); }

/* =========================================================
   HEADER (always white)
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,0.04); }

.site-header .container-xl { padding-top: .5rem !important; padding-bottom: .5rem !important; }

.brand-icon { font-size: 1.4rem; color: var(--orange); }
.brand-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--black);
}
.brand-text-serif {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 1.6rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--black) !important;
  padding: .5rem 0 !important;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav-link:hover { color: var(--orange) !important; }
.nav-link.active {
  color: var(--orange) !important;
  border-bottom-color: var(--yellow);
}

.btn-ghost { background: transparent; border: none; color: var(--black); }

/* MOBILE NAV */
.mobile-nav {
  background: var(--white);
  width: min(85vw, 360px);
  border-left: 1px solid var(--line);
}
.mobile-nav .offcanvas-header { border-bottom: 1px solid var(--line); }
.mobile-nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--black);
  padding: .35rem 0;
  letter-spacing: .02em;
}
.mobile-nav-links a.active,
.mobile-nav-links a:hover { color: var(--orange); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn { font-weight: 500; transition: all .25s ease; }
.btn-sharp {
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .02em;
  padding: .75rem 1.6rem;
}
.btn-sharp.btn-lg { padding: .95rem 2.1rem; font-size: 1rem; }

.btn-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: var(--white) !important;
}

.btn-outline-dark {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.btn-light {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.btn-light:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* =========================================================
   HERO CAROUSEL
   ========================================================= */
.hero { position: relative; height: calc(100vh - var(--header-h)); min-height: 540px; max-height: 820px; overflow: hidden; background: var(--black); }
.hero-carousel, .hero-carousel .carousel-inner, .hero-carousel .carousel-item { height: 100%; }
.hero-image {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 2; padding: 2rem 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 400;
  color: var(--yellow);
  margin-bottom: 1.5rem;
  line-height: 1.05;
  text-shadow: 0 2px 30px rgba(0,0,0,.45);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--white);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 2.25rem;
  text-shadow: 0 1px 12px rgba(0,0,0,.55);
}
.hero-content .eyebrow {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  letter-spacing: 0.32em;
}
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.eyebrow-dark { color: var(--orange); }

.hero-controls {
  position: absolute;
  bottom: 32px; right: 32px;
  z-index: 5;
  display: flex; gap: .65rem;
}
.hero-ctrl {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.5);
  color: var(--white);
  font-size: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.hero-ctrl:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

.hero-indicators { bottom: 16px; }
.hero-indicators li {
  width: 28px; height: 2px; border-radius: 0;
  background: rgba(255,255,255,.5);
  border: none;
  opacity: 1;
  list-style: none;
  cursor: pointer;
}
.hero-indicators li.active { background: var(--yellow); }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 5rem 1.5rem; }
@media (min-width: 768px) { .section { padding: 6.5rem 2rem; } }

.section-light { background: transparent; }   /* lets dotted body bg show */
.section-card {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-dark { background: var(--black); color: var(--white); }
.section-dark .section-title { color: var(--yellow); }
.section-dark .lead-prose,
.section-dark .lead-prose-light,
.section-dark p { color: rgba(255,255,255,.85); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}
.title-rule {
  width: 60px; height: 3px; background: var(--yellow);
  margin-top: 1rem;
}

.lead-prose {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--black);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.lead-prose-light { color: rgba(255,255,255,.85); }

.section-divider-icon {
  font-size: 2rem;
  color: var(--orange);
  opacity: .8;
}

/* SPLIT (Why Choose Us) */
.section-split {
  background: var(--white);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-split .row { min-height: 480px; }
.split-image { position: relative; min-height: 320px; }
.split-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.split-content { padding: 4rem 1.5rem; max-width: 600px; margin: 0 auto; }
@media (min-width: 992px) {
  .split-content { padding: 5rem 4rem; }
}

/* SERVICES */
.service-item .service-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--yellow);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
  transition: all .25s ease;
}
.service-item:hover .service-icon {
  background: var(--yellow);
  color: var(--black);
}
.service-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--black);
  margin-bottom: .65rem;
}
.service-desc { color: var(--black); font-size: .95rem; opacity: .8; }

/* EXPERTISE */
.expertise-card { cursor: pointer; }
.expertise-image {
  height: 320px;
  overflow: hidden;
  margin-bottom: 1.1rem;
  position: relative;
}
.expertise-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.expertise-card:hover .expertise-image img { transform: scale(1.05); }
.expertise-title {
  font-family: var(--font-body);
  color: var(--black);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .25rem;
  letter-spacing: .02em;
}
.expertise-desc { color: var(--black); font-size: .9rem; }

.link-arrow {
  font-family: var(--font-body);
  color: var(--yellow);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.link-arrow:hover { color: var(--orange); }
.link-arrow i { transition: transform .2s ease; }
.link-arrow:hover i { transform: translateX(4px); }

/* CTA — black background, yellow button → orange on hover */
.section-cta {
  background: var(--black);
  color: var(--white);
  padding: 6rem 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.cta-subtitle {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: var(--font-body);
}
.section-cta .btn-light,
.section-cta .btn-primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.section-cta .btn-light:hover,
.section-cta .btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* TESTIMONIALS */
.stars { color: var(--yellow); font-size: 1rem; }
.testimonial-quote {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.testimonial-quote::before { content: '“'; font-family: var(--font-display); color: var(--yellow); font-size: 2rem; line-height: 0; vertical-align: -0.4rem; margin-right: .25rem; }
.testimonial-quote::after { content: '”'; font-family: var(--font-display); color: var(--yellow); font-size: 2rem; line-height: 0; vertical-align: -0.4rem; margin-left: .15rem; }
.testimonial-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--yellow);
  margin-bottom: 1rem;
}
.testimonial-name {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--black);
  font-size: .85rem;
}
.testimonial-role { color: var(--orange); font-size: .8rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  background-size: 18px 18px;
  background-position: center;
  background-repeat: no-repeat;
}

#testimonialCarousel .carousel-indicators {
  justify-content: center;
  gap: .5rem;
  margin-bottom: unset;
}

#testimonialCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  border: none;
}

#testimonialCarousel .carousel-indicators button.active {
  background-color: var(--yellow);
}

/* FOUNDER */
.section-founder { border-top: 1px solid var(--line); }
.founder-image-wrap {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}
.founder-image-shadow {
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: translate(14px, 14px);
  z-index: 0;
}
.founder-image {
  position: relative; z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(15%);
}
.founder-name {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-top: 1.25rem;
  color: var(--yellow);
  line-height: 1;
}
.founder-title {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .75rem;
  font-weight: 500;
  margin-top: .5rem;
}

/* =========================================================
   PAGE BANNER (Destinations / Contact)
   ========================================================= */
.page-banner { padding: 4rem 1.5rem 3rem; border-bottom: 1px solid var(--line); }
@media (min-width: 768px) { .page-banner { padding: 6rem 2rem 4rem; } }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--yellow);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

/* =========================================================
   DESTINATION CARDS
   ========================================================= */
.dest-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  height: 100%;
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
  overflow: hidden;
  border-radius: 6px;
}
.dest-card:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  transform: translateY(-3px);
  border-color: var(--yellow);
}
.dest-image { position: relative; height: 260px; overflow: hidden; }
.dest-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.dest-card:hover .dest-image img { transform: scale(1.06); }
.dest-tags { position: absolute; top: 12px; left: 12px; display: flex; flex-wrap: wrap; gap: .35rem; z-index: 2; }
.dest-tag {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .25rem .65rem;
  border-radius: 999px;
}
.dest-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.dest-location {
  color: var(--black);
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: .5rem;
  min-height: 75px;
}
.dest-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: .75rem;
}
.dest-country {
  display: block;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: .2rem;
}
.dest-desc { color: var(--black); font-size: .92rem; flex: 1; margin-bottom: 1.25rem; line-height: 1.65; opacity: .85; }
.dest-cta {
  display: block; text-align: center;
  padding: .7rem 1rem;
  border: 1px solid var(--black);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--black);
  background: transparent;
  border-radius: 999px;
  transition: all .25s ease;
}
.dest-cta:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

/* =========================================================
   DESTINATION MODAL (itinerary popup)
   ========================================================= */
.dest-card { cursor: pointer; }
.dest-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}
.expertise-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.dest-modal .modal-content {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}

.dest-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 5;
  background-color: rgba(255,255,255,.92);
  border-radius: 50%;
  padding: .65rem;
  opacity: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}

.dest-modal-hero {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.dest-modal-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.dest-modal-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,.65) 100%);
}
.dest-modal-hero-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 2rem;
  color: var(--white);
}
.dest-modal-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .35rem;
}
.dest-modal-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--yellow);
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.dest-modal-body { padding: 2rem 2rem .5rem; }
.dest-modal-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  opacity: .9;
  margin-bottom: 1.5rem;
}

.dest-modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: rgba(252, 188, 18, .08);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 575.98px) {
  .dest-modal-meta { grid-template-columns: 1fr; }
}
.dest-modal-meta-label {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .25rem;
}
.dest-modal-meta > div > span:not(.dest-modal-meta-label) {
  font-size: .92rem;
  color: var(--black);
  opacity: .85;
}

.dest-modal-subhead {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 1.25rem;
}

.dest-itinerary {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  border-left: 2px solid var(--yellow);
  padding-left: 1.5rem;
}
.dest-itinerary-step {
  position: relative;
  padding: 0 0 1.5rem .25rem;
}
.dest-itinerary-step::before {
  content: '';
  position: absolute;
  left: -1.71rem; top: .35rem;
  width: 12px; height: 12px;
  background: var(--yellow);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--yellow);
}
.dest-itinerary-step:last-child { padding-bottom: 0; }
.dest-itinerary-day {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .15rem;
}
.dest-itinerary-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 .25rem;
  letter-spacing: .01em;
}
.dest-itinerary-text {
  font-size: .9rem;
  color: var(--black);
  opacity: .82;
  margin: 0;
  line-height: 1.6;
}

.dest-modal-footer {
  border-top: 1px solid var(--line);
  padding: 1.25rem 2rem;
  background: var(--white);
  gap: .75rem;
}
.dest-modal-inquire { color: var(--black); }
/* --- Rich modal sections --------------------------------- */
.dm-section {
  margin-bottom: 2.25rem;
}
.dm-section-title {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
}

/* Nights table */
.dm-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.dm-nights-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.dm-nights-table thead th {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
  opacity: .55;
  padding: .5rem .75rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.dm-nights-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .15s;
}
.dm-nights-table tbody tr:last-child { border-bottom: none; }
.dm-nights-table tbody tr:hover { background: rgba(252,188,18,.06); }
.dm-nights-table td { padding: .75rem .75rem; vertical-align: top; line-height: 1.55; }
.dm-night {
  white-space: nowrap;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .05em;
  color: var(--orange);
  min-width: 72px;
}
.dm-loc {
  white-space: nowrap;
  font-weight: 600;
  color: var(--black);
  min-width: 100px;
}
.dm-secret { color: var(--black); opacity: .82; }

/* Highlights */
.dm-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.dm-highlight {
  background: rgba(252,188,18,.07);
  border-left: 3px solid var(--yellow);
  border-radius: 0 6px 6px 0;
  padding: .85rem 1rem;
}
.dm-highlight-name {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 .4rem;
  letter-spacing: .01em;
}
.dm-highlight-text {
  font-size: .88rem;
  color: var(--black);
  opacity: .8;
  margin: 0;
  line-height: 1.6;
}

/* Seasons */
.dm-seasons-list { display: flex; flex-direction: column; gap: .85rem; }
.dm-season {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .85rem 1rem;
}
.dm-season-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: .1rem;
}
.dm-season-name {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 .3rem;
}
.dm-season-vibe {
  font-size: .88rem;
  color: var(--black);
  opacity: .8;
  margin: 0 0 .4rem;
  line-height: 1.6;
}
.dm-season-temp {
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange);
}
.dm-season-temp .bi { margin-right: .2em; }
/* Pro Tip */
/* Option tabs (Europe dual-itinerary) */
.dm-tabs-nav {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.75rem;
  border-bottom: 2px solid var(--line);
  padding-bottom: 0;
}
.dm-tab-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: .75rem 1rem;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  text-align: left;
  border-radius: 6px 6px 0 0;
}
.dm-tab-btn:hover { background: rgba(252,188,18,.07); }
.dm-tab-btn.is-active {
  border-bottom-color: var(--yellow);
  background: rgba(252,188,18,.07);
}
.dm-tab-title {
  display: block;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: .01em;
}
.dm-tab-sub {
  display: block;
  font-size: .75rem;
  color: var(--black);
  opacity: .55;
  margin-top: .15rem;
  line-height: 1.3;
}
.dm-tab-btn.is-active .dm-tab-title { color: var(--black); }
.dm-tab-pane { display: none; }
.dm-tab-pane.is-active { display: block; }
@media (max-width: 575.98px) {
  .dm-tabs-nav { flex-direction: column; border-bottom: none; gap: .35rem; }
  .dm-tab-btn { border-bottom: none; border-left: 3px solid transparent; border-radius: 0 6px 6px 0; margin-bottom: 0; }
  .dm-tab-btn.is-active { border-left-color: var(--yellow); border-bottom: none; }
}
/* Pro Tip */
.dm-protip {
  background: rgba(254,144,27,.08);
  border: 1px solid rgba(254,144,27,.3);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.dm-protip-label {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .4rem;
}
.dm-protip-label .bi { margin-right: .3em; }
.dm-protip p {
  font-size: .92rem;
  color: var(--black);
  opacity: .85;
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 575.98px) {
  .dm-highlights-grid { grid-template-columns: 1fr; }
  .dm-nights-table { font-size: .82rem; }
  .dest-modal-body { padding: 1.5rem 1rem .5rem; }
  .dest-modal-footer { padding: 1rem; }
}
/* =========================================================
   CONTACT BANNER (image hero)
   ========================================================= */
.contact-banner {
  position: relative;
  width: 100%;
  height: clamp(320px, 50vh, 520px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.contact-banner-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-banner-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 65%, rgba(0,0,0,.7) 100%);
}
.contact-banner-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  max-width: 800px;
}
.contact-banner-eyebrow {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.contact-banner-title {
  font-family: var(--font-display);
  color: var(--yellow);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  text-shadow: 0 4px 22px rgba(0,0,0,.55);
}
.contact-banner-lead {
  color: var(--white);
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-list li i {
  font-size: 1.2rem;
  color: var(--orange);
  margin-top: .15rem;
}
.contact-list h4 {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .25rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.contact-list p { margin: 0; color: var(--black); font-size: .95rem; opacity: .85; }

.next-steps {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.75rem;
  border-radius: 6px;
}
.next-steps h4 {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 1.6rem;
  margin-bottom: .75rem;
  font-weight: 400;
}
.next-steps p { color: var(--black); font-size: .92rem; margin: 0; line-height: 1.7; opacity: .85; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 6px;
}
@media (min-width: 768px) { .form-card { padding: 3rem; } }

.contact-form .form-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .9rem;
  color: var(--black);
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: .8rem 1rem;
  font-size: 1rem;
  color: var(--black);
  font-family: var(--font-body);
}
.contact-form .form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 .15rem rgba(252, 188, 18, .2);
  background: var(--white);
}
.contact-form .form-control.is-invalid:focus {
  box-shadow: 0 0 0 .15rem rgba(220, 53, 69, .15);
}

/* Lighter placeholder text */
.contact-form .form-control::placeholder {
  color: #c0c0c0;
  opacity: 1;
}

/* Match form-select styling to form-control */
.contact-form .form-select {
  border-radius: 8px;
  border: 1px solid var(--line);
  background-color: var(--white);
  padding: .8rem 2.5rem .8rem 1rem;
  font-size: 1rem;
  color: var(--black);
  font-family: var(--font-body);
}
.contact-form .form-select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 .15rem rgba(252, 188, 18, .2);
}
.contact-form .form-select.is-invalid:focus {
  box-shadow: 0 0 0 .15rem rgba(220, 53, 69, .15);
}

/* Required (*) and optional markers */
.contact-form .req {
  color: var(--orange);
  font-weight: 600;
  margin-left: 2px;
}
.contact-form .opt {
  color: var(--black);
  opacity: .55;
  font-weight: 400;
  font-size: .8rem;
  margin-left: 4px;
}

.contact-form .form-hint {
  display: block;
  margin-top: .35rem;
  font-size: .78rem;
  color: var(--black);
  opacity: .6;
}
/* Tom Select — brand overrides */
.contact-form .ts-wrapper .ts-control {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: .75rem 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--black);
  min-height: 52px;
  box-shadow: none;
  cursor: pointer;
}
.contact-form .ts-wrapper.focus .ts-control,
.contact-form .ts-wrapper .ts-control:focus-within {
  border-color: var(--yellow);
  box-shadow: 0 0 0 .15rem rgba(252, 188, 18, .2);
  outline: none;
}
.contact-form .ts-wrapper.is-invalid .ts-control {
  border-color: #dc3545;
}
.contact-form .ts-wrapper .ts-control .item {
  background: var(--yellow);
  color: var(--black);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: .85rem;
  font-weight: 500;
}
.contact-form .ts-wrapper .ts-control input::placeholder {
  color: #c0c0c0;
}
.contact-form .ts-dropdown {
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  font-family: var(--font-body);
  font-size: .95rem;
}
.contact-form .ts-dropdown .option.selected,
.contact-form .ts-dropdown .option:hover {
  background: rgba(252, 188, 18, .15);
  color: var(--black);
}
.contact-form .ts-dropdown .option.active {
  background: var(--yellow);
  color: var(--black);
}
/* Make the readonly date input look interactive (it opens flatpickr) */
.contact-form #travel_date {
  background-color: var(--white);
  cursor: pointer;
}

/* Flatpickr brand tint */
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.flatpickr-day.today { border-color: var(--orange); }
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekday {
  color: var(--black);
}

.success-icon { font-size: 4.5rem; color: var(--yellow); }

/* form card heading */
.form-card h3.brand-text-serif {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

/* contact column heading */
.col-lg-4 > h3.h2.brand-text-serif {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
}

/* =========================================================
   FOOTER  (white background so the black + yellow logo is visible)
   ========================================================= */
.site-footer {
  background-color: var(--white);
  background-image: radial-gradient(circle, var(--dot) 1px, transparent 1.2px);
  background-size: 22px 22px;
  color: var(--black);
  padding: 4.5rem 1.5rem 2rem;
  border-top: 4px solid var(--yellow);
}
.site-footer h3 {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .7rem; font-size: .92rem; }
.site-footer ul li a { color: var(--black); opacity: .8; }
.site-footer ul li a:hover { color: var(--orange); opacity: 1; }

/* Footer brand lock-up — black icon + yellow text on a yellow chip,
   so the black/yellow logo always reads against the page. */
.brand-footer {
  background: var(--yellow);
  color: var(--black);
  padding: .55rem 1rem;
  border-radius: 999px;
}
.brand-footer i {
  color: var(--black);
  font-size: 1.35rem;
}
.brand-footer .brand-text {
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
}
.brand-footer:hover { background: var(--orange); }
.brand-footer:hover i,
.brand-footer:hover .brand-text { color: var(--white); }

.footer-blurb {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--black);
  opacity: .85;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.footer-socials a {
  color: var(--black);
  font-size: 1.1rem;
  margin-right: 1rem;
  opacity: .75;
  transition: color .2s ease, opacity .2s ease;
}
.footer-socials a:hover { color: var(--orange); opacity: 1; }
.footer-contact-list li {
  display: flex; gap: .65rem; align-items: flex-start;
  color: var(--black);
  opacity: .85;
}
.footer-contact-list li i { color: var(--orange); margin-top: .25rem; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-size: .82rem;
  color: var(--black);
  opacity: .7;
}
.footer-bottom a { color: var(--black); }
.footer-bottom a:hover { color: var(--orange); }

/* =========================================================
   ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.stagger-children > * { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.stagger-children.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger-children.is-visible > *:nth-child(1) { transition-delay: .05s; }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: .15s; }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: .25s; }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: .35s; }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: .45s; }
.stagger-children.is-visible > *:nth-child(6) { transition-delay: .55s; }

.reveal-on-load { animation: rise 1s ease both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   RESPONSIVE FIXES
   ========================================================= */
@media (max-width: 767.98px) {
  .hero-controls { bottom: 18px; right: 14px; }
  .hero-controls .hero-ctrl { width: 38px; height: 38px; font-size: .95rem; }
  .section { padding: 3.5rem 1.25rem; }
  .split-content { padding: 2.75rem 1.5rem; }
  .section-cta { padding: 4rem 1.25rem; }
}
