/**
 * The Grand Theme Styles
 * Built on Bootstrap 5 — use BS classes in markup, custom overrides here.
 */

/* ── Custom Font ────────────────────────────────────────────── */
@font-face {
    font-family: 'TheGrand';
    src: url('/wp-content/uploads/useanyfont/5956TheGrand.woff2') format('woff2'),
         url('/wp-content/uploads/useanyfont/5956TheGrand.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ── Root Variables ─────────────────────────────────────────── */
:root {
    --tg-gold: #D2AB68;
    --tg-gold-light: #d4b896;
    --tg-dark: #181b22;
    --tg-darker: #111111;
    --tg-body-font: 'Raleway', sans-serif;
    --tg-heading-font: 'TheGrand', Georgia, serif;
}

/* ── Base ───────────────────────────────────────────────────── */
body {
    font-family: var(--tg-body-font);
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--tg-heading-font);
}

a {
    color: var(--tg-gold);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--tg-gold-light);
}

.bg-tg-dark {background-color: var(--tg-dark);}

.btn-tg-outline {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--tg-gold);
    border: #795311 double 5px;
    padding: 4px 8px;
    border-radius: 0;
}
.btn-tg-outline:hover {
    background-color: var(--tg-darker);
    border: #795311 double 5px;
}
.txt-gray {
    color: #AAAAAA;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.site-header .navbar {
    min-height: 74px;
    padding: 10px 0;
    background-color: transparent !important;
    border-top: 1px solid rgba(210, 171, 104, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background-color 0.3s ease, min-height 0.3s ease;
}

body:not(.home) .site-header .navbar {
    background-color: #000 !important;
}

.site-header .navbar.scrolled {
    min-height: 64px;
    background-color: #000 !important;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.site-header .navbar.scrolled .custom-logo-link img,
.site-header .navbar.scrolled .navbar-brand img {
    max-height: 64px;
}

.site-header .tg-header-layout {
    min-height: inherit;
}

.site-header .tg-brand-mark {
    z-index: 2;
    text-align: center;
}

@media (min-width: 992px) {
    .site-header .tg-header-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
    }

    .site-header .tg-brand-mark {
        grid-column: 2;
        grid-row: 1;
    }

    .site-header .navbar-collapse {
        display: contents !important;
    }

    .site-header .tg-menu-group-left {
        grid-column: 1;
        grid-row: 1;
    }

    .site-header .tg-menu-group-right {
        grid-column: 3;
        grid-row: 1;
    }
}

.site-header .custom-logo-link,
.site-header .navbar-brand {
    display: block;
    margin: 0;
    font-family: var(--tg-heading-font);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tg-gold) !important;
    line-height: 1;
}

.site-header .custom-logo-link img,
.site-header .navbar-brand img {
    display: block;
    width: auto;
    max-height: 95px;
    transition: max-height 0.3s ease;
}

.site-header .navbar-collapse {
    width: 100%;
}

.site-header .tg-menu-group {
    display: flex;
    flex: 1 1 0;
    min-width: 0;
}

.site-header .tg-menu-group-left {
    justify-content: flex-start;
    padding-right: 5rem;
}

.site-header .tg-menu-group-right {
    justify-content: flex-end;
    padding-left: 5rem;
}

.site-header .tg-primary-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
}

.site-header .nav-link {
    padding: 0.5rem 0.95rem !important;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.34em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--tg-gold) !important;
}

.site-header .tg-nav-rental {
    color: var(--tg-gold) !important;
    background-color: #181b22;
    border-radius: 19px;
    animation: tg-rental-nav-blink 1.6s ease-in-out infinite;
}

@keyframes tg-rental-nav-blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.42;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header .tg-nav-rental {
        animation: none;
    }
}

.site-header .dropdown-menu {
    min-width: 16rem;
    margin-top: 0.8rem;
    padding: 0.45rem 0;
    border: 0;
    border-top: 1px solid var(--tg-gold);
    border-radius: 0;
    background: #050607;
    box-shadow: none;
}

.site-header .dropdown-item {
    padding: 0.85rem 1.75rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1.3;
    text-transform: uppercase;
    white-space: normal;
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus,
.site-header .dropdown-item.active {
    background: transparent;
    color: var(--tg-gold);
}

.site-header .dropdown-toggle::after {
    display: none;
}

@media (min-width: 992px) and (hover: hover) {
    .site-header .dropdown > .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.2s ease 0.1s, visibility 0s linear 1.2s;
    }

    .site-header .dropdown:hover > .dropdown-menu,
    .site-header .dropdown > .dropdown-menu.show {
        visibility: visible;
        opacity: 1;
        transition-delay: 0s;
    }

    .site-header .dropdown:hover > .nav-link {
        color: var(--tg-gold) !important;
    }
}

/* ── Hero Slider (Spotlight) ────────────────────────────────── */
.spotlight-hero-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.spotlight-hero-wrap .swiper {
    width: 100%;
    height: 100%;
}

.spotlight-hero-wrap .swiper-slide {
    position: relative;
    overflow: hidden;
}

/* Kenburns background */
.spotlight-hero-wrap .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* Dark overlay on hero slides */
.spotlight-hero-wrap .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

/* Slide text content */
.spotlight-hero-wrap .slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.spotlight-hero-wrap .slide-title {
    font-family: var(--tg-heading-font);
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.spotlight-hero-wrap .slide-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.spotlight-hero-wrap .slide-cta {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.spotlight-hero-wrap .slide-cta .btn {
    border: 2px solid var(--tg-gold);
    color: var(--tg-gold);
    padding: 0.75rem 2.5rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.spotlight-hero-wrap .slide-cta .btn:hover {
    background: var(--tg-gold);
    color: #fff;
}

/* Active slide — trigger text animations */
.spotlight-hero-wrap .swiper-slide-active .slide-title,
.spotlight-hero-wrap .swiper-slide-active .slide-subtitle,
.spotlight-hero-wrap .swiper-slide-active .slide-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Kenburns animation */
@keyframes kenburns-in {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

@keyframes kenburns-out {
    0% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.spotlight-hero-wrap .swiper-slide-active .slide-bg {
    animation: kenburns-in 8s ease-out forwards;
}

/* Swiper nav custom */
.spotlight-hero-wrap .swiper-button-next,
.spotlight-hero-wrap .swiper-button-prev {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.spotlight-hero-wrap .swiper-button-next:hover,
.spotlight-hero-wrap .swiper-button-prev:hover {
    color: var(--tg-gold);
}

.spotlight-hero-wrap .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
}

.spotlight-hero-wrap .swiper-pagination-bullet-active {
    background: var(--tg-gold);
}

.tg-hero {
    position: relative;
    height: 100svh;
    min-height: 620px;
    overflow: hidden;
    background: var(--tg-darker);
}

.tg-hero-slides,
.tg-hero-slide,
.tg-hero-image,
.tg-hero-overlay {
    position: absolute;
    inset: 0;
}

.tg-hero-slide {
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.tg-hero-slide.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}

.tg-hero-image {
    background-color: var(--tg-dark);
    background-image: var(--tg-hero-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    backface-visibility: hidden;
    transform: translate3d(0.2%, 0.2%, 0) scale(1.12);
    will-change: transform;
}

.tg-hero-slide.is-active .tg-hero-image {
    animation: tg-hero-kenburns 8s linear both;
}

.tg-hero-overlay {
    background: rgba(5, 7, 11, 0.48);
}

.tg-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 4.625rem;
    color: #fff;
    text-align: center;
}

.tg-hero-title {
    max-width: 11ch;
    margin: 0;
    color: #fff;
    font-size: clamp(3.2rem, 6vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-shadow: rgba(0, 0, 0, 0.25) 0px 2px 0px;
    line-height: 0.95;
    text-wrap: balance;
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.8s 0.2s ease-out, transform 0.8s 0.2s ease-out;
}

.tg-hero-subtitle {
    max-width: 36rem;
    margin: 1.5rem 0 0;
    color: rgba(0, 0, 0, 0.92);
    background-color: var(--tg-gold);
    font-size: clamp(0.7rem, 1.4vw, 0.8rem);
    font-weight: 500;
    letter-spacing: 8px;
    line-height: 1.55;
    text-transform: uppercase;
    text-shadow: rgba(0, 0, 0, 0.25) 0px 0.666667px 0px;
    opacity: 0;
    padding: 2px 8px;
    transform: translateY(1.5rem);
    transition: opacity 0.8s 0.34s ease-out, transform 0.8s 0.34s ease-out;
}

.tg-hero-slide.is-active .tg-hero-title,
.tg-hero-slide.is-active .tg-hero-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.tg-hero-controls {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 2.25rem;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg-hero-pagination {
    display: flex;
    gap: 0.65rem;
}

.tg-hero-dot {
    width: 2rem;
    height: 2px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.tg-hero-dot.is-active,
.tg-hero-dot:hover {
    background: var(--tg-gold);
    transform: scaleX(1.22);
}

.tg-hero-dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

@keyframes tg-hero-kenburns {
    from {
        transform: translate3d(-0.2%, -0.2%, 0) scale(1.03);
    }

    to {
        transform: translate3d(0.2%, 0.2%, 0) scale(1.12);
    }
}

@media (max-width: 767.98px) {
    .tg-hero {
        min-height: 540px;
    }

    .tg-hero-overlay {
        background: rgba(5, 7, 11, 0.52);
    }

    .tg-hero-content {
        align-items: center;
        padding-top: 4rem;
        text-align: center;
    }

    .tg-hero-title {
        max-width: 12ch;
        font-size: clamp(2.8rem, 14vw, 4.5rem);
    }

    .tg-hero-subtitle {
        max-width: 27rem;
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .tg-hero-controls {
        bottom: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tg-hero-slide,
    .tg-hero-title,
    .tg-hero-subtitle,
    .tg-hero-dot {
        transition: none;
    }

    .tg-hero-slide.is-active .tg-hero-image {
        animation: none;
    }
}

.tg-amenity-slider {
    position: relative;
    overflow: hidden;
    background: var(--tg-darker);
}

.tg-amenity-slider:not(.tg-amenity-level-image) {
    aspect-ratio: 4 / 3;
}

.tg-amenity-slider-slides,
.tg-amenity-slider-slide {
    position: absolute;
    inset: 0;
}

.tg-amenity-slider-slide {
    z-index: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.tg-amenity-slider-slide.is-active {
    z-index: 1;
    opacity: 1;
}

.tg-amenity-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    transform: scale(1.1);
    will-change: transform;
}

.tg-amenity-slider-slide.is-active img {
    animation: tg-amenity-kenburns 7s linear both;
}

.tg-amenity-slider-dots {
    position: absolute;
    z-index: 2;
    bottom: 1.25rem;
    left: 50%;
    display: flex;
    gap: 0.55rem;
    transform: translateX(-50%);
}

.tg-amenity-slider-dot {
    width: 1.75rem;
    height: 2px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.tg-amenity-slider-dot.is-active,
.tg-amenity-slider-dot:hover {
    background: var(--tg-gold);
    transform: scaleX(1.2);
}

.tg-amenity-slider-dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

@keyframes tg-amenity-kenburns {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tg-amenity-slider-slide,
    .tg-amenity-slider-dot {
        transition: none;
    }

    .tg-amenity-slider-slide.is-active img {
        animation: none;
    }
}

.tg-feature-slider {
    position: relative;
    flex: 1 1 auto;
    overflow: hidden;
    background: var(--tg-darker);
}

.tg-feature-slider-slides,
.tg-feature-slider-slide {
    position: absolute;
    inset: 0;
}

.tg-feature-slider-slide {
    z-index: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.tg-feature-slider-slide.is-active {
    z-index: 1;
    opacity: 1;
}

.tg-feature-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    transform: scale(1.1);
    will-change: transform;
}

.tg-feature-slider-slide.is-active img {
    animation: tg-feature-kenburns 7s linear both;
}

.tg-feature-slider-dots {
    position: absolute;
    z-index: 2;
    bottom: 1.25rem;
    left: 50%;
    display: flex;
    gap: 0.55rem;
    transform: translateX(-50%);
}

.tg-feature-slider-dot {
    width: 1.75rem;
    height: 2px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.tg-feature-slider-dot.is-active,
.tg-feature-slider-dot:hover {
    background: var(--tg-gold);
    transform: scaleX(1.2);
}

.tg-feature-slider-dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

@keyframes tg-feature-kenburns {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.02);
    }
}

@media (max-width: 991.98px) {
    .tg-feature-slider {
        min-height: 26rem;
        margin-top: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tg-feature-slider-slide,
    .tg-feature-slider-dot {
        transition: none;
    }

    .tg-feature-slider-slide.is-active img {
        animation: none;
    }
}

/* ── Section Spacing ────────────────────────────────────────── */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--tg-heading-font);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--tg-gold);
    margin: 1rem auto 0;
}

.section-title.text-start::after {
    margin-left: 0;
}
.brand-display {
    font-family: var(--tg-heading-font);
    color: var(--tg-gold);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
/* ── Utility Classes ────────────────────────────────────────── */
.text-gold {
    color: var(--tg-gold) !important;
}

.ls-2 {
    letter-spacing: 2px;
}

.ls-3 {
    letter-spacing: 3px;
}

.btn-gold {
    background-color: var(--tg-gold);
    border-color: var(--tg-gold);
    color: #fff;
    padding: 0.75rem 2.5rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--tg-gold-light);
    border-color: var(--tg-gold-light);
    color: #fff;
}

/* ── Stats ──────────────────────────────────────────────────── */
.stats {
    text-align: center;
    background-color: #000;
    padding: 8px;
}
.stat-value {
    font-family: var(--tg-heading-font);
    font-size: 18px;
    color: var(--tg-gold);
}
.stat-value {
    font-size: 14px;
    letter-spacing: 5px;
    color: #fff;
}

.stat-number {
    font-family: var(--tg-heading-font);
}

/* ── Residencies ────────────────────────────────────────────── */
.residency-card {
    overflow: hidden;
    background-color: transparent;
}
.residency-area {
    font-family: "Raleway", Sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #FFFFFF;
}

/* ── Amenities ──────────────────────────────────────────────── */
.amenity-item {
    font-family: "Raleway", Sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.amenity-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tg-feature-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent !important;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-btn-color: var(--tg-gold);
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: var(--tg-gold);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(210, 171, 104, 0.35);
}

.tg-feature-accordion .accordion-button {
    padding: 1rem 0;
    color: var(--tg-gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.tg-feature-accordion .accordion-button.collapsed {
    color: #fff;
}

.tg-feature-accordion .accordion-button::after {
    width: auto;
    height: auto;
    margin-left: auto;
    background-image: none;
    color: currentColor;
    content: '+';
    font-size: 1.25rem;
    line-height: 1;
    transform: none;
}

.tg-feature-accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
    content: '−';
    transform: none;
}

.tg-feature-accordion .accordion-body {
    padding: 0 0 0.5rem;
}

.tg-feature-accordion .feature-list li {
    color: rgba(255, 255, 255, 0.84);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

/* ── Feature Lists (Architecture, Fittings) ─────────────────── */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.1rem 0 0.1rem 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 14px;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--tg-gold);
    border-radius: 50%;
}
.accordion-body p {
    font-size: 14px;
}
.tg-feature-accordion .accordion-button:focus {
    box-shadow: none;
}

.tg-youtube-embed {
    overflow: hidden;
    background: #000;
}

.tg-youtube-embed iframe {
    border: 0;
}

.tg-video-card {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.tg-video-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.tg-video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.tg-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3rem;
    height: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.tg-video-play::after {
    position: absolute;
    top: 50%;
    left: 54%;
    width: 0;
    height: 0;
    border-top: 0.42rem solid transparent;
    border-bottom: 0.42rem solid transparent;
    border-left: 0.63rem solid #fff;
    content: '';
    transform: translate(-50%, -50%);
}

.tg-video-title {
    display: block;
    margin-top: 0.75rem;
    color: var(--tg-gold);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.6;
    text-transform: uppercase;
}

.tg-video-card:hover {
    color: inherit;
}

.tg-video-card:hover img {
    transform: scale(1.05);
}

.tg-video-card:hover .tg-video-play {
    border-color: var(--tg-gold);
    background-color: rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%) scale(1.08);
}

.tg-video-card:focus-visible {
    outline: 2px solid var(--tg-gold);
    outline-offset: 4px;
}

@media (max-width: 767.98px) {
    .tg-video-title {
        font-size: 0.58rem;
        letter-spacing: 0.1em;
    }
}

/* ── Image Placeholders ─────────────────────────────────────── */
.architecture-img-placeholder,
.fittings-img-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e8e0d8 0%, #d4c5b0 100%);
    border-radius: 0.375rem;
}

.tg-news-intro .section-title {
    margin-bottom: 1.5rem;
    text-align: left;
}

.tg-news-intro .section-title::after {
    margin-left: 0;
}

.tg-news-intro > span {
    display: inline-block;
    max-width: 19rem;
    padding: 0.2rem 0.45rem;
    background: rgba(210, 171, 104, 0.2);
    font-size: 0.65rem;
    letter-spacing: 0.27em;
    line-height: 1.65;
}

.tg-news-slider {
    position: relative;
}

.tg-news-slider-viewport {
    overflow: hidden;
}

.tg-news-slider-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.tg-news-slide {
    flex: 0 0 calc((100% - 2rem) / 3);
    min-width: 0;
}

.tg-news-card {
    display: block;
    color: #fff;
    text-decoration: none;
}

.tg-news-image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1.04;
    overflow: hidden;
    background: #151515;
}

.tg-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.tg-news-image time {
    position: absolute;
    top: 0rem;
    right: 0rem;
    color: var(--tg-gold);
    font-size: 0.9rem;
    background-color: #181b22;
    padding: 6px 10px;
}

.tg-news-title {
    display: block;
    margin-top: 1rem;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.35;
    text-transform: uppercase;
}

.tg-news-card:hover {
    color: #fff;
}

.tg-news-card:hover img {
    transform: scale(1.05);
}

.tg-news-card:focus-visible {
    outline: 2px solid var(--tg-gold);
    outline-offset: 4px;
}

.tg-news-slider-controls {
    position: absolute;
    top: 37%;
    right: -1.25rem;
    left: -1.25rem;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.tg-news-slider-control {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(210, 171, 104, 0.7);
    background: rgba(0, 0, 0, 0.62);
    color: var(--tg-gold);
    cursor: pointer;
    pointer-events: auto;
    transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.tg-news-slider-control:hover:not(:disabled) {
    background: var(--tg-gold);
    color: var(--tg-darker);
}

.tg-news-slider-control:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.tg-news-slider-control:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 991.98px) {
    .tg-news-intro {
        margin-bottom: 2.5rem;
    }

    .tg-news-slider-controls {
        right: 0;
        left: 0;
    }
}

@media (max-width: 767.98px) {
    .tg-news-slide {
        flex-basis: calc((100% - 1rem) / 2);
    }
}

@media (max-width: 575.98px) {
    .tg-news-slide {
        flex-basis: 100%;
    }
}

/* ── Contact Section ────────────────────────────────────────── */
.tg-contact-section {
    position: relative;
    isolation: isolate;
    padding: clamp(7rem, 13vw, 12rem) 0;
    background-color: #171b22;
    background-image: var(--tg-contact-image);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.tg-contact-section::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 18, 0.15) 0%, rgba(23, 27, 34, 0.88) 58%, #171b22 100%);
    content: '';
}

.tg-contact-section .container {
    position: relative;
    z-index: 1;
}

.tg-contact-panel {
    padding: clamp(2.5rem, 5vw, 4.5rem);
    background: rgba(255, 255, 255, 0.97);
    color: #171b22;
}

.tg-contact-panel h2 {
    margin: 0;
    color: #171b22;
    font-family: var(--tg-heading-font);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.tg-contact-panel-kicker {
    margin: 1rem 0 2.5rem;
    color: var(--tg-gold);
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-align: center;
    text-transform: uppercase;
}

#contact .wpcf7 input:not([type="submit"]),
#contact .wpcf7 select,
#contact .wpcf7 textarea {
    width: 100%;
    padding: 0.55rem 0;
    border: 0;
    border-bottom: 1px solid rgba(23, 27, 34, 0.38);
    border-radius: 0;
    background: transparent;
    color: #171b22;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

#contact .wpcf7 textarea {
    min-height: 6rem;
    resize: vertical;
}

#contact .wpcf7 input:not([type="submit"])::placeholder,
#contact .wpcf7 textarea::placeholder {
    color: rgba(23, 27, 34, 0.55);
}

#contact .wpcf7 input[type="submit"] {
    display: block;
    margin: 1.5rem auto 0;
    padding: 0.65rem 2.2rem;
    border: 0;
    background: #171b22;
    color: var(--tg-gold);
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

#contact .wpcf7 input[type="submit"]:hover {
    background: var(--tg-gold);
    color: #171b22;
}

#contact .wpcf7 label {
    display: block;
    margin-top: 1rem;
    color: rgba(23, 27, 34, 0.72);
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

#contact .wpcf7-response-output {
    margin: 1.5rem 0 0;
    border-color: var(--tg-gold);
    color: #171b22;
}

@media (max-width: 767.98px) {
    .tg-contact-section {
        padding: 5rem 0;
        background-attachment: scroll;
    }

    .tg-contact-panel {
        padding: 2.5rem 1.5rem;
    }
}

.tg-contact-details {
    padding: 2.5rem 0;
    background-color: #101215;
    background-image: var(--tg-contact-details-image);
    background-position: center;
    background-repeat: repeat;
}

.tg-contact-detail {
    height: 100%;
    padding: 0.5rem 1rem;
}

.tg-contact-detail > i {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--tg-gold);
    font-size: 1.45rem;
    line-height: 1;
}

.tg-contact-detail-title {
    display: block;
    margin: 0 0 0.75rem;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.tg-contact-detail p,
.tg-contact-detail a {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.12em;
    line-height: 1.55;
    text-decoration: none;
    text-transform: uppercase;
}
.tg-contact-detail-address, .tg-contact-detail-email {
    font-size: 12px;
    color: #CECECE;
    letter-spacing: 0.12em;
    line-height: 1.55;
    text-decoration: none;
    text-transform: uppercase;
}
.tg-contact-detail-phone {
    font-family: var(--tg-heading-font);
    font-size: 23px;
    letter-spacing: 1.4px;
    
}

.tg-contact-detail a:hover {
    color: var(--tg-gold);
}

.tg-property-socials {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
}

.tg-property-socials a {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #000;
    color: var(--tg-gold);
    font-size: 1.25rem;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tg-property-socials a:hover {
    background: var(--tg-gold);
    color: #000 !important;
    transform: translateY(-2px);
}

.tg-property-socials a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 767.98px) {
    .tg-contact-details {
        padding: 3rem 0;
    }

    .tg-contact-detail {
        padding: 1rem;
    }
}

.section-footer {
    padding: 3em 0em 3em 0em;
}
.footer-bottom {
    padding: 1em 1em;
}

.footer-menu {
    margin-top: 4rem;
}

.tg-footer-menu {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tg-footer-menu li {
    padding: 0 0.85rem;
}

.tg-footer-menu li + li {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.tg-footer-menu a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.65rem;
    letter-spacing: 0.34em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.tg-footer-menu a:hover,
.tg-footer-menu .current-menu-item > a {
    color: var(--tg-gold);
}

.tg-footer-menu a:focus-visible {
    outline: 2px solid var(--tg-gold);
    outline-offset: 4px;
}

@media (max-width: 767.98px) {
    .footer-menu {
        margin-top: 3rem;
    }

    .tg-footer-menu {
        flex-wrap: wrap;
        row-gap: 1rem;
    }

    .tg-footer-menu li {
        padding: 0 0.65rem;
    }
}

.copyright {
    display: block;
    margin-top: 1rem;
    font-size: 11px;
    color: darkgray;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tg-developer-page {
    overflow: hidden;
    background: #11151c;
    color: rgba(255, 255, 255, 0.76);
}

.tg-developer-hero {
    position: relative;
    display: flex;
    min-height: min(48rem, 78vh);
    align-items: center;
    padding: 8rem 0 3rem;
    background-color: #043b23;
    background-image: var(--tg-developer-hero);
    background-position: bottom;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

.tg-developer-hero,
.tg-residence-hero,
.tg-image-gallery-hero,
.tg-contact-page-hero {
    position: relative;
    isolation: isolate;
}

.tg-developer-hero::before,
.tg-residence-hero::before,
.tg-image-gallery-hero::before,
.tg-contact-page-hero::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: #000000;
    content: '';
    opacity: 0.65;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.tg-developer-hero > .container,
.tg-residence-hero > .container,
.tg-image-gallery-hero > .container,
.tg-contact-page-hero > .container {
    position: relative;
    z-index: 1;
}

.tg-developer-hero-content {
    width: 100%;
}

.tg-developer-hero h1,
.tg-residence-hero-content h1 {
    text-shadow: 2px 2px 2px #322204;
    font-family: var(--tg-heading-font);
    font-size: clamp(2.35rem, 5vw, 4.1rem);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

.tg-developer-section-heading h2 {
    margin: 0;
    color: #fff;
    font-family: var(--tg-heading-font);
    font-size: clamp(2.35rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

.tg-developer-hero p {
    display: table;
    margin: 1.25rem auto 0;
    padding: 0.55rem 1rem;
    background: rgba(17, 21, 28, 0.9);
    color: var(--tg-gold);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.tg-developer-section-heading p {
    margin: 1rem 0 0;
    color: var(--tg-gold);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.tg-developer-section {
    padding: clamp(5rem, 10vw, 9rem) 0;
}

.tg-developer-section-heading {
    max-width: 50rem;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.tg-developer-section-heading h2::after {
    display: block;
    width: 4rem;
    height: 1px;
    margin: 1.5rem auto 0;
    background: var(--tg-gold);
    content: '';
}

.tg-developer-intro {
    background: #11151c;
}

.tg-developer-intro-image {
    display: block;
    width: 100%;
    border: 1px solid rgba(210, 171, 104, 0.42);
}

.tg-developer-copy {
    max-width: 46rem;
    font-size: 0.97rem;
    line-height: 1.9;
}

.tg-developer-copy p + p {
    margin-top: 1.25rem;
}

.tg-developer-leadership {
    display: grid;
    gap: clamp(4rem, 10vw, 9rem);
    margin-top: clamp(6rem, 12vw, 11rem);
}

.tg-leadership-card blockquote {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
}

.tg-leadership-card small {
    display: block;
    margin-top: 0.5rem;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tg-leadership-card small strong {
    color: var(--tg-gold);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tg-management-section {
    background: #151a22;
}

.tg-management-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 1.5rem;
}

.tg-management-card {
    text-align: center;
}

.tg-management-card img {
    width: min(100%, 14rem);
    aspect-ratio: 1 / 1;
    margin: 0 auto 1.25rem;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.tg-management-card:hover img {
    filter: grayscale(0);
    transform: translateY(-0.35rem);
}

.tg-management-card h3 {
    margin: 0;
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.tg-management-card p {
    margin: 0.5rem 0 0;
    color: var(--tg-gold);
    font-size: 0.61rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tg-contractor-section {
    background: #101319;
}

.tg-contractor-intro {
    max-width: 56rem;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    text-align: center;
    line-height: 1.85;
}

.tg-contractor-logo {
    max-width: 15rem;
}

.tg-contractor-image {
    width: 100%;
    margin-bottom: 1.5rem;
}

.tg-contractor-copy {
    font-size: 14px;
    line-height: 1.85;
    text-align: justify;
}

.tg-partners-section {
    background: #11151c;
}

.tg-partner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.tg-partner-card {
    position: relative;
    min-height: 17rem;
    padding: 2.25rem;
    background: #050607;
    text-align: center;
}

.tg-partner-card p {
    max-width: 20rem;
    margin: 0 auto;
    color: #fff;
    font-size: 0.72rem;
    line-height: 1.45;
    text-transform: uppercase;
}

.tg-partner-card h3 {
    margin: 0.85rem 0 1.5rem;
    color: var(--tg-gold);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.tg-partner-card img {
    display: block;
    width: 11rem;
    max-width: 100%;
    height: 5rem;
    margin: 0 auto;
    object-fit: contain;
}

.tg-partner-card a {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--tg-gold);
    border-radius: 50%;
    color: var(--tg-gold);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.tg-partner-card a:hover {
    background: var(--tg-gold);
    color: #11151c;
}

.tg-partner-card a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 767.98px) {
    .tg-developer-hero {
        min-height: 34rem;
        padding-top: 8rem;
        background-attachment: scroll;
    }

    .tg-leadership-card,
    .tg-leadership-card-reverse {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tg-leadership-card small,
    .tg-leadership-card-reverse small {
        width: 100%;
        text-align: center;
    }

    .tg-leadership-card-reverse img {
        order: 0;
    }

    .tg-leadership-card-reverse blockquote {
        order: 1;
    }

    .tg-leadership-card-reverse p {
        order: 2;
    }

    .tg-management-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tg-partner-card {
        min-height: 15rem;
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 475.98px) {
    .tg-management-grid,
    .tg-partner-grid {
        grid-template-columns: 1fr;
    }
}

.tg-residence-page {
    overflow: hidden;
    background: #12161d;
    color: rgba(255, 255, 255, 0.72);
}

.tg-residence-hero {
    display: flex;
    min-height: min(48rem, 78vh);
    align-items: center;
    padding: 8rem 0 3rem;
    background-image: var(--tg-residence-hero);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

.tg-residence-hero-content {
    width: 100%;
}

.tg-residence-hero h1,
.tg-residence-heading h2,
.tg-residence-section-title h2,
.tg-residence-view-copy h2 {
    margin: 0;
    color: #fff;
    font-family: var(--tg-heading-font);
    font-size: clamp(2.35rem, 5vw, 4.1rem);
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
}

.tg-residence-hero h1 {
    text-shadow: 2px 2px 2px #322204;
}

.tg-residence-hero p {
    display: table;
    margin: 1.20rem auto 1.25rem;
    padding: 0.55rem 1rem;
    background: rgba(17, 21, 28, 0.88);
    color: var(--tg-gold);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.tg-residence-section {
    padding-top: 50px;
    padding-bottom: 50px;
}


.tg-residence-heading h2 {
    font-size: clamp(2rem, 3.8vw, 2.5rem);
    line-height: 46px;
    letter-spacing: 1px;
}

.tg-residence-heading h2::after,
.tg-residence-section-title h2::after {
    display: block;
    width: 4rem;
    height: 1px;
    margin: 1.5rem 0;
    background: var(--tg-gold);
    content: '';
}

.tg-residence-heading p,
.tg-residence-eyebrow {
    margin: 0 0 1.5rem;
    color: var(--tg-gold);
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.tg-residence-copy {
    max-width: 34rem;
    line-height: 1.9;
}

.tg-residence-video {
    max-width: 19rem;
    margin-top: 2.5rem;
}

.tg-residence-intro-image {
    width: 100%;
    min-height: 28rem;
    object-fit: cover;
}

.tg-residence-section-title {
    margin-bottom: clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.tg-residence-section-title h2::after {
    margin-right: auto;
    margin-left: auto;
}

.tg-explore-section {
    background: #171c24;
}

.tg-floorplan-image {
    width: min(100%, 32rem);
    max-height: 37rem;
    object-fit: contain;
}

.tg-floorplan-content {
    max-width: 36rem;
    line-height: 1.85;
}

.tg-floorplan-size,
.tg-floorplan-floor {
    color: var(--tg-gold);
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.tg-floorplan-size {
    margin-bottom: 0.4rem;
    font-family: var(--tg-heading-font);
    font-size: 1.65rem;
}

.tg-floorplan-floor {
    margin-bottom: 1.75rem;
    font-size: 1.1rem;
    font-family: var(--tg-heading-font);
}


.tg-floorplan-content .btn {
    margin-top: 1.5rem;
}

.tg-gallery-slider {
    position: relative;
    max-width: 60rem;
    margin: 0 auto;
}

.tg-gallery-slider-track {
    position: relative;
    overflow: hidden;
}

.tg-gallery-slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.tg-gallery-slider-slide.is-active {
    position: relative;
    opacity: 1;
}

.tg-gallery-slider-slide img {
    width: 100%;
}

.tg-gallery-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(210, 171, 104, 0.5);
    border-radius: 50%;
    background: rgba(12, 15, 20, 0.7);
    color: var(--tg-gold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
    z-index: 2;
}

.tg-gallery-slider-arrow:hover {
    background: var(--tg-gold);
    color: #12161d;
}

.tg-gallery-slider-prev {
    left: 1rem;
}

.tg-gallery-slider-next {
    right: 1rem;
}

.tg-gallery-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.tg-gallery-slider-dot {
    width: 0.6rem;
    height: 0.6rem;
    padding: 0;
    border: 1px solid var(--tg-gold);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.tg-gallery-slider-dot.is-active {
    background: var(--tg-gold);
}

.item-stats {
    width: 100vw;
    margin-top: clamp(3rem, 6vw, 5rem);
    margin-left: calc(50% - 50vw);
    background-color: #0e1013;
    background-image: var(--tg-stats-pattern);
    background-position: center;
    background-repeat: repeat;
}

.item-stat {
    min-height: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(210, 171, 104, 0.16);
    text-align: center;
}

.item-stat strong {
    color: rgba(210, 171, 104, 0.22);
    font-family: var(--tg-heading-font);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 400;
    line-height: 1;
}

.item-stat span {
    margin-top: 0.45rem;
    color: var(--tg-gold);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.item-stats .col-6:nth-child(2) .item-stat {
    border-right: 0;
}

@media (min-width: 768px) {
    .item-stats .col-md:last-child .item-stat {
        border-right: 0;
    }
}

.tg-view-section {
    min-height: 42rem;
    display: flex;
    align-items: center;
    background-image: linear-gradient(90deg, rgba(10, 13, 17, 0.3), rgba(10, 13, 17, 0.72)), var(--tg-residence-view);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.tg-residence-view-copy {
    padding: clamp(2rem, 5vw, 4rem);
    background: rgba(12, 15, 20, 0.86);
}

.tg-residence-view-copy h2 {
    font-size: clamp(2rem, 3.8vw, 3.6rem);
}

.tg-residence-view-copy ul,
.tg-privacy-list {
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.tg-residence-view-copy li,
.tg-privacy-list li {
    position: relative;
    padding: 0.7rem 0 0.7rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.76rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.tg-residence-view-copy li::before,
.tg-privacy-list li::before {
    position: absolute;
    left: 0;
    color: var(--tg-gold);
    content: '✦';
}

.tg-privacy-plan {
    width: min(100%, 35rem);
    max-height: 30rem;
}

.tg-text-link {
    display: inline-flex;
    gap: 0.6rem;
    margin-top: 2rem;
    color: var(--tg-gold);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-decoration: none;
    text-transform: uppercase;
}

.tg-text-link:hover {
    color: #fff;
}

.tg-explore-card {
    display: flex;
    min-height: 11rem;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
    border: 1px solid rgba(210, 171, 104, 0.38);
    color: #fff;
    font-family: var(--tg-heading-font);
    font-size: 1.25rem;
    text-decoration: none;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.tg-explore-card i {
    color: var(--tg-gold);
}

.tg-explore-card:hover {
    border-color: var(--tg-gold);
    background: var(--tg-gold);
    color: #12161d;
}

.tg-explore-card:hover i {
    color: #12161d;
}

.tg-brochure-section {
    background: #11151c;
}

.tg-brochure-section .tg-residence-section-title p {
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.65);
}

.tg-brochure-form {
    padding: clamp(2rem, 5vw, 4rem);
    background: #fff;
    color: #171b22;
}

.tg-brochure-form input,
.tg-brochure-form textarea,
.tg-brochure-form select {
    width: 100%;
}

@media (max-width: 767.98px) {
    .tg-residence-hero,
    .tg-view-section {
        background-attachment: scroll;
    }

    .tg-residence-hero {
        min-height: 34rem;
    }

    .tg-residence-intro-image {
        min-height: 20rem;
    }

    .tg-view-section {
        min-height: auto;
    }

    .item-stats .col-6:nth-child(n + 3) .item-stat {
        border-top: 1px solid rgba(210, 171, 104, 0.16);
    }

    .tg-explore-card {
        min-height: 8rem;
    }
}

.tg-image-gallery-page {
    background: var(--tg-dark);
}

.tg-image-gallery-hero {
    display: flex;
    min-height: min(48rem, 78vh);
    align-items: center;
    padding: 8rem 0 3rem;
    background-image: var(--tg-gallery-hero);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

.tg-image-gallery-hero-content {
    width: 100%;
}

.tg-image-gallery-hero h1 {
    margin: 0;
    color: #fff;
    font-family: var(--tg-heading-font);
    font-size: clamp(2.35rem, 5vw, 4.1rem);
    font-weight: 400;
    line-height: 0.95;
    text-shadow: 2px 2px 2px #322204;
    text-transform: uppercase;
}

.tg-image-gallery-hero p {
    display: table;
    margin: 1.2rem auto 0;
    padding: 0.55rem 1rem;
    background: rgba(17, 21, 28, 0.88);
    color: var(--tg-gold);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.tg-image-gallery-section {
    padding: 4rem 0 5rem;
}

.tg-image-gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem 1.35rem;
    max-width: 70rem;
    margin: 0 auto 3rem;
}

.tg-image-gallery-filters button {
    padding: 0.5rem 0;
    border: 0;
    border-bottom: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.tg-image-gallery-filters button:hover,
.tg-image-gallery-filters button.is-active {
    border-color: var(--tg-gold);
    color: var(--tg-gold);
}

.tg-image-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.25rem;
}

.tg-image-gallery-item {
    overflow: hidden;
    background: #0d0f12;
}

.tg-image-gallery-item[hidden] {
    display: none;
}

.tg-image-gallery-item button {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.tg-image-gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.76;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.tg-image-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(180deg, transparent 40%, rgba(8, 10, 13, 0.78));
    color: #fff;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    opacity: 0;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.tg-image-gallery-overlay i {
    color: var(--tg-gold);
    font-size: 1.1rem;
}

.tg-image-gallery-item button:hover img,
.tg-image-gallery-item button:focus-visible img {
    transform: scale(1.05);
}

.tg-image-gallery-item button:hover .tg-image-gallery-overlay,
.tg-image-gallery-item button:focus-visible .tg-image-gallery-overlay {
    opacity: 1;
}

.tg-image-gallery-load-wrap {
    margin-top: 3rem;
    text-align: center;
}

.tg-image-gallery-load-wrap [hidden] {
    display: none;
}

.tg-image-gallery-modal-content {
    border: 0;
    background: #07090c;
}

.tg-image-gallery-modal-content .modal-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    justify-content: flex-end;
}

.tg-image-gallery-modal-content .modal-title {
    margin: 0 auto 0 0;
    color: var(--tg-gold);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tg-image-gallery-modal-content img {
    max-width: 100%;
    max-height: calc(100vh - 5rem);
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .tg-image-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .tg-image-gallery-hero {
        min-height: 25rem;
        background-attachment: scroll;
    }

    .tg-image-gallery-section {
        padding: 3rem 0;
    }

    .tg-image-gallery-filters {
        justify-content: flex-start;
        gap: 0.35rem 1rem;
        margin-bottom: 2rem;
    }

    .tg-image-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.2rem;
    }

    .tg-image-gallery-overlay {
        opacity: 1;
        padding: 0.65rem;
        font-size: 0.52rem;
    }
}

.tg-landlords-page {
    background: #171b22;
}

.tg-landlords-section {
    padding: 170px 0 50px 0
}

.tg-landlords-layout {
    background: #000;
    background-image: url(../../../../uploads/grand_pattern.png);
    background-repeat: repeat;
}

.tg-landlords-intro {
    padding-left: 30px;
    
}

.tg-landlords-intro h1,
.tg-landlords-intro h2 {
    font-family: var(--tg-heading-font);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.tg-landlords-intro h1 {
    color: var(--tg-gold);
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
}

.tg-landlords-intro h2 {
    max-width: 15rem;
    color: #fff;
    font-size: clamp(2rem, 3vw, 3rem);
}

.tg-landlords-contact p,
.tg-landlords-contact a {
    display: block;
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-decoration: none;
}

.tg-landlords-contact p {
    text-transform: uppercase;
}

.tg-landlords-contact a {
    color: rgba(255, 255, 255, 0.72);
}

.tg-landlords-contact .tg-landlords-phone {
    color: #fff;
    font-family: var(--tg-heading-font);
    font-size: 1.35rem;
    letter-spacing: 0.08em;
}

.tg-landlords-form-panel {
    padding: clamp(2.5rem, 2vw, 2.5rem);
    background: #000;
}

.tg-landlords-form-panel .wpcf7 label {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.64rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.tg-landlords-form-panel .wpcf7 label .required {
    color: var(--tg-gold);
}

.tg-landlords-form-panel .wpcf7 input:not([type="submit"]),
.tg-landlords-form-panel .wpcf7 select,
.tg-landlords-form-panel .wpcf7 textarea {
    width: 100%;
    min-height: 2.35rem;
    margin-top: 0.55rem;
    padding: 0.35rem 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
}

.tg-landlords-form-panel .wpcf7 select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--tg-gold) 50%), linear-gradient(135deg, var(--tg-gold) 50%, transparent 50%);
    background-position: calc(100% - 0.75rem) calc(50% + 0.05rem), calc(100% - 0.45rem) calc(50% + 0.05rem);
    background-repeat: no-repeat;
    background-size: 0.3rem 0.3rem;
}

.tg-landlords-form-panel .wpcf7 textarea {
    min-height: 6rem;
    resize: vertical;
}

.tg-landlords-form-panel .wpcf7 input:not([type="submit"])::placeholder,
.tg-landlords-form-panel .wpcf7 textarea::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.tg-landlords-form-panel .wpcf7 input[type="submit"] {
    margin-top: 0.25rem;
    padding: 0.7rem 2.4rem;
    border: 1px solid var(--tg-gold);
    background: transparent;
    color: var(--tg-gold);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.tg-landlords-form-panel .wpcf7-spinner {
    display: block;
}

.tg-landlords-form-panel .wpcf7 input[type="submit"]:hover {
    background: var(--tg-gold);
    color: #000;
}

.tg-landlords-form-panel .wpcf7-response-output {
    grid-column: 1 / -1;
    margin: 1rem 0 0;
    border-color: var(--tg-gold);
    color: #fff;
}

.tg-contact-page {
    background: var(--tg-dark);
}

.tg-contact-page-hero {
    display: flex;
    min-height: min(48rem, 78vh);
    align-items: center;
    padding: 8rem 0 3rem;
    background-image: var(--tg-contact-page-image);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

.tg-contact-page-hero-copy {
    text-align: center;
}

.tg-contact-page-hero h1 {
    margin: 0;
    color: #fff;
    font-family: var(--tg-heading-font);
    font-size: clamp(2.35rem, 5vw, 4.1rem);
    font-weight: 400;
    line-height: 0.95;
    text-shadow: 2px 2px 2px #322204;
    text-transform: uppercase;
}

.tg-contact-page-form h2 {
    margin: 0;
    color: #fff;
    font-family: var(--tg-heading-font);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.tg-contact-page-form-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.tg-contact-page-form {
    padding: clamp(2rem, 5vw, 4.5rem);
    background: #080a0d;
}

.tg-contact-page-form h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    text-align: center;
}

.tg-contact-page-kicker {
    margin: 1rem 0 2.5rem;
    color: var(--tg-gold);
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-align: center;
    text-transform: uppercase;
}

.tg-contact-page-form .wpcf7 label {
    display: block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.tg-contact-page-form .wpcf7 input:not([type="submit"]),
.tg-contact-page-form .wpcf7 select,
.tg-contact-page-form .wpcf7 textarea {
    width: 100%;
    padding: 0.65rem 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.tg-contact-page-form .wpcf7 textarea {
    min-height: 7rem;
    resize: vertical;
}

.tg-contact-page-form .wpcf7 input:not([type="submit"])::placeholder,
.tg-contact-page-form .wpcf7 textarea::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.tg-contact-page-form .wpcf7 input[type="submit"] {
    display: block;
    margin: 2rem auto 0;
    padding: 0.7rem 2.4rem;
    border: 1px solid var(--tg-gold);
    background: transparent;
    color: var(--tg-gold);
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.tg-contact-page-form .wpcf7 input[type="submit"]:hover {
    background: var(--tg-gold);
    color: #080a0d;
}

.tg-contact-page-form .wpcf7-response-output {
    margin: 1.5rem 0 0;
    border-color: var(--tg-gold);
    color: #fff;
}

.tg-location-page {
    background: var(--tg-dark);
}

.tg-location-history h2,
.tg-location-legacy h2,
.tg-location-map-copy h2 {
    margin: 0;
    color: #fff;
    font-family: var(--tg-heading-font);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.tg-location-history {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.tg-location-legacy {
    padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.tg-location-history h2,
.tg-location-legacy h2 {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
}

.tg-location-history-copy {
    max-width: 31rem;
}

.tg-location-history-copy h2 {
    margin: 0 0 1rem;
    color: var(--tg-gold);
    font-size: clamp(3rem, 5vw, 4.6rem);
}

.tg-location-sir,
.tg-location-governor,
.tg-location-monarch {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tg-location-sir {
    margin: 0 0 0.4rem;
    color: #fff;
    font-family: var(--tg-heading-font);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: 0.16em;
}

.tg-location-governor,
.tg-location-monarch {
    color: rgba(255, 255, 255, 0.72) !important;
}

.tg-location-governor {
    margin: 0 0 1rem;
}

.tg-location-monarch {
    margin: 0 0 2rem;
}

.tg-location-history-copy > p:not(.tg-location-sir):not(.tg-location-governor):not(.tg-location-monarch),
.tg-location-legacy p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.65;
}

.tg-location-history-media {
    display: grid;
    gap: 1.5rem;
}

.tg-location-history-portraits {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tg-location-history-portraits img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tg-location-history-building,
.tg-location-address-image {
    display: block;
    width: 100%;
}

.tg-location-history-building {
    aspect-ratio: 2.45 / 1;
    object-fit: cover;
}

.tg-location-legacy-layout {
    background: #1c2026;
}

.tg-location-legacy-primary-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 38rem;
    object-fit: cover;
}

.tg-location-legacy-copy {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.tg-location-legacy-copy h2 {
    max-width: 30rem;
    margin: 0 0 1.7rem;
    font-size: clamp(2rem, 3vw, 3rem);
}

.tg-location-legacy-copy p {
    max-width: 26rem;
    margin: 0 0 0.9rem;
    font-size: 0.68rem;
    line-height: 1.55;
}

.tg-location-legacy-copy address {
    margin: 1.5rem 0 2rem;
    color: var(--tg-gold);
    font-family: var(--tg-heading-font);
    font-size: 1.15rem;
    font-style: normal;
    letter-spacing: 0.12em;
    line-height: 1.25;
    text-transform: uppercase;
}

.tg-location-legacy-secondary-image {
    display: block;
    width: 100%;
    margin-top: auto;
    aspect-ratio: 2.2 / 1;
    object-fit: cover;
}

.tg-location-showcase {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.tg-location-showcase h2 {
    max-width: 30rem;
    margin: 0;
    color: #fff;
    font-family: var(--tg-heading-font);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.tg-location-showcase-slider {
    width: 100%;
}

.tg-location-showcase-slider .tg-gallery-slider-track {
    background: #11151c;
}

.tg-location-showcase-slider .tg-gallery-slider-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.tg-location-showcase-caption {
    display: block;
    padding: 0.38rem 4.5rem 0.38rem 1rem;
    background: #10140f;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
}

.tg-location-showcase-controls {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    display: flex;
}

.tg-location-showcase-controls button {
    display: flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(210, 171, 104, 0.7);
    background: #090b0f;
    color: var(--tg-gold);
    cursor: pointer;
}

.tg-location-showcase-controls button:hover {
    background: var(--tg-gold);
    color: #090b0f;
}

.tg-location-showcase-slider .tg-gallery-slider-dots {
    position: absolute;
    right: 0.8rem;
    bottom: 0.55rem;
    margin: 0;
    gap: 0.3rem;
}

.tg-location-showcase-slider .tg-gallery-slider-dot {
    width: 0.35rem;
    height: 0.35rem;
}

.tg-location-showcase-slider .tg-gallery-slider-arrow {
    display: none;
}

.tg-location-map-section {
    padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.tg-location-map-panel {
    position: relative;
    overflow: hidden;
}

.tg-location-map-panel img {
    display: block;
    width: 100%;
}

.tg-location-map-panel .btn {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 50%);
    white-space: nowrap;
}

.tg-news-page {
    background: var(--tg-dark);
}

.tg-news-page-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.tg-news-page-card {
    display: block;
    height: 100%;
    color: #fff;
    text-decoration: none;
}

.tg-news-page-card:hover {
    color: #fff;
}

.tg-news-page-image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0e1014;
}

.tg-news-page-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tg-news-page-card:hover .tg-news-page-image img {
    transform: scale(1.04);
}

.tg-news-page-image time {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.82rem 1.15rem;
    background: #090b0f;
    color: #fff;
    font-family: var(--tg-heading-font);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tg-news-page-content {
    display: flex;
    min-height: 5.5rem;
    align-items: center;
    justify-content: center;
    padding: 1.35rem 0.5rem 0;
    text-align: center;
}

.tg-news-page-content h2 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--tg-gold);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.35;
    text-transform: uppercase;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.tg-news-detail-page {
    background: var(--tg-dark);
}

.tg-news-detail-hero h1 {
    max-width: 68rem;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.2rem, 4.7vw, 4.1rem);
    text-wrap: balance;
}

.tg-news-detail-hero p {
    margin-bottom: 1.25rem;
}

.tg-news-detail-article {
    padding: clamp(4rem, 8vw, 7rem) 0;
    color: rgba(255, 255, 255, 0.78);
}

.tg-news-detail-date {
    display: block;
    margin-bottom: 2rem;
    color: var(--tg-gold);
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.tg-news-detail-featured-image {
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.tg-news-detail-featured-image img {
    display: block;
    width: 100%;
    height: auto;
}

.tg-news-detail-content {
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    line-height: 1.9;
}

.tg-news-detail-content > * + * {
    margin-top: 1.5rem;
}

.tg-news-detail-content h2,
.tg-news-detail-content h3,
.tg-news-detail-content h4 {
    margin-bottom: 0;
    color: #fff;
    font-family: var(--tg-heading-font);
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
}

.tg-news-detail-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.tg-news-detail-content h3 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.tg-news-detail-content a {
    color: var(--tg-gold);
}

.tg-news-detail-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2.5rem auto;
}

.tg-news-detail-pages {
    margin-top: 2rem;
    color: var(--tg-gold);
}

.tg-news-detail-navigation {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
    margin-top: clamp(3rem, 7vw, 6rem);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.tg-news-detail-navigation > div:last-child {
    text-align: right;
}

.tg-news-detail-navigation a {
    color: #fff;
    text-decoration: none;
}

.tg-news-detail-navigation span,
.tg-news-detail-navigation strong {
    display: block;
}

.tg-news-detail-navigation span {
    margin-bottom: 0.5rem;
    color: var(--tg-gold);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tg-news-detail-navigation strong {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.4;
    text-transform: uppercase;
}

.tg-news-detail-all {
    padding: 0.7rem 1rem;
    border: 1px solid var(--tg-gold);
    color: var(--tg-gold) !important;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.tg-news-detail-navigation a:hover,
.tg-news-detail-navigation a:focus-visible {
    color: var(--tg-gold);
}

.tg-news-detail-all:hover,
.tg-news-detail-all:focus-visible {
    background: var(--tg-gold);
    color: var(--tg-dark) !important;
}

@media (max-width: 767.98px) {
    .tg-news-detail-navigation {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        text-align: center;
    }

    .tg-news-detail-navigation > div:last-child {
        text-align: center;
    }

    .tg-news-detail-all {
        justify-self: center;
    }
}

.tg-news-pagination {
    margin-top: 3.5rem;
}

.tg-news-pagination .page-numbers {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tg-news-pagination a,
.tg-news-pagination span {
    display: grid;
    min-width: 2.5rem;
    min-height: 2.5rem;
    place-items: center;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(210, 171, 104, 0.4);
    color: #fff;
    font-size: 0.7rem;
    text-decoration: none;
}

.tg-news-pagination .current,
.tg-news-pagination a:hover {
    background: var(--tg-gold);
    color: #15191f;
}

.tg-privacy-page {
    background: var(--tg-dark);
}

.tg-privacy-intro,
.tg-privacy-features {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.tg-privacy-intro h2,
.tg-property-architecture-copy h2 {
    margin: 0 0 1.5rem;
    color: #fff;
    font-family: var(--tg-heading-font);
    font-size: clamp(2rem, 4.2vw, 3.8rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.tg-privacy-intro p:not(.tg-residence-eyebrow) {
    max-width: 35rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.9;
}

.tg-privacy-page-plan {
    max-width: 35rem;
}

.tg-privacy-feature {
    display: flex;
    gap: 1.25rem;
    min-height: 100%;
    padding: 1.6rem;
    border: 1px solid rgba(210, 171, 104, 0.2);
    background: #171c24;
}

.tg-privacy-feature span {
    color: var(--tg-gold);
    font-family: var(--tg-heading-font);
    font-size: 1.5rem;
    line-height: 1;
}

.tg-privacy-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    line-height: 1.7;
}

.tg-property-architecture {
    padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.tg-property-architecture-layout {
    background: #1c2026;
}

.tg-property-architecture-diagram {
    display: flex;
    min-height: 36rem;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 3rem);
    background: #000;
}

.tg-property-architecture-diagram img {
    max-width: 100%;
    max-height: 32rem;
    object-fit: contain;
}

.tg-property-architecture-copy {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 5rem);
}

.tg-property-architecture-copy h2 {
    margin: 0 0 2rem;
    color: #fff;
    font-family: var(--tg-heading-font);
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    font-weight: 400;
    line-height: 1.08;
    text-transform: uppercase;
}

.tg-property-architecture-copy p {
    max-width: 31rem;
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    line-height: 1.55;
}

.tg-property-architecture-copy p:last-child {
    margin-bottom: 0;
}

.tg-amenities-page {
    background: var(--tg-dark);
}

.tg-amenities-overview {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.tg-amenities-intro {
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.tg-amenities-intro h2,
.tg-amenity-level-content h2 {
    margin: 0;
    color: #fff;
    font-family: var(--tg-heading-font);
    font-size: clamp(2rem, 3.8vw, 3.5rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.tg-amenities-level-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
}

.tg-amenities-level-nav a {
    position: relative;
    min-height: 16rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(7, 9, 12, 0.1), rgba(7, 9, 12, 0.87)), var(--tg-amenity-nav-image);
    background-position: center;
    background-size: cover;
    color: #fff;
    text-decoration: none;
}

.tg-amenities-level-nav a::after {
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    content: '';
    transition: border-color 0.25s ease;
}

.tg-amenities-level-nav a:hover::after {
    border-color: var(--tg-gold);
}

.tg-amenities-level-nav span {
    position: relative;
    z-index: 1;
    font-family: var(--tg-heading-font);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.tg-amenities-level-nav small {
    position: relative;
    z-index: 1;
    margin-top: 0.4rem;
    color: var(--tg-gold);
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tg-amenity-level {
    padding-bottom: clamp(4rem, 8vw, 7rem);
}

.tg-amenity-level-image {
    overflow: hidden;
    background: #11151c;
}

.tg-amenity-level-image .tg-amenity-slider-slides {
    position: relative;
}

.tg-amenity-level-image .tg-amenity-slider-slide {
    position: absolute;
    inset: 0;
}

.tg-amenity-level-image .tg-amenity-slider-slide.is-active {
    position: relative;
}

.tg-amenity-level-image .tg-amenity-slider-slide img,
.tg-amenity-level-image .tg-amenity-slider-slide.is-active img {
    display: block;
    width: 100%;
    height: auto;
    animation: none;
    object-fit: initial;
    transform: scale(1);
}

.tg-amenity-slider-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(210, 171, 104, 0.7);
    border-radius: 50%;
    background: rgba(8, 10, 13, 0.68);
    color: var(--tg-gold);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.25s ease, color 0.25s ease;
}

.tg-amenity-slider-arrow:hover {
    background: var(--tg-gold);
    color: #11151c;
}

.tg-amenity-slider-prev {
    left: 1rem;
}

.tg-amenity-slider-next {
    right: 1rem;
}

.tg-amenity-level-content {
    padding: clamp(2rem, 5vw, 4.5rem);
    background: #171c24;
}

.tg-amenity-level-content h2::after {
    display: block;
    width: 4rem;
    height: 1px;
    margin: 1.5rem 0;
    background: var(--tg-gold);
    content: '';
}

.tg-amenity-level-content ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tg-amenity-level-content li {
    position: relative;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tg-amenity-level-content li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--tg-gold);
    content: '✦';
}

.tg-video-gallery-page {
    background: var(--tg-dark);
}

.tg-video-gallery-section {
    padding: 4rem 0 5rem;
}

.tg-video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem) 1.25rem;
}

.tg-video-gallery-card {
    text-align: left;
}

.tg-video-gallery-card .tg-video-title {
    min-height: 3.2em;
    text-align: left;
}

@media (max-width: 991.98px) {
    .tg-landlords-intro {
        min-height: 30rem;
    }
}

@media (max-width: 767.98px) {
    .tg-contact-page-hero,
    .tg-image-gallery-hero,
    .tg-residence-hero {
        min-height: 34rem;
        background-attachment: scroll;
    }

    .tg-contact-page-form {
        padding: 2.5rem 1.5rem;
    }

    .tg-property-architecture-diagram {
        min-height: 24rem;
    }

    .tg-property-architecture-copy {
        padding: 2.5rem 2rem;
    }

    .tg-amenities-level-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tg-amenities-level-nav a {
        min-height: 12rem;
    }

    .tg-amenity-level-content ul {
        grid-template-columns: 1fr;
    }

    .tg-video-gallery-section {
        padding: 3rem 0;
    }

    .tg-video-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 0.85rem;
    }
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
    font-size: 0.9rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--tg-gold);
}

.site-footer .widget-title {
    color: var(--tg-gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* ── WP Specific ────────────────────────────────────────────── */
.page-content img,
.post-content img {
    max-width: 100%;
    height: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

.alignleft {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin: 1rem auto;
}

/* ── Page top offset for fixed navbar ───────────────────────── */
.site-main {
    min-height: 60vh;
}

/* Front page: slider is full height, no offset needed */
.home .site-main {
    margin-top: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .site-header .navbar {
        min-height: 64px;
        padding: 0.75rem 0;
    }

    .site-header .tg-brand-mark {
        position: static;
        transform: none;
        margin-right: auto;
        text-align: left;
    }

    .site-header .custom-logo-link img,
    .site-header .navbar-brand img {
        max-height: 56px;
    }

    .site-header .navbar.scrolled .custom-logo-link img,
    .site-header .navbar.scrolled .navbar-brand img {
        max-height: 46px;
    }

    .tg-location-page .row.g-5 {
        --bs-gutter-x: 1.5rem;
    }

    .site-header .navbar-toggler {
        padding: 0.35rem;
        border: 0 !important;
        border-radius: 0;
        background: transparent;
        box-shadow: none !important;
    }

    .site-header .navbar-toggler:focus,
    .site-header .navbar-toggler:focus-visible {
        box-shadow: none !important;
        outline: 0 !important;
    }

    .site-header .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.9));
    }

    .site-header .navbar-collapse {
        flex-direction: column;
        align-items: stretch;
        margin-top: 0.5rem;
    }

    .site-header .tg-menu-group,
    .site-header .tg-menu-group-left,
    .site-header .tg-menu-group-right {
        display: block;
        padding: 0;
    }

    .site-header .tg-primary-menu {
        flex-direction: column;
        align-items: center;
    }

    .site-header .nav-item {
        width: 100%;
        text-align: center;
    }

    .site-header .nav-link {
        display: inline-block;
        padding: 0.9rem 0 !important;
        font-size: 0.9rem;
    }

    .site-header .tg-nav-rental {
        padding-right: 1.15rem !important;
        padding-left: 1.15rem !important;
    }

    .site-header .dropdown-menu {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .spotlight-hero-wrap {
        height: 70vh;
        min-height: 400px;
    }

    .spotlight-hero-wrap .slide-title {
        font-size: 1.75rem;
    }

    .spotlight-hero-wrap .slide-subtitle {
        font-size: 0.9rem;
    }
}
