/* Nancy Tours Costa Rica — Home page only
   =====================================================================
   Page-specific styles for home.html. Shared chrome (nav, footer, btn,
   marquee, tour-card, wa-float) lives in chrome.css. */

/* ── Hero ─────────────────────────────────────────────── */
.nt-hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #0d0d0a;
}
.nt-hero-video {
  position: absolute;
  inset: 0;
  background: #0d0d0a;
  overflow: hidden;
}
.nt-hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease;
  will-change: opacity;
}
.nt-hero-video video.is-active { opacity: 1; }

.nt-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,10,0.35) 0%, rgba(13,13,10,0.3) 50%, rgba(13,13,10,0.85) 100%);
}

.nt-hero-text {
  position: relative;
  z-index: 2;
  padding: 108px 48px 56px;
  max-width: 760px;
}
.nt-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 13px;
  border: 1px solid rgba(250,245,231,0.3);
  border-radius: 999px;
  margin-bottom: 18px;
  color: #faf5e7;
}
.nt-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b5532e;
}
.nt-hero-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, min(6.5vw, 12vh), 104px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0;
  color: #faf5e7;
}
.nt-hero-accent { color: #b5532e; }
.nt-hero-lead {
  font-size: 16px;
  line-height: 1.55;
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(250,245,231,0.85);
}
.nt-hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.nt-hero-corner {
  position: absolute;
  bottom: 56px;
  right: 48px;
  display: flex;
  gap: 20px;
  z-index: 2;
}
.nt-corner-stat {
  padding: 12px 18px;
  border-left: 2px solid #b5532e;
  display: flex;
  flex-direction: column;
  color: #faf5e7;
}
.nt-corner-stat strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: #faf5e7;
}
.nt-corner-stat span {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(250,245,231,0.6);
  margin-top: 2px;
  text-transform: uppercase;
}

/* ── Audio chip ──────────────────────────────────────── */
.nt-video-chip {
  position: absolute;
  top: 110px;
  right: 48px;
  background: rgba(13,13,10,0.55);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(250,245,231,0.18);
  padding: 14px 16px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 280px;
  max-width: 320px;
  cursor: pointer;
  user-select: none;
  transition: border-color .2s, box-shadow .2s;
  z-index: 3;
  color: #faf5e7;
}
.nt-video-chip.is-playing {
  border-color: rgba(181,83,46,0.55);
  box-shadow: 0 0 0 1px rgba(181,83,46,0.25), 0 8px 24px rgba(181,83,46,0.18);
}
.nt-chip-row {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.nt-chip-live {
  color: #b5532e;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.nt-chip-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b5532e;
  animation: nt-pulse 1.2s ease-in-out infinite;
}
.nt-chip-scrub {
  height: 3px;
  background: rgba(250,245,231,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.nt-chip-scrub-fill {
  width: 36%;
  height: 100%;
  background: #b5532e;
}
.nt-chip-foot { display: flex; align-items: center; gap: 10px; }
.nt-chip-play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #b5532e;
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  flex-shrink: 0;
}
.nt-video-chip.is-playing .nt-chip-play { padding-left: 0; }
.nt-chip-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes nt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

/* ── Tours section ───────────────────────────────────── */
.nt-tours {
  background: #faf5e7;
  color: #1a160e;
  padding: 128px 48px;
}
.nt-tours-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 32px;
  flex-wrap: wrap;
}
.nt-view-all {
  font-size: 13px;
  font-weight: 700;
  color: #b5532e;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.nt-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Differentiators (over photo band) ─────────────── */
.nt-diff {
  position: relative;
  overflow: hidden;
  padding: 128px 48px;
}
.nt-diff-bg { position: absolute; inset: 0; }
.nt-diff-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,58,43,0.85);
}
.nt-diff-inner { position: relative; }
.nt-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

/* Value card — platinum pearl base, iridescent foil overlay */
.nt-value-card {
  perspective: 900px;
  min-height: 340px;
}
.nt-value-shell {
  position: relative;
  min-height: 340px;
  height: 100%;
  border-radius: 14px;
  background: linear-gradient(140deg, #d8d1be 0%, #f4eedd 28%, #c5beaa 55%, #ece6d3 80%, #d2cbb8 100%);
  box-shadow:
    0 14px 28px -12px rgba(0,0,0,0.42),
    0 0 0 1px rgba(0,0,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.45);
  overflow: hidden;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
}
.nt-value-card[data-active="1"] .nt-value-shell {
  box-shadow:
    0 30px 60px -18px rgba(0,0,0,0.55),
    0 0 0 1px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 rgba(0,0,0,0.15);
  transition: box-shadow .2s, transform .12s ease-out;
}

.nt-value-card--featured .nt-value-shell {
  background: linear-gradient(140deg, #9a4424 0%, #d77544 38%, #b5532e 58%, #8a3a1f 100%);
  color: #faf5e7;
}

.nt-irid {
  position: absolute;
  inset: 0;
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0.95;
}
.nt-value-card--featured .nt-irid {
  mix-blend-mode: soft-light;
  opacity: 1;
}
.nt-irid-band {
  position: absolute;
  inset: -55%;
  filter: blur(20px);
  will-change: transform;
}
.nt-irid-band-0 { background: linear-gradient(180deg, transparent 0%, hsla(16, 65%, 52%, 0.55) 50%, transparent 100%); animation: nt-irid-0 6s ease-in-out infinite; }
.nt-irid-band-1 { background: linear-gradient(180deg, transparent 0%, hsla(34, 78%, 58%, 0.55) 50%, transparent 100%); animation: nt-irid-1 6.4s ease-in-out infinite; animation-delay: -.5s; }
.nt-irid-band-2 { background: linear-gradient(180deg, transparent 0%, hsla(48, 60%, 78%, 0.55) 50%, transparent 100%); animation: nt-irid-2 6.8s ease-in-out infinite; animation-delay: -1s; }
.nt-irid-band-3 { background: linear-gradient(180deg, transparent 0%, hsla(82, 35%, 48%, 0.50) 50%, transparent 100%); animation: nt-irid-3 7.2s ease-in-out infinite; animation-delay: -1.5s; }
.nt-irid-band-4 { background: linear-gradient(180deg, transparent 0%, hsla(150, 32%, 30%, 0.55) 50%, transparent 100%); animation: nt-irid-4 7.6s ease-in-out infinite; animation-delay: -2s; }
.nt-irid-band-5 { background: linear-gradient(180deg, transparent 0%, hsla(28, 45%, 30%, 0.55) 50%, transparent 100%); animation: nt-irid-5 8s ease-in-out infinite; animation-delay: -2.5s; }
.nt-irid-band-6 { background: linear-gradient(180deg, transparent 0%, hsla(20, 55%, 42%, 0.50) 50%, transparent 100%); animation: nt-irid-6 8.4s ease-in-out infinite; animation-delay: -3s; }
.nt-irid-band-7 { background: linear-gradient(180deg, transparent 0%, hsla(40, 70%, 65%, 0.50) 50%, transparent 100%); animation: nt-irid-7 8.8s ease-in-out infinite; animation-delay: -3.5s; }

@keyframes nt-irid-0 { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(14deg); } }
@keyframes nt-irid-1 { 0%,100% { transform: rotate(22deg); } 50% { transform: rotate(36deg); } }
@keyframes nt-irid-2 { 0%,100% { transform: rotate(44deg); } 50% { transform: rotate(58deg); } }
@keyframes nt-irid-3 { 0%,100% { transform: rotate(66deg); } 50% { transform: rotate(80deg); } }
@keyframes nt-irid-4 { 0%,100% { transform: rotate(88deg); } 50% { transform: rotate(102deg); } }
@keyframes nt-irid-5 { 0%,100% { transform: rotate(110deg); } 50% { transform: rotate(124deg); } }
@keyframes nt-irid-6 { 0%,100% { transform: rotate(132deg); } 50% { transform: rotate(146deg); } }
@keyframes nt-irid-7 { 0%,100% { transform: rotate(154deg); } 50% { transform: rotate(168deg); } }

@media (prefers-reduced-motion: reduce) {
  .nt-irid-band { animation: none; }
}

.nt-specular {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0) 60%);
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0.4;
  transition: opacity .3s;
}
.nt-value-card[data-active="1"] .nt-specular {
  opacity: 1;
  transition: opacity .12s;
}

.nt-sticker-outline {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(26,22,14,0.22);
  border-radius: 9px;
  pointer-events: none;
}
.nt-value-card--featured .nt-sticker-outline {
  border-color: rgba(255,255,255,0.42);
}

.nt-value-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nt-value-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.nt-value-seq {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: rgba(26,22,14,0.62);
}
.nt-value-card--featured .nt-value-seq { color: rgba(250,245,231,0.85); }
.nt-value-tag {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 4px 8px;
  color: #b5532e;
  border: 1px solid rgba(181,83,46,0.5);
  border-radius: 999px;
  background: rgba(250,245,231,0.25);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.nt-value-card--featured .nt-value-tag {
  color: #faf5e7;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
}

.nt-value-media {
  flex: 1;
  display: flex;
  align-items: flex-start;
  color: #1a160e;
}
.nt-value-card--featured .nt-value-media { color: #faf5e7; }
.nt-value-icon {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
  margin: -6px 0 0 -8px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.22));
  transition: transform .4s cubic-bezier(.2,.7,.2,1), filter .3s;
}
.nt-value-card[data-active="1"] .nt-value-icon {
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.32));
  transform: rotate(-5deg) translateY(-2px);
}
.nt-value-bignum {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 0.85;
}
.nt-value-bignum span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 132px;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-shadow: 0 2px 0 rgba(0,0,0,0.18);
}
.nt-value-bignum small {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 14px;
}

.nt-value-text { margin-top: 22px; }
.nt-value-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: #1a160e;
  line-height: 1.05;
}
.nt-value-card--featured .nt-value-title { color: #faf5e7; }
.nt-value-desc {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 10px 0 0;
  color: rgba(26,22,14,0.62);
}
.nt-value-card--featured .nt-value-desc { color: rgba(250,245,231,0.85); }

.nt-value-foot {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed rgba(26,22,14,0.22);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(26,22,14,0.7);
}
.nt-value-foot svg { stroke: #b5532e; }
.nt-value-card--featured .nt-value-foot {
  border-top-color: rgba(255,255,255,0.35);
  color: rgba(250,245,231,0.9);
}
.nt-value-card--featured .nt-value-foot svg { stroke: #faf5e7; }

/* ── Intro de Nancy (voz personal) ────────────────────── */
.nt-intro {
  position: relative;
  overflow: hidden;
  padding: 128px 48px;
  background: #faf5e7;
  isolation: isolate;
}
.nt-intro-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  filter: saturate(0.7);
}
.nt-intro-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(250,245,231,0.85) 0%, rgba(250,245,231,0.96) 70%, #faf5e7 100%);
}
.nt-intro-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.nt-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(181,83,46,0.35);
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: #b5532e;
  margin-bottom: 28px;
}
.nt-intro-emoji {
  font-size: 14px;
  letter-spacing: 0;
}
.nt-intro-h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 40px;
  color: #1a160e;
  text-wrap: balance;
}
.nt-intro-h2 em {
  color: #b5532e;
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.nt-intro-h2 em::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 6%;
  height: 3px;
  background: #b5532e;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: nt-intro-underline 1.2s cubic-bezier(.2,.8,.2,1) 0.4s forwards;
}
@keyframes nt-intro-underline {
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .nt-intro-h2 em::after { animation: none; transform: scaleX(1); }
}

.nt-intro-lead {
  font-size: 17px;
  line-height: 1.7;
  color: #3a3328;
  max-width: 680px;
  margin: 0 auto 44px;
  text-wrap: pretty;
}
.nt-intro-lead p { margin: 0 0 20px; }
.nt-intro-lead p:last-child { margin-bottom: 0; }
.nt-intro-lead strong {
  color: #1a160e;
  font-weight: 700;
}
.nt-intro-emoji-inline {
  display: inline-block;
  margin-left: 2px;
  white-space: nowrap;
}

.nt-intro-features {
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.nt-intro-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(31,58,43,0.1);
  border-radius: 999px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a160e;
  text-align: left;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.nt-intro-features li:hover {
  transform: translateY(-2px);
  border-color: rgba(181,83,46,0.5);
  box-shadow: 0 10px 24px -16px rgba(0,0,0,0.25);
}
.nt-intro-feat-emoji {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.nt-intro-closer {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  color: #1a160e;
  margin: 0 0 36px;
  font-weight: 500;
  text-wrap: balance;
}
.nt-intro-closer strong {
  color: #b5532e;
  font-weight: 700;
}

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

@media (max-width: 720px) {
  .nt-intro { padding: 72px 20px; }
  .nt-intro-h2 { font-size: 38px; }
  .nt-intro-lead { font-size: 16px; }
  .nt-intro-features { grid-template-columns: 1fr; max-width: 360px; }
  .nt-intro-closer { font-size: 18px; }
  .nt-intro-cta { flex-direction: column; }
  .nt-intro-cta .nt-btn { width: 100%; justify-content: center; }
}

/* ── About split ─────────────────────────────────────── */
.nt-about {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 64px;
  padding: 128px 48px;
  background: #faf5e7;
}
.nt-about-lead {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  line-height: 1.5;
  margin-top: 28px;
  color: #1a160e;
  max-width: 580px;
  font-weight: 400;
}
.nt-signature {
  margin-top: 24px;
  font-size: 13px;
  color: #6b6256;
  font-style: italic;
}
.nt-about-media { display: flex; flex-direction: column; gap: 14px; }
.nt-about-photo-big { height: 360px; border-radius: 2px; background-size: cover; background-position: center; }
.nt-about-photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nt-about-photo-sm { height: 200px; border-radius: 2px; background-size: cover; background-position: center; }
.nt-about-logo {
  background: #faf0db;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.nt-about-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ── Final CTA ───────────────────────────────────────── */
.nt-book {
  background: #1f3a2b;
  color: #faf5e7;
  padding: 128px 48px;
}
.nt-h2--book {
  color: #faf5e7;
  font-size: 80px;
  margin-top: 12px;
  max-width: none;
}
.nt-h2--book em { color: #f4a063; font-style: normal; }
.nt-book-opts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.nt-book-opt {
  padding: 24px;
  border-radius: 4px;
  background: rgba(250,245,231,0.08);
  border: 1px solid rgba(250,245,231,0.18);
  color: #faf5e7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 130px;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.nt-book-opt:hover {
  background: rgba(250,245,231,0.12);
  border-color: rgba(250,245,231,0.3);
}
.nt-book-opt--prim {
  background: #b5532e;
  border: none;
}
.nt-book-opt--prim:hover { background: #8e3d20; }
.nt-book-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nt-book-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.nt-book-foot span:first-child { font-size: 12px; color: #fff; font-weight: 500; }
.nt-book-foot span:last-child { font-size: 20px; }
.nt-book-opt:not(.nt-book-opt--prim) .nt-book-foot span:first-child { color: rgba(250,245,231,0.85); font-weight: 400; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .nt-video-chip {
    top: 86px;
    right: 20px;
    min-width: 220px;
    max-width: 260px;
    padding: 10px 12px;
  }
  .nt-hero-text {
    padding: 120px 24px 24px;
    max-width: none;
  }
  .nt-hero-corner {
    position: static;
    margin: 0 24px 48px;
    gap: 16px;
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) {
  .nt-tour-grid { grid-template-columns: 1fr 1fr; }
  .nt-diff-grid { grid-template-columns: 1fr 1fr; }
  .nt-book-opts { grid-template-columns: 1fr 1fr; }
  .nt-value-bignum span { font-size: 88px; }
  .nt-h2--book { font-size: 64px; }
}

@media (max-width: 720px) {
  .nt-hero { min-height: 0; padding-bottom: 40px; }
  .nt-hero-text {
    position: static;
    padding: 88px 20px 32px;
    max-width: none;
  }
  .nt-hero-h1 {
    font-size: clamp(40px, 11vw, 64px);
    line-height: 0.96;
    word-break: break-word;
    hyphens: auto;
  }
  .nt-hero-corner {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 28px 20px 0;
    padding: 0;
  }
  .nt-hero-corner > div { padding: 10px 12px; }
  .nt-video-chip {
    position: absolute;
    top: auto;
    bottom: 14px;
    right: 14px;
    left: auto;
    min-width: 0;
    max-width: none;
    padding: 8px 10px;
    gap: 6px;
    transform: scale(0.85);
    transform-origin: bottom right;
    opacity: 0.92;
  }
  .nt-chip-label { font-size: 10px; }

  .nt-tours,
  .nt-diff,
  .nt-about,
  .nt-book { padding: 64px 20px !important; }

  .nt-h2 { font-size: 36px; }
  .nt-h2--book { font-size: 40px; }

  .nt-tour-grid,
  .nt-diff-grid,
  .nt-book-opts,
  .nt-about { grid-template-columns: 1fr; gap: 28px; }

  .nt-about-photo-big { height: 240px; }
  .nt-about-photo-sm { height: 160px; }

  .nt-value-bignum span { font-size: 96px; }
}

/* ── Soonish (near-threshold) home section ────────────── */
.nt-soonish {
  background: #faf5e7;
  padding: 96px 48px;
}
.nt-soonish-inner { max-width: 1280px; margin: 0 auto; }
.nt-soonish-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .nt-soonish { padding: 56px 20px; }
}
