/* North & South Bandung — tour itinerary landing */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

body.mpv-nsb-landing {
  --nsb-teal: #0F4C45;
  --nsb-teal-mid: #16645C;
  --nsb-teal-deep: #0A342F;
  --nsb-gold: #C9A227;
  --nsb-gold-soft: #E7CD6E;
  --nsb-cream: #FAF6EC;
  --nsb-ink: #22291F;
  --nsb-muted: #5C5746;
  --nsb-line: #D9D2C0;
  --nsb-white: #fff;
  --nsb-display: 'Fraunces', Georgia, serif;
  --nsb-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--nsb-cream);
  color: var(--nsb-ink);
}

body.mpv-nsb-landing .site-content,
body.mpv-nsb-landing #primary,
body.mpv-nsb-landing .ast-container,
body.mpv-nsb-landing .entry-content {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.mpv-nsb-landing .entry-header,
body.mpv-nsb-landing .ast-single-entry-banner,
body.mpv-nsb-landing .post-navigation {
  display: none !important;
}

.mpv-nsb {
  font-family: var(--nsb-sans);
  overflow-x: hidden;
}

.mpv-nsb * { box-sizing: border-box; }

/* Hero */
.mpv-nsb-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: flex-end;
  color: #FFFbf0;
}

.mpv-nsb-hero__media {
  position: absolute;
  inset: 0;
}

.mpv-nsb-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  animation: nsbKen 16s ease-out forwards;
}

@keyframes nsbKen {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.mpv-nsb-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,32,29,.45) 0%, rgba(6,32,29,.35) 35%, rgba(6,32,29,.88) 100%),
    linear-gradient(90deg, rgba(6,32,29,.5), transparent 60%);
}

.mpv-nsb-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 52px;
  animation: nsbRise .85s cubic-bezier(.22,1,.36,1) both;
}

@keyframes nsbRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

.mpv-nsb-kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--nsb-gold);
  margin: 0 0 10px;
}

.mpv-nsb-kicker--on-dark { color: var(--nsb-gold-soft); }

.mpv-nsb-hero__title {
  font-family: var(--nsb-display);
  font-weight: 600;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 24px;
  max-width: 14ch;
  color: #FFFbf0;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}

.mpv-nsb-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mpv-nsb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 10px;
  font-family: var(--nsb-sans);
  font-weight: 700;
  font-size: .93rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.mpv-nsb-btn:hover { transform: translateY(-2px); }

.mpv-nsb-btn--primary {
  background: var(--nsb-gold);
  color: var(--nsb-teal-deep);
}

.mpv-nsb-btn--primary:hover { background: var(--nsb-gold-soft); color: var(--nsb-teal-deep); }

.mpv-nsb-btn--ghost {
  background: rgba(6,32,29,.35);
  color: #FFFbf0;
  border-color: rgba(255,251,240,.65);
}

.mpv-nsb-btn--ghost:hover {
  background: rgba(6,32,29,.55);
  color: #fff;
}

.mpv-nsb-btn--block {
  width: 100%;
  margin-top: 8px;
}

/* Day sections */
.mpv-nsb-day {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.mpv-nsb-day__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.mpv-nsb-day--alt .mpv-nsb-day__grid {
  grid-template-columns: 1fr 1.05fr;
}

.mpv-nsb-h2 {
  font-family: var(--nsb-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.2;
  color: var(--nsb-teal);
  margin: 0 0 16px;
}

.mpv-nsb-lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--nsb-muted);
  margin: 0 0 22px;
}

.mpv-nsb-lead strong { color: var(--nsb-ink); font-weight: 700; }

.mpv-nsb-stops {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mpv-nsb-stops li {
  font-size: .8rem;
  font-weight: 600;
  color: var(--nsb-teal);
  background: #E7EEE6;
  border: 1px solid rgba(15,76,69,.1);
  padding: 7px 12px;
  border-radius: 8px;
}

.mpv-nsb-stops a {
  color: inherit;
  text-decoration: none;
}

.mpv-nsb-stops a:hover {
  text-decoration: underline;
}

.mpv-nsb-lead a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(15,76,69,.35);
}

.mpv-nsb-lead a:hover {
  text-decoration-color: rgba(15,76,69,.7);
}

.mpv-nsb-day__visual {
  position: relative;
  min-height: 360px;
}

.mpv-nsb-day__visual > img:first-child {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.mpv-nsb-day__visual-2 {
  position: absolute;
  width: 46%;
  height: 180px;
  object-fit: cover;
  right: -12px;
  bottom: -28px;
  border: 5px solid var(--nsb-cream);
  border-radius: 4px;
  box-shadow: 0 16px 40px -20px rgba(15,76,69,.45);
}

.mpv-nsb-day--alt .mpv-nsb-day__visual-2 {
  right: auto;
  left: -12px;
}

/* Photo strip */
.mpv-nsb-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-height: 180px;
}

.mpv-nsb-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

/* Pricing + embedded trip calculator */
.mpv-nsb-pricing {
  background: var(--nsb-cream);
  color: var(--nsb-ink);
  padding: clamp(56px, 8vw, 88px) 20px;
}

.mpv-nsb-pricing__inner {
  width: min(640px, 100%);
  margin: 0 auto;
}

.mpv-nsb-pricing__inner--wide {
  width: min(1100px, 100%);
}

.mpv-nsb-pricing .mpv-nsb-kicker { color: var(--nsb-gold); }
.mpv-nsb-pricing .mpv-nsb-h2 { color: var(--nsb-teal); }

.mpv-nsb-pricing__intro {
  max-width: 54ch;
  color: var(--nsb-muted);
  font-size: .98rem;
  line-height: 1.55;
  margin: 0 0 28px;
}

.mpv-nsb-calc {
  background: var(--nsb-white);
  border: 1px solid var(--nsb-line);
  border-radius: 16px;
  padding: clamp(12px, 2vw, 20px);
  box-shadow: 0 16px 40px -28px rgba(15,76,69,.35);
}

.mpv-nsb-calc #mpv-root,
.mpv-nsb-calc #mpv-calc {
  max-width: none;
  margin: 0;
}

.mpv-nsb-calc .mpv-header {
  margin-bottom: 8px;
}

/* Reveal */
.mpv-nsb-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.mpv-nsb-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .mpv-nsb-day__grid,
  .mpv-nsb-day--alt .mpv-nsb-day__grid {
    grid-template-columns: 1fr;
  }

  .mpv-nsb-day--alt .mpv-nsb-day__visual {
    order: -1;
  }

  .mpv-nsb-day__visual > img:first-child {
    height: 280px;
  }

  .mpv-nsb-day__visual-2 {
    width: 42%;
    height: 120px;
    bottom: -16px;
    right: 12px;
    left: auto;
  }

  .mpv-nsb-day--alt .mpv-nsb-day__visual-2 {
    left: 12px;
    right: auto;
  }

  .mpv-nsb-strip { grid-template-columns: 1fr; }
  .mpv-nsb-strip img { height: 160px; }
}

@media (max-width: 560px) {
  .mpv-nsb-day { padding: 52px 0; }
  .mpv-nsb-btn { width: 100%; }
  .mpv-nsb-cta { flex-direction: column; }
}
