


.tp-page {
    background: var(--bg-main);
    color: var(--text-primary);
    min-height: 100vh;
}


.tp-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: var(--tp-hero-img);
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;   
    overflow: hidden;
}

@supports (background-attachment: fixed) {
    @media (max-width: 768px) {
        .tp-hero { background-attachment: scroll; }
    }
}


.tp-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg,   rgba(6,8,12,0.98) 0%,
                                rgba(6,8,12,0.70) 40%,
                                rgba(6,8,12,0.25) 70%,
                                transparent       100%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(188,146,82,0.12) 0%, transparent 70%);
    z-index: 1;
}


.tp-breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 28px 6% 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
}
.tp-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color .2s;
}
.tp-breadcrumb a:hover { color: var(--gold-light); }
.tp-breadcrumb i        { font-size: 0.65rem; opacity: 0.5; }
.tp-breadcrumb span     { color: rgba(255,255,255,0.85); }


.tp-hero__inner {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    margin: 0 6% 7vh;
}

.tp-hero__meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}


.tp-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    border-radius: 40px;
    background: rgba(14,19,31,0.80);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.tp-pill--gold {
    background: var(--gold-gradient);
    color: var(--text-on-gold);
    border: none;
}


.tp-hero__title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,.6);
}

.tp-hero__sub {
    font-size: clamp(0.95rem, 2vw, 1.12rem);
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 680px;
}


.tp-hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(14,19,31,0.7);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 14px 24px;
    backdrop-filter: blur(12px);
    margin-bottom: 28px;
    width: fit-content;
    max-width: 100%;
}
.tp-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 22px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
}
.tp-stat:first-child { padding-left: 0; }
.tp-stat i           { color: var(--gold-primary); font-size: 0.95rem; }
.tp-stat small       { color: rgba(255,255,255,0.5); margin-left: 2px; font-size: 0.78rem; }
.tp-stat-divider     { width: 1px; height: 24px; background: var(--border-subtle); flex-shrink: 0; }


.tp-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: var(--text-on-gold);
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(188,146,82,0.4);
    transition: transform .25s, box-shadow .25s, filter .25s;
}
.tp-hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(188,146,82,0.55);
    filter: brightness(1.07);
}
.tp-hero__cta i { transition: transform .25s; }
.tp-hero__cta:hover i { transform: translateX(4px); }


.tp-body {
    width: 100%;
    padding: 60px 6% 90px;
}

.tp-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}


.tp-section {
    margin-bottom: 64px;
}

.tp-section__label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    color: var(--gold-primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.tp-label-line {
    display: block;
    width: 36px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    flex-shrink: 0;
}
.tp-section__intro {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
    margin-top: -12px;
}


.tp-about__text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 36px;
}

.tp-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.tp-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 16px 18px;
    border-radius: 12px;
    transition: border-color .25s, transform .25s;
    
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s, transform .5s, border-color .25s;
}
.tp-chip.tp-visible { opacity: 1; transform: translateY(0); }
.tp-chip:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.tp-chip > i {
    font-size: 1.3rem;
    color: var(--gold-primary);
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}
.tp-chip > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.tp-chip strong {
    font-size: 0.8rem;
    color: #fff;
    white-space: nowrap;
}
.tp-chip span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.tp-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
}

.tp-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: var(--bg-surface);
    
    opacity: 0;
    transform: scale(0.97);
    transition: opacity .5s, transform .5s, box-shadow .3s;
}
.tp-gallery__item.tp-visible { opacity: 1; transform: scale(1); }
.tp-gallery__item--wide {
    grid-column: span 2;
    grid-row:    span 2;
}
.tp-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.tp-gallery__item:hover img { transform: scale(1.08); }

.tp-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6,8,12,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}
.tp-gallery__item:hover .tp-gallery__overlay { opacity: 1; }
.tp-gallery__overlay i {
    color: #fff;
    font-size: 1.6rem;
    transform: scale(0.8);
    transition: transform .3s;
}
.tp-gallery__item:hover .tp-gallery__overlay i { transform: scale(1); }

/* + N More Overlay on 5th photo */
.tp-gallery__overlay--more {
    opacity: 1 !important;
    background: rgba(6, 8, 12, 0.72) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.3s ease;
}
.tp-gallery__item:hover .tp-gallery__overlay--more {
    background: rgba(6, 8, 12, 0.85) !important;
}

.tp-gallery__more-content {
    text-align: center;
    color: #fff;
}
.tp-gallery__more-content i {
    font-size: 1.8rem;
    color: var(--gold-light, #d4aa6e);
    display: block;
    margin-bottom: 6px;
}
.tp-gallery__more-content span {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* View All Photos Button */
.tp-gallery-action {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.tp-gallery-view-all {
    background: rgba(188, 146, 82, 0.12);
    border: 1px solid var(--border-gold, rgba(188, 146, 82, 0.35));
    color: var(--gold-light, #d4aa6e);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}
.tp-gallery-view-all:hover {
    background: var(--gold-gradient, linear-gradient(135deg, #d4aa6e, #bc9252));
    color: #0d1018;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(188, 146, 82, 0.35);
}

@media (max-width: 768px) {
    .tp-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 8px;
    }
}


.tp-timeline {
    position: relative;
}

.tp-timeline__item {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .5s, transform .5s;
}
.tp-timeline__item.tp-visible { opacity: 1; transform: translateX(0); }
.tp-timeline__item:last-child { margin-bottom: 0; }

.tp-timeline__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.tp-timeline__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: 0 0 0 4px rgba(188,146,82,0.18);
    flex-shrink: 0;
    margin-top: 4px;
}
.tp-timeline__line {
    flex: 1;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-primary) 0%, var(--border-subtle) 100%);
    margin: 6px 0 0;
    min-height: 40px;
}

.tp-timeline__body {
    padding-bottom: 10px;
}
.tp-timeline__time {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-primary);
    background: rgba(188,146,82,0.1);
    border: 1px solid var(--border-gold);
    padding: 3px 12px;
    border-radius: 40px;
    margin-bottom: 8px;
}
.tp-timeline__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.tp-timeline__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}


.tp-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.tp-services__col {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 26px;
}

.tp-services__col h3 {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border-subtle);
}
.tp-services__col--in h3  { color: #34d399; }
.tp-services__col--out h3 { color: #f87171; }

.tp-services__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tp-services__col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}
.tp-services__col li > i { font-size: 0.8rem; margin-top: 4px; flex-shrink: 0; }
.tp-services__col--in  li > i { color: #34d399; }
.tp-services__col--out li > i { color: #f87171; }


.tp-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tp-review {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 24px;
    transition: border-color .25s;
    
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s, transform .5s, border-color .25s;
}
.tp-review.tp-visible { opacity: 1; transform: translateY(0); }
.tp-review:hover { border-color: var(--border-gold); }

.tp-review__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.tp-review__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--text-on-gold);
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tp-review__info {
    flex: 1;
    min-width: 0;
}
.tp-review__info strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
}
.tp-review__info span {
    font-size: 0.78rem;
    color: var(--text-secondary);
}
.tp-review__info span i { color: var(--gold-primary); font-size: 0.7rem; margin-right: 3px; }
.tp-review__stars { margin-left: auto; display: flex; gap: 3px; }
.tp-review__stars i { font-size: 0.78rem; }
.tp-review__stars i.on  { color: var(--gold-primary); }
.tp-review__stars i.off { color: var(--border-subtle); }
.tp-review__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}


.tp-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tp-faq__item {
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .25s;
    
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s, transform .4s, border-color .25s;
}
.tp-faq__item.tp-visible { opacity: 1; transform: translateY(0); }
.tp-faq__item:has([aria-expanded="true"]) { border-color: var(--border-gold); }

.tp-faq__trigger {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 16px;
    transition: background .2s;
}
.tp-faq__trigger:hover { background: rgba(255,255,255,0.02); }
.tp-faq__trigger[aria-expanded="true"] {
    color: var(--gold-light);
    background: rgba(188,146,82,0.04);
}

.tp-faq__icon {
    color: var(--gold-primary);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: transform .3s, color .2s;
}
.tp-faq__trigger[aria-expanded="true"] .tp-faq__icon {
    color: var(--gold-light);
    transform: rotate(45deg);
}

.tp-faq__body {
    padding: 0 24px 22px;
}
.tp-faq__body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


.tp-sidebar {
    position: sticky;
    top: 90px;
}

.tp-widget {
    background: var(--bg-surface);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 20px;
    background-image:
        radial-gradient(circle at 100% 0%,   rgba(188,146,82,0.07) 0%, transparent 55%),
        radial-gradient(circle at 0%   100%, rgba(188,146,82,0.05) 0%, transparent 55%);
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}


.tp-widget__price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.tp-widget__price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}
.tp-widget__price-main {
    font-size: 2.6rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.tp-widget__price-old {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.tp-widget__price-note {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 10px 13px;
}
.tp-widget__price-note i { color: var(--gold-primary); margin-top: 2px; flex-shrink: 0; }

.tp-widget__divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 20px 0;
}


.tp-widget__info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.tp-widget__info li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.tp-widget__info li > i {
    font-size: 1.05rem;
    color: var(--gold-primary);
    width: 20px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}
.tp-widget__info li > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.tp-widget__info li strong { font-size: 0.85rem; color: #fff; }
.tp-widget__info li span   { font-size: 0.78rem; color: var(--text-secondary); }


.tp-widget__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--gold-gradient);
    color: var(--text-on-gold);
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(188,146,82,0.4);
    transition: transform .25s, box-shadow .25s, filter .25s;
}
.tp-widget__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(188,146,82,0.55);
    filter: brightness(1.06);
}

.tp-widget__guarantee {
    text-align: center;
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.tp-widget__guarantee i { color: var(--gold-primary); }


.tp-widget--share {
    border-color: var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background-image: none;
    box-shadow: none;
}
.tp-share-btns { display: flex; gap: 10px; }
.tp-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s;
}
.tp-share-btn:hover { border-color: var(--border-gold); color: var(--gold-light); }
.tp-share-btn--wa:hover { color: #25d366; border-color: #25d366; }
.tp-share-btn--fb:hover { color: #1877f2; border-color: #1877f2; }


.tp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(3,4,6,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: tpFadeIn .25s ease;
}

.tp-lightbox__close {
    position: fixed;
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    transition: all .2s ease;
    z-index: 10001;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.tp-lightbox__close:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
    transform: scale(1.08);
}

.tp-lightbox__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 86vw;
    max-height: 90vh;
    gap: 16px;
    position: relative;
    z-index: 10000;
}

.tp-lightbox__frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 70vh;
    position: relative;
}

.tp-lightbox__img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.8);
    animation: tpZoomIn .25s ease;
}

.tp-lightbox__counter {
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-light, #d4aa6e);
    letter-spacing: 1px;
    background: rgba(14, 19, 31, 0.8);
    border: 1px solid var(--border-gold, rgba(188,146,82,0.3));
    padding: 4px 16px;
    border-radius: 20px;
}

/* Side Navigation Arrows */
.tp-lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(14, 19, 31, 0.85);
    border: 1px solid var(--border-gold, rgba(188,146,82,0.4));
    color: var(--gold-light, #d4aa6e);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all .25s ease;
    z-index: 10001;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
.tp-lightbox__nav:hover {
    background: var(--gold-gradient, linear-gradient(135deg, #d4aa6e, #bc9252));
    color: #0d1018;
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 28px rgba(188, 146, 82, 0.4);
}
.tp-lightbox__nav--prev { left: 24px; }
.tp-lightbox__nav--next { right: 24px; }

/* Bottom Thumbnail Carousel Strip */
.tp-lightbox__thumbs-wrap {
    width: 100%;
    max-width: 800px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 6px 2px;
    -webkit-overflow-scrolling: touch;
}
.tp-lightbox__thumbs-wrap::-webkit-scrollbar {
    height: 4px;
}
.tp-lightbox__thumbs-wrap::-webkit-scrollbar-thumb {
    background: var(--border-gold, rgba(188,146,82,0.4));
    border-radius: 4px;
}

.tp-lightbox__thumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: max-content;
    min-width: 100%;
}

.tp-lb-thumb-img {
    width: 68px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.45;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.tp-lb-thumb-img:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}
.tp-lb-thumb-img.active {
    opacity: 1;
    border-color: var(--gold-light, #d4aa6e);
    transform: scale(1.08);
    box-shadow: 0 0 16px rgba(188, 146, 82, 0.55);
}

@media (max-width: 768px) {
    .tp-lightbox__close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    .tp-lightbox__nav {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
    .tp-lightbox__nav--prev { left: 10px; }
    .tp-lightbox__nav--next { right: 10px; }
    .tp-lb-thumb-img {
        width: 54px;
        height: 40px;
    }
}


@keyframes tpFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes tpZoomIn {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1);    }
}



@media (max-width: 1100px) {
    .tp-layout {
        grid-template-columns: 1fr 320px;
        gap: 36px;
    }
    .tp-chips { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 900px) {
    .tp-layout {
        grid-template-columns: 1fr;
    }
    .tp-sidebar {
        position: static;
        order: -1;              
    }
    .tp-widget { max-width: 540px; margin: 0 auto 20px; }
    .tp-widget--share { max-width: 540px; margin: 0 auto; }
    .tp-hero { background-attachment: scroll; min-height: 75vh; }
    .tp-hero__stats { display: none; }       
}


@media (max-width: 640px) {
    .tp-body { padding: 40px 5% 70px; }

    .tp-chips { grid-template-columns: 1fr; }

    .tp-gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }
    .tp-gallery__item--wide {
        grid-column: span 2;
        grid-row:    span 1;     
    }

    .tp-services { grid-template-columns: 1fr; }

    .tp-lightbox__nav--prev { left:  8px; }
    .tp-lightbox__nav--next { right: 8px; }

    .tp-review__head { flex-wrap: wrap; }
    .tp-review__stars { margin-left: 0; width: 100%; }
}


@media (max-width: 420px) {
    .tp-hero__title  { font-size: 1.75rem; }
    .tp-hero__inner  { margin-bottom: 5vh; }
    .tp-gallery      { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .tp-gallery__item--wide { grid-column: 1; }
    .tp-widget__price-main { font-size: 2.2rem; }
}
