:root {
    --navy: #0b1f3a;
    --navy-deep: #071528;
    --navy-soft: #1a3355;
    --gold: #c4a35a;
    --gold-soft: #d4b978;
    --ivory: #f7f4ef;
    --sand: #ebe6dc;
    --white: #ffffff;
    --muted: #6d7582;
    --line: rgba(11, 31, 58, 0.12);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Outfit", "Segoe UI", sans-serif;
    --nav-height: 84px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Logo page loader */
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #fbfaf7 0%, #f3efe7 55%, #ebe6dc 100%);
    transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}

.site-loader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader-inner {
    position: relative;
    width: 140px;
    height: 140px;
    display: grid;
    place-items: center;
}

.site-loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(11, 31, 58, 0.08);
    border-top-color: var(--gold);
    border-right-color: var(--navy);
    animation: loaderSpin 1s linear infinite;
}

.site-loader-logo {
    width: 78px;
    height: 78px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.12);
    animation: loaderPulse 1.4s ease-in-out infinite;
}

.site-loader-text {
    position: absolute;
    top: calc(100% + 1.1rem);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.18em;
    color: var(--navy);
    font-weight: 600;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--navy);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-deep);
}

.btn-gold:hover {
    background: var(--gold-soft);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-soft);
}

.btn-full {
    width: 100%;
}

/* ========== NAVBAR (centered logo) ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: #ffffff;
    border-bottom: 1px solid rgba(11, 31, 58, 0.06);
    transition: height 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.navbar.is-scrolled {
    height: 76px;
    box-shadow: 0 8px 28px rgba(7, 21, 40, 0.06);
}

.nav-shell {
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2.5rem;
}

.nav-side {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-side--left {
    justify-content: flex-end;
    padding-right: 2.75rem;
    margin-right: 0.5rem;
}

.nav-side--right {
    justify-content: flex-start;
    padding-left: 2.75rem;
    margin-left: 0.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    z-index: 2;
    padding: 0 1.25rem;
    flex-shrink: 0;
}

.nav-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    transition: width 0.35s var(--ease), height 0.35s var(--ease);
    flex-shrink: 0;
}

.navbar.is-scrolled .nav-brand img {
    width: 44px;
    height: 44px;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.05;
    text-align: left;
    width: 11rem;
    min-width: 11rem;
    max-width: 11rem;
    flex-shrink: 0;
    overflow: hidden;
}

.nav-brand-text strong {
    position: relative;
    display: block;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--navy-deep);
    white-space: nowrap;
    height: 1.35em;
    line-height: 1.35em;
    overflow: hidden;
}

.nav-brand-text span {
    position: relative;
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    height: 1.15em;
    line-height: 1.15em;
    overflow: hidden;
}

.nav-brand-text strong.is-typing::after,
.nav-brand-text span.is-typing::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 0.85em;
    margin-left: 3px;
    background: currentColor;
    vertical-align: -0.05em;
    animation: navTypeCaret 0.65s steps(1) infinite;
}

.nav-brand-text strong.is-typed,
.nav-brand-text span.is-typed {
    border: 0;
}

.nav-brand-text strong.is-typed {
    animation: navBrandColors 4s ease-in-out infinite;
}

.nav-brand-text span.is-typed {
    animation: navJaipurColors 3s ease-in-out infinite;
}

@keyframes navTypeCaret {
    0%, 45% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes navBrandColors {
    0%   { color: #0b1f3a; }
    20%  { color: #c4a35a; }
    40%  { color: #1a3355; }
    60%  { color: #d4b978; }
    80%  { color: #3d6a9a; }
    100% { color: #0b1f3a; }
}

@keyframes navJaipurColors {
    0%   { color: #c4a35a; }
    16%  { color: #e8b84a; }
    32%  { color: #2f9e8a; }
    48%  { color: #4d9fd6; }
    64%  { color: #d4784a; }
    80%  { color: #7eb8d4; }
    100% { color: #c4a35a; }
}

@media (prefers-reduced-motion: reduce) {
    .nav-brand-text strong,
    .nav-brand-text strong.is-typed {
        animation: none !important;
        color: var(--navy-deep) !important;
    }

    .nav-brand-text span,
    .nav-brand-text span.is-typed {
        animation: none !important;
        color: var(--gold) !important;
    }

    .nav-brand-text strong.is-typing::after,
    .nav-brand-text span.is-typing::after {
        display: none;
    }
}

.nav-link {
    position: relative;
    padding: 0.55rem 0.95rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2a2a2a;
    transition: color 0.3s var(--ease);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.2rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--navy-deep);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-item .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-caret {
    width: 0.65rem;
    height: 0.45rem;
    opacity: 0.7;
    transition: transform 0.25s var(--ease);
}

.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 180px;
    padding: 0.55rem 0;
    background: #fff;
    border: 1px solid rgba(11, 31, 58, 0.08);
    box-shadow: 0 18px 40px rgba(11, 31, 58, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    z-index: 80;
}

.nav-dropdown--cities {
    display: flex;
    align-items: stretch;
    gap: 0;
    left: 0;
    transform: translateX(0) translateY(10px);
    min-width: max-content;
    padding: 1rem 0.35rem;
    border-radius: 4px;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -0.7rem;
    height: 0.7rem;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-item:hover .nav-dropdown--cities,
.nav-item:focus-within .nav-dropdown--cities {
    transform: translateX(0) translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.55rem 1.1rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--navy);
    text-transform: none;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-city-item {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    min-width: 168px;
    padding: 0.45rem 1.15rem !important;
    position: relative;
}

.nav-city-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: rgba(11, 31, 58, 0.18);
}

.nav-city-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f1f1;
    border: 1px solid rgba(11, 31, 58, 0.06);
    box-shadow: 0 2px 8px rgba(11, 31, 58, 0.06);
}

.nav-city-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-city-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.15;
}

.nav-city-text strong {
    font-family: var(--font-body, "Outfit", sans-serif);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #1a1a1a;
    text-transform: none;
}

.nav-city-text small {
    font-family: var(--font-body, "Outfit", sans-serif);
    font-size: 0.72rem;
    font-weight: 400;
    color: #6b7280;
    letter-spacing: 0.02em;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
    background: transparent;
    color: var(--navy-deep);
}

.nav-city-item:hover .nav-city-text strong,
.nav-city-item.is-active .nav-city-text strong {
    color: var(--navy-deep);
}

.nav-city-item:hover .nav-city-icon {
    border-color: rgba(196, 163, 90, 0.55);
}

.nav-dropdown-all {
    margin-top: 0.25rem;
    border-top: 1px solid var(--line);
    color: var(--gold) !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

.nav-mobile-city {
    display: flex !important;
    align-items: center;
    gap: 0.7rem;
}

.nav-mobile-city-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    flex-shrink: 0;
}

.nav-mobile-group {
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.nav-mobile-summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.95rem 0.15rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--navy);
    cursor: pointer;
    user-select: none;
}

.nav-mobile-summary::-webkit-details-marker {
    display: none;
}

.nav-mobile-summary::after {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    transition: transform 0.25s var(--ease);
    flex-shrink: 0;
}

.nav-mobile-group[open] .nav-mobile-summary::after {
    transform: rotate(-135deg);
}

.nav-mobile-panel {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0 0 0.65rem;
}

.nav-mobile-label {
    padding: 0.4rem 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(11, 31, 58, 0.55);
}

.nav-link--sub {
    padding-left: 0.85rem !important;
    font-size: 1rem !important;
    letter-spacing: 0.06em !important;
    opacity: 1;
}

.city-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
}

.city-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--line);
    color: var(--navy-soft);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.city-chip-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.city-chip:hover,
.city-chip.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.properties-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
}

.properties-empty h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.properties-empty p {
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.nav-menu {
    display: none;
}

.nav-menu-backdrop {
    display: none;
}

.nav-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.nav-cta {
    margin-left: 0.5rem;
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.nav-cta:hover {
    background: var(--gold-soft);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    gap: 6px;
    flex-direction: column;
    z-index: 1002;
    justify-self: end;
    position: relative;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), background 0.35s var(--ease);
}

.nav-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    background: var(--navy-deep);
    color: var(--white);
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-media {
    position: relative;
    width: 100%;
    line-height: 0;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    vertical-align: top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(7, 21, 40, 0.35) 0%, rgba(7, 21, 40, 0.12) 40%, rgba(7, 21, 40, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 2.5rem));
    padding: calc(var(--nav-height) + 2rem) 0 5rem;
}

.hero-content--side {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: var(--nav-height);
    padding-bottom: 3rem;
}

.hero-brand-mark {
    width: clamp(140px, 22vw, 220px);
    height: clamp(140px, 22vw, 220px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    object-fit: contain;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.hero-scroll {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    display: grid;
    place-items: start center;
    padding-top: 8px;
}

.hero-scroll span {
    width: 4px;
    height: 10px;
    border-radius: 999px;
    background: var(--gold);
    animation: scrollPulse 1.6s var(--ease) infinite;
}

/* ========== PAGE HERO (Properties) ========== */
.page-hero {
    position: relative;
    min-height: 52vh;
    display: grid;
    place-items: end start;
    overflow: hidden;
    color: var(--white);
}

.page-hero-media {
    position: absolute;
    inset: 0;
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 21, 40, 0.55) 0%, rgba(7, 21, 40, 0.78) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: calc(var(--nav-height) + 3rem) 0 3.5rem;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 600;
    line-height: 1;
    margin: 0.4rem 0 0.8rem;
}

.page-hero p:last-child {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 300;
}

/* ========== SECTIONS ========== */
.section {
    padding: 6rem 0;
}

.has-watermark {
    position: relative;
    overflow: hidden;
}

.has-watermark > .section-shell,
.has-watermark > .cta-band-inner {
    position: relative;
    z-index: 1;
}

.bg-watermark {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 14vw, 11rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(11, 31, 58, 0.045);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
}

.bg-watermark--light {
    color: rgba(255, 255, 255, 0.07);
}

.why-section .bg-watermark {
    top: 38%;
    font-size: clamp(3.2rem, 13vw, 10rem);
}

.preview-section .bg-watermark {
    top: 30%;
    letter-spacing: 0.18em;
}

.testimonials-section .bg-watermark {
    top: 28%;
    letter-spacing: 0.2em;
}

.blogs-section .bg-watermark {
    top: 26%;
    letter-spacing: 0.12em;
}

.contact-section .bg-watermark {
    top: 30%;
    letter-spacing: 0.14em;
}

.cta-band.has-watermark {
    position: relative;
    overflow: hidden;
}

.section-shell {
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.section-heading {
    max-width: 40rem;
    margin-bottom: 3rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.eyebrow.light {
    color: var(--gold-soft);
}

.section-heading h2,
.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0.85rem;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 300;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-item {
    padding: 1.75rem 0;
    border-top: 1px solid var(--line);
}

.feature-index {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.feature-item p {
    color: var(--muted);
    font-weight: 300;
}

.btn-outline-gold {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

.section-heading--center {
    text-align: center;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.section-heading--center p {
    margin-left: auto;
    margin-right: auto;
}

.feature-row--premium .feature-item {
    text-align: center;
    padding: 2rem 1rem 1.5rem;
}

.feature-row--premium .feature-index {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
}

.feature-row--premium h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    letter-spacing: 0.02em;
}

.preview-section {
    background:
        linear-gradient(180deg, #fbfaf7 0%, #f0ebe3 100%);
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.premium-showcase {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.1rem;
    min-height: 640px;
}

/* Floating city tags on featured properties hover */
.showcase-locations {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.showcase-location-tag {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(196, 163, 90, 0.55);
    padding: 0.35rem 0.85rem;
    opacity: 0;
    transform: translateY(18px) scale(0.92);
    transition: opacity 0.45s var(--ease), transform 0.55s var(--ease);
    box-shadow: 0 12px 28px rgba(11, 31, 58, 0.12);
    white-space: nowrap;
}

.showcase-location-tag[data-loc="1"] { top: 8%; left: 6%; transition-delay: 0s; }
.showcase-location-tag[data-loc="2"] { top: 18%; right: 8%; transition-delay: 0.08s; }
.showcase-location-tag[data-loc="3"] { bottom: 22%; left: 12%; transition-delay: 0.14s; }
.showcase-location-tag[data-loc="4"] { bottom: 10%; right: 14%; transition-delay: 0.2s; }

.premium-showcase:hover .showcase-location-tag {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (hover: none) {
    .showcase-location-tag {
        display: none;
    }
}

.premium-tile {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 280px;
    background: var(--navy-deep);
    color: var(--white);
}

.premium-tile--large {
    grid-row: 1 / span 2;
    min-height: 100%;
}

.premium-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 1s var(--ease), filter 0.8s var(--ease);
    filter: brightness(0.78) saturate(0.92);
}

.premium-tile-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 21, 40, 0.15) 0%, rgba(7, 21, 40, 0.28) 45%, rgba(7, 21, 40, 0.88) 100%);
    z-index: 1;
}

.premium-tile-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.75rem 1.5rem;
}

.premium-tile-type {
    display: inline-block;
    margin-bottom: 0.7rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.premium-tile-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0.55rem;
}

.premium-tile-content p {
    max-width: 28rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.premium-tile-link {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.premium-tile:hover img {
    transform: scale(1.06);
    filter: brightness(0.7) saturate(1);
}

.premium-tile:hover .premium-tile-link {
    color: var(--gold-soft);
}

.deal-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 0 2.25rem;
}

.deal-pill {
    padding: 0.7rem 1.35rem;
    border: 1px solid rgba(11, 31, 58, 0.14);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.deal-pill:hover {
    border-color: var(--gold);
    transform: translateY(-1px);
}

.deal-pill.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.premium-showcase {
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.premium-showcase.is-switching {
    opacity: 0.35;
    transform: translateY(8px);
}

.premium-tile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 1s var(--ease), filter 0.8s var(--ease);
    filter: brightness(0.78) saturate(0.92);
}

.premium-tile:hover .premium-tile-img {
    transform: scale(1.06);
    filter: brightness(0.7) saturate(1);
}

.preview-section .section-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 2.5rem;
}

.page-home .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 21, 40, 0.28) 0%, rgba(7, 21, 40, 0.08) 45%, rgba(7, 21, 40, 0.35) 100%);
}

.page-home .why-section {
    padding-top: 7rem;
    padding-bottom: 6.5rem;
}

/* ========== BRAND 3D LOGO STAGE ========== */
.brand-stage {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 6rem;
    background:
        radial-gradient(ellipse 70% 80% at 88% 40%, rgba(196, 163, 90, 0.12), transparent 55%),
        linear-gradient(165deg, #f7f5f1 0%, #eef1f5 48%, #e8edf3 100%);
}

.brand-stage .bg-watermark {
    top: 42%;
    letter-spacing: 0.22em;
}

.brand-stage-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.brand-stage-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.4vw, 3.15rem);
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 1rem;
    color: var(--navy);
}

.brand-stage-type {
    margin: 0 0 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.brand-stage-copy > p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 34rem;
    margin-bottom: 1.75rem;
}

.brand-stage-points {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.brand-stage-points li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--navy-soft);
    font-size: 0.95rem;
    line-height: 1.45;
}

.brand-stage-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.4rem;
    height: 0.4rem;
    background: var(--gold);
}

.brand-stage-points strong {
    color: var(--navy);
    font-weight: 600;
}

.brand-stage-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.brand-stage-visual {
    position: relative;
    isolation: isolate;
}

.brand-stage-visual::before {
    content: "";
    position: absolute;
    inset: 8% 6% 4% 6%;
    background: radial-gradient(circle at 50% 45%, rgba(11, 31, 58, 0.08), transparent 68%);
    z-index: 0;
    pointer-events: none;
}

.brand-stage-video {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #d9dde2;
    box-shadow: 0 28px 60px rgba(11, 31, 58, 0.12);
    animation: brandStageIn 1.1s var(--ease) both;
}

.brand-stage-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #d9dde2;
    box-shadow: 0 28px 60px rgba(11, 31, 58, 0.12);
    animation: brandStageIn 1.1s var(--ease) both;
}

@keyframes brandStageIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 900px) {
    .brand-stage-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .brand-stage-visual {
        order: -1;
    }

    .brand-stage {
        padding: 4rem 0 4.5rem;
    }
}

.section-cta {
    margin-top: 2.75rem;
    text-align: center;
}

/* ========== PROPERTY TILES ========== */
.properties-section {
    position: relative;
    overflow: hidden;
}

.properties-locations {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.properties-location-tag {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.4vw, 1.75rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(196, 163, 90, 0.5);
    padding: 0.4rem 0.95rem;
    opacity: 0;
    transform: translateY(22px) scale(0.9);
    transition: opacity 0.45s var(--ease), transform 0.55s var(--ease);
    box-shadow: 0 14px 32px rgba(11, 31, 58, 0.14);
    white-space: nowrap;
}

.properties-location-tag[data-loc="1"] { top: 6%; left: 4%; transition-delay: 0s; }
.properties-location-tag[data-loc="2"] { top: 12%; right: 5%; transition-delay: 0.08s; }
.properties-location-tag[data-loc="3"] { bottom: 18%; left: 8%; transition-delay: 0.14s; }
.properties-location-tag[data-loc="4"] { bottom: 8%; right: 7%; transition-delay: 0.2s; }

.properties-section:hover .properties-location-tag {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (hover: none) {
    .properties-location-tag {
        display: none;
    }

    .property-location-pop {
        opacity: 1;
        transform: none;
        background: rgba(7, 21, 40, 0.75);
        font-size: 0.95rem;
        padding: 0.4rem 0.7rem;
    }
}

.properties-section .section-shell {
    position: relative;
    z-index: 3;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.property-tile {
    background: transparent;
}

.property-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--navy);
}

.property-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.property-tile:hover .property-media img {
    transform: scale(1.06);
}

.property-location-pop {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    padding: 0.55rem 0.85rem;
    background: rgba(7, 21, 40, 0.88);
    color: var(--gold-soft);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s var(--ease), transform 0.45s var(--ease);
    pointer-events: none;
}

.property-tile:hover .property-location-pop {
    opacity: 1;
    transform: translateY(0);
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    background: rgba(7, 21, 40, 0.82);
    color: var(--gold-soft);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.property-body {
    padding: 1.15rem 0.15rem 0.25rem;
}

.property-tag {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.property-body h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 0.3rem;
}

.property-body > p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 0.85rem;
}

.property-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
}

.property-meta strong {
    font-size: 1.05rem;
}

.property-meta span {
    color: var(--muted);
    font-size: 0.85rem;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.25rem;
}

.filter-chip {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--navy-soft);
    font-size: 0.86rem;
    font-weight: 500;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.filter-chip:hover,
.filter-chip.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.property-tile.is-hidden {
    display: none;
}

.cta-band {
    padding: 5.5rem 0;
    background:
        radial-gradient(circle at right top, rgba(196, 163, 90, 0.22), transparent 35%),
        linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
    color: var(--white);
}

.cta-band-inner {
    text-align: center;
}

.cta-band p {
    max-width: 34rem;
    margin: 0 auto 1.75rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
}

/* ========== FOOTER ========== */
.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 70% at 100% 0%, rgba(196, 163, 90, 0.14), transparent 55%),
        linear-gradient(165deg, #071528 0%, #0b1f3a 55%, #102744 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: 4.5rem 0 1.75rem;
}

.footer-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1.75rem 2.5rem;
    align-items: center;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.footer-brand img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--white);
    object-fit: contain;
    box-shadow: 0 0 0 1px rgba(196, 163, 90, 0.35);
}

.footer-brand strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.06em;
    line-height: 1.1;
}

.footer-brand span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.footer-lead {
    max-width: 28rem;
    margin: 0;
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
}

.footer-top-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem 1.75rem;
    margin-bottom: 2.75rem;
    align-items: start;
}

.footer-block {
    min-width: 0;
}

.footer-block h4 {
    color: var(--gold-soft);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.footer-block p,
.footer-block a {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 300;
    margin: 0 0 0.45rem;
    line-height: 1.4;
    transition: color 0.3s var(--ease);
}

.footer-block a:hover {
    color: var(--gold-soft);
}

.footer-name {
    color: var(--white) !important;
    font-weight: 500 !important;
    font-family: var(--font-display);
    font-size: 1.1rem !important;
    margin-bottom: 0.55rem !important;
}

.footer-focus-line {
    margin-top: 0.75rem !important;
    color: rgba(196, 163, 90, 0.9) !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.04em;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem 1.5rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
}

.footer-legal-links a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.58);
    transition: color 0.3s var(--ease);
}

.footer-legal-links a:hover {
    color: var(--gold-soft);
}

.footer-copy,
.footer-credit {
    margin: 0;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.footer-credit {
    font-weight: 500;
    letter-spacing: 0.04em;
}

.footer-credit a {
    background: linear-gradient(
        90deg,
        #8a9bb5 0%,
        #d4b978 18%,
        #ffffff 36%,
        #c4a35a 52%,
        #7eb8d4 70%,
        #d4b978 85%,
        #8a9bb5 100%
    );
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: footerCreditRun 4.5s linear infinite;
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
    text-decoration-color: rgba(212, 185, 120, 0.75);
}

@keyframes footerCreditRun {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 220% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-credit a {
        animation: none;
        background: none;
        color: rgba(212, 185, 120, 0.85);
        -webkit-text-fill-color: rgba(212, 185, 120, 0.85);
    }
}

.contact-section {
    background: var(--ivory);
}

.contact-section--premium {
    position: relative;
    overflow: hidden;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    background:
        linear-gradient(145deg, #0a1c34 0%, #122a48 42%, #1a3354 100%);
    color: var(--white);
}

.contact-section--premium .bg-watermark {
    color: rgba(255, 255, 255, 0.045);
    top: 36%;
}

.contact-glow {
    position: absolute;
    inset: auto -10% -30% 35%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(196, 163, 90, 0.22), transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.contact-premium {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.contact-premium-intro .eyebrow {
    color: var(--gold-soft);
}

.contact-premium-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.6vw, 3.35rem);
    font-weight: 600;
    line-height: 1.12;
    margin-bottom: 1rem;
    color: var(--white);
    max-width: 18ch;
}

.contact-premium-intro > p {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
}

.contact-premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-premium-actions .btn-navy {
    background: var(--white);
    color: var(--navy);
}

.contact-premium-actions .btn-navy:hover {
    background: var(--gold-soft);
    color: var(--navy-deep);
}

.contact-premium-panel {
    padding: 2.35rem 2.1rem 1.85rem;
    border-top: 1px solid rgba(196, 163, 90, 0.55);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(6px);
}

.contact-panel-kicker {
    margin-bottom: 1.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.contact-premium-list {
    margin: 0;
    padding: 0;
}

.contact-premium-row {
    display: grid;
    grid-template-columns: 6.5rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1.05rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-premium-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-premium-row dt {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    padding-top: 0.2rem;
}

.contact-premium-row dd {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 500;
    line-height: 1.35;
    color: var(--white);
}

.contact-premium-row a {
    color: var(--white);
    transition: color 0.3s var(--ease);
}

.contact-premium-row a:hover {
    color: var(--gold-soft);
}

.contact-panel-note {
    margin-top: 1.35rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.48);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    padding: 1.35rem 1.25rem;
    border-top: 1px solid var(--line);
}

.contact-card--wide {
    grid-column: 1 / -1;
}

.contact-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-card strong {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.45;
}

.contact-card a {
    color: var(--navy);
}

.contact-card a:hover {
    color: var(--navy-soft);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    background:
        linear-gradient(180deg, rgba(11, 31, 58, 0.03), transparent 40%),
        var(--sand);
    overflow-x: clip;
}

.testimonials-marquee {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.testimonials-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    max-width: none;
    gap: 1.25rem;
    will-change: transform;
    animation: testimonialsMarquee 35s linear infinite;
    backface-visibility: hidden;
}

@media (hover: hover) and (pointer: fine) {
    .testimonials-marquee:hover .testimonials-track,
    .testimonials-marquee:focus-within .testimonials-track {
        animation-play-state: paused;
    }
}

@keyframes testimonialsMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.testimonial-card {
    box-sizing: border-box;
    flex: 0 0 min(360px, 78vw);
    width: min(360px, 78vw);
    min-width: min(360px, 78vw);
    max-width: min(360px, 78vw);
    display: flex;
    flex-direction: column;
    padding: 1.9rem 1.5rem 1.7rem;
    border-top: 1px solid rgba(196, 163, 90, 0.45);
    background: rgba(255, 255, 255, 0.45);
}

.testimonial-stars {
    color: var(--gold);
    letter-spacing: 0.12em;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    line-height: 1.45;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1.4rem;
    flex: 1 1 auto;
    min-height: 5.2rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-author strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 300;
}

.testimonial-project-link {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: var(--gold);
    text-decoration: none;
}

.testimonial-project-link:hover {
    text-decoration: underline;
}

.project-reviews-section {
    background: #faf8f4;
}

.project-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.project-review-card {
    background: #fff;
    border: 1px solid #ebe4d8;
    border-radius: 18px;
    padding: 1.2rem 1.25rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.project-review-stars {
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
}

.project-review-quote {
    margin: 0 0 1rem;
    line-height: 1.6;
    color: #334155;
}

.project-review-author strong {
    display: block;
    margin-bottom: 0.15rem;
}

.project-review-author span {
    color: var(--muted);
    font-size: 0.85rem;
}

.project-reviews-empty {
    margin: 0 0 1.5rem;
    color: var(--muted);
}

.project-review-form-wrap {
    background: #fff;
    border: 1px solid #ebe4d8;
    border-radius: 20px;
    padding: 1.4rem 1.5rem;
}

.project-review-form-wrap h3 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    color: var(--navy);
}

.project-review-form {
    display: grid;
    gap: 0.9rem;
}

.project-review-form label span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
}

.project-review-form input,
.project-review-form select,
.project-review-form textarea {
    width: 100%;
    border: 1px solid #d8dee8;
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    font: inherit;
}

.project-review-status {
    margin: 0;
    font-size: 0.9rem;
}

.project-review-status.is-success {
    color: #15803d;
}

.project-review-status.is-error {
    color: #b91c1c;
}

@media (max-width: 680px) {
    .testimonials-section {
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }

    .testimonials-section .section-heading {
        width: min(1180px, calc(100% - 2.5rem));
        margin-left: auto;
        margin-right: auto;
    }

    .testimonials-marquee {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 0 0 0.25rem;
    }

    .testimonials-viewport {
        mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }

    .testimonials-track {
        gap: 0.85rem;
        animation-duration: 32s;
        animation-timing-function: linear;
    }

    .testimonial-card {
        flex-basis: calc(100vw - 3.25rem);
        width: calc(100vw - 3.25rem);
        min-width: calc(100vw - 3.25rem);
        max-width: calc(100vw - 3.25rem);
        min-height: 15.5rem;
        padding: 1.45rem 1.15rem 1.3rem;
        margin-left: 0;
    }

    .testimonial-quote {
        font-size: 1.12rem;
        min-height: 4.5rem;
        margin-bottom: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-track {
        animation: none !important;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        transform: none !important;
    }

    .testimonials-marquee,
    .testimonials-viewport {
        overflow: visible;
        width: 100%;
        max-width: 100%;
        margin: 0;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .testimonial-card {
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
}

/* ========== BLOGS ========== */
.blogs-section {
    background: var(--ivory);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-card-media {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--navy);
}

.blog-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(15, 23, 42, 0.22);
    pointer-events: none;
}

.blog-card-play svg {
    width: 3.2rem;
    height: 3.2rem;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.blog-card-media .blog-card-video,
.blog-card-media video,
.blog-card-media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    display: block;
    pointer-events: none;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.15rem 0.1rem 0;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.blog-card-body h2,
.blog-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.55rem;
}

.blog-card-body h2 a,
.blog-card-body h3 a {
    transition: color 0.3s ease;
}

.blog-card-body h2 a:hover,
.blog-card-body h3 a:hover {
    color: var(--gold);
}

.blog-card-body > p {
    color: var(--muted);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.9rem;
}

.blog-read {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 0.2rem;
    transition: color 0.3s ease;
}

.blog-read:hover {
    color: var(--gold);
}

.blog-show-hero {
    padding: calc(var(--nav-height) + 3rem) 0 2rem;
    background: linear-gradient(180deg, #fbfaf7 0%, #f3efe7 100%);
}

.page-blog-show .navbar:not(.is-scrolled) .nav-brand-text strong,
.page-blog-show .navbar:not(.is-scrolled) .nav-link,
.page-blogs .navbar:not(.is-scrolled) .nav-brand-text strong {
    color: var(--navy-deep);
}

.page-blogs .navbar:not(.is-scrolled) .nav-link {
    color: #2a2a2a;
}

.page-blog-show .navbar:not(.is-scrolled) .nav-brand-text span {
    color: var(--gold);
}

.page-blog-show .navbar:not(.is-scrolled) .nav-toggle span {
    background: var(--navy);
}

.blog-show-hero-inner {
    max-width: 760px;
}

.blog-back {
    display: inline-block;
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
    color: var(--muted);
    transition: color 0.3s ease;
}

.blog-back:hover {
    color: var(--gold);
}

.blog-show-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0.4rem 0 1rem;
}

.blog-show-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.blog-show-section {
    padding-top: 2.5rem;
}

.blog-show-layout {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

.blog-show-image {
    margin-bottom: 1.75rem;
    overflow: hidden;
}

.blog-show-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.blog-show-content > p {
    color: var(--muted);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.1rem;
}

.blog-show-cta {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--line);
}

.blog-show-cta h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.blog-show-cta p {
    color: var(--muted);
    margin-bottom: 1.1rem;
}

.blog-show-aside h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 0.85rem;
    align-items: center;
}

.related-item img {
    width: 88px;
    height: 72px;
    object-fit: cover;
}

.related-item strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.related-item span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.related-item:hover strong {
    color: var(--gold);
}

/* ========== ABOUT PAGE (Bhumija-style layout) ========== */
.page-about .navbar:not(.is-scrolled) .nav-brand-text strong,
.page-about .navbar:not(.is-scrolled) .nav-link {
    color: var(--navy-deep);
}

.page-about .navbar:not(.is-scrolled) .nav-brand-text span {
    color: var(--gold);
}

.page-about .navbar:not(.is-scrolled) .nav-toggle span {
    background: var(--navy);
}

.page-about .navbar:not(.is-scrolled) .nav-link:hover,
.page-about .navbar:not(.is-scrolled) .nav-link.is-active {
    color: var(--navy-deep);
}

.page-legal .navbar:not(.is-scrolled) .nav-brand-text strong,
.page-legal .navbar:not(.is-scrolled) .nav-link {
    color: var(--navy);
}

.page-legal .navbar:not(.is-scrolled) .nav-brand-text span {
    color: var(--muted);
}

.page-legal .navbar:not(.is-scrolled) .nav-toggle span {
    background: var(--navy);
}

.page-legal .navbar:not(.is-scrolled) .nav-link:hover,
.page-legal .navbar:not(.is-scrolled) .nav-link.is-active {
    color: var(--navy-deep);
}

.legal-hero {
    padding: calc(var(--nav-height) + 4rem) 1.25rem 3.25rem;
    background:
        radial-gradient(ellipse 60% 80% at 90% 10%, rgba(196, 163, 90, 0.12), transparent 50%),
        linear-gradient(180deg, #fbfaf7 0%, #eef1f5 100%);
    text-align: center;
}

.legal-hero-inner h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.65rem;
}

.legal-updated {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 300;
}

.legal-section {
    padding-top: 1rem;
    padding-bottom: 5rem;
}

.legal-content {
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    color: var(--navy-soft);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    font-weight: 600;
    color: var(--navy);
    margin: 2.25rem 0 0.85rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 0.9rem;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 1.1rem 1.2rem;
}

.legal-content strong {
    color: var(--navy);
    font-weight: 600;
}

.legal-content a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    max-width: 48rem;
    margin: 0 auto;
}

.legal-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.04em;
    transition: color 0.3s var(--ease);
}

.legal-links a:hover,
.legal-links a.is-active {
    color: var(--navy);
}

/* ========== CONTACT PAGE ========== */
.page-contact .navbar:not(.is-scrolled) {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}

.page-contact .navbar:not(.is-scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.92);
}

.page-contact .navbar:not(.is-scrolled):not(.menu-open) .nav-brand-text strong:not(.is-typed) {
    color: #ffffff;
}

.page-contact .navbar:not(.is-scrolled):not(.menu-open) .nav-brand-text span:not(.is-typed) {
    color: var(--gold-soft);
}

.page-contact .navbar:not(.is-scrolled):not(.menu-open) .nav-brand-text strong.is-typed {
    animation: navBrandColorsLight 4s ease-in-out infinite;
}

@keyframes navBrandColorsLight {
    0%   { color: #ffffff; }
    25%  { color: #d4b978; }
    50%  { color: #f0e6c8; }
    75%  { color: #c4a35a; }
    100% { color: #ffffff; }
}

.page-contact .navbar:not(.is-scrolled) .nav-toggle span {
    background: var(--white);
}

.page-contact .navbar:not(.is-scrolled) .nav-link:hover,
.page-contact .navbar:not(.is-scrolled) .nav-link.is-active {
    color: var(--white);
}

.page-contact .navbar.is-scrolled,
.page-contact .navbar.menu-open {
    background: #ffffff;
    border-bottom: 1px solid rgba(11, 31, 58, 0.06);
}

.page-contact .navbar.menu-open:not(.is-scrolled) .nav-link,
.page-contact .navbar.menu-open .nav-menu .nav-link {
    color: var(--navy);
}

.page-contact .navbar.menu-open:not(.is-scrolled) .nav-toggle span {
    background: var(--navy);
}

.contact-page-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-height) + 5rem) 1.25rem 5rem;
    text-align: center;
    color: var(--white);
    background:
        linear-gradient(145deg, #071528 0%, #0b1f3a 48%, #163456 100%);
}

.contact-page-hero-glow {
    position: absolute;
    inset: auto -15% -40% 20%;
    height: 75%;
    background: radial-gradient(ellipse at center, rgba(196, 163, 90, 0.28), transparent 62%);
    pointer-events: none;
}

.contact-page-hero-inner {
    position: relative;
    z-index: 1;
}

.contact-page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 0.85rem;
}

.contact-page-tagline {
    max-width: 28rem;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.contact-page-main {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
    background:
        radial-gradient(ellipse 50% 60% at 0% 0%, rgba(196, 163, 90, 0.08), transparent 50%),
        linear-gradient(180deg, #fbfaf7 0%, #eef1f5 100%);
}

.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2.5rem, 6vw, 4.5rem);
    align-items: start;
}

.contact-page-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-page-copy > p {
    max-width: 34rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-channel-list {
    display: grid;
    gap: 0;
}

.contact-channel {
    display: block;
    padding: 1.15rem 0;
    border-top: 1px solid var(--line);
    transition: color 0.3s var(--ease);
}

.contact-channel:last-child {
    border-bottom: 1px solid var(--line);
}

.contact-channel-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-channel strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 500;
    color: var(--navy);
    line-height: 1.35;
}

a.contact-channel:hover strong {
    color: var(--navy-soft);
}

.contact-page-form-wrap {
    padding: 2.25rem 2rem;
    background:
        linear-gradient(165deg, rgba(11, 31, 58, 0.96), #122a48 70%);
    color: var(--white);
    border-top: 1px solid rgba(196, 163, 90, 0.55);
}

.contact-form-kicker {
    margin-bottom: 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.contact-page-form-wrap h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 600;
    margin-bottom: 0.55rem;
}

.contact-form-note {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.contact-alert {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
    line-height: 1.45;
    border-top: 1px solid rgba(196, 163, 90, 0.45);
}

.contact-alert--success {
    background: rgba(46, 125, 90, 0.22);
    color: #d9f5e7;
}

.contact-alert--error {
    background: rgba(160, 50, 50, 0.25);
    color: #ffd7d7;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-field {
    display: grid;
    gap: 0.4rem;
}

.contact-field--full {
    grid-column: 1 / -1;
}

.contact-field span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    padding: 0.85rem 0.95rem;
    font: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.contact-field select option {
    color: var(--navy);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(212, 185, 120, 0.7);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form-submit {
    margin-top: 1.25rem;
    width: 100%;
    background: var(--white);
    color: var(--navy);
}

.contact-form-submit:hover {
    background: var(--gold-soft);
    color: var(--navy-deep);
}

.contact-page-visit {
    padding: 5rem 0;
    background: var(--navy-deep);
    color: var(--white);
}

.contact-visit-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.contact-visit-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.contact-visit-copy > p {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
    line-height: 1.65;
    max-width: 32rem;
}

.contact-visit-meta {
    margin: 1rem 0 1.75rem;
    color: rgba(212, 185, 120, 0.85) !important;
    font-size: 0.92rem;
}

.contact-visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-visit-actions .btn-navy {
    background: var(--white);
    color: var(--navy);
}

.contact-visit-actions .btn-navy:hover {
    background: var(--gold-soft);
}

.contact-visit-panel {
    min-height: 240px;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid rgba(196, 163, 90, 0.45);
    background:
        radial-gradient(circle at 50% 30%, rgba(196, 163, 90, 0.16), transparent 55%),
        rgba(255, 255, 255, 0.03);
}

.contact-visit-mark {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0.65rem;
}

.contact-visit-panel p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .contact-page-layout,
    .contact-visit-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-form-wrap {
        padding: 1.75rem 1.35rem;
    }
}

.origin-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fbfaf7 0%, #f3efe7 100%);
    padding: calc(var(--nav-height) + 4.5rem) 1.25rem 5.5rem;
    text-align: center;
}

.origin-watermark {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(4rem, 18vw, 14rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(11, 31, 58, 0.045);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.origin-inner {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    margin: 0 auto;
}

.origin-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
}

.origin-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 9vw, 5.8rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 0.95;
    color: var(--navy-deep);
    margin-bottom: 0.65rem;
}

.origin-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    color: var(--navy-soft);
    margin-bottom: 1.75rem;
}

.origin-copy {
    max-width: 38rem;
    margin: 0 auto 2rem;
}

.origin-copy p {
    color: var(--muted);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.9rem;
}

.origin-link {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 0.35rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.origin-link:hover {
    color: var(--gold);
}

.bedrock-section {
    padding: 5.5rem 0;
    background: var(--white);
    text-align: center;
}

.bedrock-heading {
    margin-bottom: 3.25rem;
}

.bedrock-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy-deep);
    margin-bottom: 0.55rem;
}

.bedrock-heading p {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.bedrock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    text-align: left;
}

.bedrock-item {
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.bedrock-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.bedrock-item h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.bedrock-item p {
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
}

.director-section {
    padding: 5.5rem 0;
    background: #f7f4ef;
}

.director-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.director-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.director-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.director-photo-wrap {
    position: relative;
}

.director-photo-wrap img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.director-quote {
    position: absolute;
    right: 0;
    bottom: 1.5rem;
    width: min(86%, 320px);
    margin: 0;
    padding: 1.1rem 1.2rem;
    background: rgba(247, 244, 239, 0.94);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.4;
    color: var(--gold);
    box-shadow: 0 10px 30px rgba(7, 21, 40, 0.08);
}

.director-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.director-role {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.35rem;
}

.director-copy > p {
    color: var(--muted);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.director-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.director-contact a {
    font-weight: 500;
    color: var(--navy);
    transition: color 0.3s ease;
}

.director-contact a:hover {
    color: var(--gold);
}

.journey-section {
    padding: 5.5rem 0;
    background: var(--white);
}

.journey-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.journey-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.1rem;
}

.journey-copy > p {
    color: var(--muted);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-top: 2rem;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    background: var(--white);
}

.trust-icon {
    color: var(--gold);
    font-size: 0.7rem;
}

.trust-card strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.journey-media {
    overflow: hidden;
}

.journey-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.about-team-strip {
    padding: 5rem 0;
    background: #f7f4ef;
    text-align: center;
}

.team-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.team-strip-photo {
    overflow: hidden;
    aspect-ratio: 1;
    margin-bottom: 1rem;
    background: var(--navy);
}

.team-strip-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.team-strip-card:hover .team-strip-photo img {
    transform: scale(1.05);
}

.team-strip-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-strip-card > span {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.65rem;
}

.team-strip-card p {
    color: var(--muted);
    font-weight: 300;
    font-size: 0.92rem;
    line-height: 1.6;
}

.team-rera {
    color: var(--navy) !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    margin: 0 0 0.45rem !important;
    letter-spacing: 0.02em;
}

.agent-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.agent-contact-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 1px solid rgba(11, 31, 58, 0.25);
    padding-bottom: 0.1rem;
}

.agent-contact-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.agent-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.75rem;
}

.agent-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    transition: transform 0.2s var(--ease), opacity 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.agent-social svg {
    width: 16px;
    height: 16px;
    display: block;
}

.agent-social:hover {
    transform: translateY(-2px);
    opacity: 0.92;
    box-shadow: 0 6px 14px rgba(11, 31, 58, 0.18);
}

.agent-social--instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.agent-social--youtube {
    background: #ff0000;
}

.agent-social--facebook {
    background: #1877f2;
}

.agent-social--linkedin {
    background: #0a66c2;
}

.agent-social--twitter {
    background: #111111;
}

.director-rera {
    display: block;
    width: 100%;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.director-socials {
    margin-top: 1rem;
}

.property-agent-socials {
    margin-top: 0.55rem;
}

.property-agent-socials .agent-social {
    width: 30px;
    height: 30px;
}

.property-agent-socials .agent-social svg {
    width: 14px;
    height: 14px;
}

.property-agent {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line);
}

.property-agent-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 48px;
    background: var(--navy);
}

.property-agent-copy {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
}

.property-agent-copy strong {
    font-size: 0.95rem;
    color: var(--navy);
}

.property-agent-copy span {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.property-agent-copy small {
    font-size: 0.78rem;
    color: var(--navy-soft);
}

.property-agent-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.35rem;
}

.property-agent-links a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
}

.property-agent-links a:hover {
    color: var(--navy);
}

.about-close-cta {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.about-close-inner {
    max-width: 40rem;
    margin: 0 auto;
}

.about-close-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin: 0.5rem 0 0.9rem;
}

.about-close-inner > p {
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 1.75rem;
}

.about-promise-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.about-close-cta .about-promise-actions {
    justify-content: center;
}

/* ========== MOTION ========== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes scrollPulse {
    0% { opacity: 0; transform: translateY(0); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translateY(14px); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
    .nav-shell {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.75rem;
        width: min(1280px, calc(100% - 1.25rem));
    }

    .nav-side {
        display: none;
    }

    .nav-brand {
        justify-self: start;
        min-width: 0;
        padding: 0 0.25rem;
    }

    .nav-brand img {
        width: 44px;
        height: 44px;
    }

    .nav-brand-text {
        width: auto;
        min-width: 0;
        max-width: min(11rem, 42vw);
    }

    .nav-brand-text strong {
        font-size: 1.15rem;
    }

    .nav-brand-text span {
        font-size: 0.56rem;
        letter-spacing: 0.22em;
    }

    .nav-toggle {
        display: grid;
        justify-self: end;
    }

    .nav-menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(7, 21, 40, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s var(--ease);
        z-index: 1000;
    }

    .nav-menu-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        padding: 0;
        background: #ffffff;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: opacity 0.3s var(--ease), transform 0.32s var(--ease);
        z-index: 1001;
        box-shadow: -12px 0 40px rgba(7, 21, 40, 0.12);
    }

    .nav-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .navbar.is-scrolled .nav-menu {
        top: 76px;
    }

    .nav-menu-inner {
        padding: 1rem 1.25rem calc(2rem + env(safe-area-inset-bottom, 0px));
    }

    .nav-menu .nav-link {
        color: var(--navy) !important;
        font-size: 1.15rem;
        padding: 0.95rem 0.15rem;
        border-bottom: 1px solid rgba(11, 31, 58, 0.06);
    }

    .nav-menu .nav-link.is-active {
        color: var(--gold) !important;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-mobile-summary {
        color: var(--navy) !important;
    }

    .nav-cta {
        margin: 1.25rem 0 0;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .navbar.menu-open {
        background: #ffffff;
        border-bottom: 1px solid rgba(11, 31, 58, 0.06);
    }

    .navbar.menu-open .nav-brand-text strong,
    .navbar.menu-open .nav-brand-text span {
        animation: none !important;
    }

    .navbar.menu-open .nav-brand-text strong {
        color: var(--navy-deep) !important;
    }

    .navbar.menu-open .nav-brand-text span {
        color: var(--gold) !important;
    }

    .navbar.menu-open .nav-toggle span {
        background: var(--navy) !important;
    }

    .nav-menu[hidden],
    .nav-menu-backdrop[hidden] {
        display: none !important;
    }

    .premium-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        min-height: 0;
    }

    .premium-tile--large {
        grid-row: auto;
        min-height: 420px;
    }

    .premium-tile {
        min-height: 320px;
    }

    .feature-row,
    .property-grid,
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.35rem;
        text-align: left;
    }

    .footer-top-actions {
        justify-content: flex-start;
    }

    .footer-lead {
        max-width: none;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-row,
    .team-grid,
    .bedrock-grid,
    .team-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .director-layout,
    .journey-layout,
    .blog-show-layout,
    .contact-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-section--premium {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .contact-premium-intro h2 {
        max-width: none;
    }

    .contact-premium-row {
        grid-template-columns: 5.5rem minmax(0, 1fr);
    }

    .journey-media img {
        min-height: 360px;
    }
}

@media (max-width: 780px) {
    .feature-row,
    .property-grid,
    .blog-grid,
    .values-row,
    .team-grid,
    .bedrock-grid,
    .team-strip-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .director-quote {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: -1px;
    }

    .btn {
        width: min(280px, 100%);
    }
}

/* ========== ADMIN (unchanged look) ========== */
.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(11, 31, 58, 0.12), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(11, 31, 58, 0.08), transparent 35%),
        #f5f6f8;
    font-family: var(--font-body);
}

.auth-card {
    width: min(420px, 100%);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 12px 40px rgba(11, 31, 58, 0.08);
}

.auth-logo {
    width: 110px;
    height: 110px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.auth-card h1 {
    text-align: center;
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
}

.auth-card .subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"] {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
}

.form-group input:focus {
    border-color: #0b1f3a;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.error-box {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 0.75rem 0.9rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: #0b1f3a;
    color: #fff;
    border-radius: 8px;
}

.btn-primary:hover {
    background: #1a3355;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #0b1f3a;
    color: #0b1f3a;
    border-radius: 8px;
}

.admin-shell {
    display: block;
    min-height: 100vh;
    font-family: var(--font-body);
}

.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 260px;
    z-index: 100;
    background: #0b1f3a;
    color: #fff;
    padding: 1.5rem 1rem;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 1.25rem;
}

.admin-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
}

.admin-brand strong {
    display: block;
    font-size: 0.95rem;
}

.admin-brand span {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    opacity: 0.75;
}

.admin-nav a {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.25rem;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.admin-main {
    display: flex;
    flex-direction: column;
    margin-left: 260px;
    min-height: 100vh;
    background: #f3f5f8;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-content {
    padding: 1.5rem;
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem;
}

.stat-card h3 {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.stat-card p {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0b1f3a;
}

.panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.25rem;
}

.panel h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.panel p {
    color: #6b7280;
}

@media (max-width: 860px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        width: 100%;
        bottom: auto;
        height: auto;
        overflow: visible;
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-topbar {
        position: sticky;
    }
}

/* ========== PROJECT DETAIL PAGE ========== */
.project-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    color: #fff;
    overflow: hidden;
    background: #071528;
}

.project-hero-media,
.project-hero-overlay {
    position: absolute;
    inset: 0;
}

.project-hero-media {
    display: grid;
    place-items: center;
    background: #071528;
}

.project-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.project-hero-overlay {
    background: linear-gradient(180deg, rgba(7,21,40,0.22) 0%, rgba(7,21,40,0.35) 45%, rgba(7,21,40,0.72) 100%);
    pointer-events: none;
}

.project-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: min(980px, calc(100% - 2rem));
    margin: 0 auto;
    padding: calc(var(--nav-height) + 1rem) 0 2rem;
}

.project-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7vw, 4.8rem);
    font-weight: 600;
    line-height: 1.05;
    margin: 0.35rem 0 0.6rem;
}

.project-section {
    padding: 4.5rem 0;
    background: #fff;
}

.project-section:nth-of-type(even) {
    background: #f7f8fa;
}

.project-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.project-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--navy);
    margin: 0 0 0.4rem;
}

.project-heading p {
    color: var(--muted);
    margin: 0;
}

.project-about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.project-about-media {
    overflow: hidden;
    min-height: 420px;
    background: var(--navy);
}

.project-about-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.project-about-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--navy);
    margin: 0.3rem 0 1rem;
}

.project-about-copy > p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.project-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.project-highlights li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--navy);
    font-weight: 500;
}

.project-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--gold);
}

.project-agent-inline {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--line);
}

.project-agent-inline img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.project-agent-inline strong {
    display: block;
    color: var(--navy);
}

.project-agent-inline span {
    color: var(--muted);
    font-size: 0.85rem;
}

.project-layout-visual {
    position: relative;
    overflow: hidden;
    background: #eef1f5;
    margin-bottom: 1.25rem;
    cursor: zoom-in;
}

.project-layout-visual img {
    display: block;
    width: 100%;
    max-height: 640px;
    object-fit: contain;
    background: #fff;
}

.project-layout-zoom-btn {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.95rem;
    border: 0;
    border-radius: 999px;
    background: rgba(11, 31, 58, 0.92);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(7, 21, 40, 0.28);
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.project-layout-zoom-btn:hover {
    background: var(--navy);
    transform: translateY(-2px);
}

.project-layout-zoom-btn svg {
    display: block;
}

body.layout-zoom-open {
    overflow: hidden;
}

.layout-zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
}

.layout-zoom-modal[hidden] {
    display: none !important;
}

.layout-zoom-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 21, 40, 0.82);
}

.layout-zoom-dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100% - 1.5rem));
    height: min(88vh, 860px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.layout-zoom-toolbar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 0.9rem;
    background: var(--navy);
    color: #fff;
}

.layout-zoom-tool {
    min-width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
}

.layout-zoom-tool:hover {
    background: rgba(255,255,255,0.18);
}

.layout-zoom-level {
    min-width: 58px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.layout-zoom-tool--close {
    margin-left: auto;
    font-size: 1.4rem;
    line-height: 1;
}

.layout-zoom-stage {
    position: relative;
    flex: 1;
    overflow: hidden;
    background: #f3f5f8;
    cursor: default;
    touch-action: none;
}

.layout-zoom-stage.is-zoomed {
    cursor: grab;
}

.layout-zoom-stage.is-dragging {
    cursor: grabbing;
}

.layout-zoom-stage img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    height: auto;
    max-width: 96%;
    max-height: 96%;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.05s linear;
}

.layout-zoom-hint {
    margin: 0;
    padding: 0.55rem 0.9rem 0.7rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.82rem;
    background: #fff;
    border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
    .layout-zoom-dialog {
        width: calc(100% - 0.75rem);
        height: min(92vh, 760px);
    }
    .project-layout-zoom-btn span {
        display: none;
    }
}

.project-doc-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

.project-doc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 0.85rem 1.35rem;
    border-radius: 10px;
    background: #e9edf2;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.project-doc-btn:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
}

.project-doc-btn.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.project-gallery-item {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #dfe5ec;
}

.project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.project-gallery-item:hover img {
    transform: scale(1.05);
}

.project-amenity-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2.5rem 1.5rem;
    max-width: 980px;
    margin: 0 auto;
}

.project-amenity {
    text-align: center;
    padding: 0.35rem 0.4rem;
}

.project-amenity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 0.85rem;
    color: #0b1f3a;
}

.project-amenity-icon svg {
    width: 64px;
    height: 64px;
    display: block;
}

.project-amenity strong {
    display: block;
    color: #0b1f3a;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.35;
}

.project-section.project-location {
    background: #fff;
}

.project-location-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin: 0 auto 2.25rem;
    width: fit-content;
    padding: 0;
    background: transparent;
}

.project-tab {
    padding: 0.72rem 1.4rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #0b1f3a;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    line-height: 1.2;
}

.project-tab.is-active {
    background: #0b1f3a;
    color: #fff;
}

.project-connectivity {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border: 0;
}

.connect-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.6rem 0;
    max-width: 1080px;
    margin: 0 auto;
}

.connect-item {
    width: 20%;
    min-width: 150px;
    box-sizing: border-box;
    text-align: center;
    padding: 0.35rem 0.75rem 0.6rem;
}

.connect-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 0.85rem;
    color: #3f3d7a;
}

.connect-icon svg {
    width: 70px;
    height: 70px;
    display: block;
}

.connect-item strong {
    display: block;
    color: #3f3d7a;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.28rem;
}

.connect-item span {
    display: block;
    color: #3f3d7a;
    font-size: 0.92rem;
    font-weight: 500;
    opacity: 0.92;
}

.connect-note {
    text-align: center;
    color: #64748b;
    line-height: 1.7;
    max-width: 720px;
    margin: 1.75rem auto 0;
    font-size: 0.92rem;
}

.connect-note code {
    font-size: 0.82rem;
    color: #0b1f3a;
}

@media (max-width: 980px) {
    .connect-item {
        width: 33.333%;
        min-width: 140px;
    }
}

@media (max-width: 640px) {
    .connect-item {
        width: 50%;
        min-width: 0;
        padding: 0.25rem 0.45rem 0.5rem;
    }
    .connect-icon,
    .connect-icon svg {
        width: 58px;
        height: 58px;
    }
    .connect-item strong {
        font-size: 0.88rem;
    }
}

.project-address {
    text-align: center;
    color: #0b1f3a;
    margin: 1rem 0 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.project-map {
    overflow: hidden;
    border-radius: 4px;
    background: #dfe5ec;
    min-height: 380px;
}

.project-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.project-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

@media (max-width: 980px) {
    .project-about-grid {
        grid-template-columns: 1fr;
    }
    .project-amenity-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .project-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .project-amenity-grid,
    .project-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.property-tile-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.property-tile-link:hover {
    color: inherit;
}

.property-tile > .property-agent {
    margin-top: 0.85rem;
    padding: 0 0.15rem;
}

.project-tab-panel[hidden] {
    display: none !important;
}

.project-gallery-modes {
    display: inline-flex;
    gap: 0.45rem;
    margin-top: 1.1rem;
    padding: 0.25rem;
    border: 1px solid rgba(11,31,58,0.12);
    background: #fff;
}

.project-gallery-mode {
    min-width: 88px;
    padding: 0.55rem 1rem;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.84rem;
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.project-gallery-mode.is-active {
    background: var(--navy);
    color: #fff;
}

.project-gallery-view[hidden] {
    display: none !important;
}

.project-gallery-slider {
    position: relative;
    padding: 0 3rem 2.5rem;
}

.project-gallery-viewport {
    overflow: hidden;
    background: #0b1f3a;
    min-height: 420px;
}

.project-gallery-track {
    position: relative;
    min-height: 420px;
}

.project-gallery-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s var(--ease);
}

.project-gallery-slide.is-active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.project-gallery-slide img {
    display: block;
    width: 100%;
    height: min(62vh, 560px);
    object-fit: cover;
}

.project-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-70%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(7,21,40,0.16);
}

.project-gallery-nav--prev { left: 0.35rem; }
.project-gallery-nav--next { right: 0.35rem; }

.project-gallery-nav:hover {
    background: var(--navy);
    color: #fff;
}

.project-gallery-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.project-gallery-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background: rgba(11,31,58,0.22);
    cursor: pointer;
    padding: 0;
}

.project-gallery-dot.is-active {
    background: var(--navy);
    transform: scale(1.2);
}

.project-gallery-counter {
    text-align: center;
    margin: 0.7rem 0 0;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 600;
}

@media (max-width: 640px) {
    .project-gallery-slider {
        padding: 0 2.4rem 2rem;
    }
    .project-gallery-viewport,
    .project-gallery-track {
        min-height: 280px;
    }
    .project-gallery-slide img {
        height: 280px;
    }
}

.project-hero-plots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.1rem;
}

.project-hero-plots > span {
    width: 100%;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.8;
}

.project-hero-plots em {
    font-style: normal;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.1);
    font-size: 0.88rem;
    font-weight: 600;
}

.project-plot-sizes {
    margin-top: 1.35rem;
}

.project-plot-sizes > strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
}

.project-plot-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-plot-chips span {
    display: inline-flex;
    padding: 0.45rem 0.8rem;
    background: #eef2f6;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.86rem;
    border-radius: 8px;
}

.blog-show-video {
    position: relative;
    width: 100%;
    margin: 0 0 1.5rem;
    overflow: hidden;
    background: #0b1f3a;
    aspect-ratio: 16 / 9;
}

.blog-show-video iframe,
.blog-show-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: contain;
    background: #000;
}

.blog-show-video--file {
    background: #000;
}

/* Sticky project enquiry */
.enquiry-fab {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 900;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateY(-50%) rotate(180deg);
    border: 0;
    border-radius: 10px 0 0 10px;
    background: var(--navy, #0b1f3a);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    padding: 1.15rem 0.7rem;
    cursor: pointer;
    box-shadow: -6px 8px 24px rgba(7, 21, 40, 0.22);
    transition: background 0.25s ease, padding 0.25s ease;
}

.enquiry-fab:hover {
    background: #16345c;
    padding-right: 0.85rem;
}

body.enquiry-modal-open {
    overflow: hidden;
}

.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.enquiry-modal[hidden] {
    display: none !important;
}

.enquiry-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 21, 40, 0.72);
}

.enquiry-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(440px, 100%);
    max-height: min(92vh, 720px);
    overflow: auto;
    background: #fff;
    border-radius: 14px;
    padding: 1.4rem 1.35rem 1.25rem;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.enquiry-modal-close {
    position: absolute;
    top: 0.55rem;
    right: 0.7rem;
    border: 0;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
}

.enquiry-modal-kicker {
    margin: 0 0 0.25rem;
    color: var(--gold, #c4a35a);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.enquiry-modal-dialog h3 {
    margin: 0 0 0.35rem;
    color: var(--navy, #0b1f3a);
    font-size: 1.35rem;
    line-height: 1.25;
}

.enquiry-modal-meta {
    margin: 0 0 1.1rem;
    color: #64748b;
    font-size: 0.88rem;
}

.enquiry-modal-form {
    display: grid;
    gap: 0.75rem;
}

.enquiry-modal-form label {
    display: grid;
    gap: 0.35rem;
}

.enquiry-modal-form label span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy, #0b1f3a);
}

.enquiry-modal-form input,
.enquiry-modal-form textarea {
    width: 100%;
    border: 1px solid #d8dee8;
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    font: inherit;
    color: #0b1f3a;
    background: #fff;
}

.enquiry-modal-form input:focus,
.enquiry-modal-form textarea:focus {
    outline: 2px solid rgba(11, 31, 58, 0.18);
    border-color: #0b1f3a;
}

.enquiry-modal-submit {
    width: 100%;
    margin-top: 0.25rem;
}

.enquiry-modal-status {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
}

.enquiry-modal-status.is-pending { color: #64748b; }
.enquiry-modal-status.is-success { color: #15803d; }
.enquiry-modal-status.is-error { color: #b91c1c; }

@media (max-width: 640px) {
    .enquiry-fab {
        top: auto;
        bottom: 1rem;
        right: 1rem;
        writing-mode: horizontal-tb;
        transform: none;
        border-radius: 999px;
        padding: 0.85rem 1.1rem;
        box-shadow: 0 10px 28px rgba(7, 21, 40, 0.28);
    }
}

/* Video nav dropdown (right side) */
.nav-side--right .nav-item .nav-dropdown--media {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(10px);
}

.nav-side--right .nav-item:hover .nav-dropdown--media,
.nav-side--right .nav-item:focus-within .nav-dropdown--media {
    transform: translateX(0) translateY(0);
}

.nav-media-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f7f8fb;
}

.nav-media-icon svg {
    width: 28px;
    height: 28px;
    color: var(--navy);
}

/* Videos section */
.videos-section {
    position: relative;
    background: var(--ivory);
}

.page-videos .navbar:not(.is-scrolled) .nav-brand-text strong {
    color: var(--navy-deep);
}

.page-videos .navbar:not(.is-scrolled) .nav-link {
    color: #2a2a2a;
}

.page-videos .navbar:not(.is-scrolled) .nav-brand-text span {
    color: var(--gold);
}

.page-videos .navbar:not(.is-scrolled) .nav-toggle span {
    background: var(--navy);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.video-grid--home {
    max-width: 980px;
    margin: 0 auto;
}

.video-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-card-trigger {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    cursor: pointer;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--navy);
}

.video-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease);
}

.video-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 31, 58, 0.28);
    color: #fff;
    transition: background 0.35s var(--ease);
}

.video-card-play svg {
    width: 58px;
    height: 58px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.video-card-trigger:hover .video-card-media img {
    transform: scale(1.05);
}

.video-card-trigger:hover .video-card-play {
    background: rgba(11, 31, 58, 0.42);
}

.video-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding: 1.15rem 0.1rem 0;
}

.video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.video-card-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 0.55rem;
    transition: color 0.3s ease;
}

.video-card-trigger:hover .video-card-title {
    color: var(--gold);
}

.video-card-excerpt {
    display: block;
    color: var(--muted);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.9rem;
}

.video-watch {
    display: inline-block;
    margin-top: auto;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 0.2rem;
    transition: color 0.3s ease;
}

.video-card-trigger:hover .video-watch {
    color: var(--gold);
}

.videos-empty {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0 3rem;
}

.videos-empty-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.videos-empty h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.videos-empty p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.video-modal[hidden] {
    display: none !important;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 16, 30, 0.82);
}

.video-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(640px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.video-modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.55rem;
    z-index: 3;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #64748b;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.video-modal-close:hover {
    color: var(--navy);
}

.video-modal-head {
    padding: 0.95rem 3rem 0.65rem 1rem;
    border-bottom: 1px solid #eef2f7;
}

.video-modal-kicker {
    margin: 0 0 0.2rem;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.video-modal-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--navy);
}

.video-modal-frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-modal-frame-wrap iframe,
.video-modal-iframe,
.video-modal-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
    object-fit: contain;
}

.video-modal-loading,
.video-modal-error {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.video-modal-error {
    color: #fecaca;
}

.video-modal-iframe[hidden] {
    display: none !important;
}

.video-modal-loading[hidden],
.video-modal-error[hidden] {
    display: none !important;
}

.video-modal-footer {
    padding: 0.7rem 1rem 0.85rem;
    text-align: center;
    background: #fafbfd;
    border-top: 1px solid #eef2f7;
}

.video-modal-footer[hidden] {
    display: none !important;
}

.video-modal-watch {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 0.12rem;
}

.video-modal-watch:hover {
    color: var(--gold);
}

body.video-modal-open {
    overflow: hidden;
}

@media (max-width: 980px) {
    .video-grid,
    .video-grid--page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .video-grid,
    .video-grid--home,
    .video-grid--page {
        grid-template-columns: 1fr;
    }

    .video-card-title {
        font-size: 1.25rem;
    }
}
