:root {
  --brand: #d0473e;
  --brand-soft: #f4b4ae;
  --ink: #111;
  --muted: #666;
  --text: #444;
  --line: #ebebeb;
  --radius: 8px;
  --wrap: 1440px;
  --gap: 20px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Instrument Sans", system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 14px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 .55rem;
}
.kicker.light { color: var(--brand-soft); }
h1, h2, h3 { color: var(--ink); letter-spacing: -0.02em; font-weight: 600; }
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.12; margin: 0; }
h2 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); margin: 0; text-transform: uppercase; letter-spacing: .04em; }
h3 { font-size: 15px; margin: 0; }
.lede { max-width: 42rem; color: var(--muted); margin: .55rem 0 0; }
.muted { color: var(--muted); font-size: .9rem; }
.text-link { color: var(--brand); font-weight: 600; font-size: 13px; white-space: nowrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 22px; border-radius: 4px; border: 0;
  font-weight: 600; font-size: 13px; cursor: pointer; letter-spacing: .02em;
}
.btn-brand { background: var(--brand); color: #fff; }
.btn-dark { background: #111; color: #fff; }
.btn-white { background: #fff; color: #111; }
.btn-outline { background: transparent; color: #fff; border: 1px solid #fff; }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.topbar { background: #4b5344; color: #fff; font-size: 11px; }
.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  min-height: 44px;
  padding: .4rem 0;
  overflow-x: auto;
}
.topbar a { color: #fff; }
.topbar a:hover { color: #fff; opacity: .85; }
.topbar .sep { margin: 0 .45rem; opacity: .7; font-weight: 500; }
.topbar-social { display: flex; gap: 8px; flex-shrink: 0; }
.topbar-social a {
  width: 28px; height: 28px; border: 1px solid #fff;
  border-radius: 999px; display: grid; place-items: center; color: #fff;
  flex-shrink: 0;
}
.topbar-social a:hover { opacity: 1; background: rgba(255,255,255,.12); }
.topbar-social svg { width: 13px; height: 13px; fill: currentColor; }
.topbar-phones {
  margin: 0; text-align: center; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; white-space: nowrap; color: #fff;
}
.topbar-phones a { font-weight: 700; }
.topbar-contact {
  background: #fff; color: #111 !important; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; height: 30px; padding: 0 16px; border-radius: 2px;
  text-transform: uppercase; white-space: nowrap; display: inline-flex; align-items: center;
  flex-shrink: 0;
}
.topbar-contact:hover { color: #111 !important; opacity: 1; background: #f4f4f4; }
.primary-nav .nav-key > a { color: var(--brand); font-weight: 650; }
.nav-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .75rem;
  padding: .55rem 20px;
  min-height: 72px;
}
.primary-nav { display: none; justify-self: center; margin-left: 0; }
.logo { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.logo-wordmark strong {
  color: #111; font-size: 22px; font-weight: 700; letter-spacing: -0.03em;
}
.logo img { max-height: 72px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.12; }
.logo-text strong { color: #111; font-size: 16px; font-weight: 700; }
.logo-text small { font-size: 9px; letter-spacing: .18em; color: #888; text-transform: uppercase; }
.primary-nav > ul { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.primary-nav > ul > li { position: relative; }
.primary-nav > ul > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: .7rem .72rem; font-size: 13px; font-weight: 500; color: #333;
}
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--brand); }
.caret { font-size: 9px; opacity: .55; }
.sub-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.08); padding: .45rem; z-index: 20;
  list-style: none; margin: 0;
}
.has-sub:hover > .sub-menu, .has-sub:focus-within > .sub-menu { display: block; }
.sub-menu a { display: block; padding: .55rem .75rem; font-size: 13px; border-radius: 6px; color: #444; }
.sub-menu a:hover { background: #f7f7f7; color: var(--brand); }
.nav-actions { margin-left: .5rem; display: flex; gap: .45rem; align-items: center; }
.icon-btn, .menu-toggle {
  width: 38px; height: 38px; border: 0; background: transparent;
  display: grid; place-items: center; color: #111;
}
.menu-toggle { border: 1px solid var(--line); background: #fff; border-radius: 6px; }
.mobile-panel { border-top: 1px solid #eee; padding: 1rem 1.25rem 1.2rem; background: #fff; }
.mobile-panel ul { list-style: none; margin: 0; padding: 0; }
.mobile-panel a { display: block; padding: .7rem 0; border-bottom: 1px solid #f3f3f3; }
.mobile-panel .sub-menu { display: block; position: static; border: 0; box-shadow: none; padding: 0 0 .5rem 1rem; }

.hero { position: relative; color: #fff; overflow: hidden; background: #111; aspect-ratio: 1920 / 800; min-height: 360px; max-height: 800px; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity .6s ease; display: block;
}
.hero-slide.is-active { opacity: 1; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.18) 55%, rgba(0,0,0,.12) 100%); }
.hero-copy {
  position: relative; height: 100%; min-height: inherit;
  display: flex; flex-direction: column; justify-content: center; padding: 4.5rem 20px 3.2rem;
}
.hero-text { display: none; max-width: 640px; }
.hero-text.is-active { display: block; }
.hero-text h1 { color: #fff; font-size: clamp(2.15rem, 5vw, 4rem); }
.hero-text p { color: rgba(255,255,255,.88); max-width: 32rem; margin: .85rem 0 0; font-size: 1.02rem; }
.hero-cta { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-nav {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px; pointer-events: none; z-index: 2;
}
.hero-nav button, .slider-nav button {
  pointer-events: auto; width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid #eee; background: #fff; color: #111; cursor: pointer;
  display: grid; place-items: center; box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.hero-dots { display: flex; gap: .4rem; margin-top: 1.7rem; }
.hero-dots button { width: 18px; height: 4px; border: 0; border-radius: 99px; background: rgba(255,255,255,.4); padding: 0; }
.hero-dots button.is-active { width: 34px; background: #fff; }

.hero-pills { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }
.hero-pills a {
  display: inline-flex; align-items: center; height: 40px; padding: 0 1.1rem;
  border-radius: 999px; background: rgba(255,255,255,.92); color: #111;
  font-size: 13px; font-weight: 600;
}
.hero-pills a:hover { background: #fff; color: var(--brand); }

.uh-band { position: relative; color: #fff; overflow: hidden; }
.uh-photos { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; }
.uh-photo { background-size: cover; background-position: center; }
.uh-shade { position: absolute; inset: 0; background: rgba(20, 16, 10, .48); }
.uh-center { position: relative; z-index: 1; text-align: center; padding: 4.2rem 20px 3.2rem; min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.uh-center h2 { color: #fff; text-transform: uppercase; font-size: clamp(2rem, 4.2vw, 3.3rem); letter-spacing: .04em; }
.uh-center > p { margin: .7rem auto 0; max-width: 38rem; color: rgba(255,255,255,.92); }
.uh-feats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem 1.4rem;
  list-style: none; padding: 0; margin: 1.5rem 0 0; color: #fff; font-weight: 600; font-size: 13px;
}
.uh-cta { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; justify-content: center; }
.uh-usps { position: relative; z-index: 1; background: #3c4635; }
.uh-usps-inner { display: grid; gap: .8rem; padding: 1.05rem 20px; text-align: center; }
.uh-usps p { margin: 0; font-size: 13px; font-weight: 600; color: #fff; }

.hero-rail {
  display: none; position: absolute; left: 64px; top: 50%; transform: translateY(-50%);
  z-index: 3; flex-direction: column; gap: .15rem;
  background: rgba(0,0,0,.38); padding: .7rem .85rem; border-radius: 8px;
}
.hero-rail a { color: #fff; font-size: 13px; font-weight: 600; padding: .22rem 0; }
.hero-rail a:hover { color: var(--brand-soft); }

.view-all-wrap { text-align: center; margin: 1.6rem 0 0; }
.view-all-btn { min-width: 140px; background: #333; }

.sacred-strip { background: #111; color: #fff; border-top: 1px solid #222; }
.sacred-strip-inner { display: grid; grid-template-columns: 1fr 1fr; }
.sacred-strip a { display: flex; flex-direction: column; gap: .2rem; padding: 1.05rem 1rem; border-right: 1px solid #262626; border-bottom: 1px solid #262626; }
.sacred-strip a:hover { color: var(--brand-soft); }
.sacred-strip strong { font-size: 14px; letter-spacing: .02em; }
.sacred-strip span { font-size: 12px; color: #9a9a9a; }
.promo-sacred { padding-top: 2.2rem; padding-bottom: 0.4rem; }

.section { padding: 3.2rem 0; }
.section.alt, .tour-row.alt { background: #fafafa; }
.tour-row { padding: 3.2rem 0; }
.section-head {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  margin-bottom: 1.7rem;
}
.section-head p { margin: .55rem auto 0; color: var(--muted); max-width: 40rem; font-size: 14px; text-transform: none; letter-spacing: 0; }
.section-head h2 { text-transform: uppercase; }
.section-head h2.normal-case { text-transform: none; }

.slider-shell { position: relative; }
.slider {
  display: flex; gap: var(--gap); overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding: 4px 2px 12px; align-items: flex-start;
}
.slider::-webkit-scrollbar { display: none; }
.slider-nav { display: flex; gap: 10px; }
.slider-nav-float {
  position: absolute; top: 28%; left: 0; right: 0;
  justify-content: space-between; z-index: 3; pointer-events: none; margin: 0;
}
.slider-nav-float button { pointer-events: auto; }

.dest-card {
  position: relative; flex: 0 0 72%; max-width: 280px; aspect-ratio: 3 / 4;
  border-radius: 10px; overflow: hidden; color: #fff; scroll-snap-align: start;
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .5s; }
.dest-card:hover img { transform: scale(1.05); }
.dest-card-overlay {
  position: absolute; inset: auto 0 0; padding: 1.15rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
}
.dest-card-overlay p { margin: 0; font-size: 1.15rem; font-weight: 650; }
.dest-card-overlay small { opacity: .85; font-size: 12px; }

.tour-card {
  flex: 0 0 78%; max-width: 320px; display: flex; flex-direction: column;
  background: transparent; scroll-snap-align: start; color: inherit;
}
.tour-card-media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 10px; background: #eee; }
.tour-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tour-card:hover img { transform: scale(1.04); }
.badge {
  position: absolute; top: 12px; left: 12px; background: #fff; color: #111;
  font-size: 11px; font-weight: 600; padding: .28rem .6rem; border-radius: 999px;
}
.badge-red { left: auto; right: 12px; background: var(--brand); color: #fff; }
.tour-card-body { padding: .95rem 2px 0; }
.tour-card-body h3 { margin: 0; font-size: 15px; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em; }
.tour-card:hover h3 { color: var(--brand); }
.tour-card .meta { font-size: 13px; color: #777; margin: .45rem 0 0; }
.price-line { margin: .7rem 0 0; font-size: 15px; color: #111; display: flex; flex-wrap: wrap; gap: .35rem; align-items: baseline; }
.price-line span { font-weight: 500; color: #555; }
.price-line strong { font-weight: 650; font-size: 1.15rem; }
.price { font-size: 1.35rem; font-weight: 650; color: #111; margin: .1rem 0 0; }
.price.lg { font-size: 1.8rem; }

.promo-grid { display: grid; gap: 16px; padding: 1.5rem 20px 2.8rem; }
.promo { position: relative; min-height: 380px; border-radius: 12px; overflow: hidden; color: #fff; }
.promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,.42);
}
.promo div {
  position: relative; z-index: 1; min-height: 380px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 2.4rem 1.8rem;
}
.promo h3 {
  color: #fff; font-size: clamp(1.7rem, 2.6vw, 2.35rem); font-weight: 700;
  text-transform: none; letter-spacing: -0.02em; margin: 0;
}
.promo p {
  margin: .7rem 0 0; max-width: 26rem; color: rgba(255,255,255,.95);
  font-size: 15px; font-weight: 400; line-height: 1.45;
}
.promo-btn {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1.25rem; height: 42px; padding: 0 1.6rem;
  border-radius: 999px; background: #fff; color: #111;
  font-size: 13px; font-weight: 700;
}

.review-row { display: flex; gap: 16px; overflow: auto; padding-bottom: .5rem; scrollbar-width: none; }
.review-row::-webkit-scrollbar { display: none; }
.review-card {
  min-width: min(100%, 22rem); max-width: 360px; flex: 0 0 86%;
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
  display: flex; flex-direction: column; overflow: hidden; scroll-snap-align: start;
}
.review-body { padding: 1.35rem 1.35rem 1.1rem; }
.review-stars { display: flex; gap: 2px; margin-bottom: .55rem; }
.review-stars svg { width: 14px; height: 14px; fill: #e2b93b; }
.review-name { margin: 0; font-weight: 700; color: #111; font-size: 15px; }
.review-card blockquote { margin: .7rem 0 0; font-size: .92rem; color: #444; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.review-tour {
  display: grid; grid-template-columns: 72px 1fr; gap: .75rem; align-items: center;
  border-top: 1px solid var(--line); padding: .9rem 1.1rem 1rem;
}
.review-tour img { width: 72px; height: 90px; object-fit: cover; border-radius: 6px; }
.review-tour strong { display: block; font-size: 13px; color: #111; line-height: 1.3; }
.review-tour small { display: block; color: #777; font-size: 12px; margin-top: .2rem; }
.review-tour-fallback { margin: 0; padding: .9rem 1.2rem 1.1rem; border-top: 1px solid var(--line); font-size: 13px; color: #777; }

.page-hero { padding: 3.2rem 0 2rem; background: #f7f7f7; position: relative; overflow: hidden; }
.page-hero.has-image { min-height: 38vh; color: #fff; display: flex; align-items: flex-end; }
.page-hero.has-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero .shade { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.page-hero-inner { position: relative; padding-bottom: 2rem; }
.page-hero.has-image h1, .page-hero.has-image .lede { color: #fff; }
.page-hero h1 { text-transform: none; }

.filters { display: flex; flex-wrap: wrap; gap: .75rem; border: 1px solid var(--line); border-radius: 10px; padding: 1rem; background: #fff; margin-bottom: 1.2rem; }
.filters label { display: flex; flex-direction: column; gap: .3rem; font-size: 12px; color: #777; flex: 1; min-width: 140px; }
.filters input, .filters select, .inquiry-form input, .inquiry-form textarea {
  border: 1px solid var(--line); border-radius: 6px; height: 40px; padding: 0 .75rem; font: inherit;
}
.inquiry-form textarea { height: auto; padding: .6rem .75rem; width: 100%; }
.inquiry-form label, .inquiry-form { display: grid; gap: .55rem; }
.form-grid { display: grid; gap: .7rem; }
.detail-grid { display: grid; gap: 2rem; padding: 3rem 20px; }
.sidebar-card { border: 1px solid var(--line); border-radius: 10px; padding: 1.2rem; height: fit-content; }
.chip-grid { display: grid; gap: .5rem; grid-template-columns: 1fr 1fr; padding: 0; list-style: none; }
.chip-grid li { border: 1px solid var(--line); background: #fafafa; border-radius: 10px; padding: .7rem .9rem; font-size: .9rem; }
.two-col { display: grid; gap: 1.2rem; }
.accordion details { border-bottom: 1px solid var(--line); padding: .7rem 0; }
.stats { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.stats div { border: 1px solid var(--line); border-radius: 10px; padding: 1.2rem; text-align: center; }
.stats strong { display: block; font-size: 1.8rem; color: #111; }
.office-card { border: 1px solid var(--line); border-radius: 10px; padding: 1rem; margin: .7rem 0; }
.plain { list-style: none; padding: 0; }
.journal-list { display: grid; gap: .8rem; }
.journal-card { display: block; border: 1px solid var(--line); border-radius: 10px; padding: 1.2rem; }
.empty { border: 1px dashed #ccc; border-radius: 10px; padding: 2.5rem; text-align: center; background: #fafafa; }
.archive-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.archive-grid .tour-card { flex: none; max-width: none; }

.site-footer { background: #f6f5f1; color: #555; }
.newsletter-bar { background: #4b5344; color: #fff; padding: 2.2rem 0; }
.newsletter-bar h2 { color: #fff; text-transform: uppercase; font-size: 1.4rem; }
.newsletter-bar p { margin: .4rem 0 0; color: rgba(255,255,255,.78); }
.newsletter-bar-inner { display: grid; gap: 1.2rem; align-items: center; }
.newsletter-bar .newsletter { margin: 0; max-width: 420px; }
.newsletter-bar .newsletter input { background: #fff; color: #111; border-color: #fff; }
.footer-grid { display: grid; gap: 1.8rem; padding: 3.2rem 20px 2.4rem; }
.footer-help { font-size: 13px; color: #666; line-height: 1.55; margin: .7rem 0 0; }
.footer-brand { color: #111; font-weight: 700; font-size: 1.1rem; margin: 0 0 .6rem; }
.hashtag { color: var(--brand); }
.site-footer h3 { color: #111; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin: 0; }
.site-footer ul { list-style: none; padding: 0; margin: .85rem 0 0; }
.site-footer li { margin: .4rem 0; }
.site-footer a:hover { color: #111; }
.newsletter { display: flex; gap: .4rem; margin-top: .8rem; }
.newsletter input { flex: 1; height: 42px; border: 1px solid #ddd; background: #fff; color: #111; border-radius: 4px; padding: 0 .8rem; }
.footer-bottom { border-top: 1px solid #e6e3db; padding: 1rem 0; font-size: 12px; color: #888; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; }
.footer-social { display: flex; gap: 1rem; margin: 0; }
.wa-float {
  position: fixed; right: 18px; bottom: 18px; width: 56px; height: 56px; border-radius: 999px;
  background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.22); z-index: 40;
}

@media (min-width: 768px) {
  .dest-card { flex-basis: calc((100% - 40px) / 3); max-width: none; }
  .tour-card { flex-basis: calc((100% - 40px) / 3); max-width: none; }
  .review-card { flex-basis: calc((100% - 16px) / 2); max-width: none; }
  .promo-grid, .detail-grid, .two-col, .form-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1025px) {
  .primary-nav { display: block; }
  .menu-toggle { display: none; }
  .dest-card { flex-basis: calc((100% - 60px) / 4); }
  .tour-card { flex-basis: calc((100% - 60px) / 4); }
  .review-card { flex-basis: calc((100% - 32px) / 3); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(5, 1fr); }
  .newsletter-bar-inner { grid-template-columns: 1fr auto; }
  .hero { min-height: 480px; }
  .hero-rail { display: flex; }
  .uh-usps-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .nav-row { grid-template-columns: auto auto; }
  .topbar { font-size: 10px; }
}
