@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Public+Sans:wght@400;500;600&display=swap');

:root {
  --primary: #1a2e05;
  --primary-mid: #2d4a0e;
  --accent: #84cc16;
  --accent2: #bef264;
  --accent-pale: #ecfccb;
  --bg: #ffffff;
  --bg-alt: #fefce8;
  --text: #1c1917;
  --text-light: #78716c;
  --text-on-dark: #ecfccb;
  --border: #e7e5e4;
  --border-light: #f5f5f4;
  --shadow-sm: 0 1px 2px rgba(26,46,5,.06);
  --shadow: 0 2px 8px rgba(26,46,5,.08);
  --shadow-md: 0 4px 16px rgba(26,46,5,.10);
  --shadow-lg: 0 8px 30px rgba(26,46,5,.13);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1180px;
  --topbar-h: 40px;
  --header-h: 68px;
}

html { box-sizing: border-box; } *, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: subpixel-antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .25s; }
a:hover { color: var(--primary); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
p + p { margin-top: 1rem; }

.tv-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TOPBAR ── */
.tv-topbar {
  background: var(--primary);
  color: var(--text-on-dark);
  font-size: .78rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.tv-topbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.tv-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.tv-topbar__item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ── HEADER ── */
.tv-header {
  background: var(--bg);
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow .3s;
}

.tv-header.stuck { box-shadow: var(--shadow-md); }

.tv-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tv-header__brand {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
}

.tv-header__brand:hover { color: var(--accent); }

/* ── NAV ── */
.tv-nav { display: none; }

.tv-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.tv-nav__item > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
  font-family: var(--font-body);
}

.tv-nav__item > a:hover,
.tv-nav__item > a.is-active {
  background: var(--bg-alt);
  color: var(--primary);
}

.tv-nav__item > a svg { width: 12px; height: 12px; transition: transform .2s; }

.tv-nav__item--has-dropdown { position: relative; }

.tv-nav__dropdown {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}

.tv-nav__item--has-dropdown:hover .tv-nav__dropdown,
.tv-nav__item--has-dropdown:focus-within .tv-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tv-nav__item--has-dropdown:hover > a svg { transform: rotate(180deg); }

.tv-nav__dropdown li a {
  display: block;
  padding: 8px 12px;
  font-size: .87rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}

.tv-nav__dropdown li a:hover { background: var(--bg-alt); color: var(--primary); }

.tv-header__cta {
  display: none;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transition: background .25s;
}

.tv-header__cta:hover { background: var(--primary); color: #fff; }

/* ── BURGER ── */
.tv-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.tv-header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.tv-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tv-header__burger.is-open span:nth-child(2) { opacity: 0; }
.tv-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.tv-mobile-menu {
  position: fixed;
  top: calc(var(--topbar-h) + var(--header-h));
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 800;
  padding: 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
}

.tv-mobile-menu.is-open { transform: translateX(0); }

.tv-mobile-menu__list { list-style: none; }

.tv-mobile-menu__list > li > a,
.tv-mobile-menu__list > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  font-family: var(--font-body);
}

.tv-mobile-menu__list > li > button svg { width: 16px; height: 16px; transition: transform .25s; }
.tv-mobile-menu__list > li > button.is-expanded svg { transform: rotate(180deg); }

.tv-mobile-menu__sub {
  list-style: none;
  display: none;
  padding-left: 16px;
}

.tv-mobile-menu__sub.is-open { display: block; }

.tv-mobile-menu__sub a {
  display: block;
  padding: 10px 0;
  font-size: .93rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-light);
}

.tv-mobile-menu__sub a:hover { color: var(--accent); }

.tv-mobile-menu__contact {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.tv-mobile-menu__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--accent);
}

/* ── HERO (split layout) ── */
.tv-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #1a3a08 100%);
  color: #fff;
  padding: 60px 20px 50px;
}

.tv-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.tv-hero__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent2);
  background: rgba(132,204,22,.18);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.tv-hero__title {
  color: #fff;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  margin-bottom: 16px;
}

.tv-hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--accent-pale);
  max-width: 540px;
  margin-bottom: 28px;
}

/* ── BOOKING STRIP ── */
.tv-booking-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tv-booking-strip__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.tv-booking-strip__route {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
}

.tv-booking-strip__price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent2);
  font-size: .95rem;
}

.tv-booking-strip__btn {
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-heading);
  transition: background .2s;
}

.tv-booking-strip__btn:hover { background: var(--accent2); }

/* ── FARE TILES (hero right) ── */
.tv-hero__tiles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tv-fare-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  padding: 12px;
  backdrop-filter: blur(6px);
  transition: background .2s;
}

.tv-fare-tile:hover { background: rgba(255,255,255,.16); }

.tv-fare-tile__img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.tv-fare-tile__dest {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
}

.tv-fare-tile__sub {
  font-size: .78rem;
  color: var(--accent-pale);
  opacity: .8;
}

.tv-fare-tile__price {
  margin-left: auto;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent2);
  white-space: nowrap;
}

/* ── BUTTONS ── */
.tv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
  text-align: center;
  line-height: 1.4;
}

.tv-btn:hover { transform: translateY(-1px); }

.tv-btn--accent {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.tv-btn--accent:hover {
  background: var(--accent2);
  border-color: var(--accent2);
  color: var(--primary);
}

.tv-btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.tv-btn--outline:hover {
  background: var(--accent);
  color: var(--primary);
}

.tv-btn--ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}

.tv-btn--ghost:hover { background: rgba(255,255,255,.2); }

.tv-btn--white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.tv-btn--white:hover { background: var(--bg-alt); border-color: var(--bg-alt); }

/* ── SECTIONS ── */
.tv-section { padding: 72px 20px; }
.tv-section--alt { background: var(--bg-alt); }

.tv-section--dark {
  background: var(--primary);
  color: var(--text-on-dark);
}

.tv-section--dark h2, .tv-section--dark h3 { color: #fff; }
.tv-section--dark p { color: var(--accent-pale); }

.tv-section__header { max-width: 640px; margin-bottom: 44px; }

.tv-section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.tv-section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  background: rgba(132,204,22,.1);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.tv-section--dark .tv-section__label {
  background: rgba(132,204,22,.18);
  color: var(--accent2);
}

.tv-section__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin-top: 10px;
  border-radius: 2px;
}

.tv-section__header--center .tv-section__title::after {
  margin-left: auto;
  margin-right: auto;
}

.tv-section__desc {
  margin-top: 12px;
  color: var(--text-light);
  max-width: 560px;
}

.tv-section__header--center .tv-section__desc {
  margin-left: auto;
  margin-right: auto;
}

/* ── GRID ── */
.tv-grid { display: grid; gap: 24px; }
.tv-grid--2 { grid-template-columns: 1fr; }
.tv-grid--3 { grid-template-columns: 1fr; }
.tv-grid--4 { grid-template-columns: 1fr; }

/* ── CARDS (lime stripe) ── */
.tv-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}

.tv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tv-card__stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.tv-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.tv-card__body { padding: 24px 22px; }

.tv-card__title {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.tv-card__text {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── PRICE PILL ── */
.tv-price {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  color: var(--primary);
  background: var(--accent-pale);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.tv-price--lg { font-size: 1.15rem; padding: 6px 18px; }

/* ── ROUTE CARDS ── */
.tv-route-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}

.tv-route-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.tv-route-card__top {
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.tv-route-card__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.tv-route-card__body { padding: 20px; }

.tv-route-card__route {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.tv-route-card__dest {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.tv-route-card__meta {
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.5;
}

.tv-route-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* ── TOUR CARDS ── */
.tv-tour-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}

.tv-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tv-tour-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.tv-tour-card__stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.tv-tour-card__body { padding: 22px; }

.tv-tour-card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  background: rgba(132,204,22,.1);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.tv-tour-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.tv-tour-card__duration {
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.tv-tour-card__includes {
  list-style: none;
  margin-bottom: 16px;
}

.tv-tour-card__includes li {
  font-size: .82rem;
  color: var(--text-light);
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
}

.tv-tour-card__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.tv-tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

/* ── DEAL CARDS (hot departures) ── */
.tv-deal-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow .25s, transform .25s;
}

.tv-deal-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.tv-deal-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--accent2);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.tv-deal-card__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.tv-deal-card__stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.tv-deal-card__body { padding: 20px; }

.tv-deal-card__date {
  font-size: .78rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.tv-deal-card__dest {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.tv-deal-card__note {
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.tv-deal-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* ── WEEKEND CARDS ── */
.tv-weekend-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}

.tv-weekend-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tv-weekend-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tv-weekend-card__stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.tv-weekend-card__body { padding: 22px; }

.tv-weekend-card__duration {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  margin-bottom: 6px;
}

.tv-weekend-card__title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tv-weekend-card__highlights {
  list-style: none;
  margin-bottom: 14px;
  font-size: .82rem;
  color: var(--text-light);
}

.tv-weekend-card__highlights li { padding: 2px 0; }

.tv-weekend-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

/* ── PRICING TABLE ── */
.tv-table-wrap { overflow-x: auto; margin-bottom: 32px; }

.tv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.tv-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  background: var(--primary);
  color: #fff;
  white-space: nowrap;
}

.tv-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.tv-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.tv-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.tv-table tr:nth-child(even) td { background: var(--bg-alt); }
.tv-table tr:hover td { background: var(--accent-pale); }

/* ── STEPS ── */
.tv-steps { counter-reset: tvstep; }

.tv-step {
  counter-increment: tvstep;
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}

.tv-step:last-child { border-bottom: none; }

.tv-step__num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-step__num::before { content: counter(tvstep); }
.tv-step__content h3 { margin-bottom: 6px; }

.tv-step__content p {
  font-size: .9rem;
  color: var(--text-light);
}

/* ── TESTIMONIALS ── */
.tv-testimonials { display: grid; gap: 24px; grid-template-columns: 1fr; }

.tv-testimonial {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.tv-testimonial__quote {
  font-size: .93rem;
  line-height: 1.7;
  color: var(--accent-pale);
  margin-bottom: 16px;
  font-style: italic;
}

.tv-testimonial__quote::before {
  content: "\201C";
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 0;
  vertical-align: -.3em;
  margin-right: 4px;
}

.tv-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tv-testimonial__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tv-testimonial__name { font-weight: 600; color: #fff; font-size: .88rem; }
.tv-testimonial__role { font-size: .78rem; color: var(--accent-pale); }

/* ── FAQ ── */
.tv-faq-list { max-width: 800px; }
.tv-faq-list--center { margin: 0 auto; }

.tv-faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.tv-faq-cat-btn {
  padding: 7px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  background: none;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-heading);
  transition: background .2s, border-color .2s, color .2s;
}

.tv-faq-cat-btn:hover,
.tv-faq-cat-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.tv-faq-item { border-bottom: 1px solid var(--border); }

.tv-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  line-height: 1.4;
  gap: 12px;
}

.tv-faq-item__q svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  transition: transform .25s;
}

.tv-faq-item.is-open .tv-faq-item__q svg { transform: rotate(180deg); }

.tv-faq-item__a {
  display: none;
  padding-bottom: 16px;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.tv-faq-item.is-open .tv-faq-item__a { display: block; }
.tv-faq-item__a a { color: var(--accent); font-weight: 500; }

/* ── CTA ── */
.tv-cta {
  text-align: center;
  padding: 72px 20px;
}

.tv-cta::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 28px;
  border-radius: 2px;
}

.tv-cta h2 { margin-bottom: 12px; }
.tv-cta h2::after { margin-left: auto; margin-right: auto; }

.tv-cta p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 24px;
}

/* ── NEWSLETTER ── */
.tv-newsletter { max-width: 480px; margin: 0 auto; }

.tv-newsletter__form { display: flex; gap: 8px; }

.tv-newsletter__input {
  flex: 1;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid #d6d3d1;
  border-radius: var(--radius-pill);
  background: #ffffff;
  font-size: .9rem;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.tv-newsletter__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(132, 204, 22, 0.25);
}
.tv-newsletter__input::placeholder { color: var(--text-light); }

/* ── FORMS ── */
.tv-form__row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.tv-form__row--2 { grid-template-columns: 1fr; }
.tv-form__field { display: flex; flex-direction: column; }

.tv-form__label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.tv-form__input,
.tv-form__select,
.tv-form__textarea {
  padding: 11px 15px;
  background: #ffffff;
  border: 1px solid #d6d3d1;
  border-radius: var(--radius-sm);
  font-size: .93rem;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  min-height: 46px;
}

.tv-form__input:focus,
.tv-form__select:focus,
.tv-form__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(132, 204, 22, 0.2);
}

.tv-form__textarea { resize: vertical; min-height: 110px; }

.tv-form__select {
  appearance: none;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2'%3E%3Cpath d='M4 8l8 7 8-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ── BREADCRUMBS ── */
.tv-breadcrumb {
  padding: 14px 0;
  font-size: .8rem;
  color: var(--text-light);
}

.tv-breadcrumb a { color: var(--accent); font-weight: 500; }
.tv-breadcrumb a:hover { color: var(--primary); }
.tv-breadcrumb span { margin: 0 6px; }

/* ── PAGE HERO (subpages) ── */
.tv-page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  padding: 44px 20px 52px;
  text-align: center;
}

.tv-page-hero h1 { color: #fff; margin-bottom: 10px; }
.tv-page-hero p { color: var(--accent-pale); max-width: 540px; margin: 0 auto; }
.tv-page-hero .tv-breadcrumb { color: var(--accent-pale); padding-bottom: 18px; }
.tv-page-hero .tv-breadcrumb a { color: var(--accent2); }

/* ── CONTACT SPLIT ── */
.tv-contact-split { display: grid; grid-template-columns: 1fr; }

.tv-contact-form-side { padding: 44px 22px; }

.tv-contact-info-side {
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 44px 22px;
}

.tv-contact-info-side h2 { color: #fff; }
.tv-contact-info-side h2::after { background: var(--accent); }

.tv-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.tv-contact-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(132,204,22,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tv-contact-item__icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

.tv-contact-item h4 { color: #fff; font-size: .86rem; margin-bottom: 2px; }
.tv-contact-item p { font-size: .84rem; color: var(--accent-pale); }

/* ── TIMELINE ── */
.tv-timeline {
  position: relative;
  padding-left: 28px;
}

.tv-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.tv-timeline__item {
  position: relative;
  padding-bottom: 30px;
}

.tv-timeline__item:last-child { padding-bottom: 0; }

.tv-timeline__item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}

.tv-timeline__year {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.tv-timeline__title { font-size: 1.02rem; font-weight: 600; margin-bottom: 4px; }

.tv-timeline__text {
  font-size: .88rem;
  color: var(--text-light);
}

/* ── TEAM GRID ── */
.tv-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.tv-team-member { text-align: center; }

.tv-team-member__avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.tv-team-member__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 2px;
}

.tv-team-member__title {
  font-size: .8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.tv-team-member__bio {
  font-size: .86rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── VALUE CARDS ── */
.tv-value-card { display: flex; gap: 14px; }

.tv-value-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(132,204,22,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tv-value-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

.tv-value-card h3 { font-size: .98rem; margin-bottom: 5px; }
.tv-value-card p { font-size: .88rem; color: var(--text-light); }

/* ── PROSE ── */
.tv-prose { max-width: 800px; }
.tv-prose h3 { margin: 24px 0 8px; }
.tv-prose p { color: var(--text); margin-bottom: 14px; }
.tv-prose--center { margin-left: auto; margin-right: auto; }

/* ── FOOTER (Style E: minimal inline) ── */
.tv-footer {
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 32px 20px 0;
}

.tv-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.tv-footer__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.tv-footer__brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.tv-footer__brand:hover { color: var(--accent); }

.tv-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.tv-footer__links a {
  font-size: .84rem;
  color: var(--text-on-dark);
  transition: color .2s;
}

.tv-footer__links a:hover { color: var(--accent); }

.tv-footer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

.tv-footer__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--primary);
  background: var(--accent);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  transition: background .2s;
}

.tv-footer__chip:hover { background: var(--accent2); color: var(--primary); }

.tv-footer__chip svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.tv-footer__info {
  padding: 14px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  line-height: 1.6;
}

.tv-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}

.tv-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.tv-footer__legal a {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
}

.tv-footer__legal a:hover { color: #fff; }

/* ── COOKIE ── */
.tv-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 14px 20px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  transform: translateY(100%);
  transition: transform .35s ease;
}

.tv-cookie.revealed { transform: translateY(0); }

.tv-cookie__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.tv-cookie__inner p {
  font-size: .86rem;
  color: var(--accent-pale);
  flex: 1;
  min-width: 200px;
}

.tv-cookie__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ── BACK TO TOP ── */
.tv-totop {
  position: fixed;
  bottom: 76px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s, background .2s;
  z-index: 700;
  box-shadow: var(--shadow-md);
}

.tv-totop.revealed {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tv-totop:hover { background: var(--accent2); }

.tv-totop svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* ── SCROLL REVEAL ── */
.tv-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.tv-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── LEGAL ── */
.tv-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 44px 20px 72px;
}

.tv-legal h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.tv-legal h3 { margin-top: 22px; margin-bottom: 8px; }

.tv-legal p {
  margin-bottom: 12px;
  color: var(--text);
  font-size: .93rem;
  line-height: 1.75;
}

.tv-legal ul, .tv-legal ol {
  margin: 12px 0 16px 20px;
  font-size: .93rem;
  color: var(--text);
  line-height: 1.75;
}

.tv-legal li { margin-bottom: 4px; }

.tv-legal__updated {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 26px;
}

/* ── THANK YOU ── */
.tv-thankyou {
  text-align: center;
  padding: 80px 20px;
  max-width: 560px;
  margin: 0 auto;
}

.tv-thankyou__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.tv-thankyou__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

.tv-thankyou h1 { margin-bottom: 14px; }
.tv-thankyou p { color: var(--text-light); margin-bottom: 24px; }
.tv-thankyou__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── 404 ── */
.tv-error-page {
  text-align: center;
  padding: 100px 20px;
}

.tv-error-page__code {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.tv-error-page h1 { margin: 16px 0 12px; }
.tv-error-page p { color: var(--text-light); margin-bottom: 28px; }

/* ── RESPONSIVE ── */
@media (min-width: 480px) {
  .tv-form__row--2 { grid-template-columns: 1fr 1fr; }
  .tv-booking-strip { flex-direction: row; }
  .tv-booking-strip__item { flex: 1; }
}

@media (min-width: 768px) {
  .tv-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .tv-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .tv-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .tv-testimonials { grid-template-columns: repeat(2, 1fr); }
  .tv-team-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-contact-split { grid-template-columns: 1fr 1fr; }
  .tv-section { padding: 88px 20px; }
  .tv-hero { padding: 80px 20px 60px; }
  .tv-card__image { height: 200px; }
  .tv-route-card__image { height: 180px; }
  .tv-tour-card__image { height: 220px; }
  .tv-weekend-card__image { height: 200px; }
  .tv-deal-card__image { height: 180px; }
}

@media (min-width: 1024px) {
  .tv-nav { display: flex; }
  .tv-header__cta { display: inline-flex; }
  .tv-header__burger { display: none; }
  .tv-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .tv-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .tv-testimonials { grid-template-columns: repeat(3, 1fr); }
  .tv-team-grid { grid-template-columns: repeat(4, 1fr); }
  .tv-hero__inner { grid-template-columns: 1fr 360px; }
  .tv-contact-form-side, .tv-contact-info-side { padding: 52px 36px; }
  .tv-topbar__item:nth-child(3) { margin-left: auto; }
}

@media (min-width: 1200px) {
  .tv-section { padding: 96px 20px; }
}

@media print {
  .tv-topbar, .tv-header, .tv-cookie, .tv-totop, .tv-mobile-menu { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  .tv-section--dark { background: #eee !important; color: #000 !important; }
}
