:root {
    --bg: #f6f2ea;
    --bg-soft: #eee8dd;
    --surface: #ffffff;
    --surface-2: #faf7f1;
    --text: #111111;
    --text-soft: #5f5f5f;
    --line: rgba(0, 0, 0, 0.08);

    --dark: #0f1720;
    --dark-2: #18222d;
    --white: #ffffff;

    --brand: #93f25c;
    --brand-strong: #65ca35;
    --brand-soft: rgba(147, 242, 92, 0.14);

    --shadow: 0 18px 48px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.18);

    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 16px;

    --container: 1380px;
    --header-height: 88px;
}

/* =========================
   RESET
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ttv-page {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(147, 242, 92, 0.10), transparent 18%),
        linear-gradient(180deg, #f8f4ed 0%, #f3eee5 100%);
    overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

/* =========================
   NAVBAR
========================= */
.ttv-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 242, 234, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ttv-header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.ttv-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.ttv-brand img {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.ttv-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex: 1 1 auto;
}

.ttv-nav a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    transition: color 0.2s ease;
}

.ttv-nav a:hover {
    color: #2f5a18;
}

.ttv-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), #caffae);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.ttv-nav a:hover::after {
    transform: scaleX(1);
}

.ttv-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.ttv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 18px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ttv-btn:hover {
    transform: translateY(-2px);
}

.ttv-btn-primary {
    background: linear-gradient(135deg, var(--brand), #caffae);
    color: #10200d;
    box-shadow: 0 14px 30px rgba(147, 242, 92, 0.22);
}

.ttv-btn-ghost {
    background: rgba(255, 255, 255, 0.66);
    color: var(--text);
    border-color: rgba(0, 0, 0, 0.08);
}

.ttv-burger {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    cursor: pointer;
    flex: 0 0 auto;
}

.ttv-burger span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.ttv-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ttv-burger.open span:nth-child(2) {
    opacity: 0;
}

.ttv-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.ttv-mobile-menu {
    display: none;
    padding: 0 16px 16px;
    background: rgba(246, 242, 234, 0.96);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ttv-mobile-menu a {
    display: block;
    width: 100%;
    padding: 14px 8px;
    font-weight: 700;
    color: var(--text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ttv-mobile-menu .ttv-btn {
    width: 100%;
    margin-top: 12px;
}

.ttv-mobile-menu.open {
    display: block;
}

/* =========================
   FOOTER
========================= */
.ttv-footer {
    margin-top: 28px;
    padding: 28px 0 20px;
}

.ttv-footer-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 20px;
    padding: 28px;
    border-radius: 32px;
    background: linear-gradient(180deg, #121922, #0f151d);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-lg);
}

.ttv-footer-brand {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ttv-footer-brand img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    padding: 8px;
    flex: 0 0 auto;
}

.ttv-footer-brand strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.ttv-footer-brand p,
.ttv-footer-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.ttv-footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ttv-footer-links div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ttv-footer-links span,
.ttv-footer-cta span {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.ttv-footer-links a {
    color: var(--white);
    opacity: 0.82;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ttv-footer-links a:hover {
    opacity: 1;
    transform: translateX(2px);
}

.ttv-footer-cta {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    align-self: start;
}

.ttv-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.ttv-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 6px 0;
    color: var(--text-soft);
    font-size: 0.92rem;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--brand), #caffae);
    color: #10200d;
    box-shadow: 0 14px 30px rgba(147, 242, 92, 0.24);
}

.btn--secondary {
    background: var(--surface);
    color: var(--text);
    border-color: rgba(0, 0, 0, 0.10);
}

.btn--glass {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
}

/* =========================
   CHIP
========================= */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--brand-soft);
    color: #243d14;
    border: 1px solid rgba(147, 242, 92, 0.28);
}

.chip::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-strong);
    box-shadow: 0 0 0 7px rgba(147, 242, 92, 0.16);
    flex: 0 0 auto;
}

.chip--dark {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.18);
}

.chip--dark::before {
    background: var(--white);
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.12);
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    background: #000;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(147, 242, 92, 0.18), transparent 18%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.36) 48%, rgba(0, 0, 0, 0.68));
}

.hero__content {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding-top: 40px;
    padding-bottom: 84px;
}

.hero__main {
    max-width: 860px;
}

.hero__main h1 {
    margin: 18px 0 16px;
    color: var(--white);
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.hero__main h1 span {
    display: block;
    color: var(--brand);
}

.hero__main p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.85;
    font-size: 1.05rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 1080px;
}

.glass-card {
    padding: 18px 20px;
    border-radius: 22px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.glass-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.02rem;
}

.glass-card span {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    font-size: 0.95rem;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 3;
    width: 42px;
    height: 62px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
}

.hero__scroll span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    animation: scrollDot 1.6s infinite ease-in-out;
}

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(24px);
        opacity: 0.2;
    }
}

/* =========================
   SECTIONS
========================= */
.section {
    padding: 52px 0;
}

.section--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 24px;
}

.section-head h2,
.booking-card__content h2,
.panel h2 {
    margin: 12px 0 0;
    font-size: clamp(2.1rem, 4.6vw, 4.2rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.section-head p,
.booking-card__content p,
.detail-card p,
.metric-card p,
.booking-highlight p,
.panel p,
.community-item span {
    color: var(--text-soft);
    line-height: 1.8;
}

/* =========================
   MAP
========================= */
.map-layout {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 18px;
    align-items: start;
}

.map-box,
.map-side {
    align-self: start;
}

.map-box,
.detail-card,
.quick-links a,
.metric-card,
.booking-card,
.booking-highlight,
.panel {
    box-shadow: var(--shadow);
}

.map-box {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
    isolation: isolate;
}

.map-toolbar {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
}

.map-box__zoom {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.94);
    font-size: 0.84rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-box__zoom:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.interactive-map {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 32px;
}

.interactive-map__image {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    aspect-ratio: 1264 / 842;
}

.interactive-map__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    aspect-ratio: 1264 / 842;
}

.map-area,
.map-area * {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.map-area {
    outline: none;
}

.map-area polygon,
.map-area rect,
.map-area path,
.map-area circle {
    fill: transparent;
    stroke: transparent;
    stroke-width: 0;
    pointer-events: all;
    transition:
        fill 0.22s ease,
        stroke 0.22s ease,
        stroke-width 0.22s ease,
        filter 0.22s ease;
}

.map-area:hover polygon,
.map-area:hover rect,
.map-area:hover path,
.map-area:hover circle {
    fill: transparent;
    stroke: transparent;
    stroke-width: 0;
}

.map-area:focus {
    outline: none;
}

.map-area:focus-visible polygon,
.map-area:focus-visible rect,
.map-area:focus-visible path,
.map-area:focus-visible circle {
    fill: transparent;
    stroke: transparent;
    stroke-width: 0;
}

.map-area.is-active polygon,
.map-area.is-active rect,
.map-area.is-active path,
.map-area.is-active circle {
    fill: transparent;
    stroke: transparent;
    stroke-width: 0;
    filter: none;
}

.map-area.is-active circle {
    fill: transparent;
    stroke: transparent;
}

.map-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-card {
    padding: 24px;
    border-radius: 28px;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.detail-card h3 {
    margin: 14px 0 10px;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.detail-meta {
    margin-top: 14px;
}

.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.88rem;
    font-weight: 700;
    color: #46523c;
}

.detail-card__actions,
.panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.quick-links {
    display: grid;
    gap: 10px;
}

.quick-links a {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.quick-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(147, 242, 92, 0.28);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.quick-links strong {
    font-weight: 800;
}

.quick-links span {
    color: var(--text-soft);
    font-size: 0.94rem;
}

/* =========================
   METRICS
========================= */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.metric-card {
    padding: 22px;
    border-radius: 26px;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.metric-card strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.07em;
}

.metric-card span {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3d6d28;
}

/* =========================
   BOOKING
========================= */
.booking-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    padding: 24px;
    border-radius: 32px;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.booking-form {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr 1fr auto;
    gap: 12px;
    margin-top: 22px;
}

.form-field {
    padding: 12px 14px;
    border-radius: 18px;
    background: var(--surface-2);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.form-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
}

.form-field input,
.form-field select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-weight: 800;
}

.booking-form__submit {
    width: 100%;
}

.booking-card__side {
    display: flex;
}

.booking-highlight {
    width: 100%;
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, #151d26, #0f151d);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.booking-highlight span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
}

.booking-highlight h3 {
    margin: 14px 0 10px;
    font-size: 1.8rem;
    letter-spacing: -0.05em;
}

.booking-highlight p {
    color: rgba(255, 255, 255, 0.78);
}

/* =========================
   PANELS / SPLIT
========================= */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.panel {
    padding: 28px;
    border-radius: 32px;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* =========================
   PHONE MOCKUP
========================= */
.phone {
    width: min(100%, 320px);
    margin: 24px auto 0;
    padding: 14px;
    border-radius: 32px;
    background: linear-gradient(180deg, #111821, #1b2733);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.phone__notch {
    width: 34%;
    height: 6px;
    margin: 4px auto 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.phone__card {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.phone__card + .phone__card {
    margin-top: 12px;
}

.phone__card small {
    display: block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.phone__card strong {
    display: block;
    font-size: 1.02rem;
}

.phone__card span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.store-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    border-radius: 24px;
    background: var(--surface-2);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.store-card small {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5d6d63;
}

.store-card strong {
    font-size: 1.1rem;
}

.store-card span {
    color: #34503e;
}

/* =========================
   COMMUNITY
========================= */
.community-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.community-item {
    padding: 20px;
    border-radius: 24px;
    background: var(--surface-2);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.community-item strong {
    display: block;
    margin-bottom: 8px;
}

/* =========================
   MODAL
========================= */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal__dialog {
    position: relative;
    width: min(96vw, 1400px);
    max-height: 92vh;
    overflow: auto;
    padding: 18px;
    border-radius: 28px;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-lg);
}

.modal__dialog img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.modal__close {
    position: sticky;
    top: 0;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    z-index: 2;
}

/* =========================
   REVEAL
========================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

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

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1300px) {
    .map-layout,
    .booking-card,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1180px) {
    .ttv-nav,
    .ttv-header-actions {
        display: none;
    }

    .ttv-burger {
        display: block;
    }

    .ttv-footer-shell {
        grid-template-columns: 1fr;
    }

    .ttv-footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .hero__stats,
    .store-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ttv-brand img {
        height: 50px;
    }

    .ttv-header-inner {
        min-height: 78px;
    }

    .ttv-footer {
        padding-top: 18px;
    }

    .ttv-footer-shell {
        padding: 22px;
        border-radius: 26px;
    }

    .ttv-footer-brand {
        flex-direction: column;
    }

    .ttv-footer-links {
        grid-template-columns: 1fr;
    }

    .ttv-footer-actions {
        flex-direction: column;
    }

    .ttv-footer-actions .ttv-btn {
        width: 100%;
    }

    .ttv-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__main h1 {
        font-size: clamp(2.6rem, 13vw, 4.6rem);
    }

    .hero__actions,
    .detail-card__actions,
    .panel__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-form,
    .metrics-grid,
    .store-grid {
        grid-template-columns: 1fr;
    }

    .hero__content {
        padding-top: 28px;
        padding-bottom: 90px;
    }

    .detail-card h3 {
        font-size: 1.6rem;
    }

    .panel,
    .booking-card,
    .detail-card {
        padding: 20px;
    }
}
