@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-latin-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-latin-600-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

.txv-root {
  --shadow: 0 10px 30px rgba(35, 28, 23, 0.06);
  width: min(var(--txv-content-width, 1180px), calc(100% - 32px));
  margin: 0 auto;
  color: var(--txv-text);
  font-family: var(--txv-font, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: var(--txv-base-size, 16px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.txv-root h1,
.txv-root h2,
.txv-root h3,
.txv-root h4 {
  color: var(--txv-text);
  font-family: var(--txv-heading-font, var(--txv-font));
  font-weight: var(--txv-heading-weight, 750);
  letter-spacing: -0.025em;
}
.txv-root [hidden] {
  display: none !important;
}

.txv-icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  vertical-align: -0.18em;
}
.txv-empty-state {
  grid-column: 1 / -1;
  display: grid;
  min-height: 280px;
  padding: 44px 24px;
  place-items: center;
  align-content: center;
  border: 1px dashed var(--txv-border);
  border-radius: 20px;
  color: var(--txv-muted);
  background: var(--txv-card);
  text-align: center;
}
.txv-empty-state .txv-icon {
  width: 38px;
  height: 38px;
  color: var(--txv-primary);
}
.txv-empty-state h2 {
  margin: 12px 0 4px;
  font-size: 1.35rem;
}
.txv-empty-state p {
  max-width: 520px;
  margin: 0;
}
.txv-button .txv-icon,
.txv-eyebrow .txv-icon {
  margin-right: 0.35em;
}
.txv-compare-page {
  padding-bottom: 96px;
}
.txv-compare-page-header {
  max-width: 780px;
  margin-bottom: 38px;
}
.txv-compare-page-header p {
  max-width: 700px;
  font-size: 1.08rem;
}
.txv-comparison-builder {
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid var(--txv-border);
  border-radius: 24px;
  background: var(--txv-card);
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.07);
}
.txv-compare-choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.txv-compare-choice {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--txv-border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--txv-bg) 72%, white);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.txv-compare-choice:focus-within {
  border-color: var(--txv-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--txv-primary) 12%, transparent);
  transform: translateY(-2px);
}
.txv-compare-choice-number {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.txv-compare-choice-number > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: white;
  background: var(--txv-primary);
  font-weight: 800;
}
.txv-compare-choice-number > strong {
  margin-right: auto;
}
.txv-compare-choice-number button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--txv-muted);
  background: transparent;
  cursor: pointer;
}
.txv-compare-choice label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  color: var(--txv-muted);
  font-size: 0.82rem;
  font-weight: 750;
}
.txv-compare-choice label input,
.txv-compare-choice label select {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 48px;
  margin-top: 1px;
  border: 1px solid var(--txv-border);
  border-radius: 12px;
  background: white;
}
.txv-compare-choice label input[readonly] {
  color: var(--txv-text);
  background: color-mix(in srgb, var(--txv-primary) 5%, white);
}
.txv-compare-month {
  margin-top: 16px;
}
.txv-compare-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}
.txv-button--large {
  min-height: 50px;
  padding-inline: 24px;
}
.txv-comparison-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--txv-muted);
  font-size: 0.92rem;
}
.txv-comparison-status.is-error {
  color: var(--txv-primary-dark);
}
.txv-multi-comparison-result.is-loading {
  min-height: 180px;
  opacity: 0.55;
}
.txv-multi-comparison {
  margin-top: 22px;
  animation: txv-rise 0.28s ease-out both;
}
@keyframes txv-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}
.txv-compare-summary-grid {
  display: grid;
  grid-template-columns: repeat(var(--txv-compare-columns), minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}
.txv-compare-summary-grid article {
  overflow: hidden;
  padding: 0 0 18px;
  border: 1px solid var(--txv-border);
  border-radius: 18px;
  background: white;
}
.txv-compare-summary-image {
  display: grid;
  height: 150px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--txv-primary);
  background: color-mix(in srgb, var(--txv-primary) 8%, white);
}
.txv-compare-summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.txv-compare-summary-image .txv-icon {
  width: 34px;
  height: 34px;
}
.txv-compare-summary-grid article > span,
.txv-compare-summary-grid article > h3,
.txv-compare-summary-grid article > strong,
.txv-compare-summary-grid article > a {
  display: block;
  margin-right: 18px;
  margin-left: 18px;
}
.txv-compare-summary-grid article > span {
  color: var(--txv-primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.txv-compare-summary-grid h3 {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.txv-compare-summary-grid article > strong {
  font-size: 1.55rem;
}
.txv-compare-summary-grid article > strong small {
  color: var(--txv-muted);
  font-size: 0.8rem;
}
.txv-compare-summary-grid article > a {
  margin-top: 14px;
  color: var(--txv-primary);
  font-weight: 750;
  text-decoration: none;
}
.txv-comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--txv-border);
  border-radius: 18px;
  -webkit-overflow-scrolling: touch;
}
.txv-comparison-table {
  min-width: calc(190px + var(--txv-compare-columns) * 190px);
  background: white;
}
.txv-multi-compare-row {
  display: grid;
  grid-template-columns: 190px repeat(
      var(--txv-compare-columns),
      minmax(190px, 1fr)
    );
  border-top: 1px solid var(--txv-border);
}
.txv-multi-compare-row:first-child {
  border-top: 0;
}
.txv-multi-compare-row > * {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-left: 1px solid var(--txv-border);
}
.txv-multi-compare-row > *:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  border-left: 0;
  color: var(--txv-muted);
  background: white;
  font-size: 0.9rem;
}
.txv-multi-compare-row > strong {
  justify-content: space-between;
}
.txv-multi-compare-row > strong small {
  padding: 3px 7px;
  border-radius: 999px;
  color: #067647;
  background: #ecfdf3;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.txv-multi-compare-row > strong.is-winner {
  color: #067647;
  background: #f6fef9;
}
.txv-multi-compare-head {
  color: var(--txv-text);
  background: color-mix(in srgb, var(--txv-primary) 5%, white);
}
.txv-multi-compare-head > *:first-child {
  color: var(--txv-text);
  background: color-mix(in srgb, var(--txv-primary) 5%, white);
}
@media (max-width: 820px) {
  .txv-comparison-builder {
    padding: 18px;
    border-radius: 18px;
  }
  .txv-compare-choices {
    grid-template-columns: 1fr;
  }
  .txv-compare-choice {
    padding: 17px;
  }
  .txv-compare-actions {
    display: grid;
  }
  .txv-compare-summary-grid {
    grid-template-columns: 1fr;
  }
  .txv-compare-summary-grid article {
    display: grid;
    grid-template-columns: 112px 1fr;
    grid-template-rows: auto;
    align-items: center;
    padding: 0;
  }
  .txv-compare-summary-image {
    grid-row: 1 / 6;
    width: 112px;
    height: 100%;
    min-height: 160px;
    margin: 0;
  }
  .txv-compare-summary-grid article > span,
  .txv-compare-summary-grid article > h3,
  .txv-compare-summary-grid article > strong,
  .txv-compare-summary-grid article > a {
    grid-column: 2;
    margin-right: 14px;
    margin-left: 14px;
  }
  .txv-compare-summary-grid article > span {
    margin-top: 14px;
  }
  .txv-compare-summary-grid article > a {
    margin-bottom: 14px;
  }
  .txv-comparison-table {
    min-width: 0;
  }
  .txv-multi-compare-head {
    display: none;
  }
  .txv-multi-compare-row {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }
  .txv-multi-compare-row > * {
    min-height: 42px;
    padding: 9px 14px;
    border-left: 0;
  }
  .txv-multi-compare-row > *:first-child {
    position: static;
    min-height: auto;
    color: var(--txv-text);
    font-weight: 800;
  }
  .txv-multi-compare-row > strong::before {
    content: attr(data-label);
    margin-right: auto;
    color: var(--txv-muted);
    font-size: 0.8rem;
    font-weight: 650;
  }
}
@media (prefers-reduced-motion: reduce) {
  .txv-root *,
  .txv-root *::before,
  .txv-root *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.txv-product-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 64px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--txv-border);
}
.txv-product-brand {
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
}
.txv-product-nav > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.txv-product-nav > div a {
  color: var(--txv-muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}
.txv-month-index {
  padding-bottom: 70px;
}
.txv-month-index-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.txv-month-index-grid a {
  display: grid;
  min-height: 150px;
  align-content: center;
  padding: 20px;
  border: 1px solid var(--txv-border);
  border-radius: 16px;
  background: var(--txv-card);
  text-decoration: none;
}
.txv-month-index-grid a > span {
  font-size: 1.4rem;
}
.txv-month-index-grid strong {
  margin: 6px 0;
  font-size: 1.25rem;
}
.txv-month-index-grid small {
  color: var(--txv-primary);
  font-weight: 700;
}
.txv-root * {
  box-sizing: border-box;
}
.txv-root img {
  max-width: 100%;
  height: auto;
}
.txv-root a {
  color: inherit;
}
.txv-root h1,
.txv-root h2,
.txv-root h3 {
  color: var(--txv-text);
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.txv-root h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}
.txv-root h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.txv-root button,
.txv-root input,
.txv-root select,
.txv-root textarea {
  font: inherit;
}
.txv-root :focus-visible {
  outline: 3px solid color-mix(in srgb, var(--txv-primary) 35%, transparent);
  outline-offset: 2px;
}
.txv-eyebrow {
  display: block;
  color: var(--txv-primary);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.txv-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 17px;
  border: 1px solid var(--txv-primary);
  border-radius: 10px;
  background: var(--txv-primary);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s;
}
.txv-button:hover {
  transform: translateY(-1px);
}
.txv-button--ghost {
  background: var(--txv-card);
  color: var(--txv-text) !important;
  border-color: var(--txv-border);
}
.txv-text-link {
  color: var(--txv-primary) !important;
  font-weight: 700;
  text-underline-offset: 3px;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.txv-page-header {
  max-width: 780px;
  margin: 54px 0 26px;
}
.txv-page-header h1 {
  margin-bottom: 12px;
}
.txv-page-header p {
  font-size: 1.12rem;
  color: var(--txv-muted);
}
.txv-home {
  padding: 72px 0;
}
.txv-home-hero {
  max-width: 850px;
  text-align: center;
  margin: 0 auto 36px;
}
.txv-home-hero h1 {
  margin: 10px 0 16px;
}
.txv-home-hero p {
  max-width: 760px;
  margin: auto;
  color: var(--txv-muted);
  font-size: 1.2rem;
}
.txv-home-finder {
  background: var(--txv-card);
  border: 1px solid var(--txv-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.txv-finder {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr) auto;
  gap: 10px;
  align-items: end;
}
.txv-finder label,
.txv-filter-form label {
  display: grid;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--txv-muted);
}
.txv-finder input,
.txv-finder select,
.txv-filter-form input,
.txv-filter-form select,
.txv-autocomplete input {
  width: 100%;
  min-height: 46px;
  padding: 9px 12px;
  border: 1px solid var(--txv-border);
  border-radius: 9px;
  background: var(--txv-card);
  color: var(--txv-text);
}
.txv-how {
  padding: 80px 0;
}
.txv-how > h2 {
  text-align: center;
}
.txv-how-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.txv-how-grid article {
  padding: 20px;
  border: 1px solid var(--txv-border);
  border-radius: 16px;
  background: var(--txv-card);
}
.txv-how-grid article > span {
  font-size: 1.45rem;
}
.txv-how-grid h3 {
  font-size: 1rem;
  margin: 10px 0 4px;
}
.txv-how-grid p {
  font-size: 0.88rem;
  color: var(--txv-muted);
  margin: 0;
}
.txv-home-example {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 0 70px;
}
.txv-home-example > h2 {
  text-align: center;
}
.txv-home-cta {
  text-align: center;
  border-radius: 20px;
  background: #eef5ff;
  padding: 46px 20px;
}
.txv-autocomplete {
  position: relative;
}
.txv-suggestions {
  position: absolute;
  z-index: 50;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--txv-card);
  border: 1px solid var(--txv-border);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.14);
  overflow: hidden;
}
.txv-suggestions:empty {
  display: none;
}
.txv-suggestions button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 0;
  border-bottom: 1px solid var(--txv-border);
  background: var(--txv-card);
  text-align: left;
  cursor: pointer;
}
.txv-suggestions button:hover,
.txv-suggestions button:focus {
  background: #f5f8fc;
}
.txv-suggestions img {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  object-fit: cover;
}
.txv-filter-form {
  position: relative;
  background: var(--txv-card);
  border: 1px solid var(--txv-border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.txv-filter-primary {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr) auto;
  gap: 9px;
  align-items: end;
}
.txv-search-field {
  min-width: 170px;
}
.txv-filter-toggle {
  min-height: 46px;
  padding: 9px 12px;
  border: 1px solid var(--txv-border);
  border-radius: 9px;
  background: var(--txv-card);
  cursor: pointer;
  font-weight: 700;
}
.txv-filter-advanced {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--txv-border);
}
.txv-filter-advanced fieldset {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  padding: 0;
  margin: 0;
}
.txv-filter-advanced legend {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--txv-muted);
}
.txv-filter-advanced fieldset label {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--txv-text);
}
.txv-filter-advanced fieldset input {
  width: auto;
  min-height: auto;
}
.txv-filter-actions {
  display: flex;
  align-items: end;
  gap: 8px;
}
.txv-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0;
}
.txv-active-filters:empty {
  margin: 0;
}
.txv-active-filters button {
  border: 1px solid #bfd4ff;
  background: #eef5ff;
  color: #174ea6;
  border-radius: 99px;
  padding: 5px 10px;
  cursor: pointer;
}
.txv-active-filters .txv-chip-clear {
  border-color: transparent;
  background: transparent;
  color: var(--txv-muted);
  text-decoration: underline;
}
.txv-results-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 22px 0 14px;
}
.txv-results-toolbar select {
  min-height: 42px;
  border: 1px solid var(--txv-border);
  border-radius: 8px;
  background: var(--txv-card);
  padding: 7px 10px;
}
.txv-results {
  display: grid;
  grid-template-columns: repeat(var(--txv-cards-per-row, 3), minmax(0, 1fr));
  gap: 22px;
  transition: opacity 0.18s;
}
.txv-results.is-loading,
.txv-month-preview.is-loading {
  opacity: 0.45;
  pointer-events: none;
}
.txv-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--txv-border);
  border-radius: var(--txv-card-radius, 18px);
  background: var(--txv-card);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.txv-card:hover {
  border-color: color-mix(in srgb, var(--txv-primary) 35%, var(--txv-border));
  box-shadow: 0 18px 45px rgba(35, 28, 23, 0.11);
  transform: translateY(-4px);
}
.txv-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--txv-soft);
  overflow: hidden;
}
.txv-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}
.txv-card:hover .txv-card-image img {
  transform: scale(1.02);
}
.txv-card-body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}
.txv-card-kicker {
  color: var(--txv-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.txv-card h2 {
  font-size: 1.35rem;
  margin: 5px 0 12px;
}
.txv-card h2 a {
  text-decoration: none;
}
.txv-card-scores {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.txv-card-scores strong {
  font-size: 1.13rem;
}
.txv-card-scores strong small {
  display: block;
  color: var(--txv-muted);
  font-weight: 500;
}
.txv-card-scores > span {
  color: var(--txv-primary-dark);
  font-size: 0.84rem;
  font-weight: 700;
}
.txv-mini-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 13px 0;
}
.txv-mini-metrics span {
  padding: 7px 8px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--txv-bg) 76%, var(--txv-card));
  font-size: 0.82rem;
}
.txv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.txv-tags span {
  display: inline-flex;
  padding: 4px 9px;
  border: 1px solid var(--txv-border);
  border-radius: 99px;
  background: var(--txv-card);
  font-size: 0.78rem;
}
.txv-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}
.txv-card-actions > * {
  flex: 1;
  font-size: 0.86rem;
}
.txv-load-more {
  display: flex;
  margin: 26px auto;
}
.txv-closest {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #fedf89;
  border-radius: 10px;
  background: #fffaeb;
  margin-bottom: 14px;
}
.txv-error {
  padding: 12px;
  border-radius: 8px;
  background: #fef3f2;
  color: var(--txv-primary-dark);
}
.txv-month-nav {
  display: flex;
  gap: 4px;
  overflow: auto;
  margin-bottom: 20px;
  padding-bottom: 4px;
}
.txv-month-nav a {
  min-width: 57px;
  padding: 8px;
  text-align: center;
  border: 1px solid var(--txv-border);
  border-radius: 8px;
  text-decoration: none;
  background: var(--txv-card);
}
.txv-month-nav a.is-active {
  background: var(--txv-primary);
  color: #fff;
  border-color: var(--txv-primary);
}
.txv-month-copy {
  max-width: 850px;
  margin: 18px 0 26px;
}
.txv-month-copy--summary {
  margin: 44px 0;
}
.txv-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 18px;
  color: var(--txv-muted);
  font-size: 0.86rem;
}
.txv-destination {
  padding-bottom: 70px;
}
.txv-destination-hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 34px;
  align-items: center;
}
.txv-hero-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 20px;
  background: var(--txv-soft);
}
.txv-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.txv-hero-copy h1 {
  margin: 7px 0 18px;
  font-size: clamp(2rem, 4.8vw, 3.7rem);
}
.txv-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.txv-hero-facts > div {
  padding: 10px;
  border: 1px solid var(--txv-border);
  border-radius: 10px;
  background: var(--txv-card);
}
.txv-hero-facts span,
.txv-hero-facts strong {
  display: block;
}
.txv-hero-facts span {
  color: var(--txv-muted);
  font-size: 0.78rem;
}
.txv-verdict {
  margin-top: 16px;
  font-size: 1.04rem;
}
.txv-share {
  margin-top: 12px;
}
.txv-main-intro {
  max-width: 850px;
  margin: 42px auto 0;
  font-size: 1.06rem;
}
.txv-section {
  margin-top: 56px;
}
.txv-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 16px;
}
.txv-section-heading h2,
.txv-section-heading p {
  margin: 0;
}
.txv-section-heading p {
  color: var(--txv-muted);
}
.txv-overall {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 25px;
  border: 1px solid var(--txv-border);
  border-radius: 16px;
  background: var(--txv-card);
}
.txv-overall > div {
  min-width: 150px;
  text-align: center;
}
.txv-overall span,
.txv-overall small {
  display: block;
  color: var(--txv-muted);
}
.txv-overall strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}
.txv-overall p {
  font-size: 1.06rem;
}
.txv-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.txv-metric {
  min-height: 115px;
  padding: 17px;
  border: 1px solid var(--txv-border);
  border-radius: 14px;
  background: var(--txv-card);
}
.txv-metric span,
.txv-metric small {
  display: block;
}
.txv-metric span {
  font-size: 0.86rem;
}
.txv-metric strong {
  display: block;
  font-size: 1.85rem;
  margin: 8px 0 2px;
}
.txv-metric small {
  color: var(--txv-muted);
}
.txv-metric--weather {
  background: #fffbea;
}
.txv-metric--rain {
  background: #eff8ff;
}
.txv-metric--crowd {
  background: #f4f3ff;
}
.txv-metric--value,
.txv-metric--cost {
  background: #ecfdf3;
}
.txv-metric--comfort {
  background: #fff4ed;
}
.txv-metric--outdoor {
  background: #f2fbe9;
}
.txv-metric--seasonal {
  background: #fdf2fa;
}
.txv-best-for-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.txv-best-for-grid > div {
  padding: 14px;
  border: 1px solid var(--txv-border);
  border-radius: 12px;
}
.txv-best-for-grid span,
.txv-best-for-grid strong,
.txv-best-for-grid small {
  display: block;
}
.txv-best-for-grid span,
.txv-best-for-grid small {
  color: var(--txv-muted);
  font-size: 0.82rem;
}
.txv-duration-list {
  display: grid;
  gap: 10px;
}
.txv-duration-list > div {
  display: grid;
  grid-template-columns: 110px 1fr 95px;
  align-items: center;
  gap: 12px;
}
.txv-score-track {
  height: 8px;
  background: #edf0f3;
  border-radius: 99px;
  overflow: hidden;
}
.txv-score-track i {
  display: block;
  height: 100%;
  background: var(--txv-primary);
}
.txv-month-selector {
  display: flex;
  overflow: auto;
  gap: 7px;
  padding-bottom: 5px;
}
.txv-month-selector button {
  flex: 0 0 66px;
  min-height: 46px;
  border: 1px solid var(--txv-border);
  border-radius: 9px;
  background: var(--txv-card);
  cursor: pointer;
  font-weight: 700;
}
.txv-month-selector button.is-active {
  border-color: var(--txv-primary);
  background: var(--txv-primary);
  color: #fff;
}
.txv-month-preview {
  padding: 22px;
  border: 1px solid var(--txv-border);
  border-radius: 18px;
  background: var(--txv-card);
}
.txv-month-preview-inner > div:first-child {
  margin-bottom: 20px;
}
.txv-month-preview h2 {
  margin: 7px 0;
}
.txv-glance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}
.txv-glance > div {
  padding: 10px;
  border-radius: 9px;
  background: color-mix(in srgb, var(--txv-bg) 76%, var(--txv-card));
}
.txv-glance dt {
  color: var(--txv-muted);
  font-size: 0.78rem;
}
.txv-glance dd {
  margin: 1px 0 0;
  font-weight: 700;
}
.txv-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--txv-border);
  border-radius: 12px;
}
.txv-month-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  background: var(--txv-card);
}
.txv-month-table th,
.txv-month-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--txv-border);
  text-align: left;
}
.txv-month-table thead th {
  background: color-mix(in srgb, var(--txv-bg) 82%, var(--txv-card));
  font-size: 0.8rem;
}
.txv-month-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  background: var(--txv-card);
}
.txv-ranking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.txv-ranking .txv-section-heading {
  grid-column: 1/-1;
}
.txv-ranking ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}
.txv-ranking li {
  display: flex;
  justify-content: space-between;
  padding: 9px;
  border-bottom: 1px solid var(--txv-border);
}
.txv-quality-groups {
  display: grid;
  gap: 8px;
}
.txv-quality-groups div {
  padding: 10px 12px;
  border-radius: 9px;
  background: color-mix(in srgb, var(--txv-bg) 76%, var(--txv-card));
}
.txv-quality-groups strong,
.txv-quality-groups span {
  display: block;
}
.txv-quality-groups span {
  color: var(--txv-muted);
  font-size: 0.86rem;
}
.txv-season-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.txv-season-grid article {
  padding: 17px;
  border: 1px solid var(--txv-border);
  border-radius: 14px;
}
.txv-season-grid h3 {
  margin: 0 0 9px;
}
.txv-season-grid > article > strong {
  font-size: 1.35rem;
}
.txv-season-grid p {
  color: var(--txv-muted);
  font-size: 0.88rem;
}
.txv-suitability {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}
.txv-suitability > div {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid var(--txv-border);
  border-radius: 10px;
}
.txv-year-strips {
  display: grid;
  gap: 14px;
}
.txv-year-strips > div {
  display: grid;
  grid-template-columns: 85px repeat(12, minmax(55px, 1fr));
  gap: 5px;
  overflow: auto;
}
.txv-year-strips span {
  min-width: 60px;
  text-align: center;
  padding: 7px 4px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--txv-bg) 76%, var(--txv-card));
  font-size: 0.75rem;
}
.txv-year-strips small {
  display: block;
  color: var(--txv-muted);
}
.txv-month-guides {
  max-width: 850px;
  margin: 38px auto 0;
}
.txv-month-guides > article {
  scroll-margin-top: 30px;
  padding: 36px 0;
  border-top: 1px solid var(--txv-border);
}
.txv-month-guides h2 {
  margin: 6px 0 10px;
}
.txv-inline-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.txv-inline-facts span {
  padding: 5px 8px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--txv-bg) 76%, var(--txv-card));
  font-size: 0.84rem;
}
.txv-pro-con {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.txv-pro-con > div {
  padding: 14px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--txv-bg) 76%, var(--txv-card));
}
.txv-compare-form {
  display: flex;
  align-items: end;
  gap: 10px;
}
.txv-compare-form select {
  min-height: 46px;
  border: 1px solid var(--txv-border);
  border-radius: 9px;
  padding: 9px;
}
.txv-comparison {
  margin-top: 18px;
  border: 1px solid var(--txv-border);
  border-radius: 14px;
  overflow: hidden;
}
.txv-comparison-head,
.txv-compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--txv-border);
}
.txv-comparison-head {
  background: color-mix(in srgb, var(--txv-bg) 82%, var(--txv-card));
  text-align: center;
}
.txv-comparison-head span {
  grid-column: 2;
}
.txv-comparison-head strong:first-child {
  grid-column: 1;
}
.txv-comparison-head strong:last-child {
  grid-column: 3;
}
.txv-compare-row > strong {
  text-align: center;
}
.txv-compare-row .is-winner {
  color: #067647;
  background: #ecfdf3;
  border-radius: 6px;
}
.txv-recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.txv-recommend-grid article {
  overflow: hidden;
  border: 1px solid var(--txv-border);
  border-radius: 12px;
}
.txv-recommend-grid article > a {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
}
.txv-recommend-grid img {
  width: 100px;
  height: 78px;
  object-fit: cover;
}
.txv-recommend-grid article > a span {
  padding: 10px;
}
.txv-recommend-grid article > div {
  display: flex;
  gap: 10px;
  padding: 8px 10px;
  border-top: 1px solid var(--txv-border);
  font-size: 0.82rem;
}
.txv-source {
  padding: 20px;
  border: 1px solid var(--txv-border);
  border-radius: 14px;
  background: color-mix(in srgb, var(--txv-bg) 82%, var(--txv-card));
}
.txv-methodology {
  padding: 55px 0;
}
.txv-methodology > p {
  max-width: 850px;
}
.txv-method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 900px;
}
.txv-method-grid div {
  display: flex;
  justify-content: space-between;
  padding: 13px;
  border: 1px solid var(--txv-border);
  border-radius: 10px;
}
.txv-dialog {
  width: min(760px, calc(100% - 24px));
  max-height: 90vh;
  padding: 24px;
  border: 1px solid var(--txv-border);
  border-radius: 18px;
  color: var(--txv-text);
}
.txv-dialog::backdrop {
  background: rgba(16, 24, 40, 0.55);
}
.txv-dialog-close {
  position: absolute;
  right: 13px;
  top: 10px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}
.txv-dialog .txv-autocomplete {
  margin-bottom: 12px;
}
.txv-dialog-result {
  max-height: 58vh;
  overflow: auto;
}
.txv-dialog[open] {
  animation: txv-in 0.16s ease;
}
@keyframes txv-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1020px) {
  .txv-month-index-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .txv-finder {
    grid-template-columns: repeat(2, 1fr);
  }
  .txv-finder .txv-button {
    grid-column: 1/-1;
  }
  .txv-how-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .txv-filter-primary {
    grid-template-columns: repeat(3, 1fr);
  }
  .txv-filter-primary .txv-search-field {
    grid-column: span 2;
  }
  .txv-results {
    grid-template-columns: repeat(2, 1fr);
  }
  .txv-metric-grid,
  .txv-best-for-grid,
  .txv-season-grid,
  .txv-suitability {
    grid-template-columns: repeat(2, 1fr);
  }
  .txv-year-strips > div {
    grid-template-columns: 80px repeat(12, 60px);
  }
  .txv-method-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .txv-product-nav {
    align-items: flex-start;
    margin-bottom: 42px;
  }
  .txv-product-nav > div {
    justify-content: flex-end;
    gap: 8px 14px;
  }
  .txv-month-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .txv-root {
    width: min(100% - 24px, 1180px);
  }
  .txv-home {
    padding: 42px 0;
  }
  .txv-home-finder {
    padding: 12px;
  }
  .txv-finder {
    grid-template-columns: 1fr;
  }
  .txv-finder .txv-button {
    grid-column: auto;
  }
  .txv-how {
    padding: 52px 0;
  }
  .txv-how-grid {
    display: flex;
    overflow: auto;
  }
  .txv-how-grid article {
    min-width: 210px;
  }
  .txv-page-header {
    margin-top: 34px;
  }
  .txv-filter-primary {
    grid-template-columns: 1fr 1fr;
  }
  .txv-filter-primary .txv-search-field {
    grid-column: 1/-1;
  }
  .txv-filter-toggle {
    grid-column: 1/-1;
  }
  .txv-filter-advanced {
    position: fixed;
    z-index: 99999;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 86vh;
    overflow: auto;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    padding: 20px 14px 24px;
    border-radius: 18px 18px 0 0;
    background: var(--txv-card);
    box-shadow: 0 -12px 35px rgba(16, 24, 40, 0.18);
  }
  body.txv-filter-open:before {
    content: "";
    position: fixed;
    z-index: 99998;
    inset: 0;
    background: rgba(16, 24, 40, 0.45);
  }
  body.txv-filter-open {
    overflow: hidden;
  }
  .txv-filter-actions {
    position: sticky;
    bottom: 0;
    grid-column: 1/-1;
    padding-top: 10px;
    background: var(--txv-card);
  }
  .txv-filter-actions > * {
    flex: 1;
  }
  .txv-results {
    grid-template-columns: 1fr;
  }
  .txv-results-toolbar {
    align-items: flex-start;
    gap: 10px;
  }
  .txv-closest {
    display: grid;
  }
  .txv-destination-hero {
    grid-template-columns: 1fr;
  }
  .txv-hero-copy h1 {
    font-size: 2.25rem;
  }
  .txv-overall {
    display: grid;
  }
  .txv-metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .txv-metric {
    min-height: 105px;
    padding: 13px;
  }
  .txv-metric strong {
    font-size: 1.55rem;
  }
  .txv-metric--seasonal {
    grid-column: 1/-1;
  }
  .txv-best-for-grid,
  .txv-season-grid,
  .txv-suitability {
    grid-template-columns: 1fr 1fr;
  }
  .txv-glance {
    grid-template-columns: 1fr 1fr;
  }
  .txv-ranking {
    grid-template-columns: 1fr;
  }
  .txv-ranking .txv-section-heading {
    grid-column: auto;
  }
  .txv-pro-con {
    grid-template-columns: 1fr;
  }
  .txv-compare-form {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
  .txv-compare-form .txv-button {
    grid-column: 1/-1;
  }
  .txv-comparison-head,
  .txv-compare-row {
    grid-template-columns: 1.1fr 1fr 1fr;
    padding: 9px 7px;
    font-size: 0.86rem;
  }
  .txv-recommend-grid {
    grid-template-columns: 1fr 1fr;
  }
  .txv-recommend-grid article > a {
    grid-template-columns: 1fr;
  }
  .txv-recommend-grid img {
    width: 100%;
    height: 120px;
  }
  .txv-method-grid {
    grid-template-columns: 1fr 1fr;
  }
  .txv-dialog {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    margin: 0;
    max-width: none;
  }
  .txv-dialog-result {
    max-height: 70vh;
  }
}
@media (max-width: 390px) {
  .txv-filter-primary {
    grid-template-columns: 1fr;
  }
  .txv-filter-primary .txv-search-field,
  .txv-filter-toggle {
    grid-column: auto;
  }
  .txv-filter-advanced {
    grid-template-columns: 1fr;
  }
  .txv-filter-actions {
    grid-column: auto;
  }
  .txv-hero-facts,
  .txv-best-for-grid,
  .txv-season-grid,
  .txv-suitability,
  .txv-recommend-grid,
  .txv-method-grid {
    grid-template-columns: 1fr;
  }
  .txv-card-actions {
    display: grid;
  }
  .txv-duration-list > div {
    grid-template-columns: 90px 1fr;
  }
  .txv-duration-list > div strong {
    grid-column: 2;
  }
  .txv-month-selector button {
    flex-basis: 58px;
  }
  .txv-section-heading {
    display: block;
  }
  .txv-section-heading p {
    margin-top: 5px;
  }
}

/* Standalone guided homepage and trip-planner visual system. */
.txv-home-hero {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 8vw, 86px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(67, 20, 7, 0.88), rgba(154, 52, 18, 0.52)),
    url("../images/destination-placeholder.jpg") center/cover;
  border-radius: 30px;
}
.txv-home-hero h1 {
  max-width: 800px;
  margin: 20px 0 16px;
  color: #fff;
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
}
.txv-home-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}
.txv-hero-text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}
.txv-home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.txv-home-section-heading > div:first-child {
  max-width: 760px;
}
.txv-home-section-heading h2 {
  margin: 8px 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}
.txv-home-section-heading p {
  margin: 0;
  color: var(--txv-muted);
}
.txv-trip-planner,
.txv-home-values,
.txv-home-featured,
.txv-home-months {
  margin: clamp(72px, 9vw, 116px) 0 0;
}
.txv-planner-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  overflow: hidden;
  background: var(--txv-card);
  border: 1px solid var(--txv-border);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(124, 45, 18, 0.08);
}
.txv-planner-progress {
  padding: 30px;
  color: #fff;
  background: linear-gradient(150deg, var(--txv-primary-dark), var(--txv-primary));
}
.txv-planner-progress > span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.txv-planner-progress strong {
  display: block;
  margin-top: 10px;
  font-size: 1.45rem;
  line-height: 1.2;
}
.txv-planner-steps {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}
.txv-planner-steps li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
}
.txv-planner-steps li::before {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  content: attr(data-step);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}
.txv-planner-steps li.is-active,
.txv-planner-steps li.is-done {
  color: #fff;
}
.txv-planner-steps li.is-active::before,
.txv-planner-steps li.is-done::before {
  color: var(--txv-primary-dark);
  background: var(--txv-card);
}
.txv-planner-form {
  min-width: 0;
  padding: clamp(24px, 5vw, 50px);
}
.txv-planner-panel:focus {
  outline: none;
}
.txv-planner-panel h3 {
  margin: 8px 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}
.txv-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.txv-choice-grid--months {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.txv-choice-card {
  position: relative;
  min-height: 102px;
  padding: 15px;
  background: var(--txv-card);
  border: 1px solid var(--txv-border);
  border-radius: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}
.txv-choice-card input {
  position: absolute;
  opacity: 0;
}
.txv-choice-card:has(input:checked) {
  background: var(--txv-soft);
  border-color: var(--txv-primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}
.txv-choice-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 9px;
  place-items: center;
  background: var(--txv-soft);
  border-radius: 10px;
}
.txv-choice-card strong,
.txv-choice-card small {
  display: block;
}
.txv-choice-card small {
  color: var(--txv-muted);
}
.txv-planner-final-grid {
  display: grid;
  gap: 18px;
}
.txv-planner-final-grid fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.txv-planner-final-grid select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--txv-border);
  border-radius: 12px;
}
.txv-planner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 26px;
}
.txv-planner-actions [data-txv-planner-back] {
  margin-right: auto;
}
.txv-values-grid,
.txv-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.txv-value-card {
  padding: 24px;
  background: var(--txv-card);
  border: 1px solid var(--txv-border);
  border-radius: 20px;
}
.txv-value-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--txv-primary-dark);
  background: var(--txv-soft);
  border-radius: 13px;
}
.txv-value-card h3 {
  margin: 18px 0 5px;
}
.txv-value-card p {
  margin: 0;
  color: var(--txv-muted);
}
.txv-month-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.txv-month-links a {
  display: flex;
  min-height: 90px;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  color: var(--txv-text);
  background: var(--txv-card);
  border: 1px solid var(--txv-border);
  border-radius: 16px;
  text-decoration: none;
}
.txv-month-links a span {
  color: var(--txv-primary);
  font-weight: 800;
}
@media (max-width: 900px) {
  .txv-planner-shell { grid-template-columns: 1fr; }
  .txv-planner-steps { grid-template-columns: repeat(6, 1fr); }
  .txv-planner-steps li span { display: none; }
  .txv-values-grid,
  .txv-featured-grid { grid-template-columns: repeat(2, 1fr); }
  .txv-month-links { grid-template-columns: repeat(4, 1fr); }
}

.txv-featured-grid {
  grid-template-columns: repeat(var(--txv-cards-per-row, 3), minmax(0, 1fr));
}
.txv-planner-destination {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(220px, 0.8fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 24px;
}
.txv-planner-destination .txv-autocomplete,
.txv-planner-destination label {
  height: 100%;
}
.txv-planner-destination label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--txv-border);
  border-radius: var(--txv-card-radius);
  background: var(--txv-card);
}
.txv-planner-destination input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--txv-border);
  border-radius: 13px;
  background: var(--txv-bg);
  font: inherit;
}
.txv-planner-destination input:focus {
  outline: 0;
  border-color: var(--txv-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--txv-primary) 13%, transparent);
}
.txv-choice-card--button {
  width: 100%;
  color: var(--txv-text);
  font: inherit;
  text-align: left;
}
.txv-planner-panel:not([hidden]) {
  animation: txv-panel-in 0.28s ease both;
}
@keyframes txv-panel-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 900px) {
  .txv-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .txv-featured-grid {
    grid-template-columns: 1fr;
  }
  .txv-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }
  .txv-month-table {
    min-width: 0;
    border-collapse: separate;
    background: transparent;
  }
  .txv-month-table thead {
    display: none;
  }
  .txv-month-table tbody {
    display: grid;
    gap: 14px;
  }
  .txv-month-table tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
    padding: 16px;
    border: 1px solid var(--txv-border);
    border-radius: var(--txv-card-radius);
    background: var(--txv-card);
    box-shadow: var(--shadow);
  }
  .txv-month-table tbody th {
    position: static;
    grid-column: 1 / -1;
    padding: 0 0 12px;
    border-bottom: 1px solid var(--txv-border);
    background: transparent;
    font-size: 1.12rem;
  }
  .txv-month-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--txv-border) 70%, transparent);
    text-align: right;
  }
  .txv-month-table td::before {
    content: attr(data-label);
    color: var(--txv-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-align: left;
  }
  .txv-month-table td[data-label="Best For"] {
    grid-column: 1 / -1;
    align-items: flex-start;
    border-bottom: 0;
  }
  .txv-planner-destination {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .txv-planner-panel:not([hidden]) { animation: none; }
  .txv-card,
  .txv-card-image img,
  .txv-progress span { transition: none; }
}
@media (max-width: 620px) {
  .txv-home-section-heading { display: block; }
  .txv-choice-grid,
  .txv-choice-grid--months { grid-template-columns: repeat(2, 1fr); }
  .txv-values-grid,
  .txv-featured-grid { grid-template-columns: 1fr; }
  .txv-month-links { grid-template-columns: repeat(2, 1fr); }
}

/* TExploreVibe 5.0 — theme-independent Way.Farer-inspired product system. */
.txv-root {
  --shadow: 0 18px 50px rgba(23, 75, 87, 0.08);
  --shadow-sm: 0 8px 24px rgba(23, 75, 87, 0.07);
  padding-block: 24px 88px;
}
.txv-root *,
.txv-root *::before,
.txv-root *::after { box-sizing: border-box; }
.txv-root h1 { font-size: clamp(2.35rem, 5.2vw, 5.35rem); line-height: 1.02; }
.txv-root h2 { font-size: clamp(1.75rem, 3.2vw, 3.15rem); line-height: 1.1; }
.txv-root h3 { line-height: 1.25; }
.txv-root input,
.txv-root select,
.txv-root button,
.txv-root textarea { font: inherit; }
.txv-root input[type="search"],
.txv-root input[type="text"],
.txv-root input[type="number"] {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--txv-border);
  border-radius: 14px;
  color: var(--txv-text);
  background: var(--txv-card);
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.txv-root input:focus {
  border-color: var(--txv-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--txv-primary) 12%, transparent);
}
.txv-button,
.txv-filter-toggle {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 19px;
  border: 1px solid var(--txv-primary);
  border-radius: 999px;
  color: #fff;
  background: var(--txv-primary);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.txv-button:hover,
.txv-filter-toggle:hover { color: #fff; background: var(--txv-primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.txv-button--ghost {
  color: var(--txv-primary);
  background: transparent;
  border-color: var(--txv-border);
}
.txv-button--ghost:hover { color: var(--txv-primary-dark); background: var(--txv-soft); }
.txv-button--light { color: var(--txv-primary-dark); background: #fff; border-color: #fff; }
.txv-button--light:hover { color: var(--txv-primary-dark); background: #fff; }
.txv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--txv-primary);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.txv-home--v5 { padding-top: 10px; }
.txv-home-hero--photo {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: var(--txv-hero-height, 560px);
  flex-direction: column;
  justify-content: flex-end;
  overflow: visible;
  margin-bottom: 120px;
  padding: clamp(34px, 7vw, 84px);
  border-radius: clamp(24px, 4vw, 42px);
  color: #fff;
  background-image: linear-gradient(90deg, rgba(5, 27, 32, .78), rgba(5, 27, 32, calc(var(--txv-hero-overlay, 34) / 100)) 62%, rgba(5, 27, 32, .18)), var(--txv-hero-image);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}
.txv-home-hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 27, 32, .26));
}
.txv-home-hero--photo .txv-home-hero-copy { max-width: 790px; padding-bottom: 62px; }
.txv-home-hero--photo h1 { max-width: 820px; margin: 15px 0 20px; color: #fff; }
.txv-home-hero--photo p { max-width: 680px; margin: 0; color: rgba(255,255,255,.86); font-size: 1.05rem; }
.txv-home-hero--photo .txv-eyebrow { color: #fff; }
.txv-finder--hero {
  position: absolute;
  right: clamp(22px, 6vw, 70px);
  bottom: -38px;
  left: clamp(22px, 6vw, 70px);
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 22px;
  color: var(--txv-text);
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 60px rgba(10, 45, 53, .2);
  backdrop-filter: blur(14px);
}
.txv-hero-search-control label { display: grid; gap: 7px; }
.txv-hero-search-control label > span { display: flex; align-items: center; gap: 7px; color: var(--txv-muted); font-size: .78rem; font-weight: 500; }
.txv-hero-search-control input { width: 100%; min-height: 50px; padding: 0 0 0 2px !important; border: 0 !important; background: transparent !important; box-shadow: none !important; font-size: 1.12rem !important; }
.txv-button--search { min-width: 132px; border-radius: 16px; }

.txv-home--v5 > section:not(.txv-home-hero) { margin-top: clamp(80px, 10vw, 140px); }
.txv-home-section-heading { align-items: end; margin-bottom: 38px; }
.txv-home-section-heading h2 { max-width: 760px; margin: 9px 0 10px; }
.txv-home-section-heading p { max-width: 660px; margin: 0; color: var(--txv-muted); }
.txv-values-grid { gap: 18px; }
.txv-value-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--txv-border);
  border-radius: var(--txv-card-radius);
  background: var(--txv-card);
  box-shadow: none;
}
.txv-value-icon,
.txv-how article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--txv-primary);
  background: var(--txv-soft);
}
.txv-value-icon .txv-icon,
.txv-how article > span .txv-icon { width: 22px; height: 22px; }
.txv-how-grid { gap: 14px; }
.txv-how article { padding: 24px; border: 1px solid var(--txv-border); border-radius: var(--txv-card-radius); background: var(--txv-card); }

.txv-featured-grid,
.txv-results { gap: 22px; }
.txv-card--vertical {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--txv-border);
  border-radius: var(--txv-card-radius);
  background: var(--txv-card);
  box-shadow: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.txv-card--vertical:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--txv-primary) 25%, var(--txv-border)); box-shadow: var(--shadow); }
.txv-card--vertical .txv-card-image { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; }
.txv-card--vertical .txv-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.txv-card--vertical:hover .txv-card-image img { transform: scale(1.035); }
.txv-card-score-badge { position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 5px; padding: 7px 10px; border-radius: 999px; color: var(--txv-text); background: rgba(255,255,255,.94); font-size: .78rem; font-weight: 600; box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.txv-card-score-badge .txv-icon { color: var(--txv-accent); fill: color-mix(in srgb, var(--txv-accent) 22%, transparent); }
.txv-card--vertical .txv-card-body { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.txv-card--vertical .txv-card-kicker { display: flex; align-items: center; gap: 5px; color: var(--txv-muted); font-size: .74rem; text-transform: none; letter-spacing: 0; }
.txv-card--vertical h2 { margin: 8px 0 8px; font-size: 1.18rem; }
.txv-card-summary { min-height: 44px; margin: 0 0 14px; color: var(--txv-muted); font-size: .83rem; line-height: 1.55; }
.txv-card--vertical .txv-mini-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 13px 0; border-block: 1px solid var(--txv-border); }
.txv-card--vertical .txv-mini-metrics span { display: flex; align-items: center; gap: 6px; color: var(--txv-muted); font-size: .75rem; }
.txv-card--vertical .txv-tags { margin-top: 13px; }
.txv-card--vertical .txv-tags span { background: var(--txv-soft); }
.txv-card--vertical .txv-card-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: auto; padding-top: 18px; }
.txv-card--vertical .txv-card-actions .txv-button { min-height: 42px; padding: 9px 13px; border-radius: 12px; font-size: .76rem; }
.txv-card--vertical .txv-card-actions button span { display: none; }

.txv-month-links { gap: 12px; }
.txv-month-links a { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; min-height: 92px; padding: 18px; border: 1px solid var(--txv-border); border-radius: 18px; background: var(--txv-card); box-shadow: none; }
.txv-month-links a > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px; color: var(--txv-primary); background: var(--txv-soft); }
.txv-month-links a small { grid-column: 2; color: var(--txv-muted); }
.txv-month-links a > .txv-icon { grid-column: 3; grid-row: 1 / 3; }
.txv-home-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: clamp(30px, 6vw, 68px); border-radius: 30px; color: #fff; background: var(--txv-primary); }
.txv-home-cta h2 { margin: 6px 0 0; color: #fff; }
.txv-home-cta .txv-eyebrow { color: rgba(255,255,255,.75); }
.txv-home-cta .txv-button { color: var(--txv-primary-dark); background: #fff; border-color: #fff; }

.txv-trip-planner--v5 .txv-planner-shell { overflow: visible; border: 1px solid var(--txv-border); border-radius: 28px; background: var(--txv-card); box-shadow: var(--shadow-sm); }
.txv-trip-planner--v5 .txv-planner-progress { color: #fff; background: var(--txv-primary); }
.txv-trip-planner--v5 .txv-planner-progress > span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); }
.txv-trip-planner--v5 .txv-planner-steps li::before { border-color: rgba(255,255,255,.4); background: transparent; }
.txv-trip-planner--v5 .txv-planner-steps li.is-active::before,
.txv-trip-planner--v5 .txv-planner-steps li.is-done::before { border-color: #fff; background: #fff; }
.txv-trip-planner--v5 .txv-choice-card { min-height: 112px; border-color: var(--txv-border); background: #fff; }
.txv-trip-planner--v5 .txv-choice-card:has(input:checked) { border-color: var(--txv-primary); background: var(--txv-soft); box-shadow: 0 0 0 3px color-mix(in srgb, var(--txv-primary) 9%, transparent); }
.txv-trip-planner--v5 .txv-choice-icon { color: var(--txv-primary); background: var(--txv-soft); }
.txv-trip-planner--v5 .txv-choice-icon .txv-icon { width: 20px; height: 20px; }

.txv-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.txv-custom-select { position: relative; width: 100%; min-width: 0; }
.txv-custom-select__trigger {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--txv-border);
  border-radius: 13px;
  color: var(--txv-text);
  background: var(--txv-card);
  text-align: left;
  cursor: pointer;
}
.txv-custom-select.is-open .txv-custom-select__trigger { border-color: var(--txv-primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--txv-primary) 10%, transparent); }
.txv-custom-select__value { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .84rem; }
.txv-custom-select__chevron { display: grid; place-items: center; transition: transform .18s ease; }
.txv-custom-select.is-open .txv-custom-select__chevron { transform: rotate(180deg); }
.txv-custom-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 80;
  max-height: 300px;
  overflow-y: auto;
  padding: 7px;
  border: 1px solid var(--txv-border);
  border-radius: 14px;
  background: var(--txv-card);
  box-shadow: 0 18px 44px rgba(12, 53, 64, .16);
}
.txv-custom-select__option { display: flex; width: 100%; align-items: center; gap: 9px; padding: 10px; border: 0; border-radius: 9px; color: var(--txv-text); background: transparent; text-align: left; cursor: pointer; }
.txv-custom-select__option:hover { background: var(--txv-soft); }
.txv-custom-select__check { display: grid; width: 20px; height: 20px; place-items: center; border: 1px solid var(--txv-border); border-radius: 6px; color: transparent; }
.txv-custom-select__option.is-selected .txv-custom-select__check { color: #fff; border-color: var(--txv-primary); background: var(--txv-primary); }
.txv-custom-select__check .txv-icon { width: 13px; height: 13px; }

.txv-directory .txv-page-header { max-width: 850px; margin: 34px 0 36px; }
.txv-directory .txv-page-header h1 { margin-bottom: 14px; }
.txv-explore-planner { margin: 0 0 72px; }
.txv-explore-planner .txv-trip-planner { margin: 0; }
.txv-filter-form--v5 { position: relative; z-index: 12; padding: 18px; border: 1px solid var(--txv-border); border-radius: 24px; background: var(--txv-card); box-shadow: var(--shadow-sm); }
.txv-filter-form--v5 .txv-filter-primary { display: grid; grid-template-columns: minmax(230px, 1.4fr) repeat(3, minmax(150px, 1fr)) auto; align-items: end; gap: 12px; }
.txv-filter-form--v5 label { min-width: 0; }
.txv-filter-form--v5 label > span,
.txv-filter-form--v5 legend { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; color: var(--txv-muted); font-size: .72rem; font-weight: 500; }
.txv-filter-form--v5 .txv-search-field input { width: 100%; min-height: 50px; }
.txv-filter-form--v5 .txv-filter-toggle { min-height: 50px; border-radius: 13px; white-space: nowrap; }
.txv-filter-form--v5 .txv-filter-advanced { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--txv-border); }
.txv-filter-form--v5 .txv-filter-cost { grid-column: span 2; margin: 0; padding: 0; border: 0; }
.txv-filter-cost > div { display: flex; gap: 8px; }
.txv-filter-cost label { cursor: pointer; }
.txv-filter-cost input { position: absolute; opacity: 0; }
.txv-filter-cost label span { display: grid; min-width: 54px; min-height: 48px; place-items: center; margin: 0; border: 1px solid var(--txv-border); border-radius: 12px; color: var(--txv-text); background: #fff; }
.txv-filter-cost label:has(input:checked) span { color: #fff; border-color: var(--txv-primary); background: var(--txv-primary); }
.txv-filter-form--v5 .txv-filter-actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 10px; }
.txv-results-toolbar { margin-top: 30px; }
.txv-results-toolbar label { min-width: 220px; }
.txv-active-filters button { border-color: var(--txv-border); color: var(--txv-primary); background: var(--txv-soft); }

.txv-destination { padding-top: 18px; }
.txv-destination-hero--wide { position: relative; isolation: isolate; overflow: hidden; min-height: var(--txv-single-hero-height, 520px); border-radius: clamp(24px, 4vw, 40px); background: var(--txv-primary-dark); box-shadow: var(--shadow); }
.txv-destination-hero--wide .txv-hero-image { position: absolute; inset: 0; }
.txv-destination-hero--wide .txv-hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 27, 32, .84), rgba(5,27,32,.36) 64%, rgba(5,27,32,.12)); }
.txv-destination-hero--wide .txv-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.txv-destination-hero-overlay { position: relative; z-index: 2; display: flex; min-height: var(--txv-single-hero-height, 520px); max-width: 820px; flex-direction: column; justify-content: flex-end; padding: clamp(34px, 7vw, 78px); color: #fff; }
.txv-destination-hero-overlay .txv-eyebrow { color: rgba(255,255,255,.78); }
.txv-destination-hero-overlay h1 { margin: 12px 0 16px; color: #fff; font-size: clamp(2.2rem, 5vw, 4.6rem); }
.txv-destination-hero-overlay p { max-width: 650px; margin: 0 0 22px; color: rgba(255,255,255,.82); }
.txv-destination-hero-overlay .txv-button { align-self: flex-start; }
.txv-destination-highlights { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; width: calc(100% - clamp(30px, 8vw, 100px)); margin: -44px auto 0; padding: 14px; border: 1px solid rgba(255,255,255,.75); border-radius: 22px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.txv-destination-highlights article { display: flex; min-width: 0; align-items: center; gap: 10px; padding: 13px; border-right: 1px solid var(--txv-border); }
.txv-destination-highlights article:last-child { border-right: 0; }
.txv-destination-highlights article > span { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 12px; color: var(--txv-primary); background: var(--txv-soft); }
.txv-destination-highlights small,
.txv-destination-highlights strong { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.txv-destination-highlights small { color: var(--txv-muted); font-size: .68rem; }
.txv-destination-highlights strong { margin-top: 3px; font-size: .82rem; }
.txv-hero-tags { justify-content: center; margin: 24px 0 0; }
.txv-verdict--wide { display: grid; grid-template-columns: auto 1fr; gap: 14px; max-width: 900px; margin: 28px auto 0; padding: 20px 24px; border: 1px solid var(--txv-border); border-radius: 18px; background: var(--txv-soft); }
.txv-verdict--wide > span { color: var(--txv-primary); }
.txv-main-intro { max-width: 860px; margin: 34px auto 70px; }
.txv-section { border-color: var(--txv-border); border-radius: 24px; box-shadow: none; }
.txv-metric .txv-icon,
.txv-best-for-grid .txv-icon,
.txv-suitability .txv-icon,
.txv-inline-facts .txv-icon { color: var(--txv-primary); }
.txv-month-selector button { border-radius: 999px; }
.txv-month-selector button.is-active { color: #fff; background: var(--txv-primary); }

@media (max-width: 1100px) {
  .txv-filter-form--v5 .txv-filter-primary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .txv-filter-form--v5 .txv-filter-toggle { width: 100%; }
  .txv-filter-form--v5 .txv-filter-advanced { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .txv-destination-highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .txv-destination-highlights article { border-right: 0; }
}
@media (max-width: 820px) {
  .txv-root { width: min(100% - 24px, var(--txv-content-width)); padding-bottom: 60px; }
  .txv-home-hero--photo { min-height: 520px; margin-bottom: 100px; padding: 32px 24px; border-radius: 26px; }
  .txv-home-hero--photo .txv-home-hero-copy { padding-bottom: 92px; }
  .txv-finder--hero { right: 18px; bottom: -58px; left: 18px; grid-template-columns: 1fr auto; }
  .txv-button--search { min-width: 56px; padding-inline: 16px; }
  .txv-button--search span { display: none; }
  .txv-home--v5 > section:not(.txv-home-hero) { margin-top: 88px; }
  .txv-home-cta { align-items: flex-start; flex-direction: column; }
  .txv-filter-form--v5 .txv-filter-advanced { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .txv-filter-form--v5 .txv-filter-cost { grid-column: 1 / -1; }
  .txv-destination-highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: -26px; }
}
@media (max-width: 620px) {
  .txv-root h1 { font-size: clamp(2rem, 11vw, 3.2rem); }
  .txv-root h2 { font-size: 1.75rem; }
  .txv-home-hero--photo { min-height: 500px; margin-bottom: 118px; padding: 26px 20px; background-position: center; }
  .txv-home-hero--photo .txv-home-hero-copy { padding-bottom: 130px; }
  .txv-finder--hero { right: 12px; bottom: -86px; left: 12px; grid-template-columns: 1fr; padding: 13px; border-radius: 18px; }
  .txv-button--search { width: 100%; min-height: 46px; }
  .txv-button--search span { display: inline; }
  .txv-values-grid { grid-template-columns: 1fr; }
  .txv-filter-form--v5 { padding: 14px; border-radius: 18px; }
  .txv-filter-form--v5 .txv-filter-primary,
  .txv-filter-form--v5 .txv-filter-advanced { grid-template-columns: 1fr; }
  .txv-filter-form--v5 .txv-filter-cost { grid-column: 1; }
  .txv-filter-cost > div { display: grid; grid-template-columns: repeat(4, 1fr); }
  .txv-filter-cost label span { min-width: 0; }
  .txv-filter-form--v5 .txv-filter-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .txv-custom-select__menu { position: fixed; top: auto; right: 12px; bottom: 12px; left: 12px; max-height: min(62vh, 430px); border-radius: 20px; }
  .txv-destination-hero--wide { min-height: 480px; border-radius: 24px; }
  .txv-destination-hero-overlay { min-height: 480px; padding: 28px 22px; }
  .txv-destination-highlights { grid-template-columns: 1fr; width: calc(100% - 24px); padding: 10px; }
  .txv-destination-highlights article { padding: 10px; border-bottom: 1px solid var(--txv-border); }
  .txv-destination-highlights article:last-child { border-bottom: 0; }
  .txv-card--vertical .txv-card-actions button span { display: inline; }
}
