/* ==========================================================
Extra styles for index-original-copy.html
(loaded after style.css; only elements this version has)
========================================================== */

/* ---------- Shared bits ---------- */
.card-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
}

.small-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}

.lede-lg {
  font-size: 18px;
}

.lede-dark {
  color: var(--on-dark-muted);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
}

.section-head > .lede,
.section-head > .small-note {
  max-width: 380px;
}

.section-head > .heading-group {
  max-width: 720px;
}

/* ---------- Header: phone number + register button ---------- */
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* phone.svg is a white disc with the handset cut out, so invert it on the light header */
.header-phone img {
  flex-shrink: 0;
  filter: invert(1);
}

.header-phone:hover {
  color: var(--gold-deep);
}

/* ---------- 2. About: community film ---------- */
/* ---------- 2. About: project film ---------- */
.about-media .video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

/* Full 16:9 player: nothing cropped, no letterbox bars.
   Clicks go to our own sound button on top instead of the player. */
.about-media .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

/* Click anywhere on the film to turn the sound on or off */
.video-sound {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: none;
}

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

/* Badge follows the cursor (js/main.js sets its position) */
.video-sound-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(18, 18, 17, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--paper);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.video-sound:hover .video-sound-badge,
.video-sound:focus-visible .video-sound-badge {
  opacity: 1;
}

.video-sound .icon-unmuted,
.video-sound[aria-pressed="true"] .icon-muted {
  display: none;
}

.video-sound[aria-pressed="true"] .icon-unmuted {
  display: block;
}

/* Touch screens have no cursor: pin the badge in the corner instead */
@media (hover: none) {
  .video-sound {
    cursor: pointer;
  }

  .video-sound-badge {
    top: auto;
    left: 16px;
    bottom: 16px;
    opacity: 1;
    transform: none;
  }
}

/* ---------- Forms: underline fields, placeholders instead of labels ---------- */
/* Labels stay in the markup for screen readers, but are not shown */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Honeypot: hidden from people, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field input,
.field select {
  height: 46px;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid var(--line-input);
  /* shorthand, so the boxed style in style.css can't bring its background back */
  background: transparent;
  font-size: 15px;
}

.field input::placeholder {
  color: var(--text-soft);
  opacity: 1;
}

.field input:focus,
.field select:focus {
  border-bottom-color: var(--ink);
}

/* Only the dropdown gets the arrow */
.field select {
  color: var(--text-soft);
  appearance: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%235b5a55' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 2px center;
}

.field select:valid {
  color: var(--ink);
}

.phone-error {
  margin-top: 8px;
  color: #b3261e;
  font-size: 12px;
}

/* Dark form (register section) */
.form-dark .field input,
.form-dark .field select {
  border-bottom-color: rgba(250, 250, 247, .35);
  color: var(--paper);
}

.form-dark .field input {
  background: transparent;
}

.form-dark .field input::placeholder {
  color: rgba(250, 250, 247, .6);
}

.form-dark .field select {
  color: rgba(250, 250, 247, .6);
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%23bdb9ae' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 2px center;
}

.form-dark .field select option {
  background: var(--ink);
  color: var(--paper);
}

.form-dark .field select:valid {
  color: var(--paper);
}

.form-dark .field input:focus,
.form-dark .field select:focus {
  border-bottom-color: var(--gold);
}

.form-dark .phone-error {
  color: #ef9a93;
}

/* Country-code widget in the same underline style */
.iti {
  display: block;
  width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  padding-left: 0;
  background: transparent;
}

.iti--separate-dial-code .iti__selected-dial-code {
  font-size: 15px;
  color: var(--ink);
}

.form-dark .iti--separate-dial-code .iti__selected-dial-code {
  color: var(--paper);
}

.form-dark .iti__arrow {
  border-top-color: var(--on-dark-muted);
}

.iti__country-list {
  color: var(--ink);
  text-align: left;
}

/* ---------- Section spacing: one scale for the whole page ---------- */
:root {
  --section-y: 72px;
  --block-gap: 48px;
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

/* sections that continue straight from the one above */
.section-gallery,
.pt-0 {
  padding-top: 0;
}

.divider-head {
  padding-top: var(--section-y);
}

/* space between a section's heading and its content */
.stack-48,
.stack-56,
.stack-64,
.section-amenities {
  gap: var(--block-gap);
}

/* Amenities album: native scrollbar hidden, our progress line + arrows instead */
.section-amenities .album {
  padding-bottom: 0;
  scrollbar-width: none;
}

.section-amenities .album::-webkit-scrollbar {
  display: none;
}

.album-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  /* sit close under the photos rather than a full block gap away */
  margin-top: calc(24px - var(--block-gap));
}

.album-controls .track-progress {
  flex: 1;
}

.register {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

/* ---------- 1. Hero ---------- */
.hero-bottom-shade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(0deg, rgba(10, 10, 9, .85), rgba(10, 10, 9, 0));
}
.hero-v1 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-v1 .hero-inner {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  padding-top: 125px;
  min-height: 92vh;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(250, 250, 247, .28);
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 0 40px 28px;
  border-left: 1px solid rgba(250, 250, 247, .18);
}

.hero-stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stats dd {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -.03em;
}

.hero-stats dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #cfcbc0;
}

/* ---------- 2. About ---------- */
.about-media,
.map-frame {
  position: relative;
}

.stat-grid-lg dd {
  font-size: 30px;
}

.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* ---------- 3. Homes ---------- */
.fact-value-sm {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

/* Two cards, each the width of a third of the row, centred */
.home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-card {
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
}

.home-card > img,
.home-placeholder {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.home-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2926;
  color: #8f8b81;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
  padding: 40px 36px;
}

.home-body .eyebrow {
  font-size: 11px;
}

.home-body h3 {
  font-size: 30px;
  letter-spacing: -.02em;
}

.home-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-dark-muted);
}

/* Apartments have no price yet: an ask, in the same spot as the price */
.home-ask {
  margin-top: auto;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid var(--line-dark);
  background: none;
  color: var(--gold);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease;
}

.home-ask:hover {
  color: var(--gold-hover);
}

.home-price {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 22px;
  font-weight: 700;
}

/* ---------- 4. Amenities ---------- */
/* Album starts in line with the title and runs to the right edge of the screen */
.section-amenities .album {
  max-width: none;
  margin: 0;
  padding-left: calc(max(0px, (100% - 1600px) / 2) + 56px);
  padding-right: 56px;
  scroll-padding-left: calc(max(0px, (100% - 1600px) / 2) + 56px);
}

/* Title left, description in the middle, tour button right */
.amenity-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.amenity-head > .lede {
  max-width: 440px;
}

/* ---------- 5. Gallery slider ---------- */
.gallery-slider {
  display: flex;
  flex-direction: column;
  gap: 16px;
  outline: none;
}

.gs-stage {
  position: relative;
  aspect-ratio: 16 / 8;
  /* Never taller than the screen: leave room for the header and the thumbnail strip,
     so the image and thumbnails are always visible together */
  max-height: max(360px, calc(100vh - var(--header-h) - 150px));
  max-height: max(360px, calc(100svh - var(--header-h) - 150px));
  overflow: hidden;
  background: var(--ink);
}

/* Slides cross-fade; the active image slowly settles from a zoom */
.gs-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.gs-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.gs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s ease-out;
}

.gs-slide.is-active img {
  transform: scale(1);
}

.gs-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(18, 18, 17, .78) 0%, rgba(18, 18, 17, .25) 28%, rgba(18, 18, 17, 0) 50%);
  pointer-events: none;
}

.gs-caption {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--white);
  transition: opacity .35s ease, transform .35s ease;
}

.gs-caption.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.gs-cat {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.gs-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.gs-controls {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.gs-count {
  margin-right: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  color: rgba(250, 250, 247, .7);
}

.gs-current {
  color: var(--white);
}

.gs-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 250, 247, .5);
  background: rgba(18, 18, 17, .25);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.gs-btn:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

/* Autoplay timer along the bottom edge */
.gs-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 3px;
  background: rgba(250, 250, 247, .15);
}

.gs-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.gs-progress span.is-running {
  animation: gs-progress 6s linear forwards;
}

.gallery-slider.is-paused .gs-progress span {
  animation-play-state: paused;
}

@keyframes gs-progress {
  to {
    transform: scaleX(1);
  }
}

.gs-thumbs {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 8px;
}

.gs-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 0;
  border: 0;
  background: var(--ink);
  cursor: pointer;
  overflow: hidden;
}

.gs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
  filter: grayscale(1);
  transition: opacity .3s ease, filter .3s ease;
}

.gs-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.gs-thumb:hover img {
  opacity: .8;
  filter: none;
}

.gs-thumb.is-active img {
  opacity: 1;
  filter: none;
}

.gs-thumb.is-active::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .gs-slide,
  .gs-slide img,
  .gs-caption {
    transition: none;
  }

  .gs-slide img {
    transform: none;
  }
}

/* ---------- 6. Location ---------- */
.location-copy .heading-group .h2 {
  margin-bottom: 0;
}

/* ---------- 7. Payment ---------- */
/* A slim bar split 30 / 70 by width; each figure sits on its own segment */
.pay-split {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  gap: 6px;
}

.pay-dark,
.pay-light {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0 0;
  background: none;
  color: var(--ink);
  border-top: 8px solid var(--ink);
}

.pay-dark {
  border-top-color: var(--gold);
}

.pay-dark .eyebrow,
.pay-light .eyebrow {
  color: var(--gold-deep);
}

.pay-num {
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.05em;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.timeline-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
}

.timeline-head h3 {
  font-size: 32px;
  letter-spacing: -.02em;
}

.timeline-steps {
  --timeline-gap: 32px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--timeline-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-steps::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--line);
  z-index: 1;
}

.timeline-steps li {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 32px;
}

.timeline-steps li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: var(--ink);
  z-index: 2;
}

.timeline-steps .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 14px;
}

.timeline-steps strong {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 12px;
}

.timeline-steps li > span:last-child {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ---------- 8. Why Vision X Nexus ---------- */
.why-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: end;
}

.why-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* ---------- 9. Consultants ---------- */
.advisor-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
}

.advisor-body h3 {
  padding: 0;
}

.advisor-body p {
  font-size: 13px;
  color: var(--text-soft);
}

.section-advisors {
  overflow-x: clip;
}

.advisor-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.track-arrows {
  display: flex;
  gap: 8px;
}

.arrow-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.arrow-btn:hover {
  background: var(--ink);
  color: var(--white);
}

.advisor-track {
  display: flex;
  gap: 16px;
  margin-right: calc(50% - 50vw);
  padding-right: 56px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.advisor-track::-webkit-scrollbar {
  display: none;
}

.advisor-card {
  position: relative;
  flex: 0 0 clamp(260px, 24vw, 380px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink);
  scroll-snap-align: start;
}

.advisor-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.05);
  transition: filter .6s ease, transform .8s ease;
  z-index: 0;
}

.advisor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 17, .95) 0%, rgba(18, 18, 17, .72) 40%, rgba(18, 18, 17, 0) 72%);
  pointer-events: none;
  z-index: 1;
}

.advisor-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
  z-index: 3;
}

.advisor-index {
  position: absolute;
  top: 20px;
  left: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  z-index: 2;
}

.advisor-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px;
  color: var(--white);
  z-index: 2;
}

.advisor-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advisor-langs li {
  padding: 4px 8px;
  border: 1px solid rgba(250, 250, 247, .35);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.advisor-info h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.advisor-more {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .5s ease, opacity .4s ease;
}

.advisor-more > div {
  overflow: hidden;
}

.advisor-more p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250, 250, 247, .8);
}

.advisor-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}

.advisor-link:hover {
  color: var(--gold-hover);
}

.wa-icon {
  flex-shrink: 0;
}

/* phone.svg is a white disc with the handset cut out: invert it on light buttons */
.call-icon {
  flex-shrink: 0;
  filter: invert(1);
}

.advisor-card:hover img,
.advisor-card:focus-within img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.04);
}

.advisor-card:hover::after,
.advisor-card:focus-within::after {
  transform: scaleX(1);
}

.advisor-card:hover .advisor-more,
.advisor-card:focus-within .advisor-more {
  grid-template-rows: 1fr;
  opacity: 1;
}

.track-progress {
  position: relative;
  height: 2px;
  background: var(--line);
}

.track-progress span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: var(--gold);
  transition: left .2s ease, width .2s ease;
}

/* Touch screens have no hover: show colour and full details */
@media (hover: none) {
  .advisor-card img {
    filter: none;
  }
  
  .advisor-more {
    grid-template-rows: 1fr;
    opacity: 1;
  }
}

/* ---------- 10. Reviews ---------- */
.section-dark.section-reviews {
  padding: 96px 0;
  overflow-x: clip;
}

.review-slider {
  display: flex;
  gap: 16px;
  margin-right: calc(50% - 50vw);
  padding-right: 56px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 min(640px, 44vw);
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 15px 40px 25px;
  background: var(--ink-2);
  scroll-snap-align: start;
  transition: border-color .3s ease;
}

/* .review-card:hover {
  border-color: var(--gold);
} */

.review-mark {
  display: block;
  height: 36px;
  color: var(--gold);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}

.review-card blockquote {
  flex: 1;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250, 250, 247, .88);
}

.review-card figcaption {
  padding-top: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paper);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 28px;
  height: 23px;
  padding: 10px 0;
  border: 0;
  background: var(--line-dark);
  background-clip: content-box;
  cursor: pointer;
  transition: width .3s ease, background-color .3s ease;
}

.slider-dots button.is-active {
  width: 44px;
  background-color: var(--gold);
}

/* ---------- 11. Partners ---------- */
.logo-grid-names li {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink);
}

.logo-grid-names li.logo-placeholder {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .14em;
  color: #6a685f;
}

.section-partners .partner-grid {
  align-items: start;
}

.section-partners .partner-copy {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

.logo-grid-logos {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.logo-grid-logos li {
  height: 104px;
  padding: 0 16px;
}

.logo-grid-logos img {
  max-width: 72%;
  max-height: 56px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ---------- 12. FAQ ---------- */
/* Heading on the left, questions on the right */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 80px;
  align-items: start;
}

.faq-head {
  position: sticky;
  top: calc(var(--header-h) + 48px);
  gap: 24px;
}

.faq-head .small-note {
  max-width: 380px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.01em;
  list-style: none;
  cursor: pointer;
  transition: color .2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--gold-deep);
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8 1v14M1 8h14' stroke='%23121211' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center;
}

.faq-item[open] summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M1 8h14' stroke='%23121211' stroke-width='1.5'/%3E%3C/svg%3E");
}

.faq-answer {
  max-width: 760px;
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  text-wrap: pretty;
}

/* ---------- Footer ---------- */
/* .site-footer {
  padding: 56px 0 0;
} */

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px 48px;
  padding-bottom: 40px;
}

.footer-logo {
  color: var(--paper);
  font-size: 18px;
  text-decoration: none;
  white-space: nowrap;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--paper);
}

.footer-contact a {
  color: var(--paper);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px 48px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(250, 250, 247, .2);
}

.footer-bottom p {
  font-size: 13px;
  line-height: 1.6;
  color: #8f8b81;
}

.footer-bottom p:last-child {
  text-align: right;
}

/* Keep footer text clear of the floating call / WhatsApp buttons */
@media (min-width: 761px) {
  .footer-top,
  .footer-bottom {
    padding-right: 96px;
  }
}

/* ---------- Floating call / WhatsApp (brand icons) ---------- */
.float-call {
  width: 52px;
  height: 52px;
  bottom: 92px;
  border: 0;
  background: var(--ink);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .12), 0 6px 18px rgba(0, 0, 0, .25);
}

.float-wa {
  width: 56px;
  height: 56px;
  bottom: 24px;
  background: transparent;
}

.float-call img,
.float-wa img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- Pop-up ---------- */
.modal-head {
  gap: 8px;
  padding-right: 32px;
}

.modal-head .modal-title {
  padding-right: 0;
}

.modal-sub {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ---------- Tablet ---------- */
@media (max-width: 1100px) {
  :root {
    --section-y: 64px;
    --block-gap: 40px;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .faq-head {
    position: static;
  }

  .gs-stage {
    aspect-ratio: 16 / 10;
  }

  .gs-thumbs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gs-thumbs::-webkit-scrollbar {
    display: none;
  }

  .gs-thumb {
    flex: 0 0 120px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .amenity-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .amenity-cta {
    justify-self: start;
  }

  .section-amenities .album {
    padding-left: 32px;
    padding-right: 32px;
    scroll-padding-left: 32px;
  }

  .hero-v1 .hero-inner {
    gap: 56px;
  }
  
  .hero-top,
  .section-head,
  .timeline-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  
  .hero-top .hero-card {
    width: 100%;
    max-width: 480px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .hero-stats div:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }
  
  .why-split {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  
  .home-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-body {
    min-height: 0;
  }
  
  .timeline-steps {
    --timeline-gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }

  .timeline-steps::before {
    display: none;
  }

  .timeline-steps li::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    right: calc(-1 * var(--timeline-gap));
    height: 1px;
    background-color: var(--line);
    z-index: 1;
  }

  .timeline-steps li:nth-child(2n)::after {
    right: 0;
  }
  
  .advisor-track {
    padding-right: 32px;
  }
  
  .review-slider {
    padding-right: 32px;
  }
  
  .review-card {
    flex-basis: 70%;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 760px) {
  /* "AZIZI FLORENCE" is the logo now, so keep it visible on phones */
  .brand-project {
    display: inline;
    font-size: 16px;
  }

  :root {
    --section-y: 56px;
    --block-gap: 32px;
  }

  .faq-item summary {
    gap: 20px;
    font-size: 17px;
  }

  /* The sticky bottom bar already has Call Now */
  .header-phone {
    display: none;
  }

  .gs-stage {
    aspect-ratio: 4 / 5;
  }

  .gs-stage::after {
    background: linear-gradient(to top, rgba(18, 18, 17, .85) 0%, rgba(18, 18, 17, .45) 35%, rgba(18, 18, 17, 0) 60%);
  }

  .gs-caption {
    left: 20px;
    right: 20px;
    bottom: 84px;
  }

  .gs-title {
    font-size: 24px;
  }

  .gs-controls {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .gs-count {
    margin-right: auto;
  }

  .gs-btn {
    width: 44px;
    height: 44px;
  }

  .gs-thumb {
    flex-basis: 88px;
  }

  /* Floating WhatsApp sits above the sticky Call / WhatsApp bar */
  .float-wa,
  .float-call {
    left: 16px;
    /* bottom: 80px; */
    width: 45px;
    height: 45px;
  }

  /* Leave room for the sticky Call / WhatsApp bar so the footer isn't hidden */
  body {
    padding-bottom: 64px;
  }

  /* Header: keep the logo and the small CTA on one line */
  .header-inner {
    gap: 16px;
  }

  .brand-mark {
    white-space: nowrap;
  }

  .main-nav .btn-sm {
    height: 40px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: .1em;
    white-space: nowrap;
  }

  /* Footer: stack everything, left aligned */
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .footer-bottom {
    padding-right: 72px;
  }

  .home-body {
    padding: 32px 24px;
  }

  .section-amenities .album {
    padding-left: 20px;
    padding-right: 20px;
    scroll-padding-left: 20px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .hero-stats div,
  .hero-stats div:nth-child(4) {
    padding: 20px 0 0 20px;
    border-left: 1px solid rgba(250, 250, 247, .18);
  }
  
  .hero-stats div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }
  
  .hero-stats dd {
    font-size: 32px;
  }
  
  .stat-grid-lg dd {
    font-size: 24px;
  }
  
  .pay-split,
  .timeline-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .timeline-steps {
    row-gap: 36px;
  }

  .timeline-steps li::after {
    right: 0;
  }
  
  .pay-num {
    font-size: 64px;
  }
  
  .advisor-track {
    padding-right: 20px;
  }
  
  .advisor-card {
    flex-basis: 84%;
    aspect-ratio: 3 / 4.4;
  }
  
  .review-slider {
    padding-right: 20px;
  }
  
  .review-card {
    flex-basis: 86%;
    padding: 28px;
  }
  
  .review-card blockquote {
    font-size: 16px;
  }
  
  .section-partners .partner-copy {
    position: static;
  }
  
  .logo-grid-logos li {
    height: 76px;
    padding: 0 8px;
  }
  
  .logo-grid-logos img {
    max-width: 80%;
    max-height: 40px;
  }
  
  .track-arrows {
    display: none;
  }
}
@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}

/* Payment bar keeps its 30 / 70 proportion on phones, with smaller figures */
@media (max-width: 760px) {
  .pay-split {
    grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  }

  .pay-num {
    font-size: 40px;
  }

  .pay-dark .eyebrow,
  .pay-light .eyebrow {
    font-size: 10px;
    letter-spacing: .12em;
  }
}
