@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --primary-teal: #1A4D57;
    --teal-dark: #0d2c33;
    --accent-gold: #C9A84C;
    --frost: #F5F7F8;
    --white: #ffffff;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: clip;
}

@media only screen and (max-width: 576px) {

    html,
    body {
        overflow-x: clip;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ===================== HEADER ===================== */
#siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: transparent;
    transition: var(--transition);
    animation: bobbing 5s ease-in-out infinite;
}

@keyframes bobbing {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(6px);
    }
}

#siteHeader.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    animation: none;
    padding: 0 !important;
}

/* Nav links white by default on dark hero */
.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

#siteHeader.scrolled .nav-link {
    color: var(--primary-teal) !important;
}

#siteHeader.scrolled .nav-link:hover {
    color: var(--accent-gold) !important;
}

#siteHeader.scrolled .navbar-brand span {
    color: var(--primary-teal) !important;
}

.btn-cta {
    background-color: var(--accent-gold);
    color: var(--white) !important;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    transition: var(--transition);
    border-radius: 0;
}

.btn-cta:hover {
    background: #b8922e;
    transform: translateY(-2px);
}

/* Logo filter switching */
#siteHeader .logo-img {
    transition: filter 0.4s ease;
}

#siteHeader.scrolled .logo-img {
    filter: none !important;
}

/* Footer */
footer {
    background: var(--primary-teal);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px;
}

footer h5 {
    color: white;
}

footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--accent-gold) !important;
}

footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}


:root {
    --gold: #C9A84C;
    --gold-soft: #D4B982;
    --champagne: #FDFBF7;
    --premium-white: #FFFFFF;
    --charcoal: #1A1A1A;
    --teal: #1A4D57;
    --teal-dk: #0d2c33;
}

/* ── GLOBAL LIGHT THEME OVERRIDES ── */
body {
    background: var(--premium-white);
    color: var(--charcoal);
}

/* ── HERO ── */
.hero-driver {
    height: 380vh;
    /* Increased for smoother cinematic pacing */
    position: relative;
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(201, 168, 76, .16), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(26, 77, 87, .12), transparent 30%),
        radial-gradient(circle at 50% 55%, rgba(255, 255, 255, .58), transparent 42%),
        linear-gradient(180deg, #fdfaf4 0%, #f4ecdf 100%);
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    transform-origin: center;
    opacity: .96;
    filter: saturate(.92) contrast(1.04);
}

/* Floating logo inside the hero */
.hero-sticky .float-logo {
    position: absolute;
    top: clamp(18px, 5vw, 107px);
    left: clamp(32px, 28vw, 356px);
    z-index: 8;
    pointer-events: none;
}

.hero-sticky .float-logo #heroLogoImg {
    height: 38px;
    width: 145px;
    display: block;
    filter: brightness(0) invert(1);
}

/* Use this class if you want the logo on the right side instead */
.hero-sticky .float-logo.logo-right {
    left: auto;
    right: clamp(20px, 5vw, 80px);
}

/* Optional: center the logo on smaller screens */
@media (max-width: 768px) {
    .hero-sticky .float-logo {
        display: none;
        /* Hide redundant banner logo on mobile to clear the top area */
    }

    .hero-sticky .float-logo.logo-right {
        display: none;
    }

    .hero-sticky .float-logo #heroLogoImg {
        display: none;
    }

    .hero-headline-wrap {
        align-items: flex-start;
        padding-top: 120px;
    }

    .hero-big-text {
        margin-top: 0;
        font-size: clamp(2.2rem, 14vw, 4rem);
        line-height: 1.1;
    }
}

/* Base Join Panel Styles — Glassmorphism */
.join-panel {
    position: absolute;
    z-index: 3;
    overflow: hidden;
    /* Semi‑transparent glass base */
    background: rgba(250, 246, 239, 0.72);
    background-blend-mode: soft-light, normal;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(14px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.55),
        inset 0 0 0 10px rgba(255, 255, 255, 0.06),
        0 24px 70px rgba(9, 28, 32, 0.12),
        0 0 60px rgba(201, 168, 76, 0.15);
    filter: saturate(1.04) contrast(1.02);
    will-change: transform, opacity, filter;
    isolation: isolate;
    transition: none;
}

.join-panel__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center center;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* Soft glow overlay inside panel */
.join-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(201, 168, 76, 0.12), transparent 30%),
        radial-gradient(circle at 80% 18%, rgba(26, 77, 87, 0.10), transparent 28%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 52%);
    opacity: 0.96;
    z-index: 2;
}

/* Inner soft border ring */
.join-panel::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: inherit;
    border: 1px solid rgba(201, 168, 76, 0.24);
    backdrop-filter: blur(1.5px);
    pointer-events: none;
    z-index: 2;
}

/* ——————————————————————————————
 * TOP PANEL – Glass + Liquid curtain
 * —————————————————————————————— */
.jp-top {
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    transform: translateY(-100%) skewY(-12deg);
    transform-origin: top;
    opacity: 0;
    background-image:
        linear-gradient(135deg, rgba(78, 168, 179, 0.74) 0%, rgba(102, 194, 202, 0.7) 50%, rgba(140, 210, 215, 0.65) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-radius: 34px 34px 18px 18px;
}

@keyframes top-liquid-curtain {
    0% {
        transform: translateY(-100%) skewY(-12deg);
        opacity: 0;
        filter: blur(14px) brightness(0.82);
    }

    40% {
        opacity: 0.4;
        filter: blur(6px);
    }

    70% {
        transform: translateY(-4%) skewY(-2deg);
        filter: blur(1px);
    }

    100% {
        transform: translateY(0) skewY(0deg);
        opacity: 1;
        filter: blur(0) brightness(1);
    }
}

.jp-top.is-animating {
    animation: top-liquid-curtain 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ——————————————————————————————
 * BOTTOM PANEL – Glass + Pull lift
 * —————————————————————————————— */
.jp-bottom {
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    transform: translateY(100%) skewY(12deg);
    transform-origin: bottom;
    opacity: 0;
    background-image:
        linear-gradient(135deg, rgba(246, 154, 98, 0.74) 0%, rgba(248, 175, 120, 0.7) 50%, rgba(251, 195, 145, 0.65) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-radius: 18px 18px 34px 34px;
}

@keyframes bottom-soft-lift {
    0% {
        transform: translateY(100%) skewY(12deg);
        opacity: 0;
        filter: blur(12px) brightness(0.84);
    }

    30% {
        opacity: 0.3;
        filter: blur(5px);
    }

    70% {
        transform: translateY(-2%) skewY(2deg);
        filter: blur(0.8px);
    }

    100% {
        transform: translateY(0) skewY(0deg);
        opacity: 1;
        filter: blur(0) brightness(1);
    }
}

.jp-bottom.is-animating {
    animation: bottom-soft-lift 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

/* ——————————————————————————————
 * LEFT PANEL – Glass + Wipe reveal
 * —————————————————————————————— */
.jp-left {
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    transform: translateX(-100%) scale(0.98);
    transform-origin: left;
    opacity: 0;
    background-image:
        linear-gradient(135deg, rgba(155, 158, 163, 0.74) 0%, rgba(175, 180, 185, 0.7) 50%, rgba(200, 205, 210, 0.65) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: screen;
    border-radius: 34px 18px 18px 34px;
}

@keyframes left-slide-wipe {
    0% {
        transform: translateX(-100%) scale(0.98);
        opacity: 0;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* Optional “wipe” overlay */
.jp-left__wipe-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 30%, transparent 60%);
    transform: translateX(-100%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 2;
}

@keyframes left-wipe {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(120%);
    }
}

.jp-left.is-animating {
    animation: left-slide-wipe 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.jp-left.is-animating .jp-left__wipe-overlay {
    animation: left-wipe 1.6s cubic-bezier(0.6, 0, 0.4, 1) 0.3s forwards;
}

/* ——————————————————————————————
 * RIGHT PANEL – Glass + glow strip
 * —————————————————————————————— */
.jp-right {
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    transform: translateX(100%) scale(0.98);
    transform-origin: right;
    opacity: 0;
    background-image:
        linear-gradient(135deg, rgba(162, 208, 71, 0.74) 0%, rgba(180, 220, 100, 0.7) 50%, rgba(200, 230, 130, 0.65) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: screen;
    border-radius: 18px 34px 34px 18px;
}

@keyframes right-slide-glow {
    0% {
        transform: translateX(100%) scale(0.98);
        opacity: 0;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

.jp-right__glow-strip {
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: linear-gradient(0deg,
            rgba(162, 208, 71, 0) 0%,
            rgba(162, 208, 71, 0.18) 20%,
            rgba(162, 208, 71, 0.64) 50%,
            rgba(162, 208, 71, 0.32) 80%,
            rgba(162, 208, 71, 0) 100%);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0.95;
    filter: blur(1px);
    z-index: 2;
}

@keyframes right-glow-rise {
    0% {
        transform: scaleY(0);
        opacity: 0.8;
    }

    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.jp-right.is-animating {
    animation: right-slide-glow 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.jp-right.is-animating .jp-right__glow-strip {
    animation: right-glow-rise 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

/* ——————————————————————————————
 * CENTER PANEL – Glass + soft zoom‑in
 * —————————————————————————————— */
/* .jp-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 220px;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  background-image:
    linear-gradient(180deg, rgba(139, 101, 56, 0.82) 0%, rgba(160, 120, 70, 0.76) 100%),
    var(--panel-image);
  background-size: cover, cover;
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.32);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.48),
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 0 40px rgba(139, 101, 56, 0.22);
  z-index: 5;
  will-change: transform, opacity, filter;
} */

@keyframes center-soft-zoom {
    0% {
        transform: translate(-50%, -50%) scale(0.5) rotate(-10deg);
        opacity: 0;
        filter: blur(16px) brightness(0.78);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.12) rotate(0deg);
        opacity: 1;
        filter: blur(2px) brightness(1.08);
    }

    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
        filter: blur(0) brightness(1);
    }
}

.jp-center.is-animating {
    animation: center-soft-zoom 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* ——————————————————————————————
 * HERO LOGO BURST – Glassy, modern glow
 * —————————————————————————————— */
.hero-logo-burst {
    position: absolute;
    inset: 50% auto auto 50%;
    width: clamp(250px, 30vw, 420px);
    height: clamp(250px, 30vw, 420px);
    transform: translate(-50%, -50%) scale(0.72);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    isolation: isolate;
    will-change: transform, opacity, filter;
}

.hero-logo-burst__halo {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.32) 24%, rgba(201, 168, 76, 0.16) 40%, rgba(255, 255, 255, 0) 72%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.5),
        0 0 42px rgba(201, 168, 76, 0.18);
    opacity: 0;
    filter: blur(2px);
    transform: scale(0.88);
    z-index: 1;
}

.hero-logo-burst__stem {
    position: absolute;
    left: 50%;
    bottom: 10%;
    width: 8px;
    height: 62%;
    border-radius: 999px;
    background: linear-gradient(180deg, #99652f 0%, #6b431c 100%);
    box-shadow: 0 0 18px rgba(107, 67, 28, 0.28);
    transform: translateX(-50%) scaleY(0.08);
    transform-origin: bottom center;
    opacity: 0;
    z-index: 2;
}

.hero-logo-burst__spark {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 26%, rgba(255, 244, 214, 0.95) 28%, rgba(201, 168, 76, 0.85) 52%, rgba(201, 168, 76, 0) 75%);
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 18px rgba(201, 168, 76, 0.55);
    filter: blur(0.2px);
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
    z-index: 2;
}

.hero-logo-burst__spark::before {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(201, 168, 76, 0));
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center;
    opacity: 0.85;
}

.hero-logo-burst__spark::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 2px;
    height: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(201, 168, 76, 0));
    transform: translate(-50%, -50%);
    opacity: 0.65;
}

.hero-logo-burst__spark--one {
    top: 14%;
    left: 50%;
}

.hero-logo-burst__spark--two {
    top: 28%;
    left: 78%;
}

.hero-logo-burst__spark--three {
    top: 58%;
    left: 80%;
}

.hero-logo-burst__spark--four {
    top: 82%;
    left: 50%;
}

.hero-logo-burst__spark--five {
    top: 58%;
    left: 20%;
}

.hero-logo-burst__spark--six {
    top: 28%;
    left: 22%;
}

.hero-logo-burst__symbol {
    position: absolute;
    display: block;
    opacity: 0;
    transform-origin: center center;
    z-index: 3;
}

.hero-logo-burst__symbol img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;

    filter: drop-shadow(0 8px 18px rgba(26, 77, 87, 0.12));
}

.hero-logo-burst__symbol--water {
    top: 10%;
    left: 50%;
    width: 30%;
    height: 30%;
    transform: translate(-50%, 0) scale(0.22);
}

.hero-logo-burst__symbol--fire {
    top: 28%;
    left: 26%;
    width: 30%;
    height: 30%;
    transform: translate(0, 0) scale(0.22);
}

.hero-logo-burst__symbol--metal {
    top: 28%;
    right: 26%;
    width: 30%;
    height: 30%;
    transform: translate(0, 0) scale(0.22);
}

.hero-logo-burst__symbol--earth {
    bottom: 20%;
    left: 50%;
    width: 28%;
    height: 28%;
    transform: translate(-50%, 0) scale(0.22);
}

.hero-logo-burst__symbol--wood {
    bottom: 6%;
    left: 50%;
    width: 12%;
    height: 52%;
    transform: translate(-50%, 0) scale(0.18);
}

.hero-logo-burst__burst {
    position: absolute;
    inset: 4%;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    object-fit: contain;
    opacity: 0;
    z-index: 4;
    filter: saturate(1.02) brightness(1.03) contrast(1.02) drop-shadow(0 0 18px rgba(26, 77, 87, 0.14));
}

.hero-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-init-layer {
    z-index: 6;
}

.hero-joined-layer {
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    padding: clamp(20px, 4vw, 54px);
    align-items: center;
    justify-content: center;
    transform: translateY(18px);
}

.hero-headline-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-big-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 9vw, 9rem);
    font-weight: 900;
    color: #fff;
    /* Keep white on image for contrast */
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.0;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-join-eyebrow {
    font-size: .72rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-join-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 5.5rem);
    color: #fff;
    text-align: center;
    letter-spacing: .1em;
    line-height: 1.15;
}

.hero-join-title em {
    font-style: normal;
    color: var(--gold);
}

.life-hero {
    width: min(1220px, 100%);
    background: #ffffff;
    border: 1px solid rgba(26, 77, 87, .08);
    box-shadow:
        0 30px 90px rgba(26, 77, 87, .10),
        inset 0 1px 0 rgba(255, 255, 255, .9);
    border-radius: 30px;
    padding: clamp(22px, 3.4vw, 42px);
    position: relative;
    overflow: hidden;
}

.life-hero::before {
    content: '';
    position: absolute;
    inset: -20% auto auto -10%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(201, 168, 76, .16) 0%, rgba(201, 168, 76, 0) 68%);
    pointer-events: none;
}

.life-hero::after {
    content: '';
    position: absolute;
    inset: auto -8% -18% auto;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(26, 77, 87, .10) 0%, rgba(26, 77, 87, 0) 70%);
    pointer-events: none;
}

.life-hero__header {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 36px);
    padding-bottom: clamp(18px, 3vw, 28px);
    margin-bottom: clamp(12px, 3vw, 16px);
    border-bottom: 1px solid rgba(26, 77, 87, .08);
    position: relative;
    z-index: 1;
}

.life-hero__mark {
    flex: 0 0 auto;
    width: clamp(100px, 12vw, 150px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.life-hero__mark img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 50%;
}

.life-hero__heading {
    min-width: 0;
}

.life-hero__eyebrow {
    display: block;
    margin-bottom: .55rem;
    color: rgba(26, 77, 87, .72);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.life-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 4.8vw, 5.3rem);
    line-height: .95;
    margin: 0;
    color: var(--teal);
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: lowercase;
}

.life-hero__body {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: clamp(20px, 4vw, 52px);
    align-items: start;
    position: relative;
    z-index: 1;
}

.life-hero__elements {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 0px;
}

.life-element {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(26, 77, 87, .06);
    box-shadow: 0 10px 24px rgba(26, 77, 87, .04);
}

.life-element__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    overflow: hidden;
}

.life-element__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.life-element__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.life-element__label {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(26, 77, 87, .52);
    margin-bottom: .25rem;
}

.life-element__text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--teal);
    font-weight: 700;
}

.life-hero__copy {
    padding-left: clamp(0px, 1vw, 10px);
    color: rgba(26, 77, 87, .9);
}

.life-hero__lead {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.4vw, 2.5rem);
    line-height: 1.15;
    color: var(--teal);
    margin: 0 0 1.2rem;
    letter-spacing: .01em;
}

.life-hero__copy p {
    margin: 0 0 1.2rem;
    font-size: clamp(.98rem, 1.15vw, 1.12rem);
    line-height: 1.3;
    max-width: 70ch;
}

/* Bottom nav tabs */
.hero-bottom-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding-bottom: 40px;
    z-index: 10;
}

.hbn-link {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 28px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    transition: color .3s, border-color .3s;
}

.hbn-link:hover,
.hbn-link.active {
    color: #fff;
    border-color: rgba(255, 255, 255, .6);
}

/* ── MOBILE RESPONSIVENESS OVERRIDES ── */
@media (max-width: 1024px) {
    .life-hero {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        margin-top: 60px;
    }
}

@media (max-width: 991px) {
    .life-hero__body {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .life-hero__header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .life-hero__mark {
        width: 100px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-big-text {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
        margin-top: 140px;
    }

    .life-hero {
        padding: 20px 15px;
        margin-top: 80px;
    }

    .life-hero__title {
        font-size: clamp(2rem, 10vw, 3.2rem);
        letter-spacing: 0.1em;
    }

    .life-hero__lead {
        font-size: 1.5rem;
        text-align: center;
    }

    .life-hero__copy p {
        text-align: center;
        font-size: 0.95rem;
    }

    .hero-joined-layer {
        padding: 10px;
    }

    .life-hero__elements {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .life-element {
        padding: 8px;
        grid-template-columns: 32px 1fr;
    }

    .life-element__icon {
        width: 32px;
        height: 32px;
    }

    .life-element__text strong {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .life-hero__elements {
        grid-template-columns: 1fr;
    }

    .fe-panel {
        padding: 0 20px;
    }

    .fe-title {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .life-hero {
        padding: 15px;
        margin-top: 0px;
        max-height: 82vh;
        overflow-y: auto;
        scrollbar-width: thin;
    }

    .life-hero__title {
        font-size: clamp(1.5rem, 8vw, 2.2rem) !important;
    }

    .life-hero__elements {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .life-hero__mark {
        width: 60px !important;
    }
}

/* ── FIVE ELEMENTS ── */
.fe-section {
    position: relative;
}

.fe-sticky-bg {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    margin-bottom: -100vh;
    z-index: 0;
}

.fe-section::before {
    content: '';
    position: sticky;
    top: 0;
    display: block;
    height: 100vh;
    margin-bottom: -100vh;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .10), transparent 24%),
        linear-gradient(180deg, rgba(5, 14, 21, .08), rgba(5, 14, 21, .26));
    pointer-events: none;
    z-index: 0;
}

.fe-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .9s ease, transform 1.4s ease;
    transform: scale(1.06);
    filter: saturate(.96) contrast(1.03);
}

.fe-bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

.fe-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .06), transparent 26%),
        rgba(13, 44, 51, .58);
    transition: background .9s ease, opacity .6s ease;
}

.fe-panels {
    position: relative;
    z-index: 1;
}

.fe-panel {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8vw;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    --mx: 50%;
    --my: 50%;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    perspective: 1200px;
    transform-style: preserve-3d;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), filter .45s ease;
}

.fe-panel::before {
    content: '';
    position: absolute;
    inset: 12px 8px;
    border-radius: 28px;
    opacity: 0;
    transition: opacity .45s ease, transform .65s ease, background .45s ease;
    transform: scale(.98);
    pointer-events: none;
    mix-blend-mode: screen;
}

.fe-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .06) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transform: translateX(-20%);
    transition: opacity .45s ease, transform .8s ease;
    pointer-events: none;
}

.fe-panel:hover {
    transform: translateY(-6px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    filter: brightness(1.06) saturate(1.04);
}

.fe-panel:hover::before,
.fe-panel.is-active::before {
    opacity: 1;
    transform: scale(1);
}

.fe-panel:hover::after,
.fe-panel.is-active::after {
    opacity: 1;
    transform: translateX(20%);
}

.fe-panel__content {
    max-width: 420px;
    color: #fff;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .7s ease, transform .7s ease;
    position: relative;
    padding: 28px 30px 28px 0;
}

.fe-panel.is-active .fe-panel__content,
.fe-panel:hover .fe-panel__content {
    opacity: 1;
    transform: translateY(0);
}

.fe-panel__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .86);
    font-size: .7rem;
    letter-spacing: .34em;
    text-transform: uppercase;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .16);
}

.fe-num {
    font-size: .68rem;
    letter-spacing: .35em;
    color: rgba(255, 255, 255, .3);
    display: block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.fe-icon-svg {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
}

.fe-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1.0;
    margin-bottom: .6rem;
    text-shadow: 0 10px 40px rgba(0, 0, 0, .28);
}

.fe-sub {
    font-size: .8rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    font-weight: 600;
}

.fe-panel:hover .fe-sub,
.fe-panel.is-active .fe-sub {
    color: rgba(255, 255, 255, .74);
}

.fe-panel[data-element="water"]::before {
    background:
        radial-gradient(circle 130px at var(--mx) var(--my), rgba(255, 255, 255, .92), rgba(91, 192, 248, .42) 16%, rgba(91, 192, 248, .16) 34%, transparent 60%),
        radial-gradient(circle at 28% 28%, rgba(91, 192, 248, .28), transparent 20%),
        radial-gradient(circle at 68% 64%, rgba(255, 255, 255, .18), transparent 26%),
        linear-gradient(135deg, rgba(91, 192, 248, .12), rgba(255, 255, 255, .02));
    animation: fe-water-flow 8s ease-in-out infinite;
}

.fe-panel[data-element="water"]::after {
    background:
        radial-gradient(circle 18px at var(--mx) var(--my), rgba(255, 255, 255, .95), rgba(255, 255, 255, .35) 40%, transparent 72%),
        radial-gradient(circle 100px at var(--mx) var(--my), rgba(91, 192, 248, .28), transparent 55%);
    opacity: .85;
    mix-blend-mode: screen;
    transform: translate3d(0, 0, 0) scale(1);
}

.fe-panel[data-element="water"] .fe-water-drop,
.fe-panel[data-element="water"] .fe-water-splash,
.fe-panel[data-element="water"] .fe-water-sheen,
.fe-panel[data-element="water"] .fe-water-ripple {
    position: absolute;
    pointer-events: none;
    z-index: 3;
}

.fe-panel[data-element="water"] .fe-water-drop {
    width: 10px;
    height: 16px;
    background:
        radial-gradient(circle at 34% 26%, rgba(255, 255, 255, .98), rgba(255, 255, 255, .48) 20%, rgba(91, 192, 248, .90) 46%, rgba(30, 122, 168, .94) 100%);
    border-radius: 50% 50% 62% 62%;
    transform: translate(-50%, -55%) rotate(38deg) skewX(-6deg);
    filter: drop-shadow(0 0 8px rgba(91, 192, 248, .26));
    animation: fe-water-drop-fall 980ms cubic-bezier(.22, .61, .36, 1) forwards;
}

.fe-panel[data-element="water"] .fe-water-drop::after {
    content: '';
    position: absolute;
    inset: 3px 4px 7px 4px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, .98), transparent 58%);
    opacity: .9;
}

.fe-panel[data-element="water"] .fe-water-splash {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .42);
    background:
        radial-gradient(circle, rgba(255, 255, 255, .14) 0%, transparent 58%),
        radial-gradient(circle, rgba(91, 192, 248, .08) 0%, transparent 72%);
    transform: translate(-50%, -50%) scale(.18);
    opacity: 0;
    animation: fe-water-splash 900ms ease-out forwards;
}

.fe-panel[data-element="water"] .fe-water-sheen {
    width: 140px;
    height: 42px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
    filter: blur(10px);
    transform: translate(-50%, -50%) rotate(-18deg);
    opacity: 0;
    animation: fe-water-sheen 1.1s ease-out forwards;
}

.fe-panel[data-element="water"] .fe-water-ripple {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .38);
    box-shadow:
        0 0 0 1px rgba(91, 192, 248, .12),
        0 0 14px rgba(91, 192, 248, .08);
    transform: translate(-50%, -50%) scale(.45);
    opacity: 0;
    animation: fe-water-ripple 1350ms ease-out forwards;
}

.fe-panel[data-element="fire"]::before {
    background:
        radial-gradient(circle 120px at var(--mx) var(--my), rgba(248, 156, 58, .40), rgba(248, 156, 58, .16) 24%, transparent 62%),
        radial-gradient(circle at 45% 30%, rgba(248, 156, 58, .26), transparent 22%),
        radial-gradient(circle at 62% 68%, rgba(201, 168, 76, .16), transparent 28%),
        linear-gradient(135deg, rgba(248, 156, 58, .16), rgba(255, 255, 255, .02));
    animation: fe-fire-glow 4.4s ease-in-out infinite;
}

.fe-panel[data-element="fire"] .fe-fire-ember {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 220, 160, .95), rgba(248, 156, 58, .35) 55%, transparent 70%);
    box-shadow: 0 0 14px rgba(248, 156, 58, .35);
    pointer-events: none;
    animation: fe-fire-ember 1100ms ease-out forwards;
}

.fe-panel[data-element="metal"]::before {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .02) 18%, rgba(255, 255, 255, .22) 34%, rgba(255, 255, 255, .02) 50%),
        radial-gradient(circle 90px at var(--mx) var(--my), rgba(255, 255, 255, .28), rgba(189, 195, 199, .14) 24%, transparent 62%),
        radial-gradient(circle at 36% 50%, rgba(189, 195, 199, .18), transparent 24%);
    animation: fe-metal-shine 6.2s ease-in-out infinite;
}

.fe-panel[data-element="metal"] .fe-metal-spark {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .78);
    box-shadow: 0 0 18px rgba(255, 255, 255, .14);
    pointer-events: none;
    animation: fe-metal-spark 900ms ease-out forwards;
}

.fe-panel[data-element="earth"]::before {
    background:
        radial-gradient(circle 120px at var(--mx) var(--my), rgba(108, 194, 108, .28), rgba(108, 194, 108, .10) 28%, transparent 64%),
        radial-gradient(circle at 30% 60%, rgba(108, 194, 108, .22), transparent 24%),
        radial-gradient(circle at 68% 32%, rgba(201, 168, 76, .15), transparent 30%),
        linear-gradient(135deg, rgba(108, 194, 108, .10), rgba(255, 255, 255, .02));
    animation: fe-earth-breathe 7.5s ease-in-out infinite;
}

.fe-panel[data-element="earth"] .fe-earth-drift {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50% 50% 45% 55%;
    background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .9), rgba(108, 194, 108, .28) 42%, transparent 72%);
    pointer-events: none;
    animation: fe-earth-drift 1300ms ease-out forwards;
}

.fe-panel[data-element="wood"]::before {
    background:
        radial-gradient(circle 120px at var(--mx) var(--my), rgba(200, 164, 110, .28), rgba(200, 164, 110, .11) 28%, transparent 64%),
        radial-gradient(circle at 36% 40%, rgba(200, 164, 110, .26), transparent 22%),
        radial-gradient(circle at 72% 72%, rgba(255, 255, 255, .12), transparent 26%),
        linear-gradient(135deg, rgba(200, 164, 110, .14), rgba(255, 255, 255, .02));
    animation: fe-wood-sheen 8.4s ease-in-out infinite;
}

.fe-panel[data-element="wood"] .fe-wood-dust {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 244, 227, .95), rgba(200, 164, 110, .35) 48%, transparent 72%);
    pointer-events: none;
    animation: fe-wood-dust 1000ms ease-out forwards;
}

@keyframes fe-water-flow {

    0%,
    100% {
        transform: scale(.98) translateY(0);
    }

    50% {
        transform: scale(1.02) translateY(-10px);
    }
}

@keyframes fe-water-drop-fall {
    0% {
        transform: translate(-50%, -55%) rotate(42deg) scale(.72);
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    55% {
        transform: translate(-50%, 26%) rotate(42deg) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 48%) rotate(42deg) scale(.55);
        opacity: 0;
    }
}

@keyframes fe-water-splash {
    0% {
        transform: translate(-50%, -50%) scale(.14);
        opacity: 0;
    }

    20% {
        opacity: .9;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 0;
    }
}

@keyframes fe-water-sheen {
    0% {
        opacity: 0;
        transform: translate(-80%, -50%) rotate(-18deg);
    }

    18% {
        opacity: .9;
    }

    100% {
        opacity: 0;
        transform: translate(80%, -50%) rotate(-18deg);
    }
}

@keyframes fe-water-ripple {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.35);
    }

    12% {
        opacity: .72;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3.8);
    }
}

@keyframes fe-fire-glow {

    0%,
    100% {
        transform: scale(.98) translateY(0);
        filter: blur(0px);
    }

    50% {
        transform: scale(1.03) translateY(-8px);
        filter: blur(1px);
    }
}

@keyframes fe-fire-ember {
    0% {
        transform: translateY(0) scale(.7);
        opacity: 0;
    }

    15% {
        opacity: .9;
    }

    100% {
        transform: translateY(-90px) scale(1.15);
        opacity: 0;
    }
}

@keyframes fe-metal-shine {
    0% {
        transform: translateX(-6%) scale(.98);
    }

    50% {
        transform: translateX(4%) scale(1.02);
    }

    100% {
        transform: translateX(-6%) scale(.98);
    }
}

@keyframes fe-metal-spark {
    0% {
        transform: scale(.6);
        opacity: 0;
    }

    25% {
        opacity: .95;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes fe-earth-breathe {

    0%,
    100% {
        transform: scale(.985);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes fe-earth-drift {
    0% {
        transform: translateY(0) translateX(0) scale(.85);
        opacity: 0;
    }

    20% {
        opacity: .8;
    }

    100% {
        transform: translateY(-70px) translateX(16px) scale(1.05);
        opacity: 0;
    }
}

@keyframes fe-wood-sheen {

    0%,
    100% {
        transform: translateX(0) scale(.985);
    }

    50% {
        transform: translateX(8px) scale(1.02);
    }
}

@keyframes fe-wood-dust {
    0% {
        transform: translateY(0) scale(.7);
        opacity: 0;
    }

    20% {
        opacity: .75;
    }

    100% {
        transform: translateY(-38px) scale(1);
        opacity: 0;
    }
}

.fe-dots {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
}

.fe-dots.visible {
    opacity: 1;
    pointer-events: all;
}

.fe-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: .3s;
}

.fe-dot.active {
    background: #fff;
    transform: scale(1.5);
}

/* ── AMENITIES ── */
.am-section {
    background: var(--champagne);
    padding: 80px 0 0;
}

.am-header {
    text-align: center;
    padding: 0 20px 60px;
}

.am-eyebrow {
    font-size: .72rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: .8rem;
}

.am-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--teal);
    letter-spacing: .08em;
    margin: 0;
}

.am-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 320px 320px;
    gap: 4px;
}

.am-entrance {
    height: 450px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    margin-bottom: 4px;
    cursor: pointer;
    transition: transform .4s;
}

.am-card {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform .4s;
}

.am-card.large {
    grid-row: 1/3;
}

.am-card.large-2 {
    grid-column: 2/4;
}

.am-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13, 44, 51, .7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 1;
    transition: background .4s;
}

.am-card:hover .am-card-overlay,
.am-entrance:hover .am-card-overlay {
    background: linear-gradient(0deg, var(--teal) 0%, transparent 70%);
}

.am-card-overlay span {
    font-size: 1.1rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.am-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.am-card:hover,
.am-entrance:hover {
    transform: scale(1.01);
}

/* Hotspots */
.am-hotspot {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.am-hotspot-dot {
    width: 12px;
    height: 12px;
    background: #000;
    border: 2px solid #fff;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.am-hotspot-dot::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: am-pulse 2s infinite;
}

@keyframes am-pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.am-hotspot-label {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    opacity: 0.9;
}

.am-entrance:hover .am-hotspot-label {
    opacity: 1;
    transform: scale(1.05);
    transition: 0.3s;
}

/* ── LEGACY ── */
.legacy-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.legacy-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.legacy-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
}

.legacy-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 60px 40px;
}

.legacy-stat {
    text-align: center;
    padding: 0 60px;
}

.ls-num {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    color: var(--teal);
    line-height: 1;
}

.ls-label {
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-top: .5rem;
    font-weight: 600;
    opacity: 0.6;
}

.legacy-divider {
    width: 1px;
    height: 100px;
    background: rgba(0, 0, 0, .1);
}

.legacy-tagline {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 3vw, 2rem);
    color: var(--teal);
    letter-spacing: .12em;
    padding-bottom: 60px;
    text-align: center;
    opacity: 0.5;
}

.legacy-cta-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

.legacy-cta-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 22px 11px 18px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #C9A84C 0%, #e8c96a 45%, #a8832a 100%);
    color: #2a1a00;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow:
        0 0 18px rgba(201, 168, 76, 0.55),
        0 0 40px rgba(201, 168, 76, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 0.3s ease;
    animation: legacyCtaGlow 3s ease-in-out infinite;
}

.legacy-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-20deg);
    animation: legacyCtaSweep 2.5s ease-in-out infinite;
    pointer-events: none;
}

.legacy-cta-btn>* {
    position: relative;
    z-index: 1;
}

.legacy-cta-spark {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: #4a3200;
    filter: drop-shadow(0 0 3px rgba(74, 50, 0, 0.5));
    animation: legacyCtaSpark 4s linear infinite;
}

.legacy-cta-text {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    font-weight: 800;
    white-space: nowrap;
}

.legacy-cta-arrow {
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.legacy-cta-btn:hover {
    transform: scale(1.07) translateY(-1px);
    box-shadow:
        0 0 35px rgba(201, 168, 76, 0.9),
        0 0 70px rgba(201, 168, 76, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: none;
}

.legacy-cta-btn:hover .legacy-cta-arrow {
    transform: translate(2px, -2px);
}

.legacy-cta-btn:focus-visible {
    outline: 3px solid rgba(201, 168, 76, 0.35);
    outline-offset: 3px;
}

@keyframes legacyCtaGlow {

    0%,
    100% {
        box-shadow: 0 0 18px rgba(201, 168, 76, 0.55), 0 0 40px rgba(201, 168, 76, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 28px rgba(201, 168, 76, 0.85), 0 0 60px rgba(201, 168, 76, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes legacyCtaSweep {
    0% {
        left: -80%;
    }

    60%,
    100% {
        left: 130%;
    }
}

@keyframes legacyCtaSpark {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.25);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* ── CONTACT ── */
.cta-section {
    background: var(--premium-white);
    padding: 120px 20px;
}

.cta-inner {
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
}

.cta-eyebrow {
    font-size: .72rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--teal);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2rem;
}

.cta-input {
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .08);
    color: var(--charcoal);
    padding: 14px 20px;
    font-size: .95rem;
    outline: none;
    transition: .3s;
    font-family: 'Open Sans', sans-serif;
    border-radius: 0;
}

.cta-input:focus {
    background: #fff;
    border-color: var(--gold);
}

.cta-input::placeholder {
    color: rgba(0, 0, 0, .3);
}

.cta-btn {
    background: var(--teal);
    color: #fff;
    border: none;
    padding: 16px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s;
}

.cta-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.cta-contacts {
    font-size: .85rem;
    color: rgba(0, 0, 0, .4);
}

.cta-contacts a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.cta-contacts a:hover {
    color: var(--gold);
}

.cta-contacts span {
    margin: 0 12px;
}

/* ── LOCATION ── */
.loc-section {
    background: #F5F7F8;
    padding: 120px 6vw;
    position: relative;
    overflow: hidden;
}

.loc-header {
    text-align: center;
    margin-bottom: 80px;
}

.loc-eyebrow {
    font-size: .85rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 800;
    display: block;
    margin-bottom: 1.2rem;
}

.loc-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--teal);
    letter-spacing: .1em;
    margin: 0;
    line-height: 1.2;
}

.loc-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.loc-card {
    background: #fff;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    flex: 0 0 400px;
    position: relative;
    z-index: 2;
    border-left: 4px solid var(--gold);
}

.loc-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.loc-card-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

.loc-landmarks {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.loc-landmarks li {
    font-size: 0.95rem;
    color: var(--teal-dk);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.loc-landmarks li i {
    color: var(--gold);
    font-size: 1.2rem;
}

.loc-btn {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: 0.3s;
}

.loc-btn:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.3);
}

.loc-map-wrapper {
    flex: 1;
    position: relative;
    height: 500px;
}

.loc-map-frame {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.loc-map-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(80%) contrast(1.1) brightness(0.95);
    transition: 0.5s;
}

.loc-map-wrapper:hover .loc-map-frame iframe {
    filter: none;
}

.loc-deco-1,
.loc-deco-2 {
    position: absolute;
    border-radius: 12px;
    z-index: 1;
}

.loc-deco-1 {
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    top: -20px;
    right: -20px;
}

.loc-deco-2 {
    width: 150px;
    height: 150px;
    background: var(--teal);
    bottom: -30px;
    left: -30px;
}

@media(max-width:991px) {
    .loc-container {
        flex-direction: column;
    }

    .loc-card {
        flex: none;
        width: 100%;
        padding: 30px;
    }

    .loc-map-wrapper {
        width: 100%;
        height: 400px;
    }

    .loc-deco-1 {
        top: -10px;
        right: -10px;
    }

    .loc-deco-2 {
        bottom: -15px;
        left: -15px;
    }
}

@media(max-width:768px) {
    .am-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .am-card.large,
    .am-card.large-2 {
        grid-row: auto;
        grid-column: auto;
        height: 260px;
    }

    .am-card {
        height: 220px;
    }

    .legacy-content {
        flex-direction: column;
        gap: 32px;
        padding: 40px 20px 24px;
    }

    .legacy-stat {
        padding: 0;
    }

    .legacy-divider {
        width: 60px;
        height: 1px;
    }

    .legacy-tagline {
        font-size: clamp(0.95rem, 4vw, 1.25rem);
        letter-spacing: 0.08em;
        padding-bottom: 28px;
    }

    .legacy-cta-wrap {
        padding-bottom: 24px;
    }

    .legacy-cta-btn {
        width: min(100%, 360px);
        padding: 12px 18px 12px 14px;
        gap: 8px;
        justify-content: center;
    }

    .legacy-cta-spark {
        width: 12px;
        height: 12px;
    }

    .legacy-cta-text {
        font-size: 0.55rem;
        letter-spacing: 0.16em;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
    }

    .legacy-cta-arrow {
        font-size: 0.95rem;
    }

    .hero-bottom-nav {
        gap: 0;
        overflow-x: auto;
    }

    .hbn-link {
        padding: 7px 7px;
        font-size: 10px;
    }

    .fp-specs {
        display: block !important;
    }

    .fp-section {
        padding: 80px 20px;
    }

    .fp-plans-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* ── INTERIOR STICKY SCROLL ── */
.int-section {
    background: #0f0f0f;
    position: relative;
}

/* Section title above the frame */
.int-section-label {
    padding: 100px 8vw 60px;
}

.int-eyebrow {
    font-size: .72rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: .8rem;
}

.int-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: .06em;
    line-height: 1.1;
    margin: 0;
}

/* Two-column frame */
.int-frame {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 100vh;
}

/* LEFT — sticky image pane */
.int-img-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    align-self: start;
}

.int-img-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity .9s ease, transform 1.3s ease;
}

.int-img-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Image counter bottom-right */
.int-img-counter {
    position: absolute;
    bottom: 32px;
    right: 28px;
    z-index: 10;
    font-size: .72rem;
    letter-spacing: .25em;
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.int-counter-sep {
    opacity: .35;
}

/* RIGHT — scroll panels */
.int-panels {
    position: relative;
    z-index: 1;
}

.int-panel {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 8vw 60px 5vw;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.int-panel:last-child {
    border-bottom: none;
}

.int-room-num {
    font-size: .68rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    font-weight: 700;
    display: block;
    margin-bottom: 1.5rem;
}

.int-room-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: .04em;
}

.int-room-desc {
    font-size: .95rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.9;
    max-width: 360px;
    margin-bottom: 2rem;
}

.int-room-specs {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.int-room-specs span {
    font-size: .68rem;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .5);
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .3s;
}

.int-panel:hover .int-room-specs span {
    border-color: var(--gold);
    color: var(--gold);
}

@media(max-width:900px) {
    .int-frame {
        grid-template-columns: 1fr;
    }

    .int-img-sticky {
        position: relative;
        height: 55vw;
    }

    .int-img-slide {
        position: absolute;
    }

    .int-panel {
        height: auto;
        padding: 40px 6vw;
    }
}

/* ── FLOOR PLANS ── */
.fp-section {
    background: #ffffff; /* Pure white background as requested */
    padding: 80px 4vw;
    position: relative;
}

.fp-header {
    text-align: center;
    margin-bottom: 50px;
}

.fp-eyebrow {
    font-size: .72rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: .8rem;
}

.fp-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--teal);
    letter-spacing: .08em;
    margin-bottom: 2rem;
}

.fp-plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px; /* Reduced gap for bigger images */
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.fp-plan {
    position: relative;
    width: 100%;
}

.fp-image-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff; /* Background stuck to the image */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid #eee;
    padding: 20px; /* Padding to make image viewable bigger with breathing space */
}

.fp-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.fp-image-wrap:hover .fp-image {
    transform: scale(1.05);
}

.fp-flat-label {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13, 44, 51, 0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    pointer-events: none;
}

.fp-flat-label span {
    font-size: .85rem;
    color: #fff;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.fp-specs {
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    margin-top: 72px;
    padding-top: 40px;
}

.fps-item {
    text-align: center;
    padding: 0 40px;
    border-right: 1px solid rgba(0, 0, 0, .08);
}

.fps-item:last-child {
    border-right: none;
}

.fps-item i {
    font-size: 1.4rem;
    color: var(--gold);
    display: block;
    margin-bottom: .5rem;
}

.fps-item span {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: .2rem;
}

.fps-item small {
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .4);
}

/* ── DESIGNED WITH CARE (PREMIUM REDESIGN) ── */
.dwc-premium-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0f171e;
    overflow: hidden;
    padding: 100px 6vw;
}

.dwc-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.dwc-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 1.2s ease;
}

.dwc-bg-img.active {
    opacity: 1;
    transform: scale(1);
}

.dwc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #050e12 0%, rgba(5, 14, 18, 0.85) 40%, rgba(5, 14, 18, 0.6) 100%);
    z-index: 1;
}

.dwc-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.dwc-left {
    flex: 0 0 35%;
    position: sticky;
    top: 180px;
}

.dwc-eyebrow {
    font-size: .75rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 800;
    display: block;
    margin-bottom: 1.5rem;
}

.dwc-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: .05em;
    margin: 0;
    line-height: 1.1;
}

.dwc-right {
    flex: 1;
    max-width: 680px;
    display: flex;
    flex-direction: column;
}

.dwc-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    cursor: pointer;
    transition: 0.4s ease;
}

.dwc-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dwc-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dwc-item-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.4s ease;
}

.dwc-num {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    opacity: 0.5;
}

.dwc-icon {
    font-size: 1.6rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-15px);
    transition: 0.4s ease;
}

.dwc-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dwc-item-inner {
    padding: 25px 30px;
    margin-top: 15px;
    margin-left: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--gold);
    backdrop-filter: blur(12px);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dwc-item-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dwc-item-inner li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: #f8fafc;
    letter-spacing: 0.03em;
    line-height: 1.7;
}

.dwc-item-inner li:last-child {
    margin-bottom: 0;
}

.dwc-item-inner li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--gold);
    font-size: 0.70rem;
    text-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}

.dwc-item.active .dwc-item-name,
.dwc-item:hover .dwc-item-name {
    color: #fff;
    font-weight: 600;
}

.dwc-item.active .dwc-icon,
.dwc-item:hover .dwc-icon {
    opacity: 1;
    transform: translateX(0);
}

.dwc-item.active .dwc-item-body {
    max-height: 300px;
}

@media(max-width: 991px) {
    .dwc-content-wrapper {
        flex-direction: column;
    }

    .dwc-left {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .dwc-title {
        font-size: 3rem;
    }

    .dwc-item-name {
        font-size: 1.3rem;
    }

    .dwc-premium-section {
        padding: 60px 6vw;
    }
}



/* ═══════════════════════════════════════════
   CONTACT SECTION — PREMIUM DARK EDITORIAL
═══════════════════════════════════════════ */
.cta-new-section {
    position: relative;
    background: #030b0e;
    overflow: hidden;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

/* Animated gradient orbs */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.35;
    animation: cta-orb-drift 12s ease-in-out infinite alternate;
}

.cta-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #C9A84C 0%, transparent 70%);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.cta-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #1A4D57 0%, transparent 70%);
    bottom: -100px;
    right: 30%;
    animation-delay: -4s;
}

.cta-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.6) 0%, transparent 70%);
    top: 50%;
    right: -80px;
    animation-delay: -8s;
}

@keyframes cta-orb-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

/* Grid divider line */
.cta-new-section::before {
    content: '';
    position: absolute;
    top: 80px;
    bottom: 80px;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.3) 20%, rgba(201, 168, 76, 0.3) 80%, transparent);
    z-index: 2;
    pointer-events: none;
}

.cta-new-container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: stretch;
}

.cta-new-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
}

/* ── LEFT PANEL ── */
.cta-new-left {
    padding: 120px 60px 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Subtle vertical rule on left side */
.cta-new-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
    display: none;
}

.cta-title-group {
    margin-bottom: 60px;
}

.cta-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    text-transform: uppercase;
    /* Clipped gold text on first line */
    background: linear-gradient(135deg, #fff 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-main-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 380px;
    letter-spacing: 0.02em;
}

.cta-journey-group {
    margin-bottom: 50px;
}

.cta-journey-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
}

.cta-journey-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.04em;
    position: relative;
    display: inline-block;
}

/* Animated underline */
.cta-journey-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    animation: cta-underline-grow 2s 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes cta-underline-grow {
    to {
        width: 100%;
    }
}

.cta-new-contacts {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cta-contact-item {
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.cta-contact-item small {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
    flex-shrink: 0;
    width: 90px;
}

.cta-contact-item a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.cta-contact-item a:hover {
    color: var(--gold);
}

/* ── RIGHT PANEL (Glass Form) ── */
.cta-new-right {
    padding: 100px 80px 100px 70px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(2px);
}

.cta-new-form {
    width: 100%;
}

/* Form header inside right panel */
.cta-form-heading {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 700;
    display: block;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 20px;
}

.cta-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.cta-new-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}

.cta-new-field.full-width {
    grid-column: span 2;
}

.cta-new-field label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.cta-new-field input,
.cta-new-field textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    font-size: 0.9rem;
    color: #fff;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    font-family: 'Open Sans', sans-serif;
}

.cta-new-field input::placeholder,
.cta-new-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.cta-new-field input:focus,
.cta-new-field textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
}

.cta-new-tel {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s;
}

.cta-new-tel:focus-within {
    border-color: var(--gold);
}

.cta-flag {
    padding: 0 14px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    font-weight: 700;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.cta-new-tel input {
    border: none;
    padding-left: 14px;
    flex: 1;
    background: transparent;
}

.cta-new-checkboxes {
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-cb {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    cursor: pointer;
    line-height: 1.5;
}

.cta-cb input {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    margin-top: 1px;
    flex-shrink: 0;
}

/* Submit */
.cta-new-submit {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #C9A84C 0%, #e8c96a 50%, #a8832a 100%);
    color: #1a1000;
    border: none;
    padding: 6px 6px 6px 36px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-new-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: cta-btn-shimmer 2.5s ease-in-out infinite;
}

@keyframes cta-btn-shimmer {
    0% {
        left: -80%;
    }

    60%,
    100% {
        left: 130%;
    }
}

.cta-new-arrow {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s;
    flex-shrink: 0;
}

.cta-new-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(201, 168, 76, 0.7), 0 8px 25px rgba(0, 0, 0, 0.4);
    padding-left: 46px;
}

.cta-new-submit:hover .cta-new-arrow {
    transform: rotate(-45deg);
    background: rgba(0, 0, 0, 0.35);
}

/* ── RESPONSIVE ── */
@media(max-width: 1100px) {
    .cta-new-left {
        padding: 100px 50px;
    }

    .cta-new-right {
        padding: 100px 50px;
    }
}

@media(max-width: 900px) {
    .cta-new-layout {
        grid-template-columns: 1fr;
    }

    .cta-new-section::before {
        display: none;
    }

    .cta-new-left {
        padding: 80px 30px 60px;
    }

    .cta-new-right {
        padding: 60px 30px 80px;
    }

    .cta-form-grid {
        grid-template-columns: 1fr;
    }

    .cta-new-field.full-width {
        grid-column: span 1;
    }

    .cta-main-title {
        font-size: 3.5rem;
    }
}


/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE SYSTEM — All Sections, All Breakpoints
   XL: ≤1200px  |  LG: ≤992px  |  MD: ≤768px  |  SM: ≤576px
═══════════════════════════════════════════════════════════ */

/* ── XL: ≤1200px ── */
@media (max-width: 1200px) {
    .hero-driver {
        height: 360vh;
    }

    /* Five Elements */
    .fe-panel {
        padding: 0 6vw;
    }

    .fe-title {
        font-size: clamp(3rem, 7vw, 5rem);
    }

    /* Floor Plans */
    .fp-plans-grid {
        gap: 40px;
    }

    /* DWC */
    .dwc-content-wrapper {
        gap: 40px;
    }

    /* Legacy */
    .legacy-stat {
        padding: 0 40px;
    }

    /* Contact form */
    .cta-new-left {
        padding: 100px 50px;
    }

    .cta-new-right {
        padding: 100px 50px;
    }
}

/* ── LG: ≤992px ── */
@media (max-width: 992px) {

    /* ─ Hero ─ */
    .hero-driver {
        height: 340vh;
    }

    .hero-big-text {
        font-size: clamp(2.5rem, 8vw, 6rem);
    }

    .hero-joined-layer {
        padding: 30px;
    }

    .life-hero {
        padding: 24px;
    }

    .life-hero__body {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* ─ Five Elements ─ */
    .fe-panel {
        padding: 0 5vw;
        height: 60vh;
    }

    .fe-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .fe-panel__content {
        max-width: 100%;
    }

    .fe-dots {
        right: 14px;
    }

    /* ─ Floor Plans ─ */
    .fp-plans-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .fp-section {
        padding: 80px 5vw;
    }

    .fp-specs {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    /* ─ Designed With Care ─ */
    .dwc-premium-section {
        padding: 80px 5vw;
    }

    .dwc-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .dwc-left {
        position: relative !important;
        top: 0 !important;
        width: 100%;
        flex: none !important;
        max-width: 100% !important;
    }

    .dwc-right {
        flex: none !important;
        max-width: 100% !important;
        width: 100%;
    }

    #dwcImgPane {
        height: 320px !important;
    }

    .dwc-static-title {
        font-size: 2rem !important;
    }

    .dwc-title {
        font-size: 2.5rem !important;
    }

    /* ─ Legacy ─ */
    .legacy-content {
        gap: 0;
        padding: 40px 20px;
    }

    .legacy-stat {
        padding: 0 30px;
    }

    .ls-num {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }

    /* ─ Location ─ */
    .loc-container {
        flex-direction: column;
        gap: 40px;
    }

    .loc-card {
        width: 100%;
    }

    .loc-map-wrapper {
        width: 100%;
        height: 400px;
    }

    /* ─ Contact ─ */
    .cta-new-layout {
        grid-template-columns: 1fr;
    }

    .cta-new-section::before {
        display: none;
    }

    .cta-new-left {
        padding: 80px 30px 60px;
    }

    .cta-new-right {
        padding: 60px 30px 80px;
    }

    .cta-form-grid {
        grid-template-columns: 1fr;
    }

    .cta-new-field.full-width {
        grid-column: span 1;
    }

    .cta-main-title {
        font-size: 3.5rem;
    }
}

/* ── MD: ≤768px ── */
@media (max-width: 768px) {

    /* ─ Hero ─ */
    .hero-driver {
        height: 320vh;
    }

    .hero-big-text {
        font-size: clamp(2.2rem, 9vw, 4.5rem);
        margin-top: 100px;
    }

    .hero-joined-layer {
        padding: 20px;
        padding-top: 80px;
        justify-content: flex-start;
        align-items: stretch;
    }

    .life-hero {
        padding: 18px;
        border-radius: 18px;
    }

    .life-hero__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .life-hero__mark {
        width: 70px;
        margin: 0 auto;
    }

    .life-hero__title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        letter-spacing: 0.05em;
    }

    .life-hero__body {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .life-hero__elements {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .life-element {
        padding: 8px;
        border-radius: 10px;
        grid-template-columns: 32px 1fr;
        gap: 6px;
    }

    .life-element__icon {
        width: 32px;
        height: 32px;
    }

    .life-element__text strong {
        font-size: 0.8rem;
    }

    .life-hero__lead {
        font-size: 1.3rem;
    }

    .life-hero__copy p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .hero-bottom-nav {
        gap: 0;
        overflow-x: auto;
    }

    .hbn-link {
        padding: 7px;
        font-size: 9px;
    }

    /* ─ Five Elements ─ */
    .fe-panel {
        height: auto;
        min-height: 70vh;
        padding: 50px 5vw;
    }

    .fe-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .fe-sub {
        font-size: 0.9rem;
    }

    .fe-dots {
        right: 10px;
        gap: 8px;
    }

    .fe-dot {
        width: 5px;
        height: 5px;
    }

    /* ─ Floor Plans ─ */
    .fp-section {
        padding: 60px 5vw;
    }

    .fp-plans-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fp-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }

    .fp-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .fps-item {
        min-width: calc(50% - 10px);
    }

    /* ─ Designed With Care ─ */
    .dwc-premium-section {
        padding: 60px 5vw;
    }

    .dwc-static-title {
        font-size: 1.8rem !important;
        margin-bottom: 12px;
    }

    .dwc-title {
        font-size: 2.2rem !important;
        margin-top: 8px !important;
    }

    .dwc-eyebrow {
        font-size: 0.65rem;
        margin-bottom: 10px;
    }

    #dwcImgPane {
        height: 260px !important;
    }

    .dwc-item-name {
        font-size: 1.1rem;
    }

    .dwc-item {
        padding: 20px 0;
    }

    .dwc-item-inner {
        margin-left: 20px;
        padding: 18px 20px;
    }

    .dwc-item-inner li {
        font-size: 0.9rem;
    }

    /* ─ Amenities ─ */
    .am-section {
        padding: 60px 0 0;
    }

    .am-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .am-card.large,
    .am-card.large-2 {
        grid-row: auto;
        grid-column: auto;
        height: 240px;
    }

    .am-card {
        height: 200px;
    }

    .am-entrance {
        height: 380px;
    }

    .am-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    /* ─ Legacy ─ */
    .legacy-section {
        min-height: 60vh;
    }

    .legacy-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 40px 20px;
    }

    .legacy-stat {
        padding: 0;
    }

    .ls-num {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .legacy-divider {
        width: 60px;
        height: 1px;
    }

    .legacy-tagline {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        padding-bottom: 20px;
    }

    .legacy-cta-btn {
        padding: 12px 20px;
    }

    /* ─ Location ─ */
    .loc-section {
        padding: 60px 5vw;
    }

    .loc-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .loc-container {
        flex-direction: column;
    }

    .loc-card {
        width: 100%;
        padding: 28px;
    }

    .loc-map-wrapper {
        width: 100%;
        height: 350px;
    }

    .loc-deco-1 {
        top: -10px;
        right: -10px;
    }

    .loc-deco-2 {
        bottom: -15px;
        left: -15px;
        width: 100px;
        height: 100px;
    }

    /* ─ Contact ─ */
    .cta-new-layout {
        grid-template-columns: 1fr;
    }

    .cta-new-left {
        padding: 70px 24px 50px;
    }

    .cta-new-right {
        padding: 50px 24px 70px;
    }

    .cta-main-title {
        font-size: 3rem;
        line-height: 1;
    }

    .cta-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cta-new-field.full-width {
        grid-column: span 1;
    }

    .cta-new-submit {
        width: 100%;
        justify-content: space-between;
        padding: 6px 6px 6px 24px;
    }

    /* ─ Hero floating logo ─ */
    .hero-sticky .float-logo {
        top: 16px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-sticky .float-logo #logoImg {
        height: 36px;
        width: auto;
    }

    /* ─ Music toggle ─ */
    .music-toggle-btn {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

/* ── SM: ≤576px ── */
@media (max-width: 576px) {

    /* ─ Hero ─ */
    .hero-driver {
        height: 300vh;
    }

    .hero-big-text {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-top: 80px;
    }

    .hero-joined-layer {
        padding: 12px;
        padding-top: 70px;
    }

    .life-hero {
        padding: 14px;
        max-height: 82vh;
        overflow-y: auto;
        border-radius: 14px;
    }

    .life-hero__header {
        gap: 8px;
        padding-bottom: 14px;
    }

    .life-hero__mark {
        width: 60px;
    }

    .life-hero__title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .life-hero__lead {
        font-size: 1.15rem;
    }

    .life-hero__copy p {
        font-size: 0.8rem;
    }

    .life-hero__elements {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .life-element {
        padding: 6px;
        border-radius: 8px;
        grid-template-columns: 26px 1fr;
        gap: 5px;
    }

    .life-element__icon {
        width: 26px;
        height: 26px;
    }

    .life-element__text strong {
        font-size: 0.72rem;
    }

    /* ─ Five Elements ─ */
    .fe-panel {
        min-height: 60vh;
        padding: 40px 5vw;
    }

    .fe-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .fe-panel__tag {
        font-size: 0.6rem;
        padding: 0.35rem 0.7rem;
    }

    .fe-icon-svg {
        width: 42px;
        height: 42px;
    }

    /* ─ Floor Plans ─ */
    .fp-section {
        padding: 50px 4vw;
    }

    .fps-item {
        min-width: 100%;
        text-align: center;
    }

    .fps-item small {
        display: block;
    }

    /* ─ DWC ─ */
    .dwc-premium-section {
        padding: 50px 4vw;
    }

    .dwc-static-title {
        font-size: 1.5rem !important;
    }

    .dwc-title {
        font-size: 1.8rem !important;
    }

    #dwcImgPane {
        height: 220px !important;
    }

    .dwc-item-name {
        font-size: 1rem;
        gap: 12px;
    }

    .dwc-item {
        padding: 16px 0;
    }

    .dwc-item-inner {
        margin-left: 0;
        padding: 14px 16px;
    }

    .dwc-item-inner li {
        font-size: 0.85rem;
        padding-left: 20px;
    }

    /* ─ Amenities ─ */
    .am-entrance {
        height: 280px;
    }

    .am-card {
        height: 180px;
    }

    .am-card-overlay {
        padding: 18px;
    }

    .am-card-overlay span {
        font-size: 0.85rem;
    }

    /* ─ Legacy ─ */
    .ls-num {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }

    .ls-label {
        font-size: 0.6rem;
    }

    /* ─ Location ─ */
    .loc-section {
        padding: 50px 4vw;
    }

    .loc-header {
        text-align: center;
    }

    .loc-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .loc-landmarks li {
        font-size: 0.85rem;
    }

    .loc-map-wrapper {
        height: 280px;
    }

    .loc-deco-1,
    .loc-deco-2 {
        display: none;
    }

    /* ─ Contact ─ */
    .cta-new-left {
        padding: 55px 18px 40px;
    }

    .cta-new-right {
        padding: 40px 18px 55px;
    }

    .cta-main-title {
        font-size: 2.5rem;
    }

    .cta-journey-title {
        font-size: 1.6rem;
    }

    .cta-new-field input,
    .cta-new-field textarea {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .cta-new-submit {
        padding: 5px 5px 5px 18px;
    }

    .cta-new-arrow {
        width: 36px;
        height: 36px;
    }

    /* ─ Footer ─ */
    footer {
        padding: 50px 0 16px;
    }

    /* ─ Music button ─ */
    .music-toggle-btn {
        bottom: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }

    .music-toggle-btn i {
        font-size: 0.9rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   HEADER LOGO — Responsive Scaling
   The header logo is 130px tall on desktop; scale it down on
   smaller screens so it doesn't block hero content.
═══════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    #logoImg {
        height: 90px !important;
    }

    .hdr-logo {
        top: 20px;
    }

    #siteHeader {
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {
    #logoImg {
        height: 70px !important;
    }

    .hdr-logo {
        top: 14px;
    }

    .hdr-logo-sub {
        font-size: 0.48rem;
        letter-spacing: 0.22em;
    }

    #siteHeader {
        padding: 18px 20px;
    }
}

@media (max-width: 576px) {
    #logoImg {
        height: 55px !important;
    }

    .hdr-logo {
        top: 10px;
    }

    .hdr-logo-sub {
        display: none;
    }

    .hdr-menu-label {
        display: none;
    }

    .hdr-enquire {
        padding: 9px 14px 9px 12px;
    }

    .enq-text {
        font-size: 0.55rem;
        letter-spacing: 0.14em;
    }
}

/* ═══════════════════════════════════════════════════════════
   DWC Section — Mobile Block Alignment Fix
   When stacked, align-items:flex-start so content fills width
═══════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .dwc-premium-section {
        align-items: flex-start;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .dwc-content-wrapper {
        align-items: stretch;
        width: 100%;
    }

    .dwc-right {
        max-width: 100% !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   HERO — Prevent over-scroll on small viewports
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero-driver {
        height: 280vh;
    }

    .life-hero {
        max-height: 88vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hero-big-text {
        font-size: clamp(1.8rem, 11vw, 2.5rem);
    }
}

/* ═══════════════════════════════════════════════════════════
   FIVE ELEMENTS — Touch & Mobile Content Fix
   On touch devices the hover-reveal content stays hidden;
   make it always visible on small screens.
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .fe-panel__content {
        opacity: 1 !important;
        transform: none !important;
    }

    .fe-panel {
        cursor: default;
    }
}

/* ═══════════════════════════════════════════════════════════
   AMENITIES — Entrance full-width fix on SM
═══════════════════════════════════════════════════════════ */
@media (max-width: 576px) {
    .am-entrance {
        height: 240px;
        margin-bottom: 2px;
    }

    .am-section {
        padding: 40px 0 0;
    }

    .am-header {
        padding: 0 16px 40px;
    }

    .am-title {
        font-size: 2rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   FLOOR PLAN SPECS — Stack to 2-col on MD, 1-col on SM
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .fp-specs {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding-top: 30px;
        margin-top: 40px;
    }

    .fps-item {
        border-right: none;
        padding: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .fp-specs {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM — Single column on MD
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .cta-new-layout {
        display: flex !important;
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — Responsive stacking
═══════════════════════════════════════════════════════════ */
@media (max-width: 576px) {
    footer .row.g-5 {
        gap: 2rem !important;
    }

    footer .col-6 {
        width: 100% !important;
    }

    footer .col-lg-2,
    footer .col-lg-3 {
        width: 100% !important;
    }
}