/* =====================================================================
   THE AURELIA RESIDENCES — landing page styles (pixel replica)
   Design tokens, layout and components. Edit the variables below to
   re-theme the whole page in one place. Images live in ../images/.
   ===================================================================== */

:root {
  /* Fonts */
  --serif: 'Playfair Display', Georgia, serif;   /* display headings */
  --sans:  'Inter', system-ui, sans-serif;       /* UI / labels / buttons */
  --body:  'Poppins', system-ui, sans-serif;     /* paragraphs / lists */

  /* Brand colours */
  --gold:       #c8a96a;
  --green-dark: #004d1a;   /* primary green */
  --green:      #395531;   /* forest green */
  --olive:      #5a754e;   /* olive accent */
  --ink:        #212529;   /* body text */
  --white:      #ffffff;
  --off-white:  #c2c7c2;   /* off-white alternative */

  /* Backgrounds (swap these textures for your own) */
  --bg-hero:   url('../images/banner_bg.webp');
  --bg-header: url('../images/header_bg.webp');
  --bg-dark:   url('../images/amenities_bg.webp');

  --wrap: 94%;
}

/* ----------------------------- reset ----------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; overflow-x: hidden; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; }

.section { padding: 80px 0; }

/* Reveal-on-scroll (only active when JS adds .js — content stays visible otherwise) */
.js .section { opacity: 0; transition: opacity .7s ease; }
.js .section.is-visible { opacity: 1; }

/* --------------------------- typography -------------------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 5px;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  padding-bottom: 7px;
  margin-bottom: 40px;
  width: fit-content;
}

.eyebrow--light { color: var(--white); border-bottom-color: var(--white); }

.eyebrow-heading {
  font-size:.68rem;letter-spacing:.32em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1rem;font-weight:500;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 42px;
  line-height: 52px;
  letter-spacing: 3px;
  color: #000;
  margin-bottom: 50px;
}
.section-title--light { color: var(--white); }

.sub-text-white {
  font-size: 14px;
  color: var(--off-white);
  font-weight: 300;
  margin-bottom: 56px;
}

.sub-text {
  font-size: 13px;
  margin-bottom: 56px;
}
.lead {
  font-family: var(--body);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  color: #000;
}

/* ----------------------------- buttons --------------------------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 34px;
  border: 1px solid #000;
  background: var(--white);
  color: #000;
  margin-top: 25px;
  transition: all .3s ease;
}
.btn--light:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.btn--outline-light { background: transparent; border-color: #fff; color: #fff; }
.btn--outline-light:hover { background: #fff; border-color: #fff; color: var(--green); }
.btn--solid { background: var(--green-dark); border-color: #fff; color: #fff; }
.btn--solid:hover { background: #fff; border-color: var(--green-dark); color: var(--green-dark); }
.btn--block { width: 100%; }

.rule { width: 90%; height: 1px; background: #000; margin: 50px auto 0; }
.rule--light { background: #fff; }
.rule--tight { margin-top: 10px; }

.float-right { margin-left: auto; justify-content: flex-end; }

/* ============================ HEADER ============================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  padding: 20px 80px 15px;
  border-bottom: 1px solid #ffffff38;
  transition: background .3s ease;
}
.site-header.is-scrolled {
  background-image: var(--bg-header);
  background-size: cover;
  background-position: right;
}
.site-header__row { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; flex-direction: column; line-height: 1; color: #fff; }
.brand__name { font-family: var(--serif); font-size: 30px; letter-spacing: 4px; }
.brand__sub  { font-family: var(--sans); font-size: 11px; letter-spacing: 6px; margin-top: 4px; }
.overview-video { position: relative; width: 100%; line-height: 0; }
.overview-video__poster { width: 100%; height: auto; display: block; object-fit: cover; }
.overview-video__media { width: 100%; height: auto; display: none; object-fit: cover; }
.overview-video__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(0, 77, 26, .85); color: #fff;
  display: flex; align-items: center; justify-content: center;
  padding-left: 5px; transition: background .2s, transform .2s;
}
.overview-video__play:hover { background: var(--green-dark); transform: translate(-50%, -50%) scale(1.06); }
/* When playing: hide poster + button, show video */
.overview-video.is-playing .overview-video__poster,
.overview-video.is-playing .overview-video__play { display: none; }
.overview-video.is-playing .overview-video__media { display: block; }

.brand--logo { flex-direction: row; align-items: center; }
.brand--logo img { height: 56px; width: auto; display: block; }

.site-header__actions { display: flex; align-items: center; gap: 40px; }
.header-reserve {
  color: #fff; text-transform: uppercase; letter-spacing: 2px; font-weight: 500; font-size: 15px;
}
.header-call { color: #fff; display: flex; align-items: center; gap: 8px; }
.header-call span { font-size: 15px; letter-spacing: 1px; font-weight: 500; white-space: nowrap; }
.header-menu { display: flex; flex-direction: column; gap: 5px; width: 33px; }
.header-menu span { height: 2px; width: 100%; background: #fff; display: block; }

/* ============================ SIDE MENU ============================ */
.side-menu {
  position: fixed; top: 0; right: -100%;
  width: 100%; height: 100%;
  background-image: var(--bg-dark);
  background-size: cover; background-position: right;
  box-shadow: -3px 0 10px rgba(0,0,0,.5);
  transition: right .35s ease;
  z-index: 1100; color: #fff;
  padding: 10px 20px;
  overflow-y: auto;
}
.side-menu.is-open { right: 0; }
.side-menu__top {
  display: flex; align-items: center; justify-content: space-between;
  width: 94%; margin: 30px auto 0;
}
.side-menu__close {
  border: 1px solid #fff; border-radius: 50px; color: #fff;
  width: 46px; height: 46px; font-size: 26px; line-height: 1;
}
.side-menu__body {
  display: flex; width: 94%; margin: 20px auto 0;
  border-top: 1px solid #ffffff3c; border-bottom: 1px solid #ffffff3c;
  padding: 30px 0;
}
.side-menu__links { display: flex; justify-content: space-between; width: 50%; padding-left: 60px; position: relative; }
.side-menu__links::after {
  content: ""; position: absolute; top: 0; right: 0; width: 1px; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 45%, rgba(255,255,255,0) 100%);
}
.side-menu__links ul { width: 50%; display: flex; flex-direction: column; gap: 0; }
.side-menu__links li { border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 15px; margin-bottom: 15px; }
.side-menu__links li:last-child { border-bottom: none; }
.side-menu__links a { font-family: var(--serif); font-size: 36px; letter-spacing: 1px; }
.side-menu__builder { width: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.side-menu__builder .builder-mark { color: #fff; font-size: 26px; letter-spacing: 4px; }
.side-menu__builder p {
  font-family: var(--body); font-weight: 300; font-size: 12px; line-height: 22px;
  letter-spacing: 1px; text-align: justify; width: 80%; margin-top: 30px; color: #fff;
}
.side-menu__rera { text-align: center; margin-top: 30px; padding: 0 60px; }
.side-menu__rera p { font-size: 12px; letter-spacing: 1px; color: #fff; text-transform: uppercase; }

.brand--light .brand__name { font-size: 26px; }

/* ============================ HERO ============================ */
.hero-band {
  background-image: var(--bg-hero);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  min-height: 405px;
  padding: 0 80px;
  color: #fff;
  font-family: var(--body);
}
.hero-band__eyebrow {
  font-size:.68rem;letter-spacing:.32em;text-transform:uppercase;
  color:var(--gold);font-weight:500;
  padding-top: 170px; margin-bottom:1rem;
}
.hero-band__title {
  font-family: var(--serif); font-weight: 500;
  font-size: 42px; letter-spacing: 3px; color: #fff;
  padding-top: 1px; display: inline-block;
}
.hero-band__subtitle {
  font-family: var(--body); font-weight: 300; color: #fff;
  font-size: 16px; letter-spacing: 2px; margin-top: 14px;
}
.hero-band__rule { margin-top: 34px; width: 100%; height: 1px; background: #fff; }
.hero-band__facts {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; color: #fff;
  font-size: 18px; letter-spacing: 3px; text-transform: uppercase; font-weight: 300;
}
.hero-band__facts p { margin: 0; }
.fact__divider { width: 1px; height: 40px; background: #fff; }

.hero-photo { width: 100%; }
.hero-photo__img { width: 100%; height: auto; object-fit: cover; }

/* ===================== FLOATING QUICK FORM ===================== */
.quick-form {
  position: fixed; right: 0; bottom: 0; width: 22%;
  z-index: 1000;
  background-image: var(--bg-dark);
  background-size: cover; background-position: center;
  display: none;            /* shown by JS on scroll (desktop) */
}
.quick-form__head { padding: 16px 18px; cursor: pointer; }
.quick-form__head h2 {
  font-family: var(--serif); font-weight: 600; font-size: 24px; letter-spacing: 3px;
  color: #fff; display: flex; justify-content: space-between; align-items: center;
}
.quick-form__close { font-size: 26px; line-height: 1; }
.quick-form__body { padding: 0 18px 18px; }

/* shared lead form fields */
.lead-form { display: flex; flex-direction: column; }
.quick-form .lead-form input[type=text],
.quick-form .lead-form input[type=tel],
.quick-form .lead-form input[type=email] {
  background: transparent; border: 1px solid rgba(255,255,255,.45);
  color: #fff; padding: 0 12px; height: 45px; border-radius: 0;
  letter-spacing: .8px; margin-bottom: 10px; font-family: var(--body); font-size: 13px;
}
.quick-form .lead-form .lead-form__message { height: 70px; }
.quick-form .lead-form input::placeholder { color: #fff; }
.consent { display: flex; gap: 8px; align-items: flex-start; margin-top: 14px; }
.consent input { width: 14px; height: 14px; margin-top: 3px; flex: none; }
.consent span { font-family: var(--body); font-weight: 300; font-size: 11px; letter-spacing: 1px; line-height: 18px; color: #fff; }
.lead-form__status { font-family: var(--body); font-size: 13px; margin-top: 10px; min-height: 18px; }

/* ============================ OVERVIEW ============================ */
.overview__title { width: 70%; }
.overview__lead { width: 80%; margin-bottom: 22px; }

/* ===================== IMAGE COMPARE SLIDER ===================== */
.compare { position: relative; width: 100%; aspect-ratio: 24/9; overflow: hidden; user-select: none; }
.compare__img { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.compare__img img { width: 100%; height: 650px; object-fit: cover; }
.compare__img--overlay { width: 85%; }            /* width is updated by JS handle */
.compare__handle {
  position: absolute; top: 0; left: 85%; height: 100%; width: 5px; transform: translateX(-50%);
  background: #fff; cursor: ew-resize; z-index: 9;
}
.compare__handle::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 90px; height: 90px; border-radius: 50%; background: #fff;
}
.compare__handle::after {
  content: "\2194"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 1; color: var(--green); font-size: 22px;
}

/* ============================ AMENITIES ============================ */
.amenities {
  background-image: var(--bg-dark);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.amenities__head { padding-left: 30px; padding-right: 30px; }
.amenities__title { color: #fff; width: 73%; }
.amenities__photos { display: flex; flex-wrap: wrap; align-items: center; }
.amenities__photo { width: 33.3333%; height: 339px; object-fit: cover; }
.amenities__grid {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 80px; margin-top: 30px; color: #fff;
}
.amenities__col { flex: 1; }
.amenities__col--title { flex: 0 0 25%; }
.amenities__col--title h4 {
  font-family: var(--serif); font-weight: 400; font-size: 40px; line-height: 60px;
  letter-spacing: 3px; text-align: center; text-transform: uppercase;
}
.amenities__list { font-family: var(--body); font-size: 14px; letter-spacing: 1px; text-align: center; line-height: 30px; }
.amenities__cta { display: block; margin: 40px auto 0; }

/* ===================== HIGHLIGHTS INTRO ===================== */
.highlights-intro .section-title { width: 70%; margin-bottom: 80px; }

/* ============================ HIGHLIGHTS ============================ */
.highlights .section-title { width: 70%; margin-bottom: 80px; }
.highlights__area { padding-left: 80px; }
.tabs { display: flex; border: none; margin-bottom: 35px; }
.tabs__btn {
  flex: 1; text-align: center;
  font-family: var(--body); font-weight: 300; font-size: 20px; line-height: 25px; letter-spacing: 1px;
  color: #000; padding: 8px 4px;
}
.tabs__btn.is-active { color: var(--olive); font-weight: 500; }
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; }

/* slider */
.slider { overflow: hidden; }
.slider__track {
  display: flex; gap: 30px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.slider__track::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 38%; scroll-snap-align: start; position: relative; }
.slide img { width: 100%; height: 410px; object-fit: cover; }
.slide__caption {
  position: absolute; inset: auto 0 0 0; padding: 180px 20px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(6,6,6,.68) 80%, #000 100%);
}
.slide__caption p { color: #fff; font-family: var(--body); font-weight: 300; font-size: 16px; line-height: 22px; letter-spacing: 1px; text-align: center; }

.slider__nav { position: relative; width: 130px; margin: 50px auto 0; display: flex; justify-content: space-between; }
.slider__prev, .slider__next { width: 23px; height: 23px; background-size: contain; background-repeat: no-repeat; background-position: center; }
.slider__prev { background-image: url('../images/icons/right-arrow.svg'); }
.slider__next { background-image: url('../images/icons/left-arrow.svg'); }
.highlights__cta { display: block; margin: 50px auto 0; }

/* ============================ PRICING ============================ */
.pricing {
  background-image: var(--bg-dark);
  background-size: cover; background-position: right; background-repeat: no-repeat;
  color: #fff;
}
.pricing__title { color: #fff; width: 70%; margin-bottom: 80px; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  color: #fff; font-family: var(--body); font-weight: 500; font-size: 18px; line-height: 22px;
  letter-spacing: 1px; text-align: center; text-transform: uppercase; padding: 40px 0;
  border-right: 1px solid #ffffff3b;
}
.price-table th { border-bottom: 1px solid #ffffff3b; }
.price-table tbody tr { border-bottom: 1px solid #ffffff3b; }
.price-table th:last-child, .price-table td:last-child { border-right: none; }
.price-table .btn { margin-top: 0; font-size: 14px; }

/* ============================ FLOOR PLANS ============================ */
.floor-plans__title { font-size: 36px; width: 70%; }
.floor-plans__main { width: 100%; height: 800px; object-fit: contain; margin: 30px 0 60px; }
.floor-plans__cards { display: flex; gap: 0; }
.plan-card { flex: 1; padding: 0 60px; }
.plan-card__head {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border-top: 1px solid #000; border-bottom: 1px solid #000; padding: 20px 0; margin-bottom: 30px;
}
.plan-card__head img { width: 50px; height: 50px; }
.plan-card__head h4 { font-family: var(--body); font-size: 24px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.plan-card__labels, .plan-card__views { display: grid; grid-template-columns: repeat(3,1fr); }
.plan-card__labels span {
  font-family: var(--body); font-size: 20px; line-height: 25px; letter-spacing: 1px;
  text-align: center; text-transform: uppercase; padding: 6px 0;
}
.plan-card__labels span:nth-child(2) { border-left: 1px solid #000; border-right: 1px solid #000; }
.plan-card__views { margin-top: 6px; }
.plan-card__view {
  justify-self: center; font-size: 16px; text-transform: capitalize;
  padding: 5px 8px; border-left: none; border-right: none; margin-top: 6px;
}
.plan-card__download { display: block; width: fit-content; margin: 40px auto 0; }
.floor-plans__master { width: 100%; height: 596px; object-fit: cover; margin-top: 60px; }

/* ============================ LOCATION ============================ */
.location {
  background-image: var(--bg-dark);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.location__title { color: #fff; width: 70%; }
.tabs--pills { justify-content: space-around; border-bottom: 1px solid #dee2e6; padding-bottom: 20px; margin-bottom: 0; }
.tabs--pills .tabs__btn {
  flex: none; color: #fff; font-family: var(--body); font-weight: 400; font-size: 18px;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.tabs--pills .tabs__btn.is-active { font-weight: 500; color: #fff; }
.location .tabs__panel { padding: 40px 0; border-bottom: 1px solid #dee2e6; }
.location__row { display: flex; gap: 0; }
.location__map { flex: 1; }
.location__list { flex: 1; padding-left: 48px; }
.location__list li {
  display: flex; padding: 20px 0; color: #fff; font-family: var(--body); font-weight: 400;
  font-size: 18px; line-height: 28px; letter-spacing: 1px; border-bottom: 1px solid #ffffff88;
}
.location__list li span { margin-right: 20px; }
.location__list .btn { margin-top: 25px; }

/* ============================ GALLERY ============================ */
.gallery__head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.gallery__progress-box { display: flex; align-items: center; gap: 30px; margin-top: 59px; }
.gallery__count { letter-spacing: 2px; text-transform: uppercase; color: #000; font-size: 15px; font-weight: 600; }
.gallery__progress { width: 300px; height: 2px; background: rgba(0,0,0,.22); position: relative; }
.gallery__bar { position: absolute; inset: 0 auto 0 0; width: 8.33%; height: 2px; background: #000; transition: width .4s ease; }
.gallery__carousel { position: relative; margin-top: 30px; }
.gallery__viewport { position: relative; }
.gallery__img { width: 100%; height: 559px; object-fit: cover; display: none; }
.gallery__img.is-active { display: block; }
.gallery__nav { position: absolute; top: -90px; right: 72px; display: flex; gap: 20px; }
.gallery__prev, .gallery__next {
  width: 30px; height: 30px; background: url('../images/icons/right-arrow.png') center/contain no-repeat;
}
.gallery__prev { transform: rotate(180deg); }

/* ============================ DEVELOPER ============================ */
.developer { padding-top: 0; }
.developer__title { width: 70%; }
.developer__desc { font-family: var(--body); font-weight: 400; font-size: 14px; line-height: 28px; letter-spacing: 1px; }
.developer__logo { border-top: 1px solid #000; border-bottom: 1px solid #000; padding: 18px 0; margin-top: 100px; }
.developer__logo img { height: 60px; width: auto; }
.builder-mark { font-family: var(--serif); font-size: 30px; letter-spacing: 5px; }
.builder-mark--dark { color: var(--green-dark); }

/* ============================ FOOTER ============================ */
.footer {
  background-image: var(--bg-dark);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  padding: 80px 0 0;
}
.footer__title { color: #fff; text-transform: capitalize; }
.footer-form__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0 16px; }
.footer-form__full { grid-column: 1 / -1; }
.footer-form input {
  background: transparent; border: 1px solid #fff; border-radius: 0; color: #fff;
  padding: 22px 18px; margin-bottom: 16px; width: 100%; font-family: var(--body); letter-spacing: 1px;
}
.footer-form input::placeholder { color: #fff; }
.footer-form .lead-form__message { height: 70px; }
.footer-form__actions { display: block; }
.footer-form__actions .btn { margin-top: 0; }
.footer-form__actions .consent { display: flex; gap: 8px; align-items: flex-start; margin-top: 18px; width: 100%; max-width: 720px; }
.footer-form__actions .consent input { flex: 0 0 auto; width: 14px; height: 14px; margin-top: 3px; }
.footer-form__actions .consent span { min-width: 0; flex: 1 1 auto; overflow-wrap: anywhere; }
.footer__rera { border-top: 1px solid #fff; border-bottom: 1px solid #fff; padding: 60px 0; margin-top: 120px; }
.footer__rera-line { color: #fff; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-family: var(--body); font-weight: 300; line-height: 22px; }
.footer__rera-line a { text-decoration: underline; }
.footer__disclaimer { margin-top: 20px; }
.footer__disclaimer p { color: #fff; font-size: 12px; font-family: var(--body); font-weight: 300; line-height: 20px; letter-spacing: 1px; text-align: left; }
.footer__copy { display: flex; justify-content: space-between; align-items: center; color: #fff; padding: 30px 0 30px; flex-wrap: wrap; gap: 8px; }
.footer__copy p:last-child { margin-right: 320px; }
@media (max-width: 991px) { .footer__copy p:last-child { margin-right: 0; } }
.footer__copy p { font-family: var(--body); font-size: 14px; letter-spacing: 1px; }
.footer__copy a { text-decoration: underline; }
.footer__links a { margin: 0 4px; }
.footer__links span { opacity: .6; }

/* ============================ MODAL ============================ */
.modal {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(0,0,0,.55);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal.is-open { display: flex; }
.modal__dialog {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  max-height: calc(100vh - 40px);
  overflow: auto;
}
.modal__close {
  position: absolute; right: 10px; top: 10px; z-index: 2;
  border: 1px solid rgba(0,0,0,.2); border-radius: 50%; width: 44px; height: 44px; font-size: 22px; color: #000;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.modal__body { padding: 30px; }
.modal__logo { display: flex; justify-content: center; margin-bottom: 20px; }
.modal__logo .builder-mark { font-size: 22px; letter-spacing: 3px; }
.modal .lead-form input {
  background: transparent; border: 1px solid #000; color: #000; border-radius: 0;
  padding: 14px 15px; font-size: 14px; min-height: 48px;
  margin-bottom: 14px; width: 100%; font-family: var(--body);
}
.modal .lead-form input::placeholder { color: #555; text-transform: uppercase; }
.modal .lead-form .consent input[type=checkbox] {
  width: 16px; min-width: 16px; height: 16px; min-height: 16px;
  margin: 3px 0 0; padding: 0; flex: none;
}
.consent--dark span { color: #000; font-size: 11px; min-width: 0; }
.modal .lead-form .consent { flex-wrap: nowrap; }
.modal__submit { width: fit-content; margin: 16px auto 0; padding: 10px 50px; }

/* ===================== MOBILE ACTION BAR ===================== */
.mobile-bar {
  position: fixed; left: 0; bottom: 0; width: 100%; z-index: 999;
  background: var(--green); color: #fff;
  display: none; align-items: center; justify-content: space-evenly; padding: 8px 4px;
}
.mobile-bar a { color: #fff; font-family: var(--body); font-weight: 300; font-size: 14px; letter-spacing: 1px; }
.mobile-bar__divider { width: 1px; height: 28px; background: rgba(255,255,255,.5); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1444px) {
  .hero-band__title { font-size: 44px; padding-top: 170px; }
  .hero-band__facts { font-size: 15px; }
  .section-title { font-size: 30px; line-height: 40px; }
  .amenities__col--title h4 { font-size: 30px; line-height: 38px; }
  .tabs__btn { font-size: 16px; }
  .price-table th, .price-table td { font-size: 16px; }
  .floor-plans__title { font-size: 30px; }
  .plan-card__head h4 { font-size: 20px; }
  .plan-card__labels span, .plan-card__view { font-size: 16px; }
  .tabs--pills .tabs__btn { font-size: 16px; }
  .location__list li { font-size: 16px; padding: 12px 0; }
  .compare { aspect-ratio: 18/9; }
}

@media (max-width: 1367px) {
  .quick-form { width: 26%; }
  .compare { aspect-ratio: 19/9; }
  .compare__img img { height: 549px; }
  .hero-band__title { font-size: 40px; padding-top: 150px; }
  .hero-band { min-height: 325px; }
  .hero-photo__img { height: 550px; }
  .hero-band__facts { font-size: 18px; }
  .section-title { font-size: 30px; line-height: 44px; }
  .slide img { height: 390px; }
  .floor-plans__main { height: 633px; }
  .floor-plans__master { height: 386px; }
  .gallery__img { height: 513px; }
  .gallery__nav { top: -67px; }
  .brand__name { font-size: 24px; }
  .developer__desc { font-size: 16px; }
  .location__list li { font-size: 16px; line-height: 22px; }
  .site-header__actions { gap: 20px; }
}

@media (max-width: 991px) {
  .site-header { padding: 14px 30px; }
  .hero-band { padding: 0 30px; }
  .highlights__area { padding-left: 30px; }
  .amenities__grid { padding: 0 30px; }
  .quick-form { width: 100%; }
  .slide { flex: 0 0 60%; }
}

@media (max-width: 767px) {
  .section { padding: 40px 0; }
  .wrap { max-width: 90%; }
  .site-header { padding: 12px 20px; }
  .header-reserve, .header-call { display: none; }
  .brand__name { font-size: 20px; }
  .brand__sub { font-size: 9px; letter-spacing: 4px; }

  .hero-band { padding: 30px 14px 0; min-height: 360px; text-align: center; }
  .hero-band__title { font-size: 32px; line-height: 44px; padding-top: 90px; letter-spacing: 2px; }
  .hero-band__facts { flex-direction: column; gap: 8px; font-size: 14px; margin-top: 22px; }
  .fact__divider { display: none; }
  .hero-photo__img { height: 200px; }

  .section-title { width: 100% !important; font-size: 20px !important; line-height: 28px; margin-bottom: 20px; letter-spacing: 2px; }
  .eyebrow { font-size: 12px; letter-spacing: 3px; margin-bottom: 20px; }
  .overview__title, .overview__lead { width: 100%; }

  .compare { aspect-ratio: auto; height: 220px; }
  .compare__img img { height: 220px; }

  .amenities__head { padding: 0; }
  .amenities__photo { width: 100%; height: auto; }
  .amenities__photo:not(:first-child) { display: none; }
  .amenities__grid { flex-direction: column; padding: 0; gap: 8px; }
  .amenities__col, .amenities__col--title { flex: 1 1 100%; width: 100%; }
  .amenities__col--title h4 { font-size: 26px; letter-spacing: 2px; }

  .highlights__area { padding: 0; }
  .tabs { flex-wrap: wrap; }
  .tabs__btn { flex: 0 0 50%; font-size: 12px; line-height: 18px; }
  .tabs__btn.is-active { color: #000; font-weight: 600; }
  .slide { flex: 0 0 85%; }
  .slide img { height: 250px; }
  .slide__caption { padding: 120px 16px 16px; }
  .slider__nav { width: 90px; margin-top: 40px; }
  .highlights__cta { margin-top: 50px; }

  /* pricing → cards */
  .pricing { padding: 40px 0; }
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tbody tr {
    border: 1px solid #fff; border-radius: 10px; padding: 16px; margin-bottom: 24px;
    background: rgba(255,255,255,.05);
  }
  .price-table td { border: none; padding: 8px 0; font-size: 16px; text-transform: none; }
  .price-table td::before { content: attr(data-label) ": "; font-weight: 600; }
  .price-table td:last-child::before { content: ""; }
  .price-table .btn { margin-top: 6px; }

  .floor-plans__main { height: auto; }
  .floor-plans__cards { flex-direction: column; gap: 30px; }
  .plan-card { padding: 0; }
  .plan-card__head h4 { font-size: 16px; }
  .plan-card__head img { width: 30px; height: 30px; }
  .plan-card__labels span, .plan-card__view { font-size: 13px; }
  .floor-plans__master { height: 253px; }

  .tabs--pills { flex-wrap: wrap; gap: 10px; justify-content: center; border-bottom: none; }
  .tabs--pills .tabs__btn { font-size: 14px; padding: 10px 18px; border: 1px solid rgba(255,255,255,.4); }
  .tabs--pills .tabs__btn.is-active { background: #fff; color: #000; }
  .location .tabs__panel { padding: 20px 0; border-bottom: none; }
  .location__row { flex-direction: column; gap: 20px; }
  .location__list { padding-left: 0; }
  .location__list li { font-size: 14px; padding: 12px 0; }

  .gallery__head { flex-direction: column; align-items: flex-start; }
  .gallery__progress-box { margin-top: 12px; }
  .gallery__progress { width: 120px; }
  .gallery__img { height: 300px; }
  .gallery__nav { top: -40px; right: 0; }

  .developer__logo { margin-top: 40px; }
  .builder-mark { font-size: 22px; }

  .footer { padding: 40px 0 0; }
  .footer-form__grid { grid-template-columns: 1fr; }
  .footer-form__actions { flex-direction: column; gap: 16px; }
  .footer__rera { margin-top: 28px; padding: 28px 0; }
  .footer__copy { flex-direction: column; align-items: flex-start; }

  .mobile-bar { display: flex; }
  body { padding-bottom: 46px; }     /* room for fixed mobile bar */

  /* Modal — ensure it fits on small screens */
  .modal__dialog { max-width: 100%; margin: 0 12px; border-radius: 6px; }

  .side-menu__body { flex-direction: column; }
  .side-menu__links { width: 100%; padding-left: 20px; flex-direction: column; gap: 0; }
  .side-menu__links::after { display: none; }
  .side-menu__links ul { width: 100%; }
  .side-menu__links a { font-size: 24px; }
  .side-menu__builder { width: 100%; margin-top: 24px; }
}
