/* ============================================
   Landing Page V5 — The House of Legends
   ============================================ */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --Primary-2: #c5a059;
    --Neutral-2: #2E2E2E;
    --hol-v4-text: #e6e6e6;
    --hol-v4-text-muted: #b0b0b0;
    --hol-v4-gold: #c5a059;
    --hol-v4-font-sans: "Mulish", sans-serif;
    --hol-v4-duration: 0.2s;
    --hol-v4-ease: ease;
}

/* ---- Hero background — YouTube iframe (non-interactive, cover) ---- */
.v5-hero-bg-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.v5-hero-yt {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    filter: brightness(0.68) saturate(0.96);
}

.v5-hero-yt--mobile {
    display: none;
}

@media (max-width: 767px) {
    .v5-hero-yt--desktop {
        display: none;
    }

    .v5-hero-yt--mobile {
        display: block;
    }
}

.v5-hero-yt-iframe {
    position: absolute;
    border: 0;
    top: 50%;
    left: 50%;
    pointer-events: none;
}

/* 16:9 — fill hero (landscape / desktop) */
.v5-hero-yt-iframe--landscape {
    width: 177.78vh;
    min-width: 100%;
    height: 56.25vw;
    min-height: 100%;
    max-width: none;
    transform: translate(-50%, -50%) scale(1.08);
    transform-origin: center center;
}

/* 9:16 Shorts — fill hero on narrow screens */
.v5-hero-yt-iframe--portrait {
    width: 100vw;
    min-width: 100%;
    height: 177.78vw;
    min-height: 100%;
    max-width: none;
    transform: translate(-50%, -50%) scale(1.06);
    transform-origin: center center;
}

@media (prefers-reduced-motion: reduce) {
    .v5-hero-yt-iframe--landscape,
    .v5-hero-yt-iframe--portrait {
        transform: translate(-50%, -50%);
    }
}

/* Extra fade into page background below hero */
.v5-hero-bg-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0) 0%,
        rgba(26, 26, 26, 0.35) 38%,
        rgba(26, 26, 26, 0.88) 78%,
        #1a1a1a 100%
    );
}

/* ---- Language Toggle ---- */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    background: #4d4d4d;
    padding: 2px;
    border-radius: 800px;
}

.lang-item {
    padding: 2px;
    border-radius: 800px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.lang-item.active {
    background: #e6e6e6;
    opacity: 1;
}

.flag-icon {
    width: 30px;
    height: 20px;
    display: block;
}

/* ---- Services Cards Section ---- */
.v5-services-section {
    background-color: #2e2e2e;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.v5-services-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.v5-services-row {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.v5-service-card {
    position: relative;
    width: 384px;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.v5-service-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.v5-service-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v5-service-card:hover .v5-service-card-bg img {
    transform: scale(1.05);
}

.v5-service-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: background 0.5s ease;
}

.v5-service-card:hover .v5-service-card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}

.v5-service-card-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v5-service-card:hover .v5-service-card-content {
    transform: translateY(-30px);
}

.v5-service-card-number {
    font-family: "Philosopher", serif;
    font-size: 32px;
    line-height: 38px;
    color: #c5a059;
    font-weight: 400;
}

.v5-service-card-title {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 36px;
    line-height: 44px;
    color: #fff;
    font-weight: 400;
    text-align: center;
}

.v5-service-card-desc {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease 0.1s, max-height 0.5s ease;
}

.v5-service-card:hover .v5-service-card-desc {
    opacity: 1;
    max-height: 120px;
}

.v5-service-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background-color: #1a1a1a;
    border: 2px solid #dec89e;
    color: #dec89e;
    padding: 8px 16px;
    border-radius: 800px;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s, background-color 0.3s ease;
}

.v5-service-card-btn .v5-service-card-btn-chevron {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.v5-service-card-btn .v5-service-card-btn-label {
    flex-shrink: 0;
}

@media screen and (min-width: 769px) {
    .v5-service-card .v5-service-card-btn {
        padding: 8px 24px;
        gap: 8px;
    }
}

.v5-service-card:hover .v5-service-card-btn {
    opacity: 1;
    transform: translateY(0);
}

.v5-service-card-btn:hover {
    background-color: rgba(222, 200, 158, 0.15);
}

/* ---- Why House of Legends ---- */
.v5-why-section {
    background-color: #1a1a1a;
    padding: 80px 120px;
}

.v5-why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.v5-why-title {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 64px;
    line-height: 72px;
    color: #c5a059;
    font-weight: 400;
    text-align: center;
}

.v5-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.v5-why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.v5-why-icon {
    width: 48px;
    height: 48px;
    color: #c5a059;
}

.v5-why-icon svg {
    width: 100%;
    height: 100%;
}

.v5-why-item-title {
    font-family: "Philosopher", serif;
    font-size: 24px;
    line-height: 36px;
    color: #fff;
    font-weight: 400;
}

.v5-why-item-desc {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #808080;
}

.v5-why-item-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ---- Gallery / A Unique Evening Experience ---- */
.v5-gallery-section {
    background-color: #2e2e2e;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.v5-gallery-title {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 64px;
    line-height: 72px;
    color: #c5a059;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 120px;
}

.v5-gallery-row {
    display: flex;
    gap: 32px;
    width: max-content;
}

.v5-gallery-row-wrap {
    overflow: hidden;
    margin-bottom: 32px;
}

.v5-gallery-row-wrap:last-child {
    margin-bottom: 0;
}

.v5-gallery-row img {
    height: 400px;
    width: auto;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    border-radius: 0;
}

.v5-gallery-row--left {
    animation: galleryScrollLeft 40s linear infinite;
}

.v5-gallery-row--right {
    animation: galleryScrollRight 45s linear infinite;
}

.v5-gallery-row-wrap:hover .v5-gallery-row {
    animation-play-state: paused;
}

@keyframes galleryScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes galleryScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ---- What Our Guests Say ---- */
.v5-reviews-section {
    background-color: #1a1a1a;
    padding: 80px 120px;
    overflow: hidden;
}

.v5-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.v5-reviews-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.v5-reviews-title {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 64px;
    line-height: 72px;
    color: #c5a059;
    font-weight: 400;
}

.v5-reviews-subtitle {
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 29px;
    color: #e6e6e6;
    max-width: 900px;
}

.v5-reviews-rating {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.v5-reviews-stars {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.v5-reviews-stars svg {
    width: 24px;
    height: 24px;
    color: #c5a059;
    fill: #c5a059;
}

.v5-reviews-score {
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #c5a059;
}

.v5-reviews-score span {
    color: #e6e6e6;
    font-weight: 400;
}

.v5-reviews-carousel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

/* Reviews carousel: 3 cards visible (1 on small screens), stepped translate + JS autoplay */
.v5-reviews-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.v5-reviews-marquee-viewport {
    container-type: inline-size;
    container-name: v5-reviews;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.v5-reviews-marquee-track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
    width: max-content;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.v5-reviews-marquee-track .v5-review-marquee-card {
    flex: 0 0 calc((100cqw - 48px) / 3);
    min-width: 0;
    max-width: none;
    width: auto;
    margin: 0;
    height: auto;
    align-self: stretch;
    box-sizing: border-box;
}

.v5-reviews-marquee-track .v5-review-card {
    height: 100%;
}

.v5-reviews-marquee-track .v5-review-text {
    flex: 1 1 auto;
}

@media (prefers-reduced-motion: reduce) {
    .v5-reviews-marquee-track {
        transition: none !important;
    }
}

.v5-reviews-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.v5-reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
    border: 1px solid #555;
    background: #3a3a3a;
    cursor: pointer;
    transition: width 0.35s ease, border-radius 0.35s ease, background 0.25s ease, border-color 0.25s ease;
}

.v5-reviews-dot.is-active {
    width: 28px;
    border-radius: 6px;
    background: #c5a059;
    border-color: #c5a059;
}

.v5-reviews-dot:focus-visible {
    outline: 2px solid #c5a059;
    outline-offset: 2px;
}

/* Match .v5-service-card-btn; always visible outside service card hover context */
.v5-reviews-all-btn.v5-service-card-btn {
    opacity: 1;
    transform: none;
}

.v5-reviews-all-btn.v5-service-card-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.v5-reviews-carousel-wrap .v5-reviews-all-btn {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 100%;
}

.v5-review-card {
    background-color: #252525;
    border-radius: 10px;
    padding: 32px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.v5-review-stars {
    display: flex;
    gap: 4px;
}

.v5-review-stars svg {
    width: 20px;
    height: 20px;
    color: #c5a059;
    fill: #c5a059;
}

.v5-review-text {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    font-style: italic;
    line-height: 24px;
    color: #e6e6e6;
}

.v5-review-author {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
}

.v5-review-google {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v5-review-google img {
    width: 20px;
    height: 20px;
}

.v5-review-google a {
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-decoration: underline;
}

/* ---- Recommended by Hotels ---- */
.v5-recommended-section {
    background: var(--Neutral-2, #2E2E2E);
    padding: 80px 120px 40px;
}

.v5-recommended-container {
    max-width: 1250px;
    margin: 0 auto;
}

.v5-recommended-title {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 64px;
    line-height: 72px;
    color: #c5a059;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
}

.v5-recommended-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.v5-recommended-item {
    flex: 0 0 390px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.v5-recommended-icon {
    width: 48px;
    height: 48px;
    color: #c5a059;
}

.v5-recommended-icon svg {
    width: 100%;
    height: 100%;
}

.v5-recommended-item-title {
    font-family: "Philosopher", serif;
    font-size: 24px;
    line-height: 36px;
    color: #fff;
    font-weight: 400;
}

.v5-recommended-item-desc {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #808080;
}

.v5-recommended-item-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ---- Partner Logos ---- */
.v5-partners-section {
    background-color: #1a1a1a;
    padding: 40px 120px;
}

.v5-partners-row {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.v5-partner-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.82;
    transition: opacity 0.3s ease;
}

.v5-partner-mark:hover {
    opacity: 1;
}

.v5-partner-mark svg {
    display: block;
    height: auto;
    width: auto;
    max-height: 44px;
}

.v5-partner-mark--square svg {
    max-height: 48px;
    max-width: 64px;
}

.v5-partner-mark--booking svg {
    max-height: 28px;
    max-width: 120px;
}

.v5-partner-mark--airbnb svg {
    max-height: 32px;
    max-width: 130px;
}

.v5-partner-mark--trip svg {
    max-height: 34px;
    max-width: 160px;
}

/* ---- Contact Form Section ---- */
.v5-contact-section {
    position: relative;
    padding: 80px 120px;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v5-contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.v5-contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v5-contact-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 47%, #1a1a1a 92%);
}

.v5-contact-form-container {
    position: relative;
    z-index: 1;
    background-color: #1a1a1a;
    border: 1px solid #a6a6a6;
    border-radius: 12px;
    /* Match pe-inquiry-panel breathing room (fields use full card width) */
    padding: 32px 40px;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    box-sizing: border-box;
}

/* align-items:center shrink-wraps children; stretch the title + form to card width */
.v5-contact-form-container > .v5-contact-title,
.v5-contact-form-container > .v5-partner-form {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.v5-partner-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
}

.v5-partner-form .v5-contact-submit {
    align-self: center;
}

.v5-contact-title {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 32px;
    line-height: 40px;
    color: #c5a059;
    font-weight: 400;
    text-align: center;
}

.v5-contact-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.v5-contact-row {
    display: flex;
    gap: 24px;
}

.v5-contact-input {
    flex: 1;
    background-color: #2e2e2e;
    border: none;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 72px;
}

.v5-contact-input label {
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #e6e6e6;
}

.v5-contact-input input,
.v5-contact-input select,
.v5-contact-input textarea {
    background: transparent;
    border: none;
    outline: none;
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    resize: none;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

/* Chrome / Edge / Safari: override bright autofill background */
.v5-contact-input input:-webkit-autofill,
.v5-contact-input input:-webkit-autofill:hover,
.v5-contact-input input:-webkit-autofill:focus,
.v5-contact-input input:-webkit-autofill:active,
.v5-contact-input textarea:-webkit-autofill,
.v5-contact-input textarea:-webkit-autofill:hover,
.v5-contact-input textarea:-webkit-autofill:focus,
.v5-contact-input textarea:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #2e2e2e inset !important;
    box-shadow: 0 0 0 1000px #2e2e2e inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    transition: background-color 99999s ease-out;
}

.v5-contact-select {
    width: 100%;
    cursor: pointer;
    padding: 4px 8px 4px 0;
    margin-left: -2px;
    border-radius: 6px;
    color-scheme: dark;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.v5-contact-select.v5-contact-select-empty {
    color: #808080;
}

.v5-contact-select:focus,
.v5-contact-select.v5-contact-select--open {
    background-color: #252525;
    color: #e6e6e6;
    box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.45);
}

.v5-contact-select option {
    background-color: #1a1a1a;
    color: #e6e6e6;
    padding: 10px 12px;
}

.v5-contact-select option:checked {
    background-color: #2a2418;
    color: #dec89e;
}

.v5-contact-input input::placeholder,
.v5-contact-input select::placeholder,
.v5-contact-input textarea::placeholder {
    color: #808080;
}

.v5-contact-textarea {
    min-height: 160px;
}

.v5-contact-textarea .v5-textarea-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v5-contact-textarea .v5-char-count {
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #a6a6a6;
}

.v5-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background-color: #c5a059;
    color: #1a1a1a;
    border: none;
    padding: 8px 14px;
    border-radius: 800px;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.v5-contact-submit:hover {
    background-color: #b8944f;
    transform: translateY(-2px);
}

.v5-form-submit-error {
    display: none;
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #e8786a;
    margin: 0 auto;
    max-width: 520px;
    text-align: center;
}

.v5-form-submit-error.is-visible {
    display: block;
}

.v5-contact-form-done {
    display: none;
    text-align: center;
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #dec89e;
    margin: 16px 0 0;
}

.v5-contact-form-done.is-visible {
    display: block;
}

/* ---- Don't Miss the Show CTA ---- */
.v5-cta-section {
    position: relative;
    padding: 180px 120px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.v5-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Taller framing = slightly less vertical crop → more height of the photo visible */
.v5-cta-bg img,
.v5-cta-bg .v5-cta-bg-img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 112%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center 20%;
}

.v5-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 47%, #1a1a1a 92%);
}

.v5-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.v5-cta-title {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 64px;
    line-height: 72px;
    color: #c5a059;
    font-weight: 400;
}

/* ---- Footer ---- */
.v5-footer {
    background-color: #1a1a1a;
    padding: 40px 120px 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.v5-footer-divider {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(to right, transparent, #4d4d4d, transparent);
}

.v5-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.v5-footer-logo-text {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 120px;
    line-height: 120px;
    color: #c5a059;
    font-weight: 400;
}

.v5-footer-tagline {
    font-family: "Philosopher", serif;
    font-size: 32px;
    line-height: 38px;
    color: #fff;
    font-weight: 400;
}

.v5-footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-width: 1200px;
    min-height: 28px;
}

.v5-footer-copyright {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: min(520px, calc(100% - 200px));
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #9aa0a5;
    text-align: center;
}

.v5-footer-terms {
    position: relative;
    z-index: 1;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #9aa0a5;
    text-decoration: underline;
    text-align: right;
    white-space: nowrap;
}

/* ---- Leading cluster: burger + logo (mobile); display:contents on desktop ---- */
.v5-nav-leading {
    display: contents;
}

/* ---- Mobile hamburger (V4-style lines + animation) ---- */
.v5-nav-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
    position: relative;
}

.v5-nav-burger-line {
    width: 100%;
    height: 3px;
    background-color: #e6e6e6;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.v5-nav-burger.active .v5-nav-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.v5-nav-burger.active .v5-nav-burger-line:nth-child(2) {
    opacity: 0;
}

.v5-nav-burger.active .v5-nav-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.v5-nav-burger:focus-visible {
    outline: 2px solid #c5a059;
    outline-offset: 2px;
}

/* ---- Mobile menu overlay (landing V4 pattern: dim + floating panel) ---- */
.v5-nav-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 1010;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.v5-nav-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.v5-nav-mobile-content {
    position: relative;
    background-color: #2e2e2e;
    border-radius: 12px;
    padding: 20px;
    min-width: min(280px, 100%);
    max-width: min(360px, calc(100% - 32px));
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 52px;
    max-height: calc(100dvh - 84px);
    overflow: hidden;
    overscroll-behavior: contain;
    transform: translateX(20px) translateY(-10px) scale(0.95);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.v5-nav-mobile-overlay.active .v5-nav-mobile-content {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 1;
}

.v5-nav-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

/* Language switcher — bottom of mobile drawer (header toggle hidden on small screens) */
.v5-nav-mobile-lang {
    margin-top: auto;
    flex-shrink: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(230, 230, 230, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.v5-nav-mobile-lang .language-toggle {
    display: flex;
}

.v5-nav-mobile-list li {
    border-bottom: 1px solid rgba(230, 230, 230, 0.1);
}

.v5-nav-mobile-list li:last-child {
    border-bottom: none;
}

.v5-nav-mobile-link {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 12px 0;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

.v5-nav-mobile-link .v5-nav-item-num {
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #808080;
    flex-shrink: 0;
}

.v5-nav-mobile-link .v5-nav-item-text {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #e6e6e6;
    font-weight: 400;
}

.v5-nav-mobile-link:hover .v5-nav-item-text,
.v5-nav-mobile-link:active .v5-nav-item-text {
    color: #c5a059;
}

@media (prefers-reduced-motion: reduce) {
    .v5-nav-mobile-content,
    .v5-nav-mobile-overlay,
    .v5-nav-burger-line {
        transition: none !important;
    }
}

@media screen and (min-width: 769px) {
    .v5-nav-mobile-overlay {
        display: none !important;
    }
}

/* Lock body scroll when mobile menu is open */
body.v5-mobile-menu-open {
    overflow: hidden;
}

/* ---- V5 Navigation ---- */
.v5-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* Always above the mobile overlay (z-index 1010) so burger stays tappable */
    z-index: 1020;
    padding: 10px 120px 8px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: transparent;
    transition: background-color 0.3s ease;
    overflow: visible;
}

.v5-nav.scrolled {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
}

.v5-nav-logo {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.v5-nav-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.v5-nav-center {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
    overflow: visible;
}

.v5-nav-line {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, #a6a6a6, transparent);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
}

.v5-nav-menu-text {
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
    background: none;
    border: none;
}

.v5-nav-menu-text:hover {
    color: #c5a059;
}

/* Desktop: slide menu text + line upward when panel is expanded */
.v5-nav.expanded .v5-nav-menu-text {
    transform: translateY(-30px);
    opacity: 0;
    pointer-events: none;
}

.v5-nav.expanded .v5-nav-line {
    transform: translateY(-30px);
    opacity: 0;
}

.v5-nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
    transition: opacity 0.3s ease;
}

.v5-nav-host-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: 800px;
    background: var(--Primary-2, #c5a059);
    color: #1a1a1a;
    border: none;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.v5-nav-host-btn:hover {
    background-color: #b8944f;
}

/* ---- Navigation Expanded Panel (dropdown under .v5-nav-center only) ---- */
.v5-nav-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    width: min(450px, calc(100vw - 48px));
    margin-top: -40px;
    padding: 18px 20px 20px;
    box-sizing: border-box;
    background: rgba(26, 26, 26, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
    display: block;
    max-height: min(70vh, 560px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    z-index: 20;
    pointer-events: none;
}

.v5-nav.expanded .v5-nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Logo + Host/Language in panel were for full-width mega bar; hidden for center dropdown */
.v5-nav-panel-logo,
.v5-nav-panel-right {
    display: none !important;
}

.v5-nav-panel-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.v5-nav-panel-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
}

.v5-nav-panel-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #a6a6a6, transparent);
}

.v5-nav-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v5-nav-panel-list li {
    width: 100%;
    display: flex;
    justify-content: center;
}

.v5-nav-panel-item {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    padding: 8px 0;
    width: 100%;
    max-width: 405px;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.v5-nav-panel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(169, 134, 94, 0),
        rgba(169, 134, 94, 0.3) 50%,
        rgba(169, 134, 94, 0)
    );
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v5-nav-panel-item:hover::before {
    transform: scaleX(1);
}

.v5-nav-item-num {
    position: relative;
    z-index: 1;
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #808080;
    font-weight: 400;
    transition: color 0.3s ease;
}

.v5-nav-item-text {
    position: relative;
    z-index: 1;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    font-weight: 400;
    transition: color 0.3s ease;
}

.v5-nav-panel-item:hover .v5-nav-item-num {
    color: #dec89e;
}

.v5-nav-panel-item:hover .v5-nav-item-text {
    color: #c5a059;
    font-weight: 700;
}

/* Current page in menu (desktop panel + mobile drawer) */
.v5-nav-panel-item.is-current .v5-nav-item-text,
.v5-nav-panel-item.is-current:hover .v5-nav-item-text {
    color: #ffc44e;
    font-weight: 700;
}

.v5-nav-panel-item.is-current .v5-nav-item-num,
.v5-nav-panel-item.is-current:hover .v5-nav-item-num {
    color: #e6b84d;
}

.v5-nav-mobile-link.is-current .v5-nav-item-text,
.v5-nav-mobile-link.is-current:hover .v5-nav-item-text,
.v5-nav-mobile-link.is-current:active .v5-nav-item-text {
    color: #ffc44e;
}

.v5-nav-mobile-link.is-current .v5-nav-item-num,
.v5-nav-mobile-link.is-current:hover .v5-nav-item-num,
.v5-nav-mobile-link.is-current:active .v5-nav-item-num {
    color: #e6b84d;
}

/* ---- Page Transition Curtain ---- */
.v5-curtain-transition {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    pointer-events: none;
}

.v5-curtain-left,
.v5-curtain-right {
    width: 50%;
    height: 100%;
    background-color: #1a1a1a;
}

.v5-curtain-left {
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.v5-curtain-right {
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.v5-curtain-transition.closing .v5-curtain-left,
.v5-curtain-transition.closing .v5-curtain-right {
    transform: translateX(0);
}

.v5-curtain-transition.closing {
    pointer-events: auto;
}

/* ---- V5 Reservation popup (reuse V4 "Choose Your Evening" form) ---- */
.v5-reservation-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10030;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.v5-reservation-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.v5-reservation-modal {
    position: relative;
    width: min(480px, 100%);
}

.v5-reservation-modal .reservation-box {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 16px;
    padding: 32px 20px 20px;
}

.v5-reservation-modal .reservation-box-title {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c5a059;
    margin: 0 0 24px;
    white-space: normal;
    text-align: center;
    max-width: 100%;
}

.v5-reservation-modal .reservation-title-break {
    display: none;
}

.v5-reservation-modal .reservation-box-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v5-reservation-modal .reservation-field {
    padding: 12px;
    background: #2e2e2e;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v5-reservation-modal .reservation-field label {
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #e6e6e6;
}

.v5-reservation-modal .reservation-field input {
    width: 100%;
    border: none;
    outline: none;
    padding: 0;
    background: transparent;
    color: #fff;
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.v5-reservation-modal .reservation-field input::placeholder {
    color: #808080;
}

.v5-reservation-modal .reservation-field input:-webkit-autofill,
.v5-reservation-modal .reservation-field input:-webkit-autofill:hover,
.v5-reservation-modal .reservation-field input:-webkit-autofill:focus,
.v5-reservation-modal .reservation-field input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #2e2e2e inset !important;
    box-shadow: 0 0 0 1000px #2e2e2e inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    transition: background-color 99999s ease-out;
}

.v5-reservation-modal .reservation-box-submit {
    width: 100%;
    border: none;
    border-radius: 800px;
    background: #c5a059;
    color: #1a1a1a;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.v5-reservation-modal .reservation-box-submit:hover {
    background: #b8944f;
}

.v5-reservation-modal .reservation-box-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.v5-reservation-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #e6e6e6;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

body.v5-reservation-modal-open {
    overflow: hidden;
}

/* ---- V5 Calendar modal ---- */
.v5-calendar-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10040;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.v5-calendar-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.v5-calendar-modal {
    position: relative;
    width: min(980px, 100%);
    max-height: min(90vh, 880px);
    overflow: auto;
    background: #2e2e2e;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
    padding: 24px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}

.v5-calendar-modal-title {
    grid-column: 1 / -1;
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 64px;
    line-height: 72px;
    font-weight: 400;
    color: #c5a059;
    text-align: center;
    margin: 0;
}

.v5-calendar-head {
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.v5-calendar-month-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.v5-calendar-nav-btn {
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    color: #e6e6e6;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.v5-calendar-month-label {
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #c5a059;
}

.v5-calendar-legend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

.v5-calendar-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d9d9d9;
}

.v5-calendar-weekdays,
.v5-calendar-grid {
    grid-column: 1;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.v5-calendar-weekdays span {
    text-align: center;
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #e6e6e6;
}

.v5-calendar-day {
    position: relative;
    border-radius: 8px;
    border: 1px solid #808080;
    background: #2e2e2e;
    min-height: 36px;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #808080;
}

.v5-calendar-day.is-available {
    border-color: #ffffff;
    background: #808080;
    color: #fff;
    cursor: pointer;
}

.v5-calendar-day.is-selected {
    border-color: #c5a059;
    background: #c5a059;
    color: #1a1a1a;
    font-weight: 700;
}

.v5-calendar-day-check {
    position: absolute;
    top: -6px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #c5a059;
    border: 1px solid #1a1a1a;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v5-calendar-day.is-outside {
    opacity: 0.4;
}

.v5-calendar-shows {
    grid-column: 2;
    grid-row: 2 / 5;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    padding-left: 24px;
}

.v5-calendar-shows::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 304px;
    background: #4d4d4d;
}

.v5-calendar-shows-title {
    margin: 0;
    font-family: "Mulish", sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #fff;
}

.v5-calendar-empty {
    margin: 0;
    font-family: "Mulish", sans-serif;
    font-size: 24px;
    line-height: 36px;
    color: #808080;
    text-align: center;
    padding-top: 32px;
}

.v5-calendar-show-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v5-calendar-show-card {
    border: 1px solid #4d4d4d;
    border-radius: 4px;
    padding: 4px 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.v5-calendar-show-copy {
    flex: 1;
    min-width: 0;
}

.v5-calendar-show-title {
    margin: 0;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #fff;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.v5-calendar-show-time {
    margin: 0;
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #a6a6a6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v5-calendar-show-reserve {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: #c5a059;
    color: #1a1a1a;
    padding: 6px 14px;
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.v5-calendar-show-reserve:hover {
    background: #d4af6a;
}

.v5-calendar-show-thumb {
    width: 149px;
    height: 108px;
    border-radius: 4px;
    object-fit: cover;
}

.v5-calendar-close {
    grid-column: 1 / -1;
    justify-self: center;
    border: 0;
    border-radius: 800px;
    background: #c5a059;
    color: #1a1a1a;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    padding: 8px 24px;
    cursor: pointer;
}

body.v5-calendar-modal-open {
    overflow: hidden;
}

/* ---- Upcoming Show section (index5) — layout tokens, responsive padding ---- */
.v5-upcoming-section {
    background: #1a1a1a;
    /* allow card lift + shadow (match dte-upcoming) */
    overflow: visible;
}

.v5-upcoming-inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.v5-upcoming-title {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 64px;
    line-height: 72px;
    color: #c5a059;
    font-weight: 400;
    text-align: center;
}

.v5-upcoming-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
}

.v5-upcoming-card {
    background: transparent;
    overflow: visible;
    border-radius: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Desktop image: Figma 1484:9610 — aspect 580×424 per card column */
.v5-upcoming-card-media {
    height: auto;
    aspect-ratio: 580 / 424;
    width: 100%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    isolation: isolate;
}

.v5-upcoming-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0) 35%,
        rgba(26, 26, 26, 0.55) 100%
    );
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.v5-upcoming-card-media::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, #c5a059, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.v5-upcoming-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
    .v5-upcoming-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 56px rgba(0, 0, 0, 0.55);
    }

    .v5-upcoming-card:hover .v5-upcoming-card-img {
        transform: scale(1.07);
    }

    .v5-upcoming-card:hover .v5-upcoming-card-media::after {
        opacity: 1;
    }

    .v5-upcoming-card:hover .v5-upcoming-card-media::before {
        transform: scaleX(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .v5-upcoming-card,
    .v5-upcoming-card-img,
    .v5-upcoming-card-media::after,
    .v5-upcoming-card-media::before {
        transition-duration: 0.01ms !important;
    }

    .v5-upcoming-card:hover {
        transform: none;
        box-shadow: none;
    }

    .v5-upcoming-card:hover .v5-upcoming-card-img {
        transform: none;
    }

    .v5-upcoming-card:hover .v5-upcoming-card-media::after {
        opacity: 0;
    }

    .v5-upcoming-card:hover .v5-upcoming-card-media::before {
        transform: scaleX(0);
    }
}

.v5-upcoming-card-body {
    background: #2e2e2e;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.v5-upcoming-card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v5-upcoming-card-frequency {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v5-upcoming-card-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.v5-upcoming-card-freq-text {
    font-family: "Philosopher", serif;
    font-size: 18px;
    line-height: 28px;
    color: #c5a059;
    font-weight: 400;
    white-space: nowrap;
}

.v5-upcoming-card-title {
    font-family: "Philosopher", serif;
    font-size: 32px;
    line-height: 38px;
    color: #fff;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v5-upcoming-card-subtitle {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #a6a6a6;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v5-upcoming-card-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-width: 0;
}

.v5-upcoming-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.v5-upcoming-see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #dec89e;
    text-decoration: none;
    border: 2px solid #dec89e;
    border-radius: 800px;
    padding: 8px 24px;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
}

.v5-upcoming-see-more:hover {
    background: rgba(222, 200, 158, 0.08);
}

.v5-upcoming-card-seats {
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    line-height: 21px;
    min-width: 0;
}

.v5-upcoming-seats-num {
    color: #c5a059;
    font-weight: 600; /* SemiBold — Figma desktop */
}

.v5-upcoming-seats-label {
    color: #e6e6e6;
    font-weight: 400;
}

.v5-upcoming-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c5a059;
    color: #1a1a1a;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    padding: 8px 24px;
    border-radius: 800px;
    text-decoration: none;
    text-transform: capitalize;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}

.v5-upcoming-card-btn:hover {
    background: #d4af6a;
    transform: translateY(-1px);
}

.v5-upcoming-card-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.v5-upcoming-calendar-wrap {
    display: flex;
    justify-content: center;
}

.v5-upcoming-calendar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1a1a1a;
    color: #dec89e;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    padding: 8px 24px;
    border: 2px solid #dec89e;
    border-radius: 800px;
    text-decoration: none;
    text-transform: capitalize;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.v5-upcoming-calendar-btn:hover {
    background: #dec89e;
    color: #1a1a1a;
}

.v5-upcoming-empty {
    text-align: center;
    color: #808080;
    font-size: 18px;
}

/* ---- V5 Hero ---- */
.v5-hero {
    position: relative;
    /* Contain hero children (.v5-hero-content z-index 9100, flashlight 9000) so they
       cannot stack above fixed nav (1020) / mobile overlay (1010). */
    z-index: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.v5-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.v5-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.12) 42%,
        rgba(0, 0, 0, 0.12) 80%,
        transparent 58%
    );
    z-index: 3;
}


.v5-hero-content {
    position: relative;
    z-index: 9100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    padding: 200px 20px 120px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: v5HeroFadeIn 1s ease-out 0.5s forwards;
}

@keyframes v5HeroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.v5-hero-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.v5-hero-title {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 64px;
    line-height: 72px;
    color: #c5a059;
    font-weight: 400;
}

.v5-hero-subtitle {
    font-family: "Philosopher", serif;
    font-size: 32px;
    line-height: 38px;
    color: #e6e6e6;
    font-weight: 400;
    max-width: 900px;
}

/* Subtitle → icon → note (mobile column); desktop: icon + note row */
.v5-hero-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.v5-hero-note-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v5-hero-note-icon {
    display: block;
}

.v5-hero-note {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v5-hero-note span {
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #e6e6e6;
}

.v5-hero-ctas {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.v5-hero-btn-outline {
    background-color: #1a1a1a;
    color: #dec89e;
    border: 2px solid #dec89e;
    padding: 8px 24px;
    border-radius: 800px;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.v5-hero-btn-outline:hover {
    background-color: rgba(222, 200, 158, 0.15);
}

.v5-hero-btn-filled {
    background-color: #c5a059;
    color: #1a1a1a;
    border: 2px solid #c5a059;
    padding: 8px 24px;
    border-radius: 800px;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.v5-hero-btn-filled:hover {
    background-color: #b8944f;
    border-color: #b8944f;
}

/* ---- V5 Flashlight Overlay ---- */
.v5-flashlight-overlay {
    --mouse-x: 50%;
    --mouse-y: 50%;
    --spotlight-radius: 320px;
    position: absolute;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    mask-image: radial-gradient(
        circle var(--spotlight-radius) at var(--mouse-x) var(--mouse-y),
        transparent 0%,
        transparent 28%,
        black 55%,
        black 78%,
        black 100%
    );
    -webkit-mask-image: radial-gradient(
        circle var(--spotlight-radius) at var(--mouse-x) var(--mouse-y),
        transparent 0%,
        transparent 28%,
        black 55%,
        black 78%,
        black 100%
    );
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
}

.v5-flashlight-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .v5-flashlight-overlay {
        display: none !important;
    }
}

/* ---- Fade-in Animations ---- */
.v5-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.v5-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.v5-fade-in.delay-1 { transition-delay: 0.1s; }
.v5-fade-in.delay-2 { transition-delay: 0.2s; }
.v5-fade-in.delay-3 { transition-delay: 0.3s; }

/* ---- Responsive ---- */
@media screen and (max-width: 1200px) {
    .v5-services-section {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .v5-service-card { flex: 1; min-width: 280px; width: auto; }
    .v5-why-section,
    .v5-reviews-section,
    .v5-recommended-section,
    .v5-contact-section,
    .v5-footer { padding-left: 40px; padding-right: 40px; }
    .v5-nav { padding: 10px 40px 8px; }
    .v5-footer-logo-text { font-size: 80px; line-height: 80px; }
    .v5-upcoming-inner { padding: 60px 40px; }
}

/* Upcoming: single column from tablet portrait down (before full mobile type scale at 768) */
@media screen and (max-width: 900px) {
    .v5-upcoming-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media screen and (max-width: 768px) {
    /* Top bar: [burger + logo] | Host — same cluster as V4 mobile */
    .v5-nav-leading {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .v5-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 12px;
        padding: 12px 16px;
    }

    .v5-nav-burger {
        display: flex;
    }

    .v5-nav-logo img {
        width: 56px;
        height: 56px;
    }

    .v5-nav-right {
        flex-shrink: 0;
        gap: 12px;
    }

    .v5-nav-center { display: none; }
    .v5-nav-panel { display: none !important; }

    .v5-nav-right .v5-nav-host-btn {
        font-size: 14px;
        line-height: 22px;
        padding: 8px 16px;
        white-space: nowrap;
    }

    .v5-nav-right .language-toggle {
        display: none;
    }

    /* Mobile hero: image on top (~210px), content below — Figma 1525-21792 */
    .v5-hero {
        min-height: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        cursor: default;
    }

    .v5-hero-bg {
        position: relative;
        inset: auto;
        height: 210px;
        overflow: hidden;
        flex-shrink: 0;
        z-index: auto;
    }

    .v5-hero-bg-bottom-fade {
        height: 100%;
    }

    .v5-hero-overlay {
        display: none;
    }

    .v5-hero-content {
        position: relative;
        z-index: 2;
        padding: 0 16px 64px;
        gap: 16px;
        margin-top: -40px;
        background-color: #1a1a1a;
        max-width: 100%;
        align-items: center;
    }

    /* Title/Medium, Subtitle/Small — Figma tokens */
    .v5-hero-title { font-size: 36px; line-height: 44px; }
    .v5-hero-subtitle {
        font-size: 18px;
        line-height: 28px;
        max-width: 100%;
    }

    .v5-hero-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .v5-hero-note span {
        font-size: 14px;
        line-height: 20px;
    }

    /* Stacked CTAs: outline first, filled second */
    .v5-hero-ctas {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 8px;
    }

    .v5-hero-ctas .v5-hero-btn-outline,
    .v5-hero-ctas .v5-hero-btn-filled {
        justify-content: center;
        text-align: center;
        font-size: 16px;
        line-height: 24px;
        padding: 8px 16px;
    }

    /* Upcoming — Figma 1525:21945 (mobile): px 16 py 40, gap 32 / 24, card image ~343×189 */
    .v5-upcoming-section {
        overflow-x: clip;
    }

    .v5-upcoming-inner {
        padding: 40px max(16px, env(safe-area-inset-left))
            40px max(16px, env(safe-area-inset-right));
        gap: 32px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .v5-upcoming-title {
        font-size: 32px;
        line-height: 40px;
    }

    .v5-upcoming-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .v5-upcoming-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .v5-upcoming-card-media {
        height: auto;
        aspect-ratio: 343 / 189.396;
        width: 100%;
    }

    .v5-upcoming-card-img {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
    }

    .v5-upcoming-card-body {
        padding: 24px;
        gap: 24px;
    }

    .v5-upcoming-card-info {
        width: 100%;
        min-width: 0;
        align-self: stretch;
    }

    .v5-upcoming-card-frequency {
        width: 100%;
        min-width: 0;
    }

    .v5-upcoming-card-freq-text {
        font-family: "Mulish", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
        min-width: 0;
    }

    .v5-upcoming-card-title {
        font-family: "Philosopher", serif;
        font-size: 18px;
        line-height: 28px;
        font-weight: 700;
        min-width: 0;
    }

    .v5-upcoming-card-subtitle {
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
        min-width: 0;
    }

    .v5-upcoming-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        min-width: 0;
    }

    .v5-upcoming-card-actions {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        min-width: 0;
    }

    .v5-upcoming-card-seats {
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
    }

    .v5-upcoming-seats-num {
        font-weight: 700;
    }

    /* Button/Medium — Mulish Bold 18 / 28, px 24 py 8 (Figma) */
    .v5-upcoming-card-btn {
        font-size: 18px;
        line-height: 28px;
        padding: 8px 24px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .v5-upcoming-card-actions .v5-upcoming-card-btn {
        width: auto;
        max-width: none;
    }

    .v5-upcoming-see-more {
        font-size: 16px;
        line-height: 24px;
        padding: 8px 20px;
    }

    .v5-upcoming-calendar-btn {
        font-size: 16px;
        line-height: 24px;
        padding: 8px 20px;
    }

    .v5-upcoming-empty {
        font-size: 16px;
    }

    .v5-services-section {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .v5-services-row { flex-direction: column; gap: 20px; }

    /* Figma 1525-22046: top gradient, centered stack, fixed card height — full bleed, no side margin */
    .v5-service-card {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        height: 320px;
        min-height: 320px;
    }

    .v5-service-card-overlay {
        background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
    }

    .v5-service-card:hover .v5-service-card-overlay {
        background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
    }

    .v5-service-card-content {
        transform: none;
        justify-content: flex-start;
        align-items: center;
        padding: 24px;
        gap: 10px;
    }

    .v5-service-card:hover .v5-service-card-content {
        transform: none;
    }

    .v5-service-card-number {
        font-size: 24px;
        line-height: 36px;
    }

    .v5-service-card-title {
        font-size: 32px;
        line-height: 40px;
        text-align: center;
    }

    .v5-service-card-desc {
        opacity: 1;
        max-height: none;
        overflow: visible;
        text-align: center;
        color: #fff;
        font-size: 14px;
        line-height: 20px;
    }

    .v5-service-card-btn {
        opacity: 1;
        transform: none;
        align-self: center;
        font-size: 16px;
        line-height: 24px;
        padding: 8px 16px;
    }

    .v5-service-card:hover .v5-service-card-btn {
        opacity: 1;
        transform: none;
    }

    .v5-why-section { padding: 40px 16px; }
    .v5-why-title { font-size: 32px; line-height: 40px; }
    .v5-why-grid { grid-template-columns: 1fr; gap: 28px; }
    .v5-why-item-title { font-size: 20px; line-height: 30px; }
    .v5-why-item-desc { font-size: 14px; line-height: 20px; }

    .v5-gallery-section { padding: 40px 0; }
    .v5-gallery-title {
        font-size: 32px;
        line-height: 40px;
        padding: 0 16px;
        margin-bottom: 24px;
    }

    .v5-gallery-row-wrap { margin-bottom: 20px; }
    .v5-gallery-row img { height: 200px; }

    /* What Our Guests Say — aligned with Reviews page mobile (Figma 1579:29747) */
    .v5-reviews-section {
        padding: 40px 16px;
    }

    .v5-reviews-container {
        gap: 32px;
    }

    .v5-reviews-header {
        gap: 8px;
    }

    .v5-reviews-title {
        font-size: 36px;
        line-height: 44px;
    }

    .v5-reviews-subtitle {
        font-size: 14px;
        line-height: 20px;
        color: #e6e6e6;
    }

    .v5-reviews-rating {
        gap: 8px;
    }

    .v5-reviews-stars svg {
        width: 24px;
        height: 24px;
    }

    .v5-reviews-score {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    .v5-reviews-carousel-wrap {
        gap: 16px;
    }

    .v5-reviews-marquee-viewport {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .v5-reviews-marquee-track .v5-review-marquee-card {
        flex: 0 0 280px;
        max-width: 280px;
    }

    .v5-review-card {
        min-height: 260px;
        padding: 24px;
        box-sizing: border-box;
    }

    .v5-review-text {
        font-size: 16px;
        line-height: 24px;
        font-style: normal;
    }

    .v5-reviews-all-btn.v5-service-card-btn {
        font-size: 16px;
        line-height: 24px;
        padding: 8px 16px;
        gap: 4px;
    }

    .v5-recommended-section { padding: 40px 16px 32px; }
    .v5-recommended-title { font-size: 32px; line-height: 40px; }
    .v5-recommended-grid { flex-direction: column; gap: 28px; }
    .v5-recommended-item { flex: none; width: 100%; }
    .v5-recommended-item-title { font-size: 20px; line-height: 30px; }
    .v5-recommended-item-desc { font-size: 14px; line-height: 20px; }

    /* Partners: 2×2 grid — Figma mobile */
    .v5-partners-section { padding: 24px 16px 32px; }
    .v5-partners-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
        max-width: 320px;
        margin: 0 auto;
        justify-items: center;
        align-items: center;
    }

    .v5-partner-mark { opacity: 0.9; }

    .v5-contact-section { padding: 48px 16px; min-height: 0; }
    .v5-contact-form-container {
        padding: 24px 20px;
    }
    .v5-contact-row { flex-direction: column; gap: 16px; }
    .v5-contact-title {
        font-size: 28px;
        line-height: 36px;
    }

    .v5-contact-fields { gap: 16px; }
    .v5-contact-input { min-height: 0; padding: 10px 12px; }

    .v5-contact-submit {
        width: 100%;
        max-width: 220px;
        font-size: 16px;
        line-height: 24px;
        padding: 8px 12px;
    }

    /* Don’t miss the show — Figma mobile spacing */
    .v5-cta-section { padding: 80px 16px 40px; }
    .v5-cta-title {
        font-size: 36px;
        line-height: 44px;
    }

    .v5-cta-content .v5-hero-btn-filled {
        font-size: 16px;
        line-height: 24px;
        padding: 10px 24px;
    }

    /* Footer — Figma mobile: title 36/44, tagline 18/28, stacked legal */
    .v5-footer {
        padding: 32px 16px 24px;
        gap: 24px;
    }

    .v5-footer-logo-text {
        font-size: 36px;
        line-height: 44px;
    }

    .v5-footer-tagline {
        font-size: 18px;
        line-height: 28px;
        max-width: min(100%, 360px);
    }

    /* English tagline: single line on narrow screens (scales down if needed) */
    body:not(.lang-vi) .v5-footer-tagline {
        max-width: 100%;
        white-space: nowrap;
        font-size: clamp(9px, 3.35vw, 18px);
        line-height: 1.22;
    }

    .v5-footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        min-height: 0;
    }

    .v5-footer-copyright {
        position: static;
        transform: none;
        max-width: 100%;
        order: 2;
    }

    .v5-footer-terms {
        position: static;
        order: 1;
        text-align: center;
    }

    .v5-footer-copyright,
    .v5-footer-terms {
        font-size: 14px;
        line-height: 20px;
    }

    .v5-reservation-modal .reservation-box {
        padding-top: 36px;
    }

    .v5-reservation-modal .reservation-box-title {
        font-size: 32px;
    }

    .v5-calendar-modal {
        width: min(343px, 100%);
        max-height: min(90vh, 780px);
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }

    .v5-calendar-head,
    .v5-calendar-weekdays,
    .v5-calendar-grid {
        grid-column: 1;
    }

    .v5-calendar-month-label {
        font-size: 14px;
        line-height: 20px;
    }

    .v5-calendar-day {
        min-height: 32px;
        font-size: 14px;
        line-height: 20px;
    }

    .v5-calendar-shows {
        grid-column: 1;
        grid-row: auto;
        padding-left: 0;
    }

    .v5-calendar-shows::before {
        content: none;
    }

    .v5-calendar-shows-title {
        font-size: 14px;
        line-height: 20px;
    }

    .v5-calendar-empty {
        font-size: 28px;
        line-height: 40px;
        padding-top: 4px;
    }

    .v5-calendar-show-title {
        font-size: 14px;
        line-height: 20px;
    }

    .v5-calendar-show-time {
        font-size: 14px;
        line-height: 20px;
    }

    .v5-calendar-show-reserve {
        margin-top: 8px;
        font-size: 12px;
        line-height: 18px;
        padding: 5px 12px;
    }

    .v5-calendar-show-thumb {
        width: 88px;
        height: 64px;
    }

    .v5-calendar-close {
        font-size: 16px;
        line-height: 24px;
        padding: 8px 16px;
    }
}

/* ---- Terms & Conditions modal (aligned with landing V4) ---- */
.terms-modal-overlay-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.terms-modal-overlay-wrapper.active {
    display: flex;
}

.terms-modal-overlay-wrapper .terms-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.terms-modal-overlay-wrapper .terms-modal {
    position: relative;
    z-index: 1;
    background: var(--hol-v4-surface, #2a2a2a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    width: 92%;
    max-width: 780px;
    max-height: 82vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.terms-modal-header {
    padding: 32px 40px 24px;
    text-align: center;
    flex-shrink: 0;
}

.terms-modal-title {
    color: #c5a059;
    font-size: 36px;
    font-family: "Decophile", "Playfair Display", serif;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: 1px;
    margin: 0;
}

.terms-modal-body {
    padding: 0 40px 24px;
    overflow-y: auto;
    flex: 1;
}

.terms-modal-body::-webkit-scrollbar {
    width: 6px;
}

.terms-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.terms-modal-body::-webkit-scrollbar-thumb {
    background: #4d4d4d;
    border-radius: 3px;
}

.terms-modal-section {
    margin-bottom: 24px;
}

.terms-modal-section-title {
    color: var(--hol-v4-text);
    font-size: 16px;
    font-family: var(--hol-v4-font-sans);
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 12px;
}

.terms-modal-section-content {
    color: var(--hol-v4-text-muted);
    font-size: 15px;
    font-family: var(--hol-v4-font-sans);
    font-weight: 400;
    line-height: 24px;
}

.terms-modal-section-content a {
    color: var(--hol-v4-gold);
}

.terms-modal-section-divider {
    width: 48px;
    height: 0;
    border-top: 2px solid #4d4d4d;
    margin: 24px 0;
}

.terms-modal-footer {
    padding: 16px 40px 28px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.terms-modal-close-btn {
    padding: 10px 36px;
    background: #c5a059;
    border: 0;
    border-radius: 800px;
    color: #000;
    font-size: 16px;
    font-family: var(--hol-v4-font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--hol-v4-duration) var(--hol-v4-ease),
        opacity var(--hol-v4-duration) var(--hol-v4-ease);
}

.terms-modal-close-btn:hover {
    background: #b89050;
}

@media screen and (max-width: 768px) {
    .terms-modal-header {
        padding: 24px 20px 16px;
    }

    .terms-modal-title {
        font-size: 28px;
        line-height: 34px;
    }

    .terms-modal-body {
        padding: 0 20px 20px;
    }

    .terms-modal-footer {
        padding: 12px 20px 24px;
    }

    .terms-modal-close-btn {
        padding: 10px 28px;
        font-size: 15px;
    }
}

/* ============================================
   Vietnamese — display type (Libre Baskerville)
   Matches landing-page.css; extends v5 + subpage title classes loaded after this file.
   ============================================ */
body.lang-vi .hero-title,
body.lang-vi .section-title,
body.lang-vi .footer-title,
body.lang-vi .font-decophile,
body.lang-vi .modal-title,
body.lang-vi .upcoming-show-title,
body.lang-vi .dont-miss-title,
body.lang-vi .reservations-title,
body.lang-vi .v5-service-card-title,
body.lang-vi .v5-why-title,
body.lang-vi .v5-gallery-title,
body.lang-vi .v5-reviews-title,
body.lang-vi .v5-recommended-title,
body.lang-vi .v5-contact-title,
body.lang-vi .v5-cta-title,
body.lang-vi .v5-footer-logo-text,
body.lang-vi .v5-upcoming-title,
body.lang-vi .v5-hero-title,
body.lang-vi .terms-modal-title,
body.lang-vi .pe-hero-title,
body.lang-vi .pe-section-title-gold,
body.lang-vi .pe-xp-card-body h3,
body.lang-vi .pe-venue-title,
body.lang-vi .pe-package h3,
body.lang-vi .pe-inquiry-head h2,
body.lang-vi .dte-hero-title,
body.lang-vi .dte-section-title,
body.lang-vi .dte-book-card-title,
body.lang-vi .dte-fusion-heading,
body.lang-vi .dte-upcoming-title,
body.lang-vi .cw-organizer-title,
body.lang-vi .cw-ideal-title,
body.lang-vi .cw-formats-title,
body.lang-vi .ap-section-title-gold-center,
body.lang-vi .ap-models-intro h2,
body.lang-vi .ap-venue-copy h2,
body.lang-vi .vr-creative-title,
body.lang-vi .vr-section-title-gold,
body.lang-vi .vr-space-subtitle,
body.lang-vi .vr-space-label,
body.lang-vi .vr-rental-format-inner h2,
body.lang-vi .hae-section-title-gold,
body.lang-vi .hae-opp-card-title,
body.lang-vi .ahol-section-title,
body.lang-vi .ahol-vision-title,
body.lang-vi .reviews-creative-title,
body.lang-vi .reviews-share-title,
body.lang-vi .reviews-visit-title,
body.lang-vi .contact-hero-title,
body.lang-vi .contact-location-title,
body.lang-vi .faq-v5-hero-title,
body.lang-vi .faq-v5-cat-btn,
body.lang-vi .faq-v5-cta-title {
    font-family: "Libre Baskerville", "Playfair Display", serif !important;
}

/* Vietnamese display titles: reduce by 10px so Libre Baskerville matches Decophile visual size */
body.lang-vi .v5-hero-title,
body.lang-vi .v5-why-title,
body.lang-vi .v5-gallery-title,
body.lang-vi .v5-reviews-title,
body.lang-vi .v5-recommended-title,
body.lang-vi .v5-upcoming-title,
body.lang-vi .v5-cta-title {
    font-size: 54px;
    line-height: 62px;
}

body.lang-vi .v5-footer-logo-text {
    font-size: 110px;
    line-height: 110px;
}

body.lang-vi .v5-service-card-title {
    font-size: 26px;
    line-height: 34px;
}

body.lang-vi .v5-contact-title {
    font-size: 22px;
    line-height: 30px;
}

@media screen and (max-width: 768px) {
    body.lang-vi .v5-hero-title {
        font-size: 26px;
        line-height: 34px;
    }

    body.lang-vi .v5-why-title,
    body.lang-vi .v5-gallery-title,
    body.lang-vi .v5-recommended-title,
    body.lang-vi .v5-upcoming-title {
        font-size: 22px;
        line-height: 30px;
    }

    body.lang-vi .v5-reviews-title {
        font-size: 26px;
        line-height: 34px;
    }

    body.lang-vi .v5-cta-title {
        font-size: 26px;
        line-height: 34px;
    }

    body.lang-vi .v5-footer-logo-text {
        font-size: 26px;
        line-height: 34px;
    }

    body.lang-vi .v5-service-card-title {
        font-size: 22px;
        line-height: 30px;
    }
}

body.lang-vi .landing-v4 {
    --hol-v4-font-serif: "Libre Baskerville", "Playfair Display", serif;
}
