/* ==========================================
   Shakuntal Alentia — Design Tokens
   Palette: warm ivory & cream base, blooming gold + terracotta accents,
   with a few rich espresso-dark bands for contrast — "Your Private Earth"
========================================== */
:root {
    /* Light (primary) surfaces */
    --bg: #FBF4E6;
    --bg-alt: #F2E4C8;
    --surface: #FFFFFF;
    --surface-2: #F8EEDC;
    --surface-line: rgba(150, 108, 40, 0.24);

    /* Dark accent-band surfaces */
    --dark: #201709;
    --dark-alt: #2A1E10;
    --dark-line: rgba(228, 185, 104, 0.22);

    /* Gold / terracotta accents */
    --gold: #C9973A;
    --gold-light: #E7BE6C;
    --gold-dim: #8C6725;
    --terracotta: #C06A3A;
    --terracotta-deep: #8A4423;

    /* Text */
    --ink: #2B2013;
    --ink-muted: #5E5136;
    --ink-muted-2: #8C7C5C;
    --on-dark: #FBF4E6;
    --on-dark-muted: #E3D3B0;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --radius: 3px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
    scroll-behavior: smooth;
}

html, body { max-width: 100%; overflow-x: hidden; }

body {
    background-color: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--ink);
}

p {
    color: var(--ink-muted);
    font-weight: 300;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}

.eyebrow-dark { color: var(--terracotta-deep); }
.eyebrow-dark::before { background: var(--terracotta-deep); }

.section {
    padding: 100px 7% 90px;
    position: relative;
    text-align: center;
    background: var(--bg);
}

/* Rich dark accent band — used sparingly for rhythm & contrast */
.section-dark {
    background: var(--dark);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--on-dark); }
.section-dark p, .section-dark .section-subtitle { color: var(--on-dark-muted); }
.section-dark .eyebrow { color: var(--gold-light); }
.section-dark .eyebrow::before, .section-dark .eyebrow::after { background: var(--gold-light); }
.section-dark .fine-print { color: var(--on-dark-muted); opacity: 0.75; }

.section > .eyebrow {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
}
.section > .eyebrow::before,
.section > .eyebrow::after {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}
.eyebrow-dark::before, .eyebrow-dark::after { background: var(--terracotta-deep); }

.section h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    max-width: 760px;
    margin: 0 auto 18px;
}

.section-subtitle {
    max-width: 640px;
    font-size: 17px;
    margin: 0 auto 46px;
    color: var(--ink-muted);
}

.fine-print {
    font-size: 12.5px;
    color: var(--ink-muted-2);
    margin: 22px auto 0;
    max-width: 640px;
    text-align: center;
}

/* About section keeps a left-aligned editorial column (two-column layout) */
.about-copy, .about-copy h2, .about-copy .section-subtitle {
    text-align: left;
    margin-left: 0;
}
.about-copy .eyebrow {
    display: inline-flex;
    margin-left: 0;
}
.about-copy .eyebrow::after { display: none; }

/* Organic divider (garden-path motif) */
.path-divider {
    width: 100%;
    height: 46px;
    display: block;
}
.path-divider svg { width: 100%; height: 100%; display: block; }

/* ==========================================
   Navbar
========================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5%;
    background: rgba(32, 23, 9, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--dark-line);
    position: sticky;
    top: 0;
    z-index: 500;
}

.logo-lockup { display: flex; align-items: center; gap: 12px; }
.logo-mark { height: 58px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
    font-family: var(--font-display);
    font-size: 19px;
    letter-spacing: 0.06em;
    color: var(--gold-light);
}
.logo-text em {
    font-style: normal;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--on-dark-muted);
    transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
    padding: 11px 22px;
    border: 1px solid var(--gold);
    color: var(--gold-light) !important;
    border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold); color: var(--dark) !important; }

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--on-dark);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-alt);
    padding: 10px 7%;
    border-bottom: 1px solid var(--dark-line);
}
.mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--dark-line);
    font-size: 15px;
    color: var(--on-dark-muted);
}
.mobile-menu.active { display: flex; }

/* ==========================================
   Hero
========================================== */
.hero-container {
    position: relative;
    height: 100svh;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-img, .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video { z-index: 1; }
.hero-img { z-index: 0; }

.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(32,23,9,0.62) 0%, rgba(32,23,9,0.34) 42%, rgba(32,23,9,0.02) 62%),
        linear-gradient(180deg, rgba(32,23,9,0.32) 0%, rgba(32,23,9,0.02) 26%, rgba(32,23,9,0.12) 55%, rgba(32,23,9,0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 7% 90px;
    width: 100%;
    max-width: 620px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content .eyebrow { color: var(--gold-light); }
.hero-content .eyebrow::after { display: none; }

.hero-content h1 {
    color: var(--on-dark);
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.14;
    max-width: 560px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero-sub {
    margin-top: 18px;
    font-size: clamp(14px, 1.3vw, 17px);
    color: var(--on-dark);
    max-width: 480px;
    opacity: 0.94;
    text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.hero-actions { display: flex; justify-content: flex-start; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.btn-primary {
    background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--terracotta) 130%);
    color: var(--dark);
    border: none;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    border-radius: var(--radius);
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-2px); }

.btn-ghost {
    padding: 16px 26px;
    border: 1px solid rgba(251,244,230,0.5);
    color: var(--on-dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-ghost:hover { border-color: var(--gold-light); background: rgba(231,190,108,0.14); }

/* Ticker */
.ticker-strip {
    background: linear-gradient(90deg, var(--gold), var(--terracotta));
    overflow: hidden;
    white-space: nowrap;
    padding: 13px 0;
    position: relative;
    z-index: 4;
}
.ticker-track {
    display: inline-flex;
    gap: 18px;
    animation: ticker 32s linear infinite;
}
.ticker-track span {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--on-dark);
    text-transform: uppercase;
}
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
}

/* ==========================================
   About
========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: start;
    text-align: left;
}

.about-copy p { margin-bottom: 18px; font-size: 16px; }
.about-copy p:last-child { margin-bottom: 0; }

.usp-list { list-style: none; border-top: 1px solid var(--surface-line); }
.usp-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--surface-line);
    font-size: 15px;
    color: var(--ink);
}
.usp-mark {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: var(--gold);
}
.usp-mark svg { width: 100%; height: 100%; }

/* ==========================================
   Statement / quote band
========================================== */
.statement-band {
    position: relative;
    padding: 130px 7%;
    background-size: cover;
    background-position: center;
    text-align: center;
    isolation: isolate;
}
.statement-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(32,23,9,0.82), rgba(32,23,9,0.62));
    z-index: -1;
}
.statement-band blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(22px, 3.4vw, 38px);
    line-height: 1.35;
    max-width: 880px;
    margin: 0 auto;
    color: var(--on-dark);
}
.statement-band .seal { margin: 0 auto 26px; width: 46px; height: 46px; color: var(--gold-light); }
.statement-band .seal svg { width: 100%; height: 100%; }

/* ==========================================
   Configurations
========================================== */
.config-table-wrapper { position: relative; max-width: 900px; margin: 0 auto; }
.config-table { border-top: 1px solid var(--dark-line); }
.config-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    padding: 18px 4px;
    border-bottom: 1px solid var(--dark-line);
    font-size: 15px;
    text-align: center;
    color: var(--on-dark);
}
.config-head {
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--gold-light);
}
.config-row:not(.config-head) span:first-child { font-family: var(--font-display); font-size: 17px; color: var(--gold-light); }
.config-luxury { background: rgba(231,190,108,0.08); }

.config-table-wrapper.locked .config-table { filter: blur(7px); user-select: none; pointer-events: none; }
.config-lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(32,23,9,0) 0%, rgba(32,23,9,0.65) 40%);
    padding: 20px;
}
.lock-icon { font-size: 26px; }
.config-lock-btn {
    background: linear-gradient(120deg, var(--gold-light), var(--gold));
    color: var(--dark);
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.03em;
    border-radius: var(--radius);
    cursor: pointer;
}
.config-lock-overlay p { max-width: 380px; font-size: 13.5px; color: var(--on-dark-muted); }

/* ==========================================
   Amenities
========================================== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.amenity-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}
.amenity-card.large { grid-column: span 2; grid-row: span 2; }
.amenity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.amenity-card:hover img { transform: scale(1.06); }
.amenity-label {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 18px 20px;
    background: linear-gradient(0deg, rgba(20,14,6,0.92), rgba(20,14,6,0));
}
.amenity-label h3 { font-size: 17px; margin-bottom: 3px; color: var(--on-dark); }
.amenity-label p { font-size: 12.5px; color: var(--on-dark-muted); margin: 0; }

.amenity-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}
.amenity-tags span {
    padding: 10px 18px;
    border: 1px solid var(--surface-line);
    background: var(--surface);
    border-radius: 30px;
    font-size: 13px;
    color: var(--ink-muted);
}

/* ==========================================
   Gallery Slider
========================================== */
.slider-container { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--dark); }
.slider-track { display: flex; }
.slider-track img { width: 100%; flex-shrink: 0; height: 60vh; min-height: 380px; object-fit: contain; background: var(--dark); }
.slider-container .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(32,23,9,0.55);
    border: 1px solid rgba(251,244,230,0.35);
    color: var(--on-dark);
    width: 46px; height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    backdrop-filter: blur(4px);
}
.slider-container .prev { left: 18px; }
.slider-container .next { right: 18px; }
.slider-container .btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ==========================================
   Exclusive gallery (lead-gated)
========================================== */
.exclusive-gallery-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.exclusive-card { border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--surface-line); }
.exclusive-card .image-wrapper { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--dark); }
.exclusive-card img { width: 100%; height: 100%; object-fit: contain; }
.exclusive-card.locked img { filter: blur(8px) brightness(0.6); }
.lock-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.lock-overlay span {
    padding: 12px 20px;
    border: 1px solid var(--gold-light);
    color: var(--on-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 30px;
    background: rgba(32,23,9,0.55);
}
.exclusive-info { padding: 16px 18px 20px; }
.exclusive-info h4 { font-size: 16px; margin-bottom: 6px; color: var(--ink); }
.exclusive-info p { font-size: 13px; margin: 0; color: var(--ink-muted); }

/* ==========================================
   Modal
========================================== */
.form-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 14, 6, 0.78);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-card {
    background: var(--surface);
    border: 1px solid var(--surface-line);
    padding: 40px 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(20,14,6,0.35);
}
.modal-card h3 { font-size: 24px; margin-bottom: 12px; color: var(--ink); }
.modal-card p { font-size: 14px; margin-bottom: 26px; color: var(--ink-muted); }
.modal-card form { display: flex; flex-direction: column; gap: 14px; }
.close-modal {
    background: none;
    border: none;
    color: var(--ink-muted-2);
    margin-top: 16px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
}

/* ==========================================
   Video
========================================== */
.video-wrap {
    max-width: 940px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--dark-line);
}
.video-wrap video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: contain; background: #000; }

/* ==========================================
   Forms (shared)
========================================== */
.form-container { max-width: 520px; margin: 0 auto; text-align: left; }
input[type="text"], input[type="tel"], input[type="email"] {
    width: 100%;
    padding: 16px 18px;
    background: var(--surface);
    border: 1px solid var(--surface-line);
    color: var(--ink);
    font-size: 15px;
    border-radius: var(--radius);
}
input::placeholder { color: var(--ink-muted-2); }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

form { display: flex; flex-direction: column; gap: 16px; }

.submit-btn {
    background: linear-gradient(120deg, var(--gold-light), var(--gold) 60%, var(--terracotta) 130%);
    color: var(--dark);
    border: none;
    padding: 17px;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: 0.03em;
    border-radius: var(--radius);
    cursor: pointer;
    transition: filter 0.2s ease;
}
.submit-btn:hover { filter: brightness(1.06); }
.submit-btn:disabled { opacity: 0.6; cursor: default; }

/* Modal form inputs sit on white card — keep them light too */
.modal-card input[type="text"], .modal-card input[type="tel"] { background: var(--surface-2); }

/* ==========================================
   Location
========================================== */
.section-map { background: var(--bg-alt); }
.location-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 0 auto 36px;
    max-width: 900px;
}
.location-highlights div {
    padding: 16px 18px;
    background: var(--surface);
    border: 1px solid var(--surface-line);
    font-size: 14px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--ink);
}
.map-container { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--surface-line); max-width: 1100px; margin: 0 auto; }

/* ==========================================
   Floating widget
========================================== */
.footer-contact-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 400;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-icon-link, .whatsapp-icon-link {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 22px rgba(20,14,6,0.35);
}
.contact-icon-link { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--dark); }
.whatsapp-icon-link { background: #3D8A5F; color: #fff; }
.contact-icon-link svg, .whatsapp-icon-link svg { width: 24px; height: 24px; }

/* ==========================================
   Footer
========================================== */
footer { background: var(--dark); padding: 70px 7% 30px; border-top: 1px solid var(--dark-line); text-align: center; }
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-bottom: 34px;
    border-bottom: 1px solid var(--dark-line);
    max-width: 700px;
    margin: 0 auto;
}
.footer-title {
    font-family: var(--font-display);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
    color: var(--gold-light);
}
.footer-title p, .footer-inner p { color: var(--on-dark-muted); }
.footer-logo-mark { height: 46px; width: auto; }
.footer-contact a { color: var(--gold-light); font-weight: 700; }
.footer-rera { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 30px 0; }
.rera-qr-img { width: 220px; max-width: 60vw; height: auto; border-radius: var(--radius); background: #fff; padding: 6px; }
.footer-legal { font-size: 11.5px; color: var(--on-dark-muted); opacity: 0.8; line-height: 1.7; margin: 14px auto 0; max-width: 900px; }
.footer-links { margin-top: 16px; font-size: 12px; }
.footer-links a { text-decoration: underline; color: var(--on-dark-muted); }

/* ==========================================
   Page banner (sub-pages)
========================================== */
.page-banner {
    position: relative;
    padding: 160px 7% 60px;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(32,23,9,0.7), rgba(32,23,9,0.9));
    z-index: -1;
}
.page-banner-title { font-size: clamp(30px, 4.4vw, 50px); color: var(--on-dark); }
.page-cta { text-align: center; }
.page-cta h2 { margin: 0 auto 24px; }

/* ==========================================
   Responsive
========================================== */
@media (max-width: 980px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
    .amenity-card.large { grid-column: span 2; grid-row: span 1; }
    .exclusive-gallery-scroll { grid-template-columns: repeat(2, 1fr); }
    .location-highlights { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .nav-links { display: none; }
    .hamburger-btn { display: block; }
    .section { padding: 70px 6% 60px; }

    /* Mobile hero: show the full banner image (no side-cropping) instead of
       forcing a full-screen height, which was cutting the towers off on phones.
       Image now sits at its own natural aspect ratio; the caption sits below
       it on a matching dark backdrop, like the reference site. Desktop hero
       above (100svh + cover) is untouched. */
    .hero-container {
        height: auto;
        min-height: 0;
        display: block;
    }
    .hero-media {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 1717 / 916;
    }
    .hero-img, .hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    .hero-scrim { position: absolute; inset: 0; }
    .hero-content {
        position: relative;
        background: var(--dark);
    }

    .hero-content { padding: 24px 6% 44px; max-width: 100%; }
    .hero-content h1, .hero-content .hero-sub { max-width: 100%; }
    .hero-scrim {
        background:
            linear-gradient(180deg, rgba(32,23,9,0.3) 0%, rgba(32,23,9,0.08) 22%, rgba(32,23,9,0.26) 50%, rgba(32,23,9,0.94) 100%);
    }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; text-align: center; }
    .amenities-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .amenity-card.large { grid-column: span 1; grid-row: span 1; }
    .exclusive-gallery-scroll { grid-template-columns: 1fr; }
    .config-row { grid-template-columns: 1.1fr 1fr 1fr; font-size: 13px; padding: 14px 2px; }
    .location-highlights { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; }
    .footer-contact-widget { right: 14px; bottom: 14px; }
    .contact-icon-link, .whatsapp-icon-link { width: 48px; height: 48px; }
    .slider-track img { height: 42vh; min-height: 260px; }
    .video-wrap video { aspect-ratio: 4/5; object-fit: contain; }
    .statement-band { padding: 90px 6%; }
}

@media (max-width: 420px) {
    .config-row { grid-template-columns: 1fr 0.8fr 0.9fr; font-size: 12px; }
}
