/* =========================================================
   The Olive by Ekatva — static rebuild
   Palette sampled directly from assets/img/logo.webp
   (#343E2D tile bg, #D5B46B lettering) and banner.png (#BAC2CD)
   ========================================================= */

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --container: 1380px;
  --gutter: 24px;

  --olive: #343E2D;          /* logo tile background — header bar colour */
  --olive-deep: #1E241A;
  --olive-mid: #5C6B4F;
  --gold: #D5B46B;
  --gold-soft: #E7D2A2;
  --sky: #BAC2CD;

  --ink: #1E241A;
  --body: #4A5044;
  --page: #FBFAF7;
  --tint: #F2F1EC;
  --card: #FFFFFF;
  --border: #E4E6E0;

  --shadow-sm: 0 2px 8px rgba(52, 62, 45, .07);
  --shadow: 0 10px 30px rgba(52, 62, 45, .10);
  --shadow-lg: 0 20px 50px rgba(52, 62, 45, .16);

  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 76px;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--ink);
  margin: 0 0 .6em;
  line-height: 1.22;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.45rem); font-weight: 700; }

p { margin: 0 0 1.1em; }

a { color: var(--olive); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: 980px; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--gold); color: var(--olive-deep);
  padding: 12px 20px; font-weight: 700; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

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

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-weight: 700; font-size: .93rem; letter-spacing: .02em;
  border: 0; border-radius: 999px; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn i { font-size: 1em; }

.btn-olive { background: var(--olive); color: #fff; box-shadow: var(--shadow-sm); }
.btn-olive:hover { background: var(--olive-deep); color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }

.btn-gold { background: var(--gold); color: var(--olive-deep); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-soft); color: var(--olive-deep); transform: translateY(-3px); box-shadow: var(--shadow); }

.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1FB855; color: #fff; transform: translateY(-3px); box-shadow: var(--shadow); }

/* ---------------- Header ---------------- */
/* Opaque and identical in both scroll states, set to the logo tile colour
   (#343E2D) so the logo image blends with no visible edge. */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  background: var(--olive);
  height: var(--header-h);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 4px 20px rgba(0, 0, 0, .22); }

.header-inner {
  display: flex; align-items: center; gap: 20px;
  height: var(--header-h);
}

.brand { display: block; flex: 0 0 auto; line-height: 0; }
.brand-logo {
  height: 50px; width: auto;
  border-radius: 0;          /* required: no radius on the header logo */
  background: var(--olive);
}

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  position: relative;
  display: block; padding: 9px 13px;
  color: #EDEFE9; font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  border-radius: 8px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.main-nav a::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 4px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-call {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--olive-deep);
  padding: 11px 20px; border-radius: 999px;
  font-size: .8rem; font-weight: 700; white-space: nowrap;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.header-call:hover { background: var(--gold-soft); color: var(--olive-deep); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent; border: 1px solid rgba(213, 180, 107, .5);
  color: var(--gold); font-size: 1.15rem;
  width: 44px; height: 44px; border-radius: 10px; cursor: pointer;
}

/* ---------------- Mobile drawer ---------------- */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(20, 26, 16, .55);
  opacity: 0; transition: opacity .3s var(--ease);
}
.drawer-scrim.is-open { opacity: 1; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; z-index: 960;
  width: min(340px, 86vw); height: 100%;
  background: var(--olive);
  /* clears the fixed header bar so nothing in the panel hides behind it */
  padding: calc(var(--header-h) + 46px) 24px 32px;
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform .34s var(--ease);
  box-shadow: -14px 0 40px rgba(0, 0, 0, .3);
}
.mobile-drawer.is-open { transform: translateX(0); }

.drawer-close {
  position: absolute; top: calc(var(--header-h) + 10px); right: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: var(--olive-deep);
  border: 0; font-size: 1.1rem; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.drawer-close:hover { background: var(--gold-soft); transform: rotate(90deg); }

.mobile-drawer ul { list-style: none; margin: 0 0 26px; padding: 0; }
.mobile-drawer li + li { border-top: 1px solid rgba(213, 180, 107, .18); }
.mobile-drawer a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 4px;
  color: #EDEFE9; font-weight: 600; font-size: .95rem;
}
.mobile-drawer a i { color: var(--gold); width: 20px; text-align: center; }
.mobile-drawer a:hover { color: var(--gold); }
.drawer-cta { width: 100%; justify-content: center; font-size: .85rem; }

/* ---------------- Hero ---------------- */
.hero-banner {
  position: relative;
  margin-top: var(--header-h);
  min-height: clamp(220px, 46vw, 620px);
  background: url('../img/banner.png') center / cover no-repeat var(--olive);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(52, 62, 45, .18) 0%, rgba(52, 62, 45, 0) 42%, rgba(52, 62, 45, .12) 100%);
}

/* ---------------- Sections ---------------- */
.section { padding: clamp(56px, 7vw, 104px) 0; }
.section.tinted { background: var(--tint); }

.dark-section { background: var(--olive); }
/* .dark-section p, .dark-section li { color: #D9DED3; } */

.section-title { text-align: center; margin-bottom: clamp(30px, 4vw, 52px); position: relative; }
.section-title::after {
  content: ''; display: block; width: 68px; height: 3px;
  background: var(--gold); border-radius: 3px;
  margin: 18px auto 0;
}
.section-title.on-dark { color: #fff; }

/* ---------------- About ---------------- */
.about-grid {
  display: grid; grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px, 4vw, 60px); align-items: start;
}
.about-copy h1 { margin-bottom: .25em; }
.subtitle {
  font-size: 1.05rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--olive-mid); margin-bottom: 1.2em;
}
.about-copy p { text-align: justify; }

.about-poster {
  margin: 0; background: var(--card); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.about-poster img { width: 100%; }
.about-poster figcaption {
  padding: 14px 18px; text-align: center;
  font-weight: 700; font-size: .9rem; color: var(--olive-deep);
  background: var(--gold);
}

/* ---------------- Highlights ---------------- */
.highlights-section { background: var(--olive); }
.highlights-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 48px;
}
.highlights-grid li {
  display: flex; align-items: flex-start; gap: 15px;
  padding: 15px 18px;
  color: #E6EADF; font-size: .95rem; font-weight: 500;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(213, 180, 107, .16);
  border-radius: var(--radius-sm);
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.highlights-grid li:hover {
  transform: translateY(-3px);
  background: rgba(213, 180, 107, .10);
  border-color: rgba(213, 180, 107, .45);
}
.highlights-grid i { color: var(--gold); font-size: 1.1rem; margin-top: .18em; width: 22px; text-align: center; flex: 0 0 auto; }

/* ---------------- Amenities ---------------- */
.amenities-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.amenity-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 18px;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.amenity-card img {
  height: 62px; width: auto; margin: 0 auto 16px;
  object-fit: contain;
  transition: transform .3s var(--ease);
}
.amenity-card:hover img { transform: scale(1.08); }
.amenity-card h3 { font-size: .92rem; font-weight: 600; margin: 0; color: var(--olive-deep); }

/* ---------------- Gallery ---------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 26px); }
.gallery-item {
  margin: 0; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow); background: var(--card);
}
.gallery-item img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

/* ---------------- Price plan ---------------- */
.plan-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); }
.plan-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; text-align: center; box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease);
}
.plan-card:hover { box-shadow: var(--shadow); }

/* Blur is BAKED INTO the image files themselves (see _do-not-deploy-original-floorplans/).
   The rules below are an additional deterrent only, not protection. */
.protected-media {
  position: relative; margin: 0 0 22px;
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--tint);
}
.protected-media img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  pointer-events: none;
  user-select: none; -webkit-user-select: none; -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
.protected-badge {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(52, 62, 45, .92); color: var(--gold);
  padding: 9px 18px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; letter-spacing: .03em;
  white-space: nowrap;
}

/* ---------------- Location ---------------- */
.location-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(22px, 3vw, 44px); align-items: start; }
.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); background: var(--card);
}
.map-wrap iframe { display: block; width: 100%; height: clamp(340px, 42vw, 520px); border: 0; }

.accordion { display: flex; flex-direction: column; gap: 14px; }
.acc-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.acc-item.is-open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.acc-head {
  width: 100%; display: flex; align-items: center; gap: 13px;
  padding: 17px 20px;
  background: transparent; border: 0; cursor: pointer;
  font-family: inherit; font-size: .93rem; font-weight: 700;
  color: var(--olive-deep); text-align: left;
  transition: background .22s var(--ease), color .22s var(--ease);
}
.acc-head:hover { background: var(--tint); color: var(--olive); }
.acc-head span { flex: 1 1 auto; }
.acc-lead { color: var(--gold); font-size: 1rem; width: 20px; text-align: center; }
.acc-sign {
  color: var(--olive-mid); font-size: .85rem; flex: 0 0 auto;
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.acc-item.is-open .acc-sign { transform: rotate(135deg); color: var(--gold); }

.acc-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease);
}
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
/* The grid item must carry NO padding of its own — padding survives the 0fr
   collapse and leaks a sliver of the closed panel. All padding lives inside. */
.acc-inner { overflow: hidden; min-height: 0; padding: 0; }
.acc-panel ul { list-style: none; margin: 0; padding: 0 20px 18px; }
.acc-panel ul li {
  position: relative; padding: 7px 0 7px 24px;
  font-size: .9rem; color: var(--body);
  border-bottom: 1px dashed var(--border);
}
.acc-panel ul li:last-child { border-bottom: 0; }
.acc-panel ul li::before {
  content: '\f111'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 2px; top: 11px;
  font-size: .38rem; color: var(--gold);
}
.acc-panel p { padding: 0 20px 18px; margin: 0; font-size: .93rem; }

.faq-accordion .acc-head { font-size: .97rem; padding: 19px 22px; }

/* ---------------- Video ---------------- */
.video-wrap { max-width: 420px; margin: 0 auto 34px; }
.video-frame {
  position: relative; aspect-ratio: 9 / 16;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #000;
  border: 1px solid rgba(213, 180, 107, .28);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------------- Developer ---------------- */
.developer-grid { display: grid; grid-template-columns: 200px 1fr; gap: clamp(24px, 3vw, 46px); align-items: center; }
.dev-logo { margin: 0; }
.dev-logo img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow); background: #020202;
}
.developer-grid p { text-align: justify; margin: 0; }

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 3vw, 50px); align-items: start; }
.contact-poster { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-poster img { width: 100%; }

.contact-card {
  background: var(--card); border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow-lg);
}
.contact-card h3 { margin-bottom: .4em; }
.contact-lead { color: var(--olive-deep) !important; margin-bottom: 1.6em; }

.contact-list { list-style: none; margin: 0 0 28px; padding: 0; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 15px 0; border-bottom: 1px solid var(--border);
  font-size: .93rem; color: var(--body);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list i {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--tint); color: var(--olive); font-size: .95rem;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.contact-list li:hover i { background: var(--gold); color: var(--olive-deep); }
.c-label {
  display: block; font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--olive-mid); margin-bottom: 2px;
}
.contact-list a { font-weight: 600; }

.contact-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--olive-deep); color: #C9CFC1; padding: clamp(44px, 5vw, 72px) 0 40px; }
.footer-inner { display: grid; gap: 40px; }

.footer-brand { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.footer-logo {
  height: 56px; width: auto;
  border-radius: 10px;      /* required: footer logo keeps a 10px radius */
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 20px; margin-left: auto; }
.footer-nav a { color: #C9CFC1; font-size: .84rem; font-weight: 600; }
.footer-nav a:hover { color: var(--gold); }

.disclaimer { border-top: 1px solid rgba(213, 180, 107, .18); padding-top: 32px; }
.disclaimer-title { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: .8em; }
.disclaimer p { font-size: .8rem; line-height: 1.85; color: #A9B0A0; }
.disclaimer a { color: var(--gold); word-break: break-word; }
.disclaimer a:hover { color: var(--gold-soft); }

.rera-block { display: flex; align-items: center; gap: 20px; margin-top: 26px; }
.rera-block img { width: 108px; height: 108px; border-radius: var(--radius-sm); background: #fff; padding: 6px; }
.rera-block p { margin: 0; font-size: .8rem; font-weight: 600; color: #C9CFC1; line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid rgba(213, 180, 107, .18);
  margin-top: 32px; padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: .82rem; font-weight: 500; color: #A9B0A0;
}
.footer-bottom .fa-heart {
  color: #D9534F; font-size: .82rem;
  margin: 0 6px; vertical-align: -1px;
  animation: heartbeat 1.8s ease-in-out infinite;
}
.footer-bottom a { color: var(--gold); font-weight: 700; letter-spacing: .02em; }
.footer-bottom a:hover { color: var(--gold-soft); }

@keyframes heartbeat {
  0%, 70%, 100% { transform: scale(1); }
  12%           { transform: scale(1.22); }
  26%           { transform: scale(1); }
  38%           { transform: scale(1.16); }
}

/* ---------------- Floating actions ---------------- */
.float-btn {
  position: fixed; bottom: 22px; z-index: 880;
  display: inline-flex; align-items: center; gap: 0;
  height: 56px; padding: 0; border-radius: 999px;
  color: #fff; font-weight: 700; font-size: .85rem;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .28);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), padding .28s var(--ease);
}
.float-btn i { flex: 0 0 auto; width: 56px; text-align: center; font-size: 1.45rem; line-height: 56px; }
.float-label {
  max-width: 0; opacity: 0; white-space: nowrap;
  transition: max-width .32s var(--ease), opacity .24s var(--ease), padding .32s var(--ease);
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 0, 0, .34); color: #fff; }
.float-btn:hover .float-label { max-width: 150px; opacity: 1; padding-right: 22px; }

.float-call { left: 22px; background: var(--olive); }
.float-call:hover { background: var(--olive-deep); }
.float-wa { right: 22px; background: #25D366; }
.float-wa:hover { background: #1FB855; }
.float-wa .float-label { padding-left: 0; }
.float-wa:hover .float-label { padding-left: 2px; }

/* ---------------- Scroll reveal ----------------
   Gated behind .js (set by an inline script in <head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5V02HE4BRJ"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-5V02HE4BRJ');
</script>) so that with JavaScript
   disabled or broken the content stays fully visible instead of blank. */
.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1180px) {
  .main-nav a { padding: 9px 10px; font-size: .78rem; }
  .header-call span { display: none; }
  .header-call { padding: 11px 15px; }
  .amenities-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  :root { --header-h: 68px; }
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-call { margin-left: auto; }
  .header-call span { display: inline; font-size: .76rem; }
  .brand-logo { height: 44px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-poster { max-width: 520px; margin-inline: auto; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-poster { max-width: 520px; margin-inline: auto; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  body { font-size: 15px; }
  .highlights-grid { grid-template-columns: 1fr; gap: 12px; }
  .amenities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-grid { grid-template-columns: 1fr; }
  .developer-grid { grid-template-columns: 1fr; justify-items: center; text-align: left; }
  .dev-logo { max-width: 180px; }
  .about-copy p, .developer-grid p { text-align: left; }
  .footer-nav { margin-left: 0; }
  .video-wrap { max-width: 330px; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .header-call span { display: none; }
  .header-call { padding: 10px 14px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .amenity-card { padding: 22px 12px; }
  .amenity-card img { height: 48px; }
  .contact-cta .btn { width: 100%; justify-content: center; }
  .rera-block { flex-direction: column; align-items: flex-start; }

  .float-btn { height: 52px; bottom: 16px; }
  .float-btn i { width: 52px; line-height: 52px; font-size: 1.3rem; }
  .float-btn:hover .float-label { max-width: 0; opacity: 0; padding: 0; }
  .float-call { left: 16px; }
  .float-wa { right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
