/* ============================================================
   Sun Garnet — fonts
   ============================================================ */
@font-face {
    font-family: 'Engravers Gothic BT';
    src: url('fonts/engraversgothic-bt.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aurantiaca';
    src: url('fonts/aurantiaca.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('fonts/montserrat-semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'LEMONMILK';
    src: url('fonts/lemonmilk-medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lato Black';
    src: url('fonts/lato-black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
   Tokens
   ============================================================ */
:root {
    --navy: #111b33;
    --navy-accent: #052350;
    --cream: #f4ecd8;
    --cream-deep: #ece0c2;
    --gold: #c39a5a;
    --gold-deep: #a97f43;
    --ink: #2b1010;
    --body-copy: #14172b;
    --serif: 'Engravers Gothic BT', 'Times New Roman', serif;
    --script: 'Aurantiaca', cursive;
    --sans: 'Montserrat', Calibri, Arial, sans-serif;
    --display: 'LEMONMILK', var(--sans);
    --label: 'Lato Black', var(--sans);
}

* { box-sizing: border-box; }

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.visually-hidden:focus {
    position: fixed;
    top: 10px; left: 10px;
    width: auto; height: auto;
    padding: 10px 16px;
    background: var(--navy);
    color: #fff;
    z-index: 2000;
    clip: auto;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

section { scroll-margin-top: 110px; }

body {
    margin: 0;
    font-family: var(--sans);
    font-weight: 500;
    color: var(--body-copy);
    overflow-x: hidden;
    background: #fff;
}

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

a { color: inherit; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--navy-accent); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.container-narrow { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, .font-serif {
    font-family: var(--serif);
    letter-spacing: 0.5px;
    color: var(--navy);
    margin: 0;
}

.font-script { font-family: var(--script); font-weight: normal; }
.font-label { font-family: var(--label); letter-spacing: 2px; text-transform: uppercase; }
.font-display { font-family: var(--display); }

.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.text-cream { color: var(--cream) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-cream { background-color: var(--cream) !important; }

.eyebrow {
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 14px;
    display: inline-block;
}

.section-heading {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--gold-deep);
}

.section-copy {
    font-size: 15.5px;
    line-height: 1.9;
    color: var(--body-copy);
    max-width: 620px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-signature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #fff;
    font-family: var(--label);
    font-size: 12.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 30px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s ease;
}
.btn-signature:hover { background: var(--navy-accent); color: #fff; }

.btn-outline-cream {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(244, 236, 216, 0.6);
    font-family: var(--label);
    font-size: 12.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 28px;
    text-decoration: none;
    transition: all 0.35s ease;
}
.btn-outline-cream:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

/* ============================================================
   Header / Nav
   ============================================================ */
#main-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: linear-gradient(90deg, var(--navy-accent) 0%, var(--navy) 100%);
    padding: 14px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}
#main-header.scrolled { padding: 8px 0; box-shadow: 0 6px 20px rgba(0,0,0,0.25); }

#main-header .container-narrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.site-logo img { height: 52px; width: auto; }

.nav-links { display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: var(--label);
    font-size: 11.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    background: #000;
    overflow: hidden;
}
.hero picture, .hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,15,35,0.35) 0%, rgba(5,15,35,0.15) 45%, rgba(5,15,35,0.65) 100%);
}
.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* ============================================================
   Intro
   ============================================================ */
.intro-section {
    background: var(--cream) url('img/intro-bg.png') center / cover no-repeat;
    padding: 110px 0;
}
.intro-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}
.intro-left { text-align: center; }
.intro-logo { max-width: 340px; width: 100%; margin: 0 auto; }
.intro-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 360px);
    margin: 0 auto;
}
.intro-logo-symbol {
    width: 92px;
    height: auto;
    margin-bottom: 8px;
}
.intro-brand-name {
    font-family: var(--display);
    font-size: 54px;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
}
.intro-home-type {
    margin-top: 14px;
    font-family: var(--label);
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
}
.intro-right { text-align: left; }
.intro-right .section-copy { max-width: none; margin: 0; text-align: left; }

/* ============================================================
   Elevation banner
   ============================================================ */
.elevation-section {
    position: relative;
    width: 100%;
    aspect-ratio: 10068 / 4120;
    overflow: hidden;
}
.elevation-section img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.elevation-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,15,35,0.55) 0%, rgba(5,15,35,0.1) 40%, rgba(5,15,35,0.6) 100%);
}
/* ============================================================
   Amenities
   ============================================================ */
.amenities-section {
    background: var(--cream) url('img/intro-bg.png') center / cover no-repeat;
    padding: 100px 0 90px;
}
.amenities-head { text-align: left; margin-bottom: 40px; }
.amenities-head .section-heading { font-size: clamp(24px, 3vw, 34px); margin-bottom: 10px; }
.amenities-head .section-copy { max-width: none; margin: 0; }
.amenities-carousel-wrap { display: flex; align-items: center; gap: 18px; }
.amenities-swiper { width: 100%; overflow: hidden; }
.amenities-swiper .swiper-slide {
    height: 320px;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}
.amenities-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.amenities-swiper .swiper-slide:hover img { transform: scale(1.08); }
.amenities-swiper .slide-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 12px 14px;
    background: linear-gradient(0deg, rgba(5,15,35,0.85) 0%, rgba(5,15,35,0) 100%);
    color: #fff;
    text-align: left;
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.amenities-prev, .amenities-next {
    flex: 0 0 auto;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
}
.amenities-prev:hover, .amenities-next:hover { background: var(--gold); color: #fff; }

/* ============================================================
   Feature banner + unit plan grid (full-bleed, 3 equal columns)
   ============================================================ */
.feature-grid-section { width: 100%; }
.unit-plans-row {
    background: var(--cream);
    display: flex;
    justify-content: center;
    padding: 60px 24px;
}
.feature-banner-row { width: 100%; overflow: hidden; }
.feature-col {
    position: relative;
    width: 100%;
    aspect-ratio: 2514 / 1235;
    overflow: hidden;
}
.feature-col img { width: 100%; height: 100%; object-fit: cover; display: block; }

.unit-plans-card {
    position: relative;
    width: 100%;
    max-width: 720px;
    text-align: left;
}
.unit-plans-card .section-heading { font-size: clamp(24px, 3vw, 34px); margin-bottom: 10px; }
.unit-plans-card .plan-image-wrap {
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0 26px;
}
.unit-plans-card .plan-image-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.28s ease, transform 0.28s ease;
}
.unit-plans-card .plan-image-wrap img.is-swapping {
    opacity: 0;
    transform: scale(0.98);
}
.plan-toggle {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    border: 1px solid var(--gold);
}
.plan-toggle button {
    background: transparent;
    border: none;
    min-width: 92px;
    padding: 13px 26px;
    font-family: var(--label);
    font-size: 14px;
    letter-spacing: 1.6px;
    line-height: 1;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
}
.plan-toggle button.active { background: var(--gold); color: #fff; }
.plan-brochure-btn { display: flex; width: fit-content; margin: 24px auto 0; }

/* ============================================================
   Location
   ============================================================ */
.location-intro {
    background: var(--cream) url('img/intro-bg.png') center / cover no-repeat;
    padding: 90px 0 70px;
    text-align: center;
}
.location-intro .section-heading { max-width: 720px; margin-left: auto; margin-right: auto; }
.location-intro .section-copy { margin: 0 auto; }
.location-intro-icon { width: 48px; height: auto; margin: 34px auto 0; opacity: 0.9; }

.video-tile-row {
    display: flex;
    justify-content: center;
    width: 100%;
    background: var(--cream);
    padding: 60px 24px;
}
.walkthrough-video {
    position: relative;
    display: block;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 1224 / 593;
    overflow: hidden;
    border: none;
    padding: 0;
    cursor: pointer;
    background: #000;
}
.walkthrough-video.video-embed { cursor: default; }
.walkthrough-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.walkthrough-video.video-static { cursor: pointer; }
.walkthrough-video img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.walkthrough-video.video-static img { transform: scale(1.015); }
.walkthrough-video:hover img { transform: scale(1.03); }
.video-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201, 158, 91, 0.95);
    color: #fff;
    font-size: 24px;
    transform: translate(-50%, -50%);
    box-shadow: 0 14px 38px rgba(0,0,0,0.28);
    pointer-events: none;
}

.connectivity-section { background: var(--cream); color: var(--body-copy); padding: 90px 0; }
.connectivity-section .connectivity-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}
.connectivity-section h2 {
    color: var(--gold-deep);
    font-family: var(--label);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
    margin: 0;
}
.connectivity-head .head-icon { width: 48px; height: auto; flex-shrink: 0; opacity: 0.9; }
.connectivity-compact {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
    gap: 48px;
    align-items: start;
}
.connectivity-scroll {
    max-height: 460px;
    overflow-y: auto;
    padding-right: 14px;
}
.connectivity-scroll::-webkit-scrollbar { width: 5px; }
.connectivity-scroll::-webkit-scrollbar-track { background: rgba(17,27,51,0.08); border-radius: 10px; }
.connectivity-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
.connectivity-scroll .cat-block { margin-bottom: 30px; }
.connectivity-scroll .cat-block:last-child { margin-bottom: 0; }
.connectivity-scroll h4 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: normal;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 0 14px;
}
.connectivity-scroll ul {
    list-style: none;
    margin: 0;
    padding: 20px 24px;
    background: var(--cream-deep);
    border-radius: 26px;
}
.connectivity-scroll li {
    font-family: var(--label);
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold-deep);
    padding: 5px 0;
    white-space: nowrap;
}
.connectivity-scroll li span:last-child::before { content: " - "; }
.connectivity-map-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 460px;
    overflow: hidden;
    border: none;
    border-radius: 4px;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}
.connectivity-map-wrap img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.map-zoom-label {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(17, 27, 51, 0.9);
    color: #fff;
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 10px 12px;
}

.map-modal .modal-content { border: none; border-radius: 0; background: var(--cream); }
.map-modal .modal-dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
}
.map-modal .modal-content {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}
.map-modal .modal-header {
    background: var(--navy);
    color: #fff;
    border: none;
    gap: 14px;
}
.map-modal .modal-title {
    color: #fff;
    font-family: var(--serif);
    letter-spacing: 0.5px;
}
.map-modal .btn-close { filter: brightness(0) invert(1); }
.btn-map-open {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-family: var(--label);
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.btn-map-open:hover { color: var(--gold); }
.map-modal .modal-body {
    overflow: auto;
    padding: 22px;
}
.map-modal .modal-body img {
    display: block;
    width: 100%;
    max-width: 1400px;
    min-width: 0;
    height: auto;
    margin: 0 auto;
}

/* ============================================================
   Legacy
   ============================================================ */
.legacy-section {
    padding: 82px 0 90px;
    text-align: center;
    border-top: 4px solid rgba(169, 127, 67, 0.65);
}
.legacy-section .container-narrow {
    max-width: 920px;
}
.legacy-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.legacy-head .mittal-logo { height: 46px; }
.legacy-head .eyebrow {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.8px;
    color: var(--gold-deep);
}
.legacy-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 76px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.legacy-badge-img { max-width: 270px; width: 100%; }
.legacy-numbers-img { max-width: 430px; width: 100%; }
.legacy-section .section-copy {
    margin: 0 auto 6px;
    text-align: center;
    max-width: 820px;
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 0.25px;
    line-height: 1.9;
    text-transform: uppercase;
}
.legacy-map-row {
    display: flex;
    justify-content: center;
    margin-top: 88px;
}
.legacy-map-row img { max-width: 690px; width: 100%; }

/* ============================================================
   Footer
   ============================================================ */
footer.site-footer { background: #0a0a0a; color: rgba(255,255,255,0.75); padding: 80px 0 30px; }
footer.site-footer h4 {
    font-family: var(--label);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}
footer.site-footer .footer-grid { display: grid; grid-template-columns: 1.15fr 0.85fr 1.4fr; gap: 46px; }
footer.site-footer p, footer.site-footer a { font-size: 13px; line-height: 1.8; }
footer.site-footer a { text-decoration: none; color: rgba(255,255,255,0.75); }
footer.site-footer a:hover { color: var(--gold); }
.footer-download-link { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.social-row { display: flex; gap: 12px; margin-top: 6px; }
.social-row a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.social-row a:hover { transform: translateY(-3px); }
.social-row a { background: none; }
.social-row img { width: 38px; height: 38px; border-radius: 50%; }
.rera-qr img { width: 100%; max-width: 220px; background: transparent; padding: 0; }
.footer-disclaimer { font-size: 11px; line-height: 1.8; color: rgba(255,255,255,0.4); margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.45); }

/* ============================================================
   Enquiry Modal
   ============================================================ */
.modal-signature .modal-content { border-radius: 0; border: none; }
.modal-signature .modal-header {
    background: linear-gradient(90deg, var(--navy-accent) 0%, var(--navy) 100%);
    color: #fff;
    border: none;
}
.modal-signature .modal-title { font-family: var(--serif); letter-spacing: 1px; }
.modal-signature .btn-close { filter: brightness(0) invert(1); }
.modal-signature label { font-family: var(--label); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.modal-signature .form-control { border-radius: 0; }
.modal-signature .btn-signature { width: 100%; justify-content: center; }
.enquire-note { text-align: center; font-size: 13px; color: var(--body-copy); }

/* sticky mobile enquire bar */
.sticky-enquire {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    display: none;
    background: var(--navy);
    padding: 12px 16px;
    text-align: center;
}
.sticky-enquire .btn-signature { width: 100%; justify-content: center; }

/* ============================================================
   Note: no hide-then-reveal entrance animation is used here.
   Chrome pauses CSS animation/rAF timelines on backgrounded or
   unfocused tabs, which can leave opacity:0 content stuck
   invisible indefinitely — confirmed during QA. Content is
   visible by default; [data-reveal] is inert (kept as a hook
   for a future non-hiding animation if desired).
   ============================================================ */

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        max-width: 78vw;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 100px 30px;
        gap: 26px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 999;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-toggle { display: block; }
    footer.site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .intro-right { text-align: center; }
    .intro-right .section-copy { margin: 0 auto; text-align: center; }
    .connectivity-compact { grid-template-columns: 1fr; }
    .connectivity-map-wrap { height: 320px; }
}
@media (max-width: 767px) {
    .container-narrow { padding: 0 24px; }
    section { scroll-margin-top: 84px; }
    #main-header { padding: 10px 0; }
    #main-header.scrolled { padding: 8px 0; }
    .nav-toggle { font-size: 30px; line-height: 1; padding: 4px; }
    .hero {
        min-height: 0;
        height: calc(100svh - 62px);
    }
    .hero picture,
    .hero img {
        object-position: center top;
    }
    .scroll-cue { display: none; }
    .elevation-section {
        height: 170px;
        aspect-ratio: auto;
    }
    .elevation-section img {
        object-position: center top;
    }
    .intro-section { padding: 70px 0 86px; }
    .intro-brand { width: min(100%, 330px); }
    .intro-logo-symbol { width: 72px; }
    .intro-brand-name {
        font-size: 42px;
        letter-spacing: 1.4px;
    }
    .intro-home-type {
        font-size: 17px;
        letter-spacing: 1.4px;
    }
    .section-heading {
        font-size: 24px;
        line-height: 1.25;
    }
    .section-copy {
        font-size: 15px;
        line-height: 1.8;
    }
    .amenities-section { padding: 46px 0 44px; }
    .amenities-head { margin-bottom: 22px; }
    .amenities-head .section-heading {
        font-size: 25px;
        line-height: 1.35;
        margin-bottom: 18px;
    }
    .amenities-head .section-copy {
        font-size: 18px;
        line-height: 1.6;
    }
    .amenities-carousel-wrap {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        padding: 0 44px;
    }
    .amenities-prev,
    .amenities-next {
        display: none;
    }
    .amenities-swiper .swiper-slide {
        height: 270px;
        border-radius: 18px;
    }
    .feature-col {
        aspect-ratio: 16 / 9;
    }
    .feature-banner-row {
        display: none;
    }
    .unit-plans-row { padding: 34px 24px 46px; }
    .unit-plans-card .plan-image-wrap {
        height: auto;
        min-height: 0;
        margin: 0 0 18px;
    }
    .unit-plans-card .plan-image-wrap img {
        width: 100%;
        max-width: 430px;
    }
    .unit-plans-card .section-heading {
        font-size: 25px;
        line-height: 1.25;
        margin-bottom: 10px;
    }
    .plan-brochure-btn { margin-top: 18px; }
    .plan-toggle button {
        min-width: 96px;
        padding: 13px 24px;
        font-size: 13px;
    }
    .location-intro { padding: 70px 0 56px; }
    .video-tile-row { padding: 36px 16px 52px; }
    .walkthrough-video {
        max-width: none;
        aspect-ratio: 16 / 9;
        border-radius: 0;
    }
    .walkthrough-video.video-static {
        aspect-ratio: 1224 / 593;
    }
    .walkthrough-video iframe {
        background: #000;
    }
    .video-play-icon {
        width: 54px;
        height: 54px;
        font-size: 18px;
    }
    .connectivity-section { padding: 64px 0; }
    .connectivity-section .connectivity-head {
        align-items: flex-start;
        margin-bottom: 24px;
    }
    .connectivity-scroll {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
    .connectivity-scroll ul {
        padding: 18px 22px;
        border-radius: 22px;
    }
    .connectivity-scroll li {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        white-space: normal;
        line-height: 1.45;
    }
    .connectivity-scroll li span:first-child { min-width: 0; }
    .connectivity-scroll li span:last-child {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .connectivity-scroll li span:last-child::before { content: ""; }
    .connectivity-map-wrap { height: 260px; }
    footer.site-footer .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    footer.site-footer { padding: 64px 0 32px; }
    .legacy-section { padding: 58px 0 70px; }
    .legacy-section .container-narrow { padding: 0 18px; }
    .legacy-head { gap: 18px; margin-bottom: 26px; }
    .legacy-head .mittal-logo { height: 38px; }
    .legacy-head .eyebrow { font-size: 12px; line-height: 1.4; }
    .legacy-stats-row { gap: 24px; margin-bottom: 24px; }
    .legacy-badge-img { max-width: 220px; }
    .legacy-numbers-img { max-width: 330px; }
    .legacy-section .section-copy {
        font-size: 10.5px;
        line-height: 1.9;
        letter-spacing: 0.15px;
    }
    .legacy-map-row { margin-top: 56px; }
    .sticky-enquire {
        display: block;
        padding: 10px 16px;
    }
    .sticky-enquire .btn-signature { padding: 13px 20px; }
    body { padding-bottom: 58px; }
    .force-break { display: none; }
    .location-intro .section-heading {
        max-width: 340px;
        font-size: 24px;
        line-height: 1.35;
        word-spacing: 2px;
    }
    .site-logo { padding: 0; }
    .site-logo img { height: 46px; }
    .map-modal .modal-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 10px;
        min-height: 74px;
        padding: 10px 14px;
    }
    .map-modal .modal-title {
        font-size: 17px;
        line-height: 1.15;
        letter-spacing: 0;
    }
    .btn-map-open {
        margin-left: 0;
        font-size: 9px;
        line-height: 1.25;
        gap: 4px;
        max-width: 82px;
    }
    .map-modal .btn-close {
        width: 34px;
        height: 34px;
        padding: 0;
        margin: 0;
    }
    .map-modal .modal-body {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex: 1 1 auto;
        height: auto;
        min-height: 0;
        overflow: hidden;
        padding: 10px;
    }
    .map-modal .modal-body img {
        display: block;
        width: 100% !important;
        height: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
    }
}
@media (max-width: 480px) {
    .elevation-section { height: 150px; }
    .amenities-swiper .swiper-slide { height: 250px; }
    .amenities-carousel-wrap { padding: 0 42px; }
    .unit-plans-card .plan-image-wrap img { max-width: 360px; }
}
