:root {
  --tv-green: #0f4c39;
  --tv-green-dark: #0a3628;
  --tv-gold: #e8a33d;
  --tv-ink: #1a1a1a;
  --tv-ink-2: #4a4a4a;
  --tv-muted: #888;
  --tv-line: #e6e6e6;
  --tv-bg: #ffffff;
  --tv-surface: #f7f7f5;
  --tv-radius: 16px;
  --tv-radius-sm: 10px;
  --tv-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --tv-shadow-md: 0 6px 24px rgba(0,0,0,0.10);
  --tv-shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --tv-maxw: 1180px;
}
.tv-story-heading {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.5px;
  margin: 0 0 2rem;
  color: var(--tv-ink);
}
.tv-story-subheading {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--tv-muted);
  max-width: 560px;
  margin: -1.25rem auto 2rem;
}

* { box-sizing: border-box; }
body {
  margin: 0; font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--tv-ink); background: var(--tv-bg); line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
.tv-muted { color: var(--tv-muted); }
.tv-loading { color: var(--tv-muted); padding: 2rem; text-align: center; grid-column: 1 / -1; }

/* Header */
.tv-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--tv-line); }
.tv-header-inner { max-width: var(--tv-maxw); margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; padding: 0.9rem 1.25rem; }
.tv-logo { font-weight: 800; font-size: 1.35rem; color: var(--tv-green); letter-spacing: -0.5px; }
.tv-logo span { color: var(--tv-gold); }
.tv-nav { display: flex; gap: 1.4rem; flex: 1; }
.tv-nav a { font-weight: 600; font-size: 0.92rem; color: var(--tv-ink-2); }
.tv-nav a:hover { color: var(--tv-green); }
.tv-header-actions { display: flex; align-items: center; gap: 0.75rem; }
.tv-wa-link { font-weight: 700; font-size: 0.9rem; color: var(--tv-green); }

/* Buttons */
.tv-btn { display: inline-flex; align-items: center; justify-content: center; font-family: inherit; font-weight: 700; font-size: 0.95rem; padding: 0.7rem 1.4rem; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform 0.12s, background 0.16s, color 0.16s; }
.tv-btn:active { transform: scale(0.97); }
.tv-btn-primary { background: var(--tv-green); color: #fff; }
.tv-btn-primary:hover { background: var(--tv-green-dark); }
.tv-btn-outline { background: #fff; color: var(--tv-ink); border-color: var(--tv-line); font-size: 0.85rem; padding: 0.5rem 1rem; }
.tv-btn-outline:hover { border-color: var(--tv-ink); }

/* Hero */
.tv-hero { position: relative; min-height: 460px; display: flex; align-items: center;
  background: linear-gradient(120deg, #0f4c39, #14654b) center/cover;
  background-image: /*linear-gradient(rgba(40, 43, 42, 0.55), rgba(27, 35, 32, 0.55)), */url("../img/hero-banner-1.jpeg");
  background-size: cover; background-position: center; }
.tv-hero-content { position: relative; z-index: 2; max-width: var(--tv-maxw); margin: 0 auto; width: 100%; padding: 3.5rem 1.25rem; color: #fff; text-align: center;/* Added Flexbox rules for complete centering */
  display: flex;
  flex-direction: column;
  align-items: center;     /* Centers block children horizontally */
  justify-content: center; /* Centers content vertically (if height is set) */}
.tv-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; letter-spacing: -1.5px; margin: 0 0 0.6rem; }
.tv-hero h1 span { color: var(--tv-gold); }
.tv-hero-sub { font-size: 1.15rem; max-width: 540px; margin: 0 0 2rem; opacity: 0.95; }

/* Search bar */
.tv-search { display: flex; gap: 0.5rem; background: #fff; border-radius: var(--tv-radius); padding: 0.6rem; box-shadow: var(--tv-shadow-lg); max-width: 720px; }
.tv-search-field { flex: 1; display: flex; flex-direction: column; padding: 0.35rem 0.85rem; border-radius: var(--tv-radius-sm); }
.tv-search-field label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.4px; color: var(--tv-muted); }
.tv-search-field input { border: none; outline: none; font-family: inherit; font-size: 0.95rem; color: var(--tv-ink); padding: 0.25rem 0; background: transparent; }
.tv-search-btn { flex-shrink: 0; }

/* Trust strip */
.tv-trust { max-width: var(--tv-maxw); margin: 0 auto; padding: 3rem 1.25rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.tv-trust-item { text-align: center; }
.tv-trust-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.tv-trust-item h3 { font-size: 1rem; margin: 0 0 0.3rem; }
.tv-trust-item p { font-size: 0.88rem; color: var(--tv-ink-2); margin: 0; }

/* Sections */
.tv-section { max-width: var(--tv-maxw); margin: 0 auto; padding: 3rem 1.25rem; }
.tv-section-alt { max-width: none; background: var(--tv-surface); }
.tv-section-alt > .tv-section-head, .tv-section-alt > .tv-card-grid { max-width: var(--tv-maxw); margin-inline: auto; }
.tv-section-head { margin-bottom: 1.75rem; }
.tv-section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.8px; margin: 0 0 0.35rem; }
.tv-section-head p { color: var(--tv-ink-2); margin: 0; }

/* Cards */
.tv-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.tv-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--tv-line); border-radius: var(--tv-radius); overflow: hidden; transition: transform 0.16s, box-shadow 0.16s; }
.tv-card:hover { transform: translateY(-4px); box-shadow: var(--tv-shadow-md); }
.tv-card-img { position: relative; aspect-ratio: 3 / 2; background: var(--tv-surface) center/cover no-repeat; }
.tv-card-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--tv-gold); color: #1a1a1a; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.3px; padding: 0.3rem 0.6rem; border-radius: 999px; }
.tv-card-body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.tv-card-cat { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; color: var(--tv-gold); margin-bottom: 0.35rem; }
.tv-card-title { font-size: 1.1rem; margin: 0 0 0.4rem; line-height: 1.25; }
.tv-card-summary { font-size: 0.9rem; color: var(--tv-ink-2); margin: 0 0 1rem; flex: 1; }
.tv-card-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--tv-line); padding-top: 0.85rem; }
.tv-card-price { font-size: 0.9rem; color: var(--tv-ink-2); }
.tv-card-price strong { font-size: 1.15rem; color: var(--tv-ink); }
.tv-card-cta { font-size: 0.85rem; font-weight: 700; color: var(--tv-green); }

/* About */
.tv-about { background: var(--tv-green); color: #fff; }
.tv-about-inner { max-width: var(--tv-maxw); margin: 0 auto; padding: 4rem 1.25rem; }
.tv-about-copy { max-width: 640px; }
.tv-kicker { display: inline-block; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--tv-gold); margin-bottom: 0.75rem; }
.tv-about-copy h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.8px; margin: 0 0 0.85rem; }
.tv-about-copy p { font-size: 1.05rem; line-height: 1.65; opacity: 0.9; margin: 0; }

/* Footer */
.tv-footer { border-top: 1px solid var(--tv-line); }
.tv-footer-inner { max-width: var(--tv-maxw); margin: 0 auto; padding: 1.75rem 1.25rem; display: flex; align-items: center; justify-content: space-between; }

/* ---- Tour detail ---- */
.tv-detail { max-width: var(--tv-maxw); margin: 0 auto; padding: 1.5rem 1.25rem 4rem; }
.tv-detail-hero { aspect-ratio: 21 / 9; border-radius: var(--tv-radius); background: var(--tv-surface) center/cover no-repeat; margin-bottom: 1.75rem; box-shadow: var(--tv-shadow-sm); }
.tv-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.tv-detail-title { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -1px; margin: 0.4rem 0 0.75rem; }
.tv-detail-summary { font-size: 1.15rem; color: var(--tv-ink-2); margin: 0 0 2rem; }
.tv-detail-sub { font-size: 1.2rem; margin: 0 0 0.6rem; }
.tv-detail-desc { font-size: 1rem; line-height: 1.7; color: var(--tv-ink-2); }
.tv-detail-note { font-size: 0.9rem; color: var(--tv-muted); margin-top: 1rem; }

/* Detail content lists (highlights / included / excluded) */
.tv-detail-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.tv-detail-list li { display: flex; gap: 0.6rem; align-items: flex-start; padding: 0.35rem 0; font-size: 0.98rem; color: var(--tv-ink-2); }
.tv-detail-list li span { flex-shrink: 0; font-weight: 800; width: 20px; text-align: center; }
.tv-li-check span { color: var(--tv-green); }
.tv-li-cross span { color: #c0392b; }
.tv-map-link { color: var(--tv-green); font-weight: 700; white-space: nowrap; }

/* Gallery */
.tv-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.75rem; margin-bottom: 1.5rem; }
.tv-gallery-img { aspect-ratio: 4 / 3; border-radius: var(--tv-radius-sm); background: var(--tv-surface) center/cover no-repeat; }

/* Booking sidebar */
.tv-detail-booking { position: sticky; top: 90px; background: #fff; border: 1px solid var(--tv-line); border-radius: var(--tv-radius); padding: 1.5rem; box-shadow: var(--tv-shadow-md); }
.tv-price-lead { font-size: 1rem; color: var(--tv-ink-2); margin-bottom: 1.25rem; }
.tv-price-lead strong { font-size: 1.8rem; color: var(--tv-ink); }
.tv-price-lead span { font-size: 0.9rem; }
.tv-field-label { display: block; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.4px; color: var(--tv-muted); margin-bottom: 0.6rem; }
.tv-dep-list { display: flex; flex-direction: column; gap: 0.5rem; max-height: 260px; overflow-y: auto; margin-bottom: 1.1rem; }
.tv-dep { display: grid; grid-template-columns: 1fr auto auto; gap: 0.6rem; align-items: center; text-align: left; background: var(--tv-surface); border: 1.5px solid transparent; border-radius: var(--tv-radius-sm); padding: 0.7rem 0.85rem; cursor: pointer; font-family: inherit; transition: border-color 0.14s, background 0.14s; }
.tv-dep:hover { border-color: var(--tv-line); }
.tv-dep.active { border-color: var(--tv-green); background: #fff; }
.tv-dep.sold { opacity: 0.5; cursor: not-allowed; }
.tv-date-input { width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--tv-line); border-radius: var(--tv-radius-sm); font-family: inherit; font-size: 0.95rem; }
.tv-date-input:focus { outline: none; border-color: var(--tv-green); }
.tv-days-hint { font-size: 0.82rem; color: var(--tv-muted); margin-top: 0.5rem; }
.tv-dep-date { font-weight: 700; font-size: 0.9rem; }
.tv-dep-time { font-size: 0.85rem; color: var(--tv-ink-2); }
.tv-dep-seats { font-size: 0.75rem; font-weight: 700; color: var(--tv-gold); }
.tv-book-btn { width: 100%; }

/* Booking modal */
.tv-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); display: flex; align-items: center; justify-content: center; z-index: 100; padding: 1rem; }
.tv-modal { background: #fff; border-radius: var(--tv-radius); width: 100%; max-width: 440px; max-height: 92vh; overflow-y: auto; box-shadow: var(--tv-shadow-lg); }
.tv-modal-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--tv-line); }
.tv-modal-head h2 { margin: 0; font-size: 1.25rem; }
.tv-modal-x { background: none; border: none; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--tv-muted); }
#tv-book-body { padding: 1.5rem; }
.tv-book-summary { background: var(--tv-surface); border-radius: var(--tv-radius-sm); padding: 0.9rem 1rem; margin-bottom: 1.25rem; font-size: 0.95rem; }
.tv-form-row { margin-bottom: 1rem; }
.tv-form-row label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--tv-ink-2); margin-bottom: 0.35rem; }
.tv-form-row input { width: 100%; padding: 0.7rem 0.9rem; border: 1px solid var(--tv-line); border-radius: var(--tv-radius-sm); font-family: inherit; font-size: 0.95rem; }
.tv-form-row input:focus { outline: none; border-color: var(--tv-green); }
.tv-stepper { display: inline-flex; align-items: center; gap: 1rem; border: 1px solid var(--tv-line); border-radius: 999px; padding: 0.3rem 0.5rem; }
.tv-stepper button { width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--tv-surface); font-size: 1.2rem; cursor: pointer; }
.tv-stepper span { min-width: 24px; text-align: center; font-weight: 700; }
.tv-book-total { font-size: 1.05rem; margin: 1.25rem 0; }
.tv-book-total strong { font-size: 1.4rem; color: var(--tv-green); }

@media (max-width: 860px) {
  .tv-nav { display: none; }
  .tv-trust { grid-template-columns: repeat(2, 1fr); }
  .tv-detail-grid { grid-template-columns: 1fr; }
  .tv-detail-booking { position: static; }
  .tv-search { flex-direction: column; }
}

/* ---- The Story of Langa — split lookbook carousel ---- */
.tv-story { max-width: var(--tv-maxw); margin: 0 auto; padding: 3.5rem 1.25rem; }
.tv-story-lb {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
  border-radius: var(--tv-radius); overflow: hidden; border: 1px solid var(--tv-line);
  background: var(--tv-green); box-shadow: var(--tv-shadow-md);
}
.tv-story-lb-text {
  padding: 3rem 3rem 2.5rem; display: flex; flex-direction: column;
  justify-content: center; background: var(--tv-green); color: #fff; position: relative;
}
.tv-story-lb-text .tv-kicker { color: var(--tv-gold); margin-bottom: 1.5rem; }
.tv-story-slide-text { min-height: 240px; }
.tv-story-eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.6px; color: var(--tv-gold); margin: 0 0 0.75rem;
}
.tv-story-title { font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.15; letter-spacing: -0.8px; margin: 0 0 1rem; color: #fff; }
.tv-story-copy { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.88); margin: 0; max-width: 46ch; }
.tv-story-copy em { color: var(--tv-gold); font-style: italic; }

/* text enter animation */
.tv-story-slide-text.story-in .tv-story-eyebrow { animation: storyUp 0.5s 0.02s both; }
.tv-story-slide-text.story-in .tv-story-title { animation: storyUp 0.5s 0.08s both; }
.tv-story-slide-text.story-in .tv-story-copy { animation: storyUp 0.5s 0.14s both; }
@keyframes storyUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.tv-story-nav { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.tv-story-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35);
  background: transparent; font-size: 1.5rem; line-height: 1; cursor: pointer; color: #fff;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.tv-story-btn:hover { background: var(--tv-gold); color: #1a1a1a; border-color: var(--tv-gold); }
.tv-story-index { font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,0.75); }

.tv-story-lb-media { position: relative; overflow: hidden; background: var(--tv-green-dark); }
.tv-story-photo {
  position: absolute; inset: 0; background: center/cover no-repeat;
  opacity: 0; transform: scale(1.06);
  transition: opacity 0.55s ease, transform 0.7s ease;
}
.tv-story-photo.enter-right { transform: scale(1.06) translateX(24px); }
.tv-story-photo.enter-left { transform: scale(1.06) translateX(-24px); }
.tv-story-photo.in { opacity: 1; transform: scale(1) translateX(0); }

@media (max-width: 860px) {
  .tv-story-lb { grid-template-columns: 1fr; }
  .tv-story-lb-media { min-height: 300px; order: -1; }
  .tv-story-lb-text { padding: 2rem 1.5rem; }
  .tv-story-slide-text { min-height: 0; }
}
