/* ============================================================
   AAROHI REALTORS — LUXURY DESIGN SYSTEM
   Champagne gold · matte charcoal · ivory
   Inspired by Aman, Rolls-Royce, Apple minimalism
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
    /* Warm dark neutrals */
    --ink: #16120C;
    --ink-2: #1E1913;
    --charcoal: #2B251C;
    --charcoal-2: #3A3328;

    /* Champagne gold family */
    --gold: #C7A14A;
    --gold-soft: #D8BE7E;
    --gold-bright: #EBD9A6;
    --gold-deep: #A07E32;

    /* Light luxury neutrals */
    --ivory: #F7F1E6;
    --cream: #FCFAF4;
    --paper: #FFFFFF;
    --beige: #ECE2CF;
    --sand: #E5D9C3;

    /* Text */
    --text-dark: #211C14;
    --text-muted: #6B6354;
    --text-soft: #8C8273;
    --text-light: rgba(247, 241, 230, 0.78);
    --text-light-soft: rgba(247, 241, 230, 0.55);

    /* Lines */
    --line-gold: rgba(199, 161, 74, 0.30);
    --line-dark: rgba(33, 28, 20, 0.12);
    --line-light: rgba(247, 241, 230, 0.16);

    /* Gradients */
    --grad-gold: linear-gradient(135deg, #B98E3C 0%, #E7CF93 45%, #C7A14A 100%);
    --grad-gold-text: linear-gradient(100deg, #C7A14A 0%, #EBD9A6 50%, #B98E3C 100%);
    --grad-ink: linear-gradient(180deg, #1E1913 0%, #16120C 100%);

    /* Type */
    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Shape & motion */
    --radius: 4px;
    --radius-lg: 8px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 18px 50px -24px rgba(20, 16, 10, 0.45);
    --shadow-card: 0 30px 70px -40px rgba(20, 16, 10, 0.55);
    --container: 1240px;
    --nav-h: 92px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s var(--ease);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
}

::selection {
    background: var(--gold);
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ink);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-deep);
    border-radius: 10px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--text-dark);
}

.display {
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.01em;
}

.h-xl {
    font-size: clamp(2.2rem, 4.6vw, 3.8rem);
}

.h-lg {
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
}

.h-md {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

p {
    font-weight: 300;
}

em,
.italic {
    font-style: italic;
}

.text-gold {
    color: var(--gold-deep);
}

.gold-grad {
    background: var(--grad-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Eyebrow / kicker */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 22px;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
}

.eyebrow.center {
    justify-content: center;
}

.eyebrow.center::after {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
}

.eyebrow.light {
    color: var(--gold-soft);
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

.container-wide {
    max-width: 1480px;
}

.section {
    padding: clamp(72px, 9vw, 140px) 0;
    position: relative;
}

.section-sm {
    padding: clamp(54px, 6vw, 90px) 0;
}

.bg-ink {
    background: var(--ink);
    color: var(--ivory);
}

.bg-ink h1,
.bg-ink h2,
.bg-ink h3,
.bg-ink h4,
.bg-ink h5 {
    color: var(--ivory);
}

.bg-cream {
    background: var(--cream);
}

.bg-ivory {
    background: var(--ivory);
}

.bg-beige {
    background: linear-gradient(180deg, var(--cream), var(--beige));
}

.text-center {
    text-align: center;
}

.lede {
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.85;
    max-width: 620px;
}

.bg-ink .lede {
    color: var(--text-light);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section-head {
    max-width: 720px;
}

.section-head.center {
    margin: 0 auto;
    text-align: center;
}

/* Ornamental divider */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gold);
    margin: 0 auto;
}

.ornament::before,
.ornament::after {
    content: "";
    height: 1px;
    width: 70px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament i {
    font-size: 0.8rem;
}

/* ---------- Buttons ---------- */
.btn {
    --b-pad: 17px 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: var(--b-pad);
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    white-space: nowrap;
    cursor: pointer;
}

.btn i {
    font-size: 0.85rem;
    transition: transform 0.5s var(--ease);
}

.btn-gold {
    background: var(--grad-gold);
    color: #2a210c;
    box-shadow: 0 14px 34px -16px rgba(199, 161, 74, 0.75);
}

.btn-gold:hover {
    box-shadow: 0 20px 44px -14px rgba(199, 161, 74, 0.9);
    transform: translateY(-2px);
    color: #221a08;
}

.btn-gold:hover i {
    transform: translateX(5px);
}

.btn-dark {
    background: var(--ink);
    color: var(--ivory);
    border: 1px solid var(--ink);
}

.btn-dark:hover {
    background: transparent;
    color: var(--ink);
    transform: translateY(-2px);
}

.btn-line {
    border: 1px solid var(--line-gold);
    color: var(--text-dark);
    background: transparent;
}

.btn-line:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: #2a210c;
    transform: translateY(-2px);
}

.btn-line.light {
    color: var(--ivory);
    border-color: var(--line-light);
}

.btn-line.light:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #2a210c;
}

.btn-block {
    width: 100%;
}

/* Text link with underline reveal */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-deep);
    position: relative;
}

.link-arrow i {
    transition: transform 0.45s var(--ease);
}

.link-arrow:hover i {
    transform: translateX(6px);
}

.link-arrow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 1px;
    width: 0;
    background: var(--gold);
    transition: width 0.5s var(--ease);
}

.link-arrow:hover::after {
    width: 34px;
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

[data-reveal-delay="1"] { transition-delay: 0.12s; }
[data-reveal-delay="2"] { transition-delay: 0.24s; }
[data-reveal-delay="3"] { transition-delay: 0.36s; }
[data-reveal-delay="4"] { transition-delay: 0.48s; }
[data-reveal-delay="5"] { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    html { scroll-behavior: auto; }
}

/* ============================================================
   PRELOADER
   ============================================================ */
#lux-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 26px;
    transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

#lux-loader.done {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    font-family: "Pinyon Script", cursive;
    font-size: clamp(3.6rem, 9vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.05;
    background: linear-gradient(105deg, #B98E3C 0%, #F2E2B0 45%, #C7A14A 70%, #EBD9A6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold-soft);
    filter: drop-shadow(0 6px 24px rgba(199, 161, 74, 0.28));
    animation: loaderGlow 2.6s ease-in-out infinite;
    padding: 0 .12em .12em;
}

.loader-mark span {
    -webkit-text-fill-color: transparent;
}

@keyframes loaderGlow {
    0%, 100% { opacity: 0.82; }
    50% { opacity: 1; }
}

.loader-bar {
    width: 160px;
    height: 1px;
    background: var(--line-light);
    overflow: hidden;
    margin-top: 4px;
}

.loader-foot {
    font-family: "Cinzel", var(--serif);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold-soft);
    padding-left: 0.42em;
}

.loader-bar i {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--gold);
    animation: loaderSlide 1.1s var(--ease) infinite;
}

@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ============================================================
   TOP BAR + NAVBAR
   ============================================================ */
.topbar {
    background: var(--ink);
    color: var(--text-light);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--line-light);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
}

.topbar a:hover {
    color: var(--gold-soft);
}

.topbar-left {
    display: flex;
    gap: 26px;
    align-items: center;
}

.topbar-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-left i {
    color: var(--gold);
}

.topbar-social {
    display: flex;
    gap: 18px;
    align-items: center;
}

.topbar-social a {
    color: var(--text-light-soft);
}

/* Header */
.site-header {
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 900;
    transition: all 0.5s var(--ease);
}

.site-header .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    transition: height 0.45s var(--ease);
}

/* Sticky transformed state */
.site-header.is-stuck {
    position: fixed;
    top: 0;
    background: rgba(22, 18, 12, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 40px -24px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid var(--line-light);
    animation: dropIn 0.5s var(--ease);
}

.site-header.is-stuck .nav-inner {
    height: 74px;
}

@keyframes dropIn {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

.brand-logo {
    height: 64px;
    width: auto;
    transition: height 0.4s var(--ease);
}

.is-stuck .brand-logo {
    height: 52px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
}

.brand-text small {
    font-size: 0.58rem;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-top: 4px;
}

/* solid header variant (inner pages without dark hero) */
.site-header.solid {
    position: fixed;
    top: 0;
    background: rgba(22, 18, 12, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-light);
}

.site-header.solid + .page-spacer {
    height: var(--nav-h);
}

/* Nav menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu > li > a,
.nav-menu > li > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 18px;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(247, 241, 230, 0.82);
    position: relative;
    cursor: pointer;
}

.nav-menu > li > a::after,
.nav-menu > li > span::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 6px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
}

.nav-menu > li > a:hover,
.nav-menu > li > span:hover,
.nav-menu > li.active > a {
    color: #fff;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > span:hover::after,
.nav-menu > li.active > a::after {
    transform: scaleX(1);
}

.nav-menu .caret {
    font-size: 0.6rem;
    opacity: 0.7;
    transition: transform 0.4s var(--ease);
}

.has-mega:hover .caret,
.has-drop:hover .caret {
    transform: rotate(180deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-cta {
    padding: 13px 28px;
    font-size: 0.74rem;
}

/* Dropdown */
.has-drop {
    position: relative;
}

.drop {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: rgba(22, 18, 12, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid var(--line-light);
    border-top: 2px solid var(--gold);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all 0.4s var(--ease);
}

.has-drop:hover .drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--text-light);
    border-radius: 2px;
    transition: all 0.35s var(--ease);
}

.drop a i {
    color: var(--gold);
    font-size: 0.8rem;
    width: 16px;
}

.drop a:hover {
    background: rgba(199, 161, 74, 0.12);
    color: #fff;
    padding-left: 22px;
}

/* Mega menu */
.has-mega {
    position: static;
}

.mega {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(20, 16, 10, 0.98);
    backdrop-filter: blur(18px);
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid var(--line-light);
    padding: 46px 0 50px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.45s var(--ease);
    z-index: 80;
}

.has-mega:hover .mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1.1fr 1.3fr;
    gap: 34px;
}

.mega-col h6 {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line-light);
}

.mega-link {
    display: block;
    padding: 11px 0;
    color: var(--text-light);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: all 0.35s var(--ease);
}

.mega-link span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light-soft);
    letter-spacing: 0.04em;
    margin-top: 2px;
}

.mega-link:hover {
    color: var(--gold-soft);
    transform: translateX(6px);
}

.mega-feature {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.mega-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 10, 0) 30%, rgba(20, 16, 10, 0.92));
}

.mega-feature-body {
    position: relative;
    z-index: 2;
    padding: 24px;
}

.mega-feature-body small {
    color: var(--gold-soft);
    font-size: 0.66rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.mega-feature-body h5 {
    color: #fff;
    font-size: 1.4rem;
    margin: 6px 0 12px;
}

/* Hamburger */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 1000;
}

.nav-toggle span {
    width: 26px;
    height: 1.6px;
    background: var(--ivory);
    transition: all 0.4s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7.6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7.6px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 950;
    padding: 110px 30px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.6s var(--ease);
    visibility: hidden;
}

.mobile-nav.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav ul {
    border-top: 1px solid var(--line-light);
}

.mobile-nav li {
    border-bottom: 1px solid var(--line-light);
}

.mobile-nav > ul > li > a,
.mobile-nav .m-acc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 4px;
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--ivory);
}

.mobile-nav .m-acc-head i {
    color: var(--gold);
    font-size: 0.9rem;
    transition: transform 0.4s var(--ease);
}

.mobile-nav .m-acc.open .m-acc-head i {
    transform: rotate(180deg);
}

.mobile-nav .m-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.mobile-nav .m-acc.open .m-sub {
    max-height: 420px;
}

.mobile-nav .m-sub a {
    display: block;
    padding: 13px 16px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.mobile-nav .m-sub a:hover {
    color: var(--gold-soft);
}

.mobile-nav-cta {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-nav-foot {
    margin-top: 40px;
    color: var(--text-light-soft);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

.mobile-nav-foot a {
    color: var(--gold-soft);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--ivory);
    /* top: clear fixed topbar(42)+nav(92); bottom: clear absolute hero-meta stats */
    padding-top: calc(var(--nav-h) + 96px);
    padding-bottom: 170px;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 16s var(--ease-soft) forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.12); }
    to { transform: scale(1); }
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(16, 12, 8, 0.92) 0%, rgba(16, 12, 8, 0.55) 45%, rgba(16, 12, 8, 0.25) 100%),
        linear-gradient(0deg, rgba(16, 12, 8, 0.85), rgba(16, 12, 8, 0) 55%);
}

.hero-inner {
    position: relative;
    z-index: 3;
    padding: 0;
    max-width: 1060px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.6rem, 5.4vw, 5rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-soft);
}

.hero-sub {
    font-size: clamp(1.02rem, 1.5vw, 1.3rem);
    color: var(--text-light);
    max-width: 560px;
    margin: 28px 0 40px;
    font-weight: 300;
    line-height: 1.85;
}

.hero-cta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-meta {
    position: absolute;
    bottom: 46px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-meta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line-light);
    padding-top: 26px;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.hero-stat strong {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #fff;
    line-height: 1;
}

.hero-stat span {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.scroll-cue {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-light-soft);
}

.scroll-cue i {
    animation: bob 1.8s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Hero slider fade */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.6s var(--ease);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   MARQUEE / TRUST STRIP (auto, infinite)
   ============================================================ */
.marquee {
    background: var(--ink);
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    overflow: hidden;
    padding: 26px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 38s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0 40px;
    font-family: var(--serif);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text-light);
    white-space: nowrap;
}

.marquee-item i {
    color: var(--gold);
    font-size: 0.7rem;
    font-style: normal;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================
   INTRO / SPLIT SECTIONS
   ============================================================ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.split.reverse .split-media {
    order: 2;
}

.split-media {
    position: relative;
}

.split-media img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.media-frame {
    position: relative;
}

.media-frame::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.media-badge {
    position: absolute;
    background: var(--ink);
    color: var(--ivory);
    padding: 22px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.media-badge strong {
    display: block;
    font-family: var(--serif);
    font-size: 2.4rem;
    color: var(--gold-soft);
    line-height: 1;
}

.media-badge span {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-light);
}

.media-badge.br {
    bottom: -26px;
    right: -22px;
}

.intro-points {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.intro-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.intro-point i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-top: 4px;
}

.intro-point h5 {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    text-transform: none;
}

.intro-point p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.sig {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.sig-name {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--gold-deep);
    font-style: italic;
}

.sig-role {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-soft);
}

/* ============================================================
   PROJECT CARDS
   ============================================================ */
.proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.proj-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink);
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
}

.proj-card-media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.proj-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.proj-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(16, 12, 8, 0) 35%, rgba(16, 12, 8, 0.55) 65%, rgba(16, 12, 8, 0.96));
    transition: background 0.6s var(--ease);
}

.proj-card:hover .proj-card-media img {
    transform: scale(1.08);
}

.proj-card-body {
    padding: 34px 30px;
    color: var(--ivory);
    width: 100%;
}

.proj-tag {
    display: inline-block;
    padding: 7px 14px;
    font-size: 0.64rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
    border: 1px solid var(--line-gold);
    border-radius: 2px;
    margin-bottom: 16px;
    background: rgba(16, 12, 8, 0.4);
}

.proj-card-body h3 {
    color: #fff;
    font-size: 1.85rem;
    margin-bottom: 8px;
}

.proj-loc {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

.proj-loc i {
    color: var(--gold);
}

.proj-meta {
    display: flex;
    gap: 26px;
    margin: 20px 0;
    padding-top: 18px;
    border-top: 1px solid var(--line-light);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s var(--ease);
}

.proj-card:hover .proj-meta {
    max-height: 90px;
    opacity: 1;
    transform: translateY(0);
    margin: 20px 0;
}

.proj-meta div span {
    display: block;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.proj-meta div strong {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

.proj-card .link-arrow {
    color: var(--gold-soft);
}

.proj-card .link-arrow::after {
    background: var(--gold-soft);
}

/* status pill */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pill::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.pill.live::before {
    background: #5fbf7e;
    box-shadow: 0 0 0 4px rgba(95, 191, 126, 0.25);
}

/* ============================================================
   WHY / FEATURE GRID
   ============================================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line-dark);
}

.bg-ink .feature-grid {
    border-color: var(--line-light);
}

.feature-cell {
    padding: 44px 34px;
    border-right: 1px solid var(--line-dark);
    transition: background 0.5s var(--ease);
    position: relative;
}

.bg-ink .feature-cell {
    border-color: var(--line-light);
}

.feature-cell:last-child {
    border-right: none;
}

.feature-cell:hover {
    background: rgba(199, 161, 74, 0.06);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-gold);
    border-radius: 50%;
    color: var(--gold-deep);
    font-size: 1.3rem;
    margin-bottom: 26px;
    transition: all 0.5s var(--ease);
}

.bg-ink .feature-icon {
    color: var(--gold-soft);
}

.feature-cell:hover .feature-icon {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: rotate(8deg) scale(1.05);
}

.feature-num {
    font-family: var(--serif);
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.feature-cell h4 {
    font-size: 1.32rem;
    margin-bottom: 12px;
}

.feature-cell p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.bg-ink .feature-cell p {
    color: var(--text-light-soft);
}

/* Card style (rounded) variant */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lux-card {
    background: var(--paper);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    transition: all 0.55s var(--ease);
    position: relative;
    overflow: hidden;
}

.lux-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.55s var(--ease);
}

.lux-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

.lux-card:hover::before {
    transform: scaleX(1);
}

.lux-card .feature-icon {
    margin-bottom: 24px;
}

.lux-card h4 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.lux-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ============================================================
   LIFESTYLE / MOSAIC
   ============================================================ */
.mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}

.mosaic-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    isolation: isolate;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.mosaic-item:hover img {
    transform: scale(1.07);
}

.mosaic-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(16, 12, 8, 0.85));
    z-index: 1;
}

.mosaic-cap {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
}

.mosaic-cap small {
    color: var(--gold-soft);
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.mosaic-cap h5 {
    color: #fff;
    font-size: 1.3rem;
    margin-top: 4px;
}

.mosaic-item.tall {
    grid-row: span 2;
}

.mosaic-item.wide {
    grid-column: span 2;
}

/* ============================================================
   INVESTMENT
   ============================================================ */
.invest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.invest-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line-light);
    border: 1px solid var(--line-light);
}

.invest-stat {
    background: var(--ink);
    padding: 40px 32px;
}

.invest-stat strong {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--gold-soft);
    line-height: 1;
    display: block;
}

.invest-stat span {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 10px;
    display: block;
}

.invest-list {
    margin-top: 30px;
}

.invest-list li {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-light);
    align-items: flex-start;
}

.invest-list li i {
    color: var(--gold);
    margin-top: 4px;
}

.invest-list li strong {
    display: block;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    font-family: var(--sans);
}

.invest-list li p {
    color: var(--text-light-soft);
    font-size: 0.86rem;
}

/* ============================================================
   COUNTERS
   ============================================================ */
.counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-item {
    position: relative;
    padding: 20px;
}

.counter-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--line-light);
}

.counter-num {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4rem);
    color: var(--gold-soft);
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.counter-num .suffix {
    color: var(--gold);
    margin-left: 2px;
}

.counter-item p {
    margin-top: 16px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.testi-card {
    background: var(--paper);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 42px 40px;
    position: relative;
    transition: all 0.5s var(--ease);
}

.bg-ink .testi-card {
    background: var(--ink-2);
    border-color: var(--line-light);
}

.testi-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-6px);
}

.testi-quote {
    font-family: var(--serif);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.28;
    line-height: 0.6;
    height: 30px;
}

.testi-stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.testi-text {
    font-family: var(--serif);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
}

.bg-ink .testi-text {
    color: var(--ivory);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
}

.bg-ink .testi-author {
    border-color: var(--line-light);
}

.testi-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testi-author h6 {
    font-family: var(--sans);
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--text-dark);
}

.bg-ink .testi-author h6 {
    color: #fff;
}

.testi-author span {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

.bg-ink .testi-author span {
    color: var(--gold-soft);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    text-align: center;
    padding: clamp(70px, 9vw, 130px) 0;
}

.cta-banner-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.22;
}

.cta-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(199, 161, 74, 0.12), transparent 60%);
    z-index: 1;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    color: #fff;
    margin: 0 auto 22px;
    max-width: 760px;
}

.cta-banner p {
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto 38px;
}

.cta-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   FORMS
   ============================================================ */
.lux-form .field {
    position: relative;
    margin-bottom: 22px;
}

.lux-form label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.bg-ink .lux-form label {
    color: var(--gold-soft);
}

.lux-form input,
.lux-form select,
.lux-form textarea {
    width: 100%;
    padding: 15px 18px;
    background: var(--paper);
    border: 1px solid var(--line-dark);
    border-radius: 2px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 300;
    transition: all 0.4s var(--ease);
}

.bg-ink .lux-form input,
.bg-ink .lux-form select,
.bg-ink .lux-form textarea {
    background: rgba(247, 241, 230, 0.04);
    border-color: var(--line-light);
    color: var(--ivory);
}

.lux-form input::placeholder,
.lux-form textarea::placeholder {
    color: var(--text-soft);
}

.lux-form input:focus,
.lux-form select:focus,
.lux-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(199, 161, 74, 0.12);
}

.lux-form textarea {
    resize: vertical;
    min-height: 130px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 22px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

/* Notification toast */
.lux-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9000;
    background: var(--ink);
    color: var(--ivory);
    border-left: 3px solid var(--gold);
    padding: 18px 24px;
    border-radius: 4px;
    box-shadow: var(--shadow-card);
    max-width: 360px;
    font-size: 0.9rem;
    transform: translateX(120%);
    transition: transform 0.5s var(--ease);
}

.lux-toast.show {
    transform: translateX(0);
}

.lux-toast.error {
    border-color: #d9534f;
}

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
    position: relative;
    padding: calc(var(--nav-h) + 80px) 0 90px;
    background: var(--ink);
    color: var(--ivory);
    overflow: hidden;
    text-align: center;
}

.page-banner-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.4;
}

.page-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 12, 8, 0.6), rgba(16, 12, 8, 0.9));
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.crumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-light-soft);
}

.crumbs a:hover {
    color: var(--gold-soft);
}

.crumbs .sep {
    color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--ink);
    color: var(--text-light);
    padding-top: 90px;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line-light);
}

.footer-brand .brand-logo {
    height: 70px;
    margin-bottom: 22px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-light-soft);
    line-height: 1.8;
    max-width: 330px;
}

.footer-col h6 {
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 13px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--text-light-soft);
    position: relative;
    padding-left: 0;
    transition: all 0.4s var(--ease);
}

.footer-col ul li a:hover {
    color: var(--gold-soft);
    padding-left: 12px;
}

.footer-col ul li a::before {
    content: "—";
    position: absolute;
    left: -14px;
    opacity: 0;
    color: var(--gold);
    transition: all 0.4s var(--ease);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    left: -2px;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    color: var(--text-light-soft);
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.45s var(--ease);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #2a210c;
    transform: translateY(-3px);
}

.footer-disclaimer {
    padding: 26px 0;
    border-bottom: 1px solid var(--line-light);
}

.footer-disclaimer p {
    font-size: 0.74rem;
    color: var(--text-light-soft);
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.8rem;
    color: var(--text-light-soft);
}

.footer-bottom a:hover {
    color: var(--gold-soft);
}

.footer-bottom .credit b {
    color: var(--gold-soft);
    font-weight: 500;
}

/* Floating buttons */
.wa-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 800;
    box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
    transition: transform 0.4s var(--ease);
    animation: waPulse 2.4s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* back to top */
.to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: #2a210c;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.45s var(--ease);
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.to-top:hover {
    background: var(--gold-deep);
    color: #fff;
}

/* Mobile sticky CTA bar */
.sticky-cta {
    display: none;
}

/* ============================================================
   PROJECT DETAIL specifics
   ============================================================ */
.detail-hero {
    position: relative;
    height: 78vh;
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    color: var(--ivory);
    overflow: hidden;
}

.detail-hero img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16,12,8,.3), rgba(16,12,8,.92));
    z-index: 1;
}

.detail-hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.detail-hero h1 {
    color: #fff;
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
}

.detail-layout {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 50px;
    align-items: start;
}

.spec-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line-dark);
    border: 1px solid var(--line-dark);
    margin: 36px 0;
}

.spec-cell {
    background: var(--cream);
    padding: 26px 24px;
}

.spec-cell span {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.spec-cell strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 6px;
    font-weight: 500;
}

.amenity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
    margin-top: 20px;
}

.amenity-grid li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.amenity-grid li i {
    color: var(--gold-deep);
    margin-top: 5px;
}

.detail-aside {
    position: sticky;
    top: 100px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.detail-aside h4 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.aside-price {
    font-family: var(--serif);
    color: var(--gold-deep);
    font-size: 1.2rem;
    margin-bottom: 22px;
}

.highlight-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line-dark);
    font-size: 0.9rem;
    color: var(--text-muted);
    align-items: flex-start;
}

.highlight-list li i {
    color: var(--gold-deep);
    margin-top: 4px;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line-dark);
    line-height: 0;
}

.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(0.3) contrast(1.05);
}

/* gallery strip */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-cell {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
}

.gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.gallery-cell::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(16, 12, 8, 0.5);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    font-size: 1.4rem;
}

.gallery-cell:hover img {
    transform: scale(1.08);
}

.gallery-cell:hover::after {
    opacity: 1;
}

/* lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(12, 9, 5, 0.94);
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease);
    padding: 30px;
}

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

.lightbox img {
    max-width: 90%;
    max-height: 88vh;
    border: 1px solid var(--line-gold);
}

.lightbox-close {
    position: absolute;
    top: 26px;
    right: 34px;
    color: var(--ivory);
    font-size: 2rem;
}

/* ============================================================
   BLOG / INSIGHTS
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--paper);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.blog-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.07);
}

.blog-body {
    padding: 30px 28px 34px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 14px;
}

.blog-body h4 {
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: 14px;
}

.blog-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

/* ============================================================
   TIMELINE (about/founder)
   ============================================================ */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--line-gold);
}

.timeline-item {
    position: relative;
    padding-bottom: 44px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 6px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--ink);
    border: 2px solid var(--gold);
}

.bg-ink .timeline-item::before {
    background: var(--ink);
}

.timeline-year {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--gold-deep);
    margin-bottom: 6px;
}

.bg-ink .timeline-year {
    color: var(--gold-soft);
}

.timeline-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--sans);
    font-weight: 500;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.bg-ink .timeline-item p {
    color: var(--text-light-soft);
}

/* values grid */
.value-list li {
    display: flex;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line-dark);
    align-items: flex-start;
}

.value-list li .v-num {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--gold);
    min-width: 50px;
}

.value-list li h4 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.value-list li p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* careers / accordion */
.accordion-item {
    border-bottom: 1px solid var(--line-dark);
}

.accordion-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    cursor: pointer;
}

.accordion-head h4 {
    font-size: 1.4rem;
}

.accordion-head i {
    color: var(--gold);
    transition: transform 0.4s var(--ease);
}

.accordion-item.open .accordion-head i {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.accordion-item.open .accordion-body {
    max-height: 400px;
}

.accordion-body-inner {
    padding-bottom: 28px;
    color: var(--text-muted);
}

.job-card {
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 30px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: all 0.5s var(--ease);
    margin-bottom: 18px;
    background: var(--paper);
}

.job-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-soft);
}

.job-card .job-tags {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.job-tags span {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-soft);
    padding: 5px 12px;
    border: 1px solid var(--line-dark);
    border-radius: 20px;
}

/* contact cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 50px;
}

.contact-card {
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    transition: all 0.5s var(--ease);
    background: var(--paper);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.contact-card .feature-icon {
    margin: 0 auto 22px;
}

.contact-card h5 {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.contact-card a,
.contact-card p {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-card a:hover {
    color: var(--gold-deep);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
    :root { --nav-h: 80px; }

    .mega-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .mega-feature { display: none; }
    .invest-grid, .split { grid-template-columns: 1fr; }
    .split.reverse .split-media { order: 0; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .feature-cell:nth-child(2) { border-right: none; }
    .feature-cell { border-bottom: 1px solid var(--line-dark); }
    .bg-ink .feature-cell { border-bottom-color: var(--line-light); }
    .counters { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
    .counter-item:nth-child(2)::after { display: none; }
}

@media (max-width: 992px) {
    .nav-menu, .nav-actions .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .proj-grid, .cards-3, .blog-grid, .gallery-grid, .contact-cards { grid-template-columns: 1fr 1fr; }
    .detail-layout { grid-template-columns: 1fr; }
    .detail-aside { position: static; }
    .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .testi-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 30px; }
    .spec-row { grid-template-columns: 1fr; }
    .amenity-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    body { font-size: 15px; }
    .container { padding: 0 20px; }
    .topbar-left span:not(:first-child) { display: none; }
    .proj-grid, .cards-3, .blog-grid, .gallery-grid, .contact-cards,
    .intro-points, .form-grid, .invest-stats { grid-template-columns: 1fr; }
    .proj-meta { display: none; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-cell { border-right: none; }
    .counters { grid-template-columns: 1fr 1fr; }
    .counter-item::after { display: none !important; }
    .mosaic { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .mosaic-item.wide, .mosaic-item.tall { grid-column: auto; grid-row: auto; }
    .hero-meta { display: none; }
    .hero { min-height: 90vh; padding-bottom: 90px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
    .media-frame::before { display: none; }
    .media-badge.br { right: 10px; bottom: -20px; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }
    .section { padding: 64px 0; }

    /* mobile sticky cta */
    .sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 850;
        background: rgba(22, 18, 12, 0.96);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--line-light);
    }
    .sticky-cta a {
        flex: 1;
        text-align: center;
        padding: 16px 8px;
        font-size: 0.74rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--ivory);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .sticky-cta a i { color: var(--gold); }
    .sticky-cta a.primary { background: var(--grad-gold); color: #2a210c; }
    .sticky-cta a.primary i { color: #2a210c; }
    .sticky-cta a:not(:last-child) { border-right: 1px solid var(--line-light); }
    .wa-float { bottom: 78px; }
    .to-top { bottom: 78px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr; }
    .counters { grid-template-columns: 1fr; }
    .brand-text strong { font-size: 1.25rem; }
}

/* ============================================================
   PREMIUM POPUP MODAL (4 options)
   ============================================================ */
.lux-modal {
    position: fixed;
    inset: 0;
    z-index: 9600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}

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

.lux-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 4, 0.74);
    backdrop-filter: blur(6px);
}

.lux-modal-card {
    position: relative;
    width: 100%;
    max-width: 960px;
    max-height: 92vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    background: var(--paper);
    border-radius: 10px;
    border: 1px solid var(--line-gold);
    box-shadow: 0 50px 120px -30px rgba(0, 0, 0, 0.7);
    transform: translateY(26px) scale(0.98);
    transition: transform 0.55s var(--ease);
}

.lux-modal.open .lux-modal-card {
    transform: none;
}

.lux-modal-x {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--ivory);
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease);
}

.lux-modal-x:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(90deg);
}

/* aside */
.lux-modal-aside {
    background: var(--grad-ink);
    color: var(--ivory);
    padding: 40px 32px;
    position: relative;
    overflow-y: auto;
}

.lux-modal-aside::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(199, 161, 74, 0.16), transparent 55%);
    pointer-events: none;
}

.lux-modal-logo {
    height: 50px;
    width: auto;
    margin-bottom: 26px;
}

.lux-modal-aside h3 {
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.lux-modal-aside > p {
    color: var(--text-light-soft);
    font-size: 0.88rem;
    margin-bottom: 26px;
}

.lux-modal-opts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.lmo {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    border: 1px solid var(--line-light);
    border-radius: 6px;
    color: var(--text-light);
    transition: all 0.4s var(--ease);
}

.lmo i {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-gold);
    color: var(--gold-soft);
    font-size: 0.95rem;
    transition: all 0.4s var(--ease);
}

.lmo div {
    line-height: 1.25;
}

.lmo strong {
    display: block;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.95rem;
    color: #fff;
}

.lmo span {
    font-size: 0.72rem;
    color: var(--text-light-soft);
    letter-spacing: 0.02em;
}

.lmo:hover {
    border-color: var(--line-gold);
    background: rgba(199, 161, 74, 0.07);
}

.lmo.active {
    background: var(--grad-gold);
    border-color: transparent;
}

.lmo.active i {
    background: rgba(0, 0, 0, 0.14);
    border-color: transparent;
    color: #2a210c;
}

.lmo.active strong,
.lmo.active span {
    color: #2a210c;
}

.lux-modal-aside-foot {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--line-light);
    font-size: 0.8rem;
    color: var(--text-light-soft);
    position: relative;
}

.lux-modal-aside-foot a {
    color: var(--gold-soft);
}

/* main */
.lux-modal-main {
    padding: 44px 40px;
    overflow-y: auto;
}

.lmp {
    display: none;
    animation: lmpFade 0.5s var(--ease);
}

.lmp.active {
    display: block;
}

@keyframes lmpFade {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

.lmp .eyebrow {
    margin-bottom: 12px;
}

.lmp h4 {
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.lmp > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

@media (max-width: 820px) {
    .lux-modal-card {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }
    .lux-modal-aside {
        padding: 34px 26px 28px;
    }
    .lux-modal-opts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .lmo {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 14px 10px;
    }
    .lmo span { display: none; }
    .lux-modal-aside-foot { display: none; }
    .lux-modal-main { padding: 30px 24px 36px; }
    .lux-modal-x { color: var(--ivory); }
}

@media (max-width: 480px) {
    .lux-modal { padding: 0; }
    .lux-modal-card { border-radius: 0; max-height: 100vh; height: 100vh; }
    .lmp .form-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANNOUNCEMENT BAR (site-wide, dismissible)
   ============================================================ */
.announce {
    position: relative;
    z-index: 950;
    background: linear-gradient(90deg, #14100A 0%, #221B10 50%, #14100A 100%);
    border-bottom: 1px solid var(--line-gold);
    overflow: hidden;
}
.announce::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(100deg, transparent 0%, rgba(235,217,166,.12) 45%, transparent 70%);
    transform: translateX(-100%);
    animation: announceSheen 7s var(--ease-soft) infinite;
}
@keyframes announceSheen { 0%,100% { transform: translateX(-100%); } 55%,100% { transform: translateX(120%); } }
.announce-inner {
    display: flex; align-items: center; gap: 16px;
    min-height: 46px; padding: 7px 0; position: relative; z-index: 1;
}
.announce-icon { color: var(--gold-soft); font-size: .82rem; flex-shrink: 0; animation: bellRing 4s var(--ease) infinite; transform-origin: 50% 0; }
@keyframes bellRing { 0%,92%,100% { transform: rotate(0); } 94% { transform: rotate(11deg); } 96% { transform: rotate(-9deg); } 98% { transform: rotate(6deg); } }
.announce-text {
    margin: 0; color: var(--ivory); font-size: .82rem; letter-spacing: .02em; line-height: 1.4; flex: 1 1 auto;
}
.announce-text b { color: var(--gold-soft); font-weight: 600; }
.announce-count {
    flex-shrink: 0; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
    color: var(--gold-bright); border: 1px solid var(--line-gold); border-radius: 100px; padding: 4px 13px; white-space: nowrap;
}
.announce-cta {
    flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px;
    font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
    color: var(--ink); background: var(--grad-gold); padding: 7px 16px; border-radius: 100px;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.announce-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -10px rgba(199,161,74,.7); color: var(--ink); }
.announce-close {
    flex-shrink: 0; background: none; border: none; color: var(--text-light-soft);
    font-size: 1.3rem; line-height: 1; cursor: pointer; padding: 0 2px; transition: color .3s;
}
.announce-close:hover { color: var(--ivory); }
.announce.closing { animation: announceUp .45s var(--ease) forwards; }
@keyframes announceUp { to { height: 0; min-height: 0; padding: 0; opacity: 0; transform: translateY(-100%); } }

/* push absolute header down by the bar's height */
.has-announce .site-header { top: calc(42px + var(--ann-h, 46px)); }
.has-announce .site-header.is-stuck { top: 0; }
.has-announce .site-header.solid { top: var(--ann-h, 46px); }

/* ============================================================
   IMPORTANT NOTICE BANNER (elegant, not aggressive)
   ============================================================ */
.notice-band { padding: 58px 0 64px; background: var(--ink); }
.notice-card {
    position: relative; overflow: hidden;
    display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
    margin: 0 auto;
    background: linear-gradient(135deg, #1C1710 0%, #241D12 100%);
    border: 1px solid var(--line-gold); border-radius: var(--radius-lg);
    padding: 34px 40px; box-shadow: var(--shadow-card);
}
.notice-glow { position: absolute; right: -10%; top: -60%; width: 50%; height: 220%;
    background: radial-gradient(circle, rgba(199,161,74,.16) 0%, transparent 65%); pointer-events: none; }
.notice-main { flex: 1 1 360px; position: relative; z-index: 1; }
.notice-kicker {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft);
    margin-bottom: 12px;
}
.notice-kicker i { color: var(--gold); }
.notice-body { color: var(--ivory); font-family: var(--serif); font-size: 1.5rem; line-height: 1.45; font-weight: 400; }
.notice-body strong { color: var(--gold-soft); font-weight: 600; }
.notice-side { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 18px; align-items: flex-end; justify-content: center; }
.notice-countdown { display: flex; align-items: flex-end; gap: 10px; }
.nc-unit { display: flex; flex-direction: column; align-items: center; min-width: 52px;
    background: rgba(247,241,230,.04); border: 1px solid var(--line-light); border-radius: 6px; padding: 8px 6px; }
.nc-unit strong { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-bright); line-height: 1; font-variant-numeric: tabular-nums; }
.nc-unit span { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light-soft); margin-top: 5px; }
.nc-sep { color: var(--gold-deep); font-size: 1.3rem; align-self: center; padding-bottom: 12px; }
.notice-deadline { font-size: .82rem; color: var(--text-light); margin-top: 14px; display: inline-flex; align-items: center; gap: 7px; }
.notice-deadline::before { content: "\f073"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--gold-deep); font-size: .8rem; }
.notice-deadline strong { color: var(--gold-soft); }

/* ============================================================
   FLUTE MUSIC PLAYER (Radha Kunj)
   ============================================================ */
.flute-player { position: fixed; left: 22px; bottom: 24px; z-index: 940; display: flex; align-items: center; gap: 12px; }
.flute-invite {
    background: rgba(22,18,12,.9); border: 1px solid var(--line-gold); color: var(--gold-soft);
    font-size: .76rem; letter-spacing: .04em; padding: 9px 15px; border-radius: 100px; white-space: nowrap;
    box-shadow: var(--shadow-soft); animation: fluteFloat 3.4s var(--ease-soft) infinite;
    transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.flute-invite i { color: var(--gold); margin-right: 6px; }
.flute-invite::after { content: ""; position: absolute; }
@keyframes fluteFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.flute-player.dismissed-invite .flute-invite,
.flute-player.playing .flute-invite { opacity: 0; transform: translateX(-8px); pointer-events: none; }
.flute-btn {
    position: relative; width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
    background: var(--grad-gold); border: none; cursor: pointer; color: var(--ink);
    box-shadow: 0 12px 30px -10px rgba(199,161,74,.6); transition: transform .4s var(--ease);
    display: grid; place-items: center;
}
.flute-btn:hover { transform: scale(1.06); }
.flute-btn::before { /* halo */
    content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid var(--line-gold); opacity: 0;
}
.flute-player.playing .flute-btn::before { opacity: 1; animation: fluteHalo 2.4s var(--ease-soft) infinite; }
@keyframes fluteHalo { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.55); opacity: 0; } }
.flute-ico { grid-area: 1/1; font-size: 1.15rem; transition: opacity .35s, transform .35s; }
.flute-ico.on { opacity: 0; transform: scale(.4); }
.flute-bars { grid-area: 1/1; display: none; align-items: flex-end; gap: 2.5px; height: 18px; }
.flute-bars i { width: 3px; background: var(--ink); border-radius: 2px; height: 40%; animation: fluteBar .9s var(--ease-soft) infinite; }
.flute-bars i:nth-child(2){ animation-delay:.15s } .flute-bars i:nth-child(3){ animation-delay:.3s }
.flute-bars i:nth-child(4){ animation-delay:.45s } .flute-bars i:nth-child(5){ animation-delay:.6s }
@keyframes fluteBar { 0%,100% { height: 30%; } 50% { height: 95%; } }
.flute-player.playing .flute-ico.off { opacity: 0; transform: scale(.4); }
.flute-player.playing .flute-ico.on { opacity: 0; } /* hide note, show bars */
.flute-player.playing .flute-bars { display: flex; }

/* ============================================================
   RADHA KUNJ — SPIRITUAL HERO
   ============================================================ */
.rkt-hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden;
    color: var(--ivory); padding-top: calc(var(--nav-h) + 90px); padding-bottom: 80px; background: #0c0a06; }
.rkt-hero-media { position: absolute; inset: 0; z-index: 0; }
.rkt-hero-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 18s var(--ease-soft) forwards; }
.rkt-hero::after { content: ""; position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(95deg, rgba(12,10,6,.86) 0%, rgba(12,10,6,.5) 36%, rgba(12,10,6,.1) 64%, rgba(12,10,6,0) 82%),
      linear-gradient(180deg, rgba(12,10,6,.4) 0%, rgba(12,10,6,0) 22%, rgba(12,10,6,0) 66%, rgba(12,10,6,.5) 100%); }
.rkt-hero-glow { position: absolute; z-index: 2; right: 8%; top: 32%; width: 46%; height: 60%;
    background: radial-gradient(circle, rgba(235,217,166,.20) 0%, rgba(199,161,74,.08) 40%, transparent 70%);
    filter: blur(8px); pointer-events: none; animation: divinePulse 7s var(--ease-soft) infinite; }
@keyframes divinePulse { 0%,100% { opacity: .6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
/* Krishna silhouette featured in the dark "divine living" section */
.rkt-divine-krishna { position: absolute; z-index: 1; right: 3%; bottom: 0; height: 96%; width: auto; max-width: 34%;
    object-fit: contain; object-position: bottom; mix-blend-mode: screen; opacity: .5; pointer-events: none;
    filter: drop-shadow(0 0 50px rgba(199,161,74,.4)); animation: krishnaFloat 9s var(--ease-soft) infinite; }
@keyframes krishnaFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.rkt-hero-inner { position: relative; z-index: 5; max-width: 720px; }
.rkt-hero-inner::before { content: ""; position: absolute; z-index: -1; left: -9%; top: -16%; width: 122%; height: 140%;
    background: radial-gradient(62% 58% at 34% 50%, rgba(10,8,5,.9) 0%, rgba(10,8,5,.66) 42%, rgba(10,8,5,.18) 68%, transparent 80%);
    filter: blur(12px); pointer-events: none; }
.rkt-sanskrit { font-size: clamp(1.3rem, 2.4vw, 1.9rem); color: var(--gold-soft); letter-spacing: .12em;
    margin-bottom: 16px; text-shadow: 0 2px 18px rgba(0,0,0,.7), 0 0 30px rgba(199,161,74,.35); }
.rkt-hero h1 { color: #fff; font-size: clamp(2.5rem, 5.4vw, 4.7rem); line-height: 1.06; font-weight: 500; letter-spacing: -.01em;
    text-shadow: 0 3px 26px rgba(0,0,0,.72), 0 1px 4px rgba(0,0,0,.6); }
.rkt-hero h1 em { font-style: italic; color: var(--gold-soft); }
.rkt-hero-sub { font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: rgba(247,241,230,.92); max-width: 540px; margin: 24px 0 34px;
    font-weight: 300; line-height: 1.8; text-shadow: 0 2px 14px rgba(0,0,0,.7); }
.rkt-hero-meta { display: flex; gap: 40px; margin-top: 46px; border-top: 1px solid var(--line-light); padding-top: 26px; flex-wrap: wrap; }
.rkt-hero-meta strong { font-family: var(--serif); font-size: 1.9rem; color: var(--gold-soft); display: block; line-height: 1; text-shadow: 0 2px 14px rgba(0,0,0,.6); }
.rkt-hero-meta span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,241,230,.7); margin-top: 8px; display: block; text-shadow: 0 1px 10px rgba(0,0,0,.6); }
.rkt-eyebrow { text-shadow: 0 2px 14px rgba(0,0,0,.7); }
.rkt-scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 5; width: 26px; height: 42px;
    border: 1px solid var(--line-light); border-radius: 100px; }
.rkt-scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px;
    background: var(--gold-soft); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(16px); } }

/* floating divine particles */
.rkt-particles { position: absolute; inset: 0; z-index: 4; pointer-events: none; overflow: hidden; }
.rkt-particles span { position: absolute; bottom: -10px; width: 5px; height: 5px; border-radius: 50%;
    background: radial-gradient(circle, var(--gold-bright), rgba(199,161,74,0)); opacity: 0; animation: floatUp linear infinite; }
@keyframes floatUp {
    0% { opacity: 0; transform: translateY(0) translateX(0) scale(.6); }
    10% { opacity: .9; } 90% { opacity: .5; }
    100% { opacity: 0; transform: translateY(-86vh) translateX(30px) scale(1); }
}
.rkt-particles span:nth-child(1){ left:6%; animation-duration:14s; animation-delay:0s; }
.rkt-particles span:nth-child(2){ left:14%; animation-duration:18s; animation-delay:3s; width:4px;height:4px; }
.rkt-particles span:nth-child(3){ left:23%; animation-duration:12s; animation-delay:1.5s; }
.rkt-particles span:nth-child(4){ left:31%; animation-duration:20s; animation-delay:5s; width:6px;height:6px; }
.rkt-particles span:nth-child(5){ left:40%; animation-duration:16s; animation-delay:2s; }
.rkt-particles span:nth-child(6){ left:48%; animation-duration:13s; animation-delay:6s; width:4px;height:4px; }
.rkt-particles span:nth-child(7){ left:56%; animation-duration:19s; animation-delay:1s; }
.rkt-particles span:nth-child(8){ left:64%; animation-duration:15s; animation-delay:4s; width:6px;height:6px; }
.rkt-particles span:nth-child(9){ left:72%; animation-duration:17s; animation-delay:2.5s; }
.rkt-particles span:nth-child(10){ left:80%; animation-duration:12s; animation-delay:7s; width:4px;height:4px; }
.rkt-particles span:nth-child(11){ left:88%; animation-duration:21s; animation-delay:.5s; }
.rkt-particles span:nth-child(12){ left:94%; animation-duration:16s; animation-delay:3.5s; width:5px;height:5px; }
.rkt-particles span:nth-child(13){ left:36%; animation-duration:22s; animation-delay:8s; }
.rkt-particles span:nth-child(14){ left:68%; animation-duration:14s; animation-delay:9s; width:4px;height:4px; }

/* ============================================================
   RKT — STORY / OVERVIEW / SPECS / HIGHLIGHTS
   ============================================================ */
.rkt-story { position: relative; overflow: hidden; }
.rkt-flute-accent { position: absolute; top: 6%; right: -4%; width: 420px; max-width: 42%; opacity: .5;
    mix-blend-mode: screen; transform: rotate(-12deg); pointer-events: none;
    filter: drop-shadow(0 0 30px rgba(199,161,74,.4)); }
.rkt-quote { margin-top: 30px; padding-left: 24px; border-left: 2px solid var(--gold-deep);
    font-family: var(--serif); font-style: italic; font-size: 1.35rem; line-height: 1.55; color: var(--ivory); }
.rkt-quote cite { display: block; margin-top: 14px; font-style: normal; font-family: var(--sans);
    font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-soft); }
.rkt-story-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.rkt-story-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.rkt-story-frame:hover img { transform: scale(1.05); }
.rkt-story-badge { position: absolute; left: 20px; bottom: 20px; display: flex; align-items: center; gap: 12px;
    background: rgba(22,18,12,.82); backdrop-filter: blur(8px); border: 1px solid var(--line-gold); border-radius: 100px; padding: 10px 18px; }
.rkt-story-badge i { color: var(--gold); font-size: 1.1rem; }
.rkt-story-badge strong { display: block; color: var(--ivory); font-size: .92rem; }
.rkt-story-badge span { font-size: .72rem; color: var(--text-light-soft); letter-spacing: .06em; }

.rkt-overview { max-width: 880px; margin: 0 auto; text-align: center; }
.rkt-overview p { margin-top: 18px; }
.rkt-specs { max-width: 980px; margin-left: auto; margin-right: auto; }

.rkt-high-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rkt-high { background: var(--paper); border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
    padding: 38px 30px; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease); position: relative; overflow: hidden; }
.rkt-high::after { content: ""; position: absolute; inset: 0; background: var(--grad-gold); opacity: 0; transition: opacity .5s; height: 3px; top: 0; }
.rkt-high:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: var(--line-gold); }
.rkt-high:hover::after { opacity: 1; }
.rkt-high-ico { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(199,161,74,.16), rgba(199,161,74,.04)); color: var(--gold-deep); font-size: 1.35rem; }
.rkt-high h4 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; }
.rkt-high p { color: var(--text-muted); font-size: .95rem; }

/* divine mosaic */
.rkt-divine { position: relative; overflow: hidden; }
.rkt-divine-glow { position: absolute; left: 50%; top: -20%; width: 70%; height: 70%; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(199,161,74,.12) 0%, transparent 65%); pointer-events: none; }
.rkt-mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
.rkt-mosaic .gallery-cell.span2 { grid-column: span 2; grid-row: span 2; }

.rkt-two { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* reserve / cta */
.rkt-reserve { position: relative; overflow: hidden; background: var(--ink); }
.rkt-reserve-media { position: absolute; inset: 0; z-index: 0; }
.rkt-reserve-media img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.rkt-reserve::after { content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(120deg, rgba(12,10,6,.95) 30%, rgba(12,10,6,.6) 100%); }
.rkt-reserve-glow { position: absolute; z-index: 1; right: 6%; top: 20%; width: 40%; height: 70%;
    background: radial-gradient(circle, rgba(199,161,74,.14) 0%, transparent 65%); pointer-events: none; }
.rkt-reserve .container { position: relative; z-index: 2; }
.rkt-reserve-grid { display: grid; grid-template-columns: 1fr 440px; gap: 56px; align-items: center; }
.rkt-reserve-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.rkt-reserve-list li { color: var(--text-light); display: flex; align-items: center; gap: 12px; font-size: .98rem; }
.rkt-reserve-list i { color: var(--gold-soft); }
.rkt-reserve-phone { margin-top: 28px; }
.rkt-reserve-phone span { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-light-soft); }
.rkt-reserve-phone a { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-soft); }
.rkt-reserve-form { background: rgba(247,241,230,.04); border: 1px solid var(--line-light); border-radius: var(--radius-lg);
    padding: 36px 32px; backdrop-filter: blur(10px); }
.rkt-reserve-form h4 { font-family: var(--serif); font-size: 1.6rem; color: var(--ivory); margin-bottom: 22px; font-weight: 500; }
.rkt-reserve-form .lux-form .field input,
.rkt-reserve-form .lux-form .field select,
.rkt-reserve-form .lux-form .field textarea { background: rgba(247,241,230,.06); border-color: var(--line-light); color: var(--ivory); }
.rkt-reserve-form .lux-form .field input::placeholder { color: var(--text-light-soft); }

/* ============================================================
   CUSTOMER TRUST (videos + photos)
   ============================================================ */
.ctrust .ct-carousel { position: relative; }
.ct-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 22px;
    scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth; }
.ct-track::-webkit-scrollbar { display: none; }
.ct-video { flex: 0 0 300px; scroll-snap-align: center; }
.ct-video-media { position: relative; aspect-ratio: 9 / 14; border-radius: var(--radius-lg); overflow: hidden;
    background: radial-gradient(120% 90% at 50% 30%, #2a2114 0%, #14100a 70%);
    box-shadow: var(--shadow-card); border: 1px solid var(--line-light); }
.ct-video-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ct-play { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%;
    background: rgba(199,161,74,.92); color: var(--ink); border: none; cursor: pointer; display: grid; place-items: center;
    font-size: 1.1rem; transition: transform .4s var(--ease), opacity .4s; box-shadow: 0 10px 30px -8px rgba(0,0,0,.6); }
.ct-play::before { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 1px solid rgba(235,217,166,.5); animation: fluteHalo 2.6s var(--ease-soft) infinite; }
.ct-play:hover { transform: scale(1.08); }
.ct-video.is-playing .ct-play { opacity: 0; pointer-events: none; }
.ct-video-media::after { content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(12,10,6,.1) 40%, rgba(12,10,6,.65) 100%); opacity: 1; transition: opacity .4s; }
.ct-video.is-playing .ct-video-media::after { opacity: 0; }
.ct-live { position: absolute; top: 12px; left: 12px; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ivory); background: rgba(22,18,12,.6); border: 1px solid var(--line-light); padding: 4px 10px; border-radius: 100px; backdrop-filter: blur(6px); }
.ct-live i { color: #e0584f; font-size: .5rem; margin-right: 5px; vertical-align: middle; animation: fluteBar 1.6s infinite; }
.ct-mute { position: absolute; bottom: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(22,18,12,.7); border: 1px solid var(--line-light); color: var(--ivory); cursor: pointer; font-size: .8rem; }
.ct-video-body { padding: 18px 6px 0; }
.ct-quote { font-family: var(--serif); font-style: italic; font-size: 1.02rem; line-height: 1.5; color: var(--ivory); }
.ctrust.bg-cream .ct-quote { color: var(--text-dark); }
.ct-video-body h6 { margin-top: 12px; font-size: .98rem; color: var(--gold-soft); }
.ctrust.bg-cream .ct-video-body h6 { color: var(--gold-deep); }
.ct-video-body span { font-size: .76rem; letter-spacing: .04em; color: var(--text-light-soft); }
.ctrust.bg-cream .ct-video-body span { color: var(--text-soft); }
.ct-nav { position: absolute; top: 38%; width: 46px; height: 46px; border-radius: 50%; z-index: 3; cursor: pointer;
    background: rgba(22,18,12,.7); border: 1px solid var(--line-gold); color: var(--gold-soft); display: grid; place-items: center;
    transition: background .3s, transform .3s; }
.ctrust.bg-cream .ct-nav { background: var(--paper); color: var(--gold-deep); border-color: var(--line-dark); box-shadow: var(--shadow-soft); }
.ct-nav:hover { transform: scale(1.08); background: var(--grad-gold); color: var(--ink); }
.ct-nav.prev { left: -10px; } .ct-nav.next { right: -10px; }

.ct-photos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 40px; }
.ct-photo { position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.ct-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); filter: saturate(1.02); }
.ct-photo:hover img { transform: scale(1.08); }
.ct-photo figcaption { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 14px 12px; background: linear-gradient(180deg, transparent 45%, rgba(12,10,6,.85)); opacity: 0; transition: opacity .4s; }
.ct-photo:hover figcaption { opacity: 1; }
.ct-photo figcaption strong { color: var(--ivory); font-size: .82rem; }
.ct-photo figcaption span { color: var(--gold-soft); font-size: .68rem; letter-spacing: .04em; }

/* ============================================================
   HOMEPAGE — RADHA KUNJ SPOTLIGHT
   ============================================================ */
.rk-spot { position: relative; overflow: hidden; background: var(--ink); color: var(--ivory); }
.rk-spot-media { position: absolute; inset: 0; z-index: 0; }
.rk-spot-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; animation: heroZoom 20s var(--ease-soft) forwards; }
.rk-spot::after { content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(110deg, rgba(12,10,6,.96) 28%, rgba(12,10,6,.55) 75%, rgba(12,10,6,.3) 100%); }
.rk-spot-glow { position: absolute; z-index: 1; right: 10%; top: 18%; width: 42%; height: 70%;
    background: radial-gradient(circle, rgba(235,217,166,.16), transparent 65%); pointer-events: none; animation: divinePulse 8s var(--ease-soft) infinite; }
.rk-spot .container { position: relative; z-index: 2; }
.rk-spot-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.rk-spot-flute { position: absolute; right: 2%; bottom: 6%; width: 360px; max-width: 40%; opacity: .55; mix-blend-mode: screen;
    transform: rotate(-10deg); pointer-events: none; z-index: 1; filter: drop-shadow(0 0 24px rgba(199,161,74,.35)); }
.rk-spot-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold-soft); border: 1px solid var(--line-gold); border-radius: 100px; padding: 7px 16px; }
.rk-spot-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #6ec06e; box-shadow: 0 0 0 0 rgba(110,192,110,.6); animation: livePulse 2s infinite; }
@keyframes livePulse { 0%{ box-shadow:0 0 0 0 rgba(110,192,110,.55);} 70%{ box-shadow:0 0 0 8px rgba(110,192,110,0);} 100%{ box-shadow:0 0 0 0 rgba(110,192,110,0);} }
.rk-spot h2 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); line-height: 1.06; font-weight: 500; margin: 20px 0 0; }
.rk-spot h2 em { font-style: italic; color: var(--gold-soft); }
.rk-spot-sanskrit { font-size: 1.2rem; color: var(--gold-soft); letter-spacing: .1em; margin-bottom: 6px; }
.rk-spot p { color: var(--text-light); margin-top: 18px; max-width: 520px; }
.rk-spot-stats { display: flex; gap: 34px; margin: 30px 0; flex-wrap: wrap; }
.rk-spot-stats strong { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-soft); display: block; line-height: 1; }
.rk-spot-stats span { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light-soft); margin-top: 6px; display: block; }
.rk-spot-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.rk-spot-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/5; }
.rk-spot-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.rk-spot-frame:hover img { transform: scale(1.06); }

/* ============================================================
   CINEMATIC IMAGE TREATMENTS (subtle, performant)
   ============================================================ */
.gallery-cell { position: relative; overflow: hidden; border-radius: var(--radius); cursor: zoom-in; }
.gallery-cell img { transition: transform 1.1s var(--ease), filter 1.1s var(--ease); }
.gallery-cell::after { content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, transparent 55%, rgba(12,10,6,.42)); opacity: .8; transition: opacity .5s; }
.gallery-cell:hover img { transform: scale(1.07); }
.gallery-cell:hover::after { opacity: .35; }

/* ============================================================
   RESPONSIVE — new components
   ============================================================ */
@media (max-width: 1080px) {
    .rkt-high-grid { grid-template-columns: repeat(2, 1fr); }
    .rkt-reserve-grid { grid-template-columns: 1fr; gap: 36px; }
    .rk-spot-grid { grid-template-columns: 1fr; gap: 30px; }
    .rk-spot-frame { max-width: 460px; }
    .ct-photos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
    .rkt-two { grid-template-columns: 1fr; gap: 40px; }
    .rkt-divine-krishna { max-width: 42%; opacity: .4; }
    .notice-card { flex-direction: column; align-items: flex-start; gap: 22px; padding: 28px 24px; }
    .notice-body { font-size: 1.25rem; }
    .rkt-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .rkt-mosaic .gallery-cell.span2 { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 680px) {
    .announce-inner { gap: 10px; }
    .announce-text { font-size: .72rem; }
    .announce-count, .announce-cta { display: none; }
    .rkt-hero { padding-bottom: 90px; min-height: 92vh; }
    .rkt-divine-krishna { display: none; }
    .rkt-flute-accent { opacity: .3; width: 60%; }
    .rkt-hero-meta { gap: 26px; }
    .rkt-high-grid { grid-template-columns: 1fr; }
    .ct-video { flex: 0 0 78%; }
    .ct-photos { grid-template-columns: repeat(2, 1fr); }
    .ct-nav { display: none; }
    .nc-unit { min-width: 44px; }
    .flute-player { left: 14px; bottom: 84px; } /* clear mobile sticky CTA */
    .flute-invite { display: none; }
    .notice-band { padding: 40px 0 48px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .rkt-particles, .rkt-hero-glow, .rkt-divine-glow, .rk-spot-glow,
    .announce::before, .flute-invite { animation: none !important; }
    .rkt-divine-krishna, .rkt-hero-media img, .rk-spot-media img { animation: none !important; }
    .rkt-scroll span, .announce-icon { animation: none !important; }
}

/* ============================================================
   FULL-WIDTH DESIGNED BANNERS (edge to edge, baked-in text)
   ============================================================ */
/* ============================================================
   PAYMENT PLAN (Radha Kunj)
   ============================================================ */
.pay-emi { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pay-emi-card { position: relative; background: var(--paper); border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
    padding: 38px 30px; text-align: center; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease); }
.pay-emi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: var(--line-gold); }
.pay-emi-card.featured { background: linear-gradient(160deg, #221C12 0%, #16120C 100%); border-color: var(--line-gold); }
.pay-emi-card.featured .pay-emi-num, .pay-emi-card.featured p { color: var(--ivory); }
.pay-emi-card.featured .pay-emi-num span, .pay-emi-card.featured .pay-emi-label { color: var(--gold-soft); }
.pay-emi-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--grad-gold); color: var(--ink); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
    font-weight: 600; padding: 5px 14px; border-radius: 100px; white-space: nowrap; }
.pay-emi-num { font-family: var(--serif); font-size: 3.4rem; line-height: 1; color: var(--text-dark); font-weight: 500; }
.pay-emi-num span { display: block; font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin-top: 8px; font-family: var(--sans); }
.pay-emi-label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-soft); margin: 14px 0 12px; }
.pay-emi-card p { color: var(--text-muted); font-size: .92rem; margin-bottom: 18px; }

.pay-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 40px; position: relative; }
.pay-steps::before { content: ""; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-gold), transparent); z-index: 0; }
.pay-step { text-align: center; position: relative; z-index: 1; }
.pay-step-ico { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
    background: var(--cream); border: 1px solid var(--line-gold); color: var(--gold-deep); font-size: 1.2rem; }
.pay-step-no { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 5px; }
.pay-step h5 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--text-dark); margin-bottom: 6px; }
.pay-step p { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

.pay-terms { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: center; margin-top: 48px;
    background: linear-gradient(135deg, #1C1710, #241D12); border: 1px solid var(--line-gold); border-radius: var(--radius-lg); padding: 32px 36px; }
.pay-terms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 30px; }
.pay-term span { display: block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light-soft); }
.pay-term strong { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-soft); font-weight: 500; }
.pay-terms-cta { border-left: 1px solid var(--line-light); padding-left: 30px; }
.pay-terms-cta p { color: var(--text-light); font-size: .92rem; margin-bottom: 16px; }
.pay-note { text-align: center; font-size: .76rem; color: var(--text-soft); margin-top: 22px; }

@media (max-width: 980px) {
    .pay-emi { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .pay-steps { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
    .pay-steps::before { display: none; }
    .pay-terms { grid-template-columns: 1fr; gap: 24px; }
    .pay-terms-cta { border-left: none; border-top: 1px solid var(--line-light); padding-left: 0; padding-top: 22px; }
}
@media (max-width: 560px) {
    .pay-steps { grid-template-columns: 1fr; }
    .pay-terms-grid { grid-template-columns: 1fr 1fr; }
}

/* Highlighted Radha Kunj entry in Projects menu */
.mega-link.featured { position: relative; background: linear-gradient(100deg, rgba(199,161,74,.14), rgba(199,161,74,.02)); border-radius: 6px; padding-left: 12px; padding-right: 12px; }
.mega-link.featured:hover { background: linear-gradient(100deg, rgba(199,161,74,.22), rgba(199,161,74,.05)); }
.mega-flag { display: inline-flex; align-items: center; gap: 6px; margin-left: 8px; font-style: normal;
    font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-bright);
    border: 1px solid var(--line-gold); border-radius: 100px; padding: 2px 9px; vertical-align: middle; }
.mega-flag .dot { width: 6px; height: 6px; border-radius: 50%; background: #6ec06e; animation: livePulse 2s infinite; }
.m-featured { color: var(--gold-soft) !important; }
.m-flag { display: inline-block; margin-left: 8px; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold-bright); border: 1px solid var(--line-gold); border-radius: 100px; padding: 2px 9px; vertical-align: middle; }

.fw-banner { display: block; position: relative; width: 100%; overflow: hidden; background: var(--ink); line-height: 0; }
.fw-banner img { width: 100%; height: auto; display: block; transition: transform 1.4s var(--ease); }
.fw-banner:hover img { transform: scale(1.025); }
.fw-banner .fw-cta { position: absolute; right: 4%; bottom: 9%; z-index: 2;
    display: inline-flex; align-items: center; gap: 9px; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink); background: var(--grad-gold); padding: 12px 24px; border-radius: 100px; font-weight: 500;
    box-shadow: 0 14px 34px -14px rgba(0,0,0,.7); opacity: 0; transform: translateY(10px); transition: all .5s var(--ease); }
.fw-banner:hover .fw-cta { opacity: 1; transform: translateY(0); }
@media (max-width: 680px) { .fw-banner .fw-cta { display: none; } }
