/* ============================================================
   TrueValue Holidays — SaaS / Material inspired site styling
   ============================================================ */
:root {
    --tvh-primary: #f97316;
    --tvh-primary-2: #f59e0b;
    --tvh-accent: #ea580c;
    --tvh-teal: #f59e0b;
    --tvh-pink: #fb923c;
    --tvh-ink: #18161f;
    --tvh-muted: #6b7280;
    --tvh-bg: #faf7f1;
    --tvh-card: #ffffff;
    --tvh-grad: linear-gradient(135deg, #ffc21a 0%, #ff8a00 55%, #f2600f 100%);
    --tvh-grad-warm: linear-gradient(135deg, #ff8a00 0%, #ea580c 100%);
    --tvh-shadow: 0 10px 30px rgba(60, 38, 8, .12);
    --tvh-shadow-lg: 0 20px 55px rgba(60, 38, 8, .20);
    --tvh-radius: 20px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--tvh-ink);
    background: var(--tvh-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.tvh-container {
    width: min(1200px, 92%);
    margin-inline: auto
}

/* ---------- Header ---------- */
.tvh-header {
    position: sticky;
    top: 0;
    z-index: 900;
    backdrop-filter: saturate(160%) blur(12px);
    background: rgba(255, 255, 255, .82);
    border-bottom: 1px solid rgba(20, 19, 39, .06);
    transition: box-shadow .3s ease;
}

.tvh-header.scrolled {
    box-shadow: 0 6px 24px rgba(20, 19, 39, .08)
}

.tvh-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0
}

.tvh-brand img {
    height: 42px;
    width: auto
}

.tvh-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 500
}

.tvh-menu a {
    position: relative;
    color: #33324a;
    transition: color .2s
}

.tvh-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0;
    background: var(--tvh-grad);
    transition: width .25s ease
}

.tvh-menu a:hover {
    color: var(--tvh-primary)
}

.tvh-menu a:hover::after {
    width: 100%
}

.tvh-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: none;
    cursor: pointer;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    background: var(--tvh-grad);
    background-size: 180% 180%;
    box-shadow: 0 8px 22px rgba(249, 115, 22, .35);
    transition: transform .25s ease, box-shadow .25s ease, background-position .6s ease;
}

.tvh-btn:hover {
    transform: translateY(-2px);
    background-position: 100% 0;
    box-shadow: 0 12px 30px rgba(249, 115, 22, .45)
}

.tvh-btn.warm {
    background: var(--tvh-grad-warm);
    box-shadow: 0 8px 22px rgba(234, 88, 12, .35)
}

.tvh-btn.ghost {
    background: #fff;
    color: var(--tvh-primary);
    box-shadow: inset 0 0 0 2px rgba(249, 115, 22, .28)
}

.tvh-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer
}

/* ---------- Hero ---------- */
.tvh-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 104px 0 132px;
    isolation: isolate
}

.tvh-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(135deg, #17131f 0%, #3a2412 45%, #c05f0e 100%)
}

.tvh-hero .blob {
    position: absolute;
    z-index: -1;
    filter: blur(6px);
    opacity: .55;
    border-radius: 50%;
    animation: tvhfloat 9s ease-in-out infinite
}

.tvh-hero .blob.b1 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle at 30% 30%, #ff6a3d, transparent 70%);
    top: -80px;
    right: -60px
}

.tvh-hero .blob.b2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, #ffb703, transparent 70%);
    bottom: -90px;
    left: -40px;
    animation-delay: -3s
}

.tvh-hero .blob.b3 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 30% 30%, #ff9e2c, transparent 70%);
    top: 40%;
    left: 45%;
    animation-delay: -5s
}

@keyframes tvhfloat {
    0%, 100% {
        transform: translateY(0) translateX(0)
    }
    50% {
        transform: translateY(-26px) translateX(14px)
    }
}

.tvh-hero-inner {
    max-width: 900px;
    margin-inline: auto;
    text-align: center
}

.tvh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
    margin-bottom: 22px
}

.tvh-hero h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.18;
    margin: 0 0 18px;
    font-weight: 700;
    letter-spacing: -.5px
}

.tvh-hero h1 .hl {
    background: linear-gradient(90deg, #ffd86b, #ff6a3d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding-bottom: .12em
}

.tvh-hero p {
    font-size: clamp(16px, 2vw, 21px);
    color: rgba(255, 255, 255, .92);
    margin: 0 auto 34px;
    max-width: 660px
}

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

.tvh-hero-stats {
    display: flex;
    gap: 56px;
    margin-top: 52px;
    flex-wrap: wrap;
    justify-content: center
}

.tvh-hero-stats .s b {
    display: block;
    font-size: 30px;
    font-weight: 700
}

.tvh-hero-stats .s span {
    font-size: 14px;
    color: rgba(255, 255, 255, .8)
}

.tvh-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: -1;
    line-height: 0
}

.tvh-wave svg {
    width: 100%;
    height: 80px;
    display: block
}

/* ---------- Section shell ---------- */
.tvh-section {
    padding: 72px 0
}

.tvh-section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 44px
}

.tvh-kicker {
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 13px;
    background: var(--tvh-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.tvh-section-head h2 {
    font-size: clamp(26px, 3.4vw, 40px);
    margin: 10px 0 12px;
    font-weight: 700;
    letter-spacing: -.4px
}

.tvh-section-head p {
    color: var(--tvh-muted);
    margin: 0;
    font-size: 17px
}

/* ---------- Destination block ---------- */
.tvh-dest {
    margin-bottom: 20px
}

.tvh-dest-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 20px
}

.tvh-dest-title {
    display: flex;
    align-items: center;
    gap: 14px
}

.tvh-dest-badge {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    background: var(--tvh-grad);
    box-shadow: 0 8px 20px rgba(249, 115, 22, .35)
}

.tvh-dest-title h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700
}

.tvh-dest-title .tag {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: rgba(245, 158, 11, .95);
    padding: 2px 10px;
    border-radius: 999px;
    margin-left: 8px;
    vertical-align: middle
}

.tvh-dest-title .tag.dom {
    background: rgba(234, 88, 12, .95)
}

.tvh-scroll-ctrls {
    display: flex;
    gap: 10px
}

.tvh-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #fff;
    color: var(--tvh-primary);
    box-shadow: var(--tvh-shadow);
    display: grid;
    place-items: center;
    transition: transform .2s ease, background .2s ease, color .2s
}

.tvh-arrow:hover {
    background: var(--tvh-grad);
    color: #fff;
    transform: translateY(-2px)
}

.tvh-arrow svg {
    width: 20px;
    height: 20px;
    fill: currentColor
}

/* ---------- Horizontal scroller ---------- */
.tvh-rail {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 26px 8px 46px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: thin;
    scrollbar-color: var(--tvh-primary-2) transparent
}

.tvh-rail::-webkit-scrollbar {
    height: 8px
}

.tvh-rail::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--tvh-primary), var(--tvh-teal));
    border-radius: 999px
}

.tvh-rail::-webkit-scrollbar-track {
    background: transparent
}

/* ---------- Package card ---------- */
.tvh-card {
    flex: 0 0 320px;
    max-width: 320px;
    scroll-snap-align: start;
    background: var(--tvh-card);
    border-radius: var(--tvh-radius);
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(60, 38, 8, .10);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column
}

.tvh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(60, 38, 8, .20)
}

.tvh-card-media {
    position: relative;
    height: 190px;
    overflow: hidden
}

.tvh-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.tvh-card:hover .tvh-card-media img {
    transform: scale(1.08)
}

.tvh-card-media.placeholder {
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 1px
}

.tvh-duration {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(20, 19, 39, .72);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    backdrop-filter: blur(4px)
}

.tvh-season {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--tvh-grad-warm);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px
}

.tvh-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.tvh-card-body h4 {
    margin: 0 0 6px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3
}

.tvh-card-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--tvh-muted);
    font-size: 14px;
    margin-bottom: 14px
}

.tvh-card-loc svg {
    width: 15px;
    height: 15px;
    fill: var(--tvh-accent)
}

.tvh-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: auto
}

.tvh-price .from {
    font-size: 12px;
    color: var(--tvh-muted)
}

.tvh-price .amt {
    font-size: 24px;
    font-weight: 800;
    background: var(--tvh-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.tvh-price .per {
    font-size: 12px;
    color: var(--tvh-muted)
}

.tvh-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px
}

.tvh-view {
    flex: 1;
    justify-content: center;
    padding: 11px 16px;
    font-size: 14px
}

.tvh-view.disabled {
    background: #e5e7eb;
    color: #9ca3af;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none
}

/* ---------- Features ---------- */
.tvh-features {
    background: linear-gradient(180deg, #fff 0%, var(--tvh-bg) 100%)
}

.tvh-feat-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px
}

.tvh-feat {
    background: #fff;
    border-radius: var(--tvh-radius);
    padding: 30px 26px;
    box-shadow: var(--tvh-shadow);
    transition: transform .3s ease
}

.tvh-feat:hover {
    transform: translateY(-6px)
}

.tvh-feat-ic {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: #fff
}

.tvh-feat-ic svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

.ic1 {
    background: var(--tvh-grad)
}

.ic2 {
    background: var(--tvh-grad-warm)
}

.ic3 {
    background: linear-gradient(135deg, #ffb703, #ff7a18)
}

.ic4 {
    background: linear-gradient(135deg, #f59e0b, #ea580c)
}

.tvh-feat h4 {
    margin: 0 0 8px;
    font-size: 19px
}

.tvh-feat p {
    margin: 0;
    color: var(--tvh-muted);
    font-size: 15px
}

/* ---------- Empty state ---------- */
.tvh-empty {
    text-align: center;
    padding: 70px 20px;
    color: var(--tvh-muted)
}

.tvh-empty svg {
    width: 64px;
    height: 64px;
    fill: var(--tvh-primary-2);
    opacity: .6;
    margin-bottom: 16px
}

/* ---------- Footer ---------- */
.tvh-footer {
    background: var(--tvh-ink);
    color: #cfd0e0;
    padding: 64px 0 26px;
}

.tvh-footer a:hover {
    color: #fff
}

.tvh-foot-grid {
    display: grid;
    grid-template-columns:1.4fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 40px
}

.tvh-footer img {
    height: 52px;
    margin-bottom: 18px
}

.tvh-foot-grid h5 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 16px;
    letter-spacing: .3px
}

.tvh-foot-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 15px
}

.tvh-foot-list .row {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.tvh-foot-list svg {
    width: 18px;
    height: 18px;
    fill: var(--tvh-teal);
    flex: 0 0 auto;
    margin-top: 3px
}

.tvh-social {
    display: flex;
    gap: 12px;
    margin-top: 8px
}

.tvh-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    transition: background .25s, transform .25s
}

.tvh-social a:hover {
    background: var(--tvh-grad);
    transform: translateY(-3px)
}

.tvh-social svg {
    width: 18px;
    height: 18px;
    fill: #fff
}

.tvh-foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 22px;
    text-align: center;
    font-size: 14px;
    color: #8b8ca6;
    line-height: 1.9
}

.tvh-foot-bottom a {
    color: #cfd0e6;
    text-decoration: none;
    font-weight: 600
}

.tvh-foot-bottom a:hover {
    color: #fff;
    text-decoration: underline
}

/* ---------- Floating contact ---------- */
.tvh-fab {
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 950;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.tvh-fab a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
    transition: transform .25s ease
}

.tvh-fab a:hover {
    transform: scale(1.08) translateY(-2px)
}

.tvh-fab svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

.tvh-fab .wa {
    background: linear-gradient(135deg, #25d366, #128c7e)
}

.tvh-fab .call {
    background: var(--tvh-grad)
}

.tvh-fab a::after {
    content: "";
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    animation: tvhpulse 2.2s infinite
}

.tvh-fab .call::after {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, .5)
}

@keyframes tvhpulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .4)
    }
    70% {
        box-shadow: 0 0 0 16px rgba(255, 255, 255, 0)
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
    }
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .tvh-foot-grid {
        grid-template-columns:1fr
    }

    .tvh-menu {
        position: fixed;
        inset: 64px 0 auto 0;
        flex-direction: column;
        background: #fff;
        padding: 20px;
        gap: 18px;
        box-shadow: var(--tvh-shadow);
        transform: translateY(-140%);
        transition: transform .3s ease;
        z-index: 800
    }

    .tvh-menu.open {
        transform: none
    }

    .tvh-menu-toggle {
        display: inline-flex
    }

    .tvh-nav .tvh-btn.desktop {
        display: none
    }
}

@media (max-width: 480px) {
    .tvh-card {
        flex-basis: 82%;
        max-width: 82%
    }

    .tvh-hero {
        padding: 70px 0 96px
    }
}

/* ============================================================
   Animations & transitions (tourvex-inspired)
   ============================================================ */
/* Scroll reveal engine with directional variants + stagger delay */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .85s cubic-bezier(.2, .7, .2, 1), transform .85s cubic-bezier(.2, .7, .2, 1);
    transition-delay: var(--d, 0s);
    will-change: opacity, transform
}

.reveal[data-anim="fade-up"] {
    transform: translateY(48px)
}

.reveal[data-anim="fade-down"] {
    transform: translateY(-40px)
}

.reveal[data-anim="fade-left"] {
    transform: translateX(-56px)
}

.reveal[data-anim="fade-right"] {
    transform: translateX(56px)
}

.reveal[data-anim="zoom-in"] {
    transform: scale(.88)
}

.reveal[data-anim="flip-up"] {
    transform: perspective(800px) rotateX(28deg) translateY(40px);
    transform-origin: bottom
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* Hero: living gradient (Ken Burns feel) + light sweep */
.tvh-hero::before {
    background-size: 220% 220% !important;
    animation: tvhHeroPan 20s ease-in-out infinite
}

@keyframes tvhHeroPan {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

.tvh-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(600px circle at var(--mx, 70%) var(--my, 20%), rgba(255, 255, 255, .14), transparent 60%);
    transition: background .3s ease
}

/* Hero headline word reveal */
.tvh-hero h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: tvhWordUp .8s cubic-bezier(.2, .7, .2, 1) forwards
}

@keyframes tvhWordUp {
    to {
        opacity: 1;
        transform: none
    }
}

/* Hero content children entrance (staggered) */
.tvh-hero-inner .tvh-eyebrow {
    opacity: 0;
    animation: tvhFadeUp .7s .1s ease forwards
}

.tvh-hero-inner p {
    opacity: 0;
    animation: tvhFadeUp .8s .7s ease forwards
}

.tvh-hero-cta {
    opacity: 0;
    animation: tvhFadeUp .8s .9s ease forwards
}

.tvh-hero-stats {
    opacity: 0;
    animation: tvhFadeUp .8s 1.05s ease forwards
}

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

/* Button shine sweep on hover */
.tvh-btn {
    position: relative;
    overflow: hidden
}

.tvh-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-20deg);
    transition: left .6s ease
}

.tvh-btn:hover::before {
    left: 130%
}

/* Header shrink on scroll */
.tvh-header .tvh-nav {
    transition: padding .3s ease
}

.tvh-header.shrink .tvh-nav {
    padding: 7px 0
}

.tvh-brand img {
    transition: height .3s ease
}

.tvh-header.shrink .tvh-brand img {
    height: 34px
}

/* Card: media overlay reveal + smoother lift */
.tvh-card {
    transition: transform .4s cubic-bezier(.2, .7, .2, 1), box-shadow .4s ease
}

.tvh-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24, 22, 31, .55), transparent 55%);
    opacity: .5;
    transition: opacity .4s ease
}

.tvh-card:hover .tvh-card-media::after {
    opacity: .85
}

.tvh-card-body h4 {
    transition: color .3s ease
}

.tvh-card:hover .tvh-card-body h4 {
    color: var(--tvh-primary)
}

/* Destination badge subtle bob */
.tvh-dest:hover .tvh-dest-badge {
    animation: tvhBob .6s ease
}

@keyframes tvhBob {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-6px)
    }
}

/* Feature icon pop on hover */
.tvh-feat-ic {
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1)
}

.tvh-feat:hover .tvh-feat-ic {
    transform: translateY(-4px) rotate(-6deg) scale(1.06)
}

/* Back to top */
.tvh-top {
    position: fixed;
    left: 20px;
    bottom: 24px;
    z-index: 940;
    width: 48px;
    height: 48px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    background: var(--tvh-grad);
    color: #fff;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 8px 20px rgba(249, 115, 22, .4)
}

.tvh-top.show {
    opacity: 1;
    visibility: visible;
    transform: none
}

.tvh-top:hover {
    transform: translateY(-3px)
}

.tvh-top svg {
    width: 22px;
    height: 22px;
    fill: #fff
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal, .tvh-hero h1 .word, .tvh-hero-inner .tvh-eyebrow, .tvh-hero-inner p, .tvh-hero-cta, .tvh-hero-stats {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }

    .tvh-hero::before {
        animation: none
    }
}

/* ============================================================
   Destination filter: type pills -> chips -> package panels
   ============================================================ */
.tvh-filter {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 0 0 26px;
    flex-wrap: wrap
}

.tvh-pill {
    padding: 11px 32px;
    border-radius: 999px;
    border: 2px solid rgba(249, 115, 22, .25);
    background: #fff;
    color: var(--tvh-ink);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    font-family: inherit;
    transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .2s ease
}

.tvh-pill:hover {
    border-color: var(--tvh-primary);
    transform: translateY(-1px)
}

.tvh-pill.active {
    background: var(--tvh-grad);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(249, 115, 22, .32)
}

.tvh-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    justify-content: center;
    margin: 0 0 40px
}

.tvh-chip {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 96px;
    padding: 6px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit
}

.tvh-chip.show {
    display: inline-flex
}

.tvh-chip-av {
    position: relative;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    padding: 3px;
    background: #e6e7ee;
    display: grid;
    place-items: center;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), background .3s ease, box-shadow .3s ease
}

.tvh-chip-av img, .tvh-chip-letter {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-sizing: border-box
}

.tvh-chip-letter {
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 26px;
    color: #fff;
    background: linear-gradient(135deg, #ffc21a, #f2600f)
}

.tvh-chip-av img {
    filter: grayscale(.45);
    opacity: .85;
    transition: filter .35s ease, opacity .35s ease
}

.tvh-chip-name {
    font-size: 13px;
    font-weight: 400;
    color: var(--tvh-muted);
    text-align: center;
    line-height: 1.22;
    transition: color .25s ease
}

.tvh-chip:hover .tvh-chip-av {
    transform: translateY(-4px)
}

.tvh-chip:hover .tvh-chip-av img {
    filter: none;
    opacity: 1
}

.tvh-chip:hover .tvh-chip-name {
    color: var(--tvh-ink)
}

.tvh-chip.active .tvh-chip-av {
    background: var(--tvh-grad);
    transform: translateY(-4px) scale(1.07);
    box-shadow: 0 12px 26px rgba(249, 115, 22, .42)
}

.tvh-chip.active .tvh-chip-av img {
    filter: none;
    opacity: 1
}

.tvh-chip.active .tvh-chip-name {
    color: var(--tvh-primary);
    font-weight: 500
}

/* active check badge */
.tvh-chip-av::after {
    content: "";
    position: absolute;
    right: 1px;
    bottom: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--tvh-primary);
    border: 2px solid #fff;
    opacity: 0;
    transform: scale(.3);
    transition: opacity .25s ease, transform .3s cubic-bezier(.34, 1.56, .64, 1);
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center
}

.tvh-chip.active .tvh-chip-av::after {
    opacity: 1;
    transform: scale(1)
}

.tvh-panel {
    display: none
}

.tvh-panel.active {
    display: block;
    animation: tvhPanelIn .5s cubic-bezier(.2, .7, .2, 1)
}

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

.tvh-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 18px
}

.tvh-panel-head h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.tvh-count-pill {
    font-size: 12px;
    font-weight: 600;
    color: var(--tvh-primary);
    background: rgba(249, 115, 22, .12);
    padding: 4px 12px;
    border-radius: 999px
}

/* Staggered card entrance when a panel becomes active */
.tvh-panel.active .tvh-card {
    animation: tvhCardIn .55s cubic-bezier(.2, .7, .2, 1) backwards
}

.tvh-panel.active .tvh-card:nth-child(1) {
    animation-delay: .05s
}

.tvh-panel.active .tvh-card:nth-child(2) {
    animation-delay: .13s
}

.tvh-panel.active .tvh-card:nth-child(3) {
    animation-delay: .21s
}

.tvh-panel.active .tvh-card:nth-child(4) {
    animation-delay: .29s
}

.tvh-panel.active .tvh-card:nth-child(5) {
    animation-delay: .37s
}

.tvh-panel.active .tvh-card:nth-child(6) {
    animation-delay: .45s
}

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

/* Keep package card media tidy for document-style images */
.tvh-card-media img {
    object-position: top center
}

/* ============================================================
   Rich package card (reference-style)
   ============================================================ */
.tvh-card {
    flex: 0 0 344px;
    max-width: 344px
}

.tvh-card-media {
    height: 196px
}

.tvh-card-media img {
    object-position: center
}

.tvh-flight {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--tvh-ink);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 13px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    z-index: 3
}

.tvh-flight svg {
    width: 15px;
    height: 15px;
    fill: var(--tvh-primary)
}

/* Promo tag badge (replaces the old top-left flight badge) */
.tvh-tagbadge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    color: var(--tvh-ink);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 13px 4px 5px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    z-index: 3
}

.tvh-tagbadge img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    background: #f3f4f6
}

.tvh-tagbadge.no-gif {
    padding: 7px 13px
}


/* ===== Rich package card details (restored) ===== */
.tvh-wish {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    z-index: 3;
    transition: transform .2s ease
}

.tvh-wish:hover {
    transform: scale(1.08)
}

.tvh-wish svg {
    width: 20px;
    height: 20px;
    fill: #c7ccd6;
    transition: fill .2s ease
}

.tvh-wish.on svg {
    fill: #ef4444
}

.tvh-card-body {
    padding: 18px 20px 20px
}

.tvh-titlerow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px
}

.tvh-titlerow h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.28;
    color: var(--tvh-ink);
    transition: color .3s ease
}

.tvh-card:hover .tvh-titlerow h4 {
    color: var(--tvh-primary)
}

.tvh-dur {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--tvh-primary);
    background: rgba(249, 115, 22, .12);
    padding: 4px 10px;
    border-radius: 8px;
    white-space: nowrap
}

.tvh-rating {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    font-size: 13px
}

.tvh-rating b {
    font-weight: 700;
    color: var(--tvh-ink)
}

.tvh-rating .rev {
    color: var(--tvh-muted)
}

.tvh-stars {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    color: #e5e7eb;
    letter-spacing: 1px;
    font-family: Arial, sans-serif
}

.tvh-stars::before {
    content: "\2605\2605\2605\2605\2605"
}

.tvh-stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #f5b301
}

.tvh-stars-fill::before {
    content: "\2605\2605\2605\2605\2605"
}

.tvh-priceblk {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(20, 19, 39, .07)
}

.tvh-price-left .lbl {
    display: block;
    font-size: 12px;
    color: var(--tvh-muted);
    margin-bottom: 2px
}

.tvh-price {
    display: flex;
    align-items: baseline;
    gap: 3px
}

.tvh-price .amt {
    font-size: 23px;
    font-weight: 800;
    color: var(--tvh-primary)
}

.tvh-price .per {
    font-size: 12px;
    color: var(--tvh-muted)
}

.tvh-saverow {
    display: flex;
    align-items: center;
    gap: 8px;
    /*margin-top: 3px*/
}

.tvh-saverow .old {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through
}

.tvh-saverow .save {
    font-size: 12px;
    font-weight: 700;
    color: #16a34a
}

.tvh-incl {
    display: flex;
    gap: 6px;
    flex: 0 0 auto
}

.tvh-incl .inc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #8b90a0;
    font-weight: 400
}

.tvh-incl .inc svg {
    width: 18px;
    height: 18px;
    fill: #c7ccd6
}

.tvh-incl .inc em {
    font-style: normal
}

.tvh-incl .inc > svg {
    padding: 7px;
    box-sizing: content-box;
    width: 18px;
    height: 18px;
    border-radius: 10px;
    background: #f3f4f6
}

.tvh-incl .inc.on {
    color: var(--tvh-primary)
}

.tvh-incl .inc.on svg {
    fill: var(--tvh-primary)
}

.tvh-incl .inc.on > svg {
    background: rgba(249, 115, 22, .12)
}

.tvh-dep {
    margin-bottom: 18px
}

.tvh-dep-head {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--tvh-muted);
    margin-bottom: 9px
}

.tvh-dep-head svg {
    width: 15px;
    height: 15px;
    fill: var(--tvh-muted)
}

.tvh-dep-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.tvh-dep-chips span {
    font-size: 12px;
    font-weight: 600;
    color: var(--tvh-ink);
    background: #fff;
    border: 1px solid rgba(20, 19, 39, .12);
    padding: 5px 11px;
    border-radius: 8px
}

.tvh-dep-chips .more {
    color: var(--tvh-primary);
    border-color: rgba(249, 115, 22, .4);
    background: rgba(249, 115, 22, .06)
}

.tvh-explore {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    background: var(--tvh-grad);
    background-size: 180% 180%;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(249, 115, 22, .30);
    transition: transform .25s ease, box-shadow .25s ease, background-position .5s ease
}

.tvh-explore:hover {
    transform: translateY(-2px);
    background-position: 100% 0;
    box-shadow: 0 12px 26px rgba(249, 115, 22, .42)
}

.tvh-explore svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    transition: transform .25s ease
}

.tvh-explore:hover svg {
    transform: translateX(4px)
}

.tvh-explore.disabled {
    background: #e5e7eb;
    color: #9ca3af;
    box-shadow: none;
    pointer-events: none
}

@media (max-width: 480px) {
    .tvh-card {
        flex-basis: 86%;
        max-width: 86%
    }

    /* stack includes below the price so nothing gets cut off */
    .tvh-priceblk {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px
    }

    .tvh-price-left {
        width: 100%
    }

    .tvh-incl {
        width: 100%;
        justify-content: flex-start;
        gap: 18px
    }
}


/* bento spans for visual rhythm */
@media (max-width: 1100px) {
    .tvh-memory-grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 760px) {
}

@media (max-width: 500px) {
}

/* ===== Happy Memories — masonry (no crop) + lightbox ===== */
.tvh-memories {
    background: linear-gradient(180deg, var(--tvh-bg) 0%, #fff 100%)
}

.tvh-memory-grid {
    column-count: 4;
    column-gap: 16px
}

@media (max-width: 1100px) {
    .tvh-memory-grid {
        column-count: 3
    }
}

@media (max-width: 760px) {
    .tvh-memory-grid {
        column-count: 2
    }
}

@media (max-width: 500px) {
    .tvh-memory-grid {
        column-count: 1
    }
}

.tvh-memory {
    position: relative;
    margin: 0 0 16px;
    break-inside: avoid;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--tvh-shadow);
    cursor: zoom-in;
    background: #e6e7ee
}

.tvh-memory img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .55s ease
}

.tvh-memory:hover img {
    transform: scale(1.05)
}

.tvh-memory::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 58%, rgba(20, 19, 39, .72));
    transition: opacity .3s ease
}

.tvh-memory figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 16px 16px 13px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .4)
}

.tvh-memory figcaption small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: .85;
    margin-top: 2px
}

.tvh-memory .tvh-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    display: grid;
    place-items: center;
    opacity: 0;
    transform: scale(.8);
    transition: opacity .25s ease, transform .25s ease
}

.tvh-memory:hover .tvh-zoom {
    opacity: 1;
    transform: scale(1)
}

.tvh-memory .tvh-zoom svg {
    width: 17px;
    height: 17px;
    fill: var(--tvh-ink)
}

/* Fullscreen lightbox */
.tvh-lb {
    position: fixed;
    inset: 0;
    z-index: 2147483600;
    background: rgba(10, 8, 14, .93);
    display: none;
    align-items: center;
    justify-content: center
}

.tvh-lb.open {
    display: flex
}

.tvh-lb img {
    max-width: 92vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .55);
    user-select: none;
    -webkit-user-drag: none
}

.tvh-lb-cap {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 15px;
    padding: 0 16px
}

.tvh-lb-count {
    position: absolute;
    top: 18px;
    left: 24px;
    color: rgba(255, 255, 255, .8);
    font-family: Arial, sans-serif;
    font-size: 14px
}

.tvh-lb-close {
    position: absolute;
    top: 14px;
    right: 20px;
    width: 46px;
    height: 46px;
    border: none;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    transition: background .2s
}

.tvh-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: none;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s
}

.tvh-lb-nav:hover, .tvh-lb-close:hover {
    background: rgba(255, 255, 255, .3)
}

.tvh-lb-prev {
    left: 18px
}

.tvh-lb-next {
    right: 18px
}

.tvh-lb-nav svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

@media (max-width: 600px) {
    .tvh-lb-nav {
        width: 44px;
        height: 44px
    }

    .tvh-lb-prev {
        left: 8px
    }

    .tvh-lb-next {
        right: 8px
    }
}

/* ============================================================
   Explore Package — subtle pulse / glow (attention grabber)
   ============================================================ */
@keyframes tvhExplorePulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(249, 115, 22, .30), 0 0 0 0 rgba(249, 115, 22, .45)
    }
    50% {
        box-shadow: 0 10px 24px rgba(249, 115, 22, .42), 0 0 0 8px rgba(249, 115, 22, 0)
    }
}

.tvh-explore:not(.disabled) {
    animation: tvhExplorePulse 2.2s ease-in-out infinite
}

.tvh-explore:not(.disabled):hover {
    animation-play-state: paused
}

@media (prefers-reduced-motion: reduce) {
    .tvh-explore:not(.disabled) {
        animation: none
    }
}

/* ============================================================
   Filter pills — crisp, clearly visible highlighted border
   ============================================================ */
.tvh-pill.active {
    border-color: #c2410c;
    box-shadow: 0 8px 20px rgba(249, 115, 22, .32), inset 0 0 0 1px rgba(255, 255, 255, .45);
}

/* ============================================================
   About page + homepage About section
   ============================================================ */
.tvh-narrow {
    width: min(860px, 92%)
}

.tvh-lead {
    font-size: 18px;
    color: var(--tvh-muted);
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center
}

/* Page hero (About) */
.tvh-page-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 70px 0 54px;
    background: linear-gradient(180deg, #fff 0%, var(--tvh-bg) 100%)
}

.tvh-page-hero .tvh-eyebrow {
    display: inline-block;
    margin-bottom: 14px
}

.tvh-page-hero h1 {
    font-size: clamp(30px, 5vw, 48px);
    margin: 0 0 14px;
    line-height: 1.1
}

.tvh-page-hero h1 .hl {
    background: var(--tvh-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.tvh-page-hero p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--tvh-muted);
    font-size: 17px
}

/* Why-choose check grid */
.tvh-check-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 26px
}

.tvh-check {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 18px 18px 18px 56px;
    box-shadow: var(--tvh-shadow);
    font-weight: 500;
    font-size: 15px
}

.tvh-check::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/14px 14px no-repeat, var(--tvh-grad)
}

/* Prose block (story) */
.tvh-prose p {
    color: #3f3d49;
    font-size: 16.5px;
    margin: 0 0 18px
}

.tvh-quote {
    font-weight: 700;
    font-size: 19px;
    color: var(--tvh-ink);
    text-align: center;
    padding: 22px 0 6px;
    background: var(--tvh-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

/* Vision & Mission cards */
.tvh-vm-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px
}

.tvh-vm {
    background: #fff;
    border-radius: var(--tvh-radius);
    padding: 34px 30px;
    box-shadow: var(--tvh-shadow)
}

.tvh-vm h3 {
    margin: 6px 0 12px;
    font-size: 23px
}

.tvh-vm p {
    color: var(--tvh-muted);
    font-size: 15.5px;
    margin: 0 0 14px
}

.tvh-mission-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.tvh-mission-list li {
    position: relative;
    padding: 0 0 12px 26px;
    color: #3f3d49;
    font-size: 15.5px
}

.tvh-mission-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--tvh-grad)
}

/* Homepage About section */
.tvh-about-grid {
    display: grid;
    grid-template-columns:1.15fr .85fr;
    gap: 40px;
    align-items: center
}

.tvh-about-copy h2 {
    font-size: clamp(26px, 3.4vw, 36px);
    margin: 6px 0 16px
}

.tvh-about-copy p {
    color: var(--tvh-muted);
    font-size: 16px;
    margin: 0 0 16px
}

.tvh-about-copy .tvh-btn {
    margin-top: 8px
}

.tvh-about-cards {
    display: grid;
    gap: 20px
}

.tvh-about-card {
    position: relative;
    background: #fff;
    border-radius: var(--tvh-radius);
    padding: 26px 24px 26px 30px;
    box-shadow: var(--tvh-shadow);
    overflow: hidden
}

.tvh-about-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: var(--tvh-grad)
}

.tvh-about-card h4 {
    margin: 0 0 8px;
    font-size: 19px
}

.tvh-about-card p {
    margin: 0;
    color: var(--tvh-muted);
    font-size: 15px
}

/* CTA band */
.tvh-cta {
    text-align: center;
    background: var(--tvh-grad);
    border-radius: var(--tvh-radius);
    padding: 48px 30px;
    box-shadow: var(--tvh-shadow-lg)
}

.tvh-cta h2 {
    color: #fff;
    margin: 0 0 10px;
    font-size: clamp(24px, 3.2vw, 32px)
}

.tvh-cta p {
    color: rgba(255, 255, 255, .92);
    margin: 0 0 22px;
    font-size: 16px
}

.tvh-cta .tvh-hero-cta {
    justify-content: center
}

.tvh-cta .tvh-btn.warm {
    background: #fff;
    color: var(--tvh-accent)
}

.tvh-cta .tvh-btn.ghost {
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .85)
}

.tvh-cta .tvh-btn.ghost:hover {
    background: rgba(255, 255, 255, .14)
}

/* Hero primary CTA — zoom in/out (scale) attention grabber */
@keyframes tvhExploreZoom {
    0%, 100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.12)
    }
}

.tvh-hero .tvh-btn.warm {
    transform-origin: center;
    animation: tvhExploreZoom 1.4s ease-in-out infinite, tvhExplorePulse 2.2s ease-in-out infinite
}

.tvh-hero .tvh-btn.warm:hover {
    animation-play-state: paused
}

@media (prefers-reduced-motion: reduce) {
    .tvh-hero .tvh-btn.warm {
        animation: none
    }
}

@media (max-width: 820px) {
    .tvh-about-grid {
        grid-template-columns:1fr;
        gap: 28px
    }
}

/* Section-wise backgrounds (About page) for clear visual separation */
.sec-white {
    background: #fff
}

.sec-cream {
    background: var(--tvh-bg)
}

.sec-tint {
    background: linear-gradient(180deg, #fff6ec 0%, #fdf0e2 100%)
}

/* ============================================================
   Instagram footer widget
   ============================================================ */
.tvh-ig-foot {
    margin: 34px 0 6px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.tvh-ig-head {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.tvh-ig-badge {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(45deg, #feda75 0%, #fa7e1e 30%, #d62976 60%, #962fbf 80%, #4f5bd5 100%)
}

.tvh-ig-badge svg {
    width: 26px;
    height: 26px
}

.tvh-ig-meta {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.tvh-ig-meta b {
    color: #fff;
    font-size: 16px;
    font-weight: 700
}

.tvh-ig-meta a {
    color: #cfd0e0;
    font-size: 14px
}

.tvh-ig-meta a:hover {
    color: #fff
}

.tvh-ig-follow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(45deg, #fa7e1e, #d62976, #962fbf);
    box-shadow: 0 8px 20px rgba(214, 41, 118, .35);
    transition: transform .2s ease, box-shadow .2s ease
}

.tvh-ig-follow:hover {
    transform: translateY(-2px);
    box-shadow: 0 11px 26px rgba(214, 41, 118, .5);
    color: #fff
}

.tvh-ig-follow svg {
    width: 18px;
    height: 18px
}

.tvh-ig-feed {
    margin-top: 18px;
    border-radius: 14px;
    overflow: hidden
}

.tvh-ig-feed:empty {
    margin-top: 0
}

.tvh-ig-feed iframe {
    width: 100% !important;
    border: 0;
    display: block
}

/* ============================================================
   Reviews section (free widget embed)
   ============================================================ */
.tvh-reviews {
    background: linear-gradient(180deg, #fff 0%, var(--tvh-bg) 100%)
}

.tvh-reviews-widget {
    margin-top: 30px
}

.tvh-reviews-widget iframe {
    width: 100% !important;
    border: 0;
    display: block
}
