/* ============================================
   HERITAGE BUILDS — Complete Stylesheet
   Based on Elyse Residence design system
   ============================================ */

/* Z-INDEX SCALE (V-014 documentation)
   -----------------------------------------------
   1    - Base layer (backgrounds, decorative)
   2    - Image overlays, decorative elements
   4-5  - Interactive elements (cards, buttons, modal internals)
   10   - Fixed navigation elements
   20   - Above-nav elements (CTA overlap)
   999  - Header (fixed)
   9998 - Modal
   ----------------------------------------------- */

/* ===== FLUID RESPONSIVE SYSTEM ===== */
html {
  font-size: calc(16 * (100vw / 1920));
}
@media (min-width: 1920px) {
  html { font-size: 16px; }
}
@media (max-width: 479px) {
  html { font-size: calc(16 * (100vw / 375)); }
}

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --black-900: #121717;
  --white: #ffffff;
  --white-alpha-50: rgba(255, 255, 255, 0.2);
  --white-alpha-500: rgba(255, 255, 255, 0.5);
  --white-alpha-700: rgba(255, 255, 255, 0.7);
  --white-alpha-800: rgba(255, 255, 255, 0.8);
  --white-alpha-900: rgba(255, 255, 255, 0.9);
  --gold: #C8A862;
  --gold-hover: #D4B872;
  --gold-active: #B89A52;
  --green-700: #254441;
  --gray-alpha-200: rgba(231, 225, 220, 0.2);
  --gray-alpha-500: rgba(231, 225, 220, 0.56);

  /* Font Families */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;

  /* Font Weights */
  --weight-light: 300;
  --weight-regular: 400;

  /* Sizing */
  --header-height: 6.75rem;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--black-900);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: var(--weight-light);
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: inherit;
}

p { margin: 0; }

a {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
}

button {
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
}

address { font-style: normal; }

* { -webkit-tap-highlight-color: transparent; }

/* ===== TYPOGRAPHY CLASSES ===== */
.h1 {
  font-family: var(--font-serif);
  font-size: 27rem;
  line-height: 100%;
  font-weight: var(--weight-light);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.h2 {
  font-family: var(--font-serif);
  font-size: 11.25rem;
  line-height: 123%;
  font-weight: var(--weight-light);
  letter-spacing: 0;
  position: relative;
  top: 2rem;
}

.h3 {
  font-family: var(--font-serif);
  font-size: 8.25rem;
  line-height: 110%;
  font-weight: var(--weight-regular);
  letter-spacing: -0.03em;
}

.h4 {
  font-family: var(--font-serif);
  font-size: 7.5rem;
  line-height: 118%;
  font-weight: var(--weight-light);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.h5 {
  font-family: var(--font-serif);
  font-size: 4.75rem;
  line-height: 118%;
  font-weight: var(--weight-light);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.h5-glare {
  font-family: var(--font-accent);
  font-size: 4.75rem;
  line-height: 118%;
  font-style: italic;
  font-weight: var(--weight-light);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.h6 {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  line-height: 123%;
  font-style: italic;
  font-weight: var(--weight-regular);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.h7 {
  font-family: var(--font-accent);
  font-size: 2rem;
  line-height: 123%;
  font-weight: var(--weight-light);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.b0 {
  font-family: var(--font-body);
  font-size: 2.5rem;
  line-height: 123%;
  font-weight: var(--weight-light);
  letter-spacing: 0;
}

.b1 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 125%;
  font-weight: var(--weight-light);
  letter-spacing: 0.04em;
}

.b3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 132%;
  font-weight: var(--weight-regular);
  letter-spacing: 0.03em;
}

.b4 {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 130%;
  font-weight: var(--weight-light);
  letter-spacing: 0;
}

.c1 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 130%;
  font-weight: var(--weight-light);
}

.text-btn-01 {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 150%;
  font-weight: var(--weight-regular);
  letter-spacing: 0;
}

.is-it { font-style: italic; }

.text-color-white-70 { color: var(--white-alpha-700); }
.text-color-white-50 { color: var(--white-alpha-500); }
.span-inline-block { display: inline-block; }

/* ===== LAYOUT UTILITIES ===== */
.page-padding {
  width: 100%;
  height: 100%;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}

.container {
  width: 100%;
  max-width: 112.5rem;
  height: 100%;
  margin: 0 auto;
}

.container.nav-container {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.main-wrapper {
  transform-origin: 50% 0;
  overflow: clip;
}

.wrap {
  z-index: 10;
  width: 100%;
  height: 100%;
  position: relative;
}

.heading { position: relative; }

.caption { color: var(--white-alpha-700); }

/* ===== HEADER / NAV ===== */
.header {
  z-index: 999;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 3.75rem;
}

.nav-overlay {
  opacity: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  background-color: rgba(18, 23, 23, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
}

.header.is-scrolled .nav-overlay { opacity: 1; }
.header.is-scrolled .nav-line { opacity: 0 !important; }

.logo.nav-logo {
  z-index: 5;
  flex: none;
  position: relative;
}

.logo-img {
  height: 3.5rem;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: var(--weight-regular);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-menu {
  width: 100%;
}

.nav-menu-top { display: none; }

.nav-menu-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.nav-list {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.nav-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 150%;
  font-weight: var(--weight-regular);
  text-transform: uppercase;
  padding: 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  width: 100%;
  height: 1px;
  background: currentcolor;
  transition: transform 0.3s ease;
  transform-origin: center;
  transform: scaleX(0);
}

.nav-line {
  background-color: var(--white);
  pointer-events: none;
  width: 100%;
  height: 0.06rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
}

.burger {
  z-index: 5;
  display: none;
  position: relative;
}

.burger-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  position: relative;
  right: -0.75rem;
}

.burger-open,
.burger-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
}

.burger-close {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header.menu-open .burger-open { opacity: 0; }
.header.menu-open .burger-close { opacity: 1; }

/* ===== BUTTONS ===== */
.btn {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 150%;
  font-weight: var(--weight-regular);
  text-transform: uppercase;
  border-radius: 100vmax;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2.75rem;
  padding: 0.5rem 1rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.gold-btn {
  background-color: var(--gold);
  color: var(--black-900);
}

.gold-btn.nav-btn,
.gold-btn.modal-btn {
  width: auto;
  padding: 0.5rem 1.75rem;
}

.gold-btn.form-btn {
  height: 4.75rem;
}

.stroke-btn {
  border: 1px solid var(--white-alpha-700);
  color: var(--white);
  background-color: transparent;
  height: 2.75rem;
  padding: 0.5rem 1.75rem;
}

.stroke-btn.in-project {
  width: auto;
  margin-top: 1rem;
  transition: transform 0.5s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* Hover states */
@media (hover: hover) and (pointer: fine) {
  .gold-btn:hover { background-color: var(--gold-hover); }
  .gold-btn:active { background-color: var(--gold-active); }

  .stroke-btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--black-900);
  }
  .stroke-btn:active {
    background-color: var(--gold-active);
    border-color: var(--gold-active);
    color: var(--black-900);
  }

  .nav-link:hover::before { transform: scaleX(1); }

  .text-link-light::before {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    width: 100%;
    height: 1px;
    background: currentcolor;
    transition: transform 0.3s ease;
    transform-origin: center;
    transform: scaleX(0);
  }
  .text-link-light:hover::before { transform: scaleX(1); }

  .faq-dropdown:hover::before,
  .faq-dropdown:hover::after { opacity: 1; }

  .input:hover { border-color: white; }

  .modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: rotate(90deg);
  }

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

@media (hover: none) and (pointer: coarse) {
  .gold-btn:active { background-color: var(--gold-hover); }
  .stroke-btn:active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--black-900);
  }
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  padding-bottom: 3.75rem;
  position: relative;
  overflow: hidden;
}

.wrap.hero-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.heading.hero-heading {
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-left: 3.7rem;
  padding-right: 4.38rem;
  position: relative;
  top: 0.6rem;
}

.h1.hero-title {
  letter-spacing: 0;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  max-width: 22.56rem;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

.hero-right-heading {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.full-bg-wrap {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.full-bg-wrap.in-cta {
  height: 68.75rem;
}

.full-bg-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.img-full-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.img-full-cover.is-mobile,
.img-placeholder.is-mobile { display: none; }

.img-overlay {
  background-color: var(--black-900);
  width: 100%;
  height: 101%;
  position: absolute;
  inset: -1% 0 0;
}

/* Placeholder image styling */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2520 40%, #1e1e1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-label {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white-alpha-50);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 23, 23, 0.65) 0%,
    rgba(18, 23, 23, 0.35) 40%,
    rgba(18, 23, 23, 0.25) 60%,
    rgba(18, 23, 23, 0.70) 100%
  );
  pointer-events: none;
}

.hero-placeholder-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a1814 0%, #2a2520 30%, #1e1c18 60%, #121717 100%);
}

/* Hero character animation */
.char-mask {
  display: inline-block;
  overflow: hidden;
  margin-right: -0.5rem;
}

.char {
  display: inline-block;
}

/* ===== ABOUT ===== */
.about-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 8.75rem;
  padding-bottom: 6.88rem;
}

.about-left {
  display: flex;
  justify-content: space-between;
  gap: 10rem;
  width: 100%;
  max-width: 74.75rem;
}

.about-heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 27.5rem;
}

.about-img {
  flex: none;
  width: 100%;
  max-width: 37.19rem;
  height: 57.31rem;
  position: relative;
  overflow: hidden;
}

.about-text-box {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 21.6rem;
  margin-right: 5.28rem;
}

/* ===== STATS ===== */
.stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 7.5rem;
}

.stats-row-1 {
  display: grid;
  grid-template-columns: 17.25rem 27.5rem;
  gap: 11.56rem;
  justify-content: end;
}

.stats-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stats-row-3 {
  padding-left: 37.5rem;
}

.stats-box {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.stats-box.stats-box-3 { max-width: 34rem; }
.stats-box.stats-box-4 { max-width: 28rem; }
.stats-box-4-text { max-width: 17.25rem; }

.stats-box-row {
  display: flex;
  gap: 0.25rem;
  justify-content: flex-start;
  align-items: flex-end;
}

.stats-box-row.in-stats-row-2 {
  gap: 1.88rem;
}

/* ===== PROJECTS ===== */
.projects {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.wrap.projects-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.projects-heading {
  width: 100%;
  margin-bottom: 3rem;
}

.splide.projects-slider {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.splide__track.projects-track {
  width: 100%;
  overflow: visible;
}

.splide__slide.projects-slide {
  flex: none;
  width: 100%;
  max-width: 37.38rem;
  height: 49rem;
}

.projects-slide-img {
  transform-origin: 50% 100%;
  width: 100%;
  height: 100%;
  transition: transform 1s ease;
  overflow: hidden;
}

.projects-slide:not(.is-active) .projects-slide-img {
  transform: scale(0.9) translateY(0.625rem);
}

.project-titles {
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 65.25rem;
  position: absolute;
  top: 8.25rem;
}

.project-title {
  position: absolute;
  opacity: 0;
}
.project-title.is-first { position: static; }
.project-title.is-active {
  opacity: 1;
  z-index: 10;
}

.project-texts {
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 37.38rem;
  padding-top: 5rem;
  position: relative;
}

.project-text {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: start;
  width: 100%;
  position: absolute;
  opacity: 0;
}
.project-text.is-first { position: static; }
.project-text.is-active {
  opacity: 1;
  z-index: 10;
}

.project-text.is-active .btn {
  animation: slideUpCSS 0.5s ease 0.5s both;
}

/* Splide arrows */
.projects-slider .splide__arrows {
  position: absolute;
  top: -0.5rem;
  right: -0.75rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.projects-slider .splide__arrow {
  background: transparent;
  border: 1px solid var(--white-alpha-50);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease, border-color 0.3s ease;
  position: static;
  transform: none;
}

.projects-slider .splide__arrow:hover {
  opacity: 1;
  border-color: var(--white);
}

.projects-slider .splide__arrow svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: var(--white);
}

.projects-slider .splide__arrow--prev svg {
  transform: scaleX(-1);
}

/* ===== NEW CTA PLACEMENTS (reuse existing .btn.gold-btn.nav-btn style) ===== */
.projects-cta {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
}

.pre-faq-cta {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  position: relative;
  z-index: 5;
}
.pre-faq-cta-wrap {
  display: flex;
  justify-content: center;
}

.mobile-cta-sticky {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 900;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transform: translateX(-50%);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.mobile-cta-sticky.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(1rem);
}

/* ===== OUR BELIEFS / VISION ===== */
.our-beliefs {
  height: 75.81rem;
  padding-top: 7.5rem;
  position: relative;
}

.wrap.our-beliefs-wrap {
  display: flex;
  flex-direction: column;
}

.our-beliefs-heading {
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8.38rem;
  justify-content: flex-start;
  align-self: flex-end;
  align-items: flex-end;
  width: 100%;
  max-width: 63.88rem;
  margin-right: 10.94rem;
  position: relative;
}

.our-beliefs-caption { margin-right: 4rem; }

.our-beliefs-img {
  width: 50vw;
  height: 68.31rem;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

.our-beliefs-text-box {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-self: flex-end;
  max-width: 21.88rem;
  margin-top: 9rem;
  margin-right: 4.38rem;
}

/* ===== BELIEFS CARDS ===== */
.beliefs {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  position: relative;
}

.wrap.beliefs-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6.25rem 6.25rem;
  row-gap: 4.5rem;
  padding-right: 4.38rem;
}

.beliefs-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--white-alpha-500);
}

.beliefs-card {
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 22.5rem;
  height: 29.5rem;
  position: relative;
}

.beliefs-card-bg {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  background-color: var(--gray-alpha-500);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border-radius: 1rem;
}

.beliefs-card-heading {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 14.25rem;
  position: relative;
  color: #2d2a26;
}

.beliefs-text-box {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  color: #2d2a26;
}

/* ===== SERVICES / AMENITIES ===== */
.amenities { position: relative; }

.anim-track {
  height: 350vh;
  position: relative;
}

.wrap.amenities-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 23.38rem;
  height: 100vh;
  position: sticky;
  top: 0;
}

.amenities-images-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  max-width: 53.33%;
  height: 83.45%;
  max-height: 75.63rem;
  position: relative;
}

.amenities-images-big {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.amenities-images-small {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 61.91%;
  height: 59.5%;
  max-height: 45rem;
  position: absolute;
  left: -14.88rem;
}

.amenities-slide-imgs {
  transform-origin: 50% 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  height: 100%;
  transition: transform 1s ease;
  position: absolute;
}

.amenities-slide-imgs.is-first { position: relative; }

[data-amenities-anim="big-image"] {
  mask-image: var(--mask-gradient);
  -webkit-mask-image: var(--mask-gradient);
}
[data-amenities-anim="big-image"].is-first {
  position: relative;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.amenities-slide-img-inner {
  width: 100%;
  height: 100%;
  position: absolute;
}
.amenities-slide-img-inner.is-first { position: static; }

.amenities-texts-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 26.38rem;
  margin-left: 2.75rem;
  order: -9999;
  position: relative;
}

.amenities-slide-box {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  position: absolute;
}
.amenities-slide-box.is-first { position: relative; }

.amenities-slide-text { max-width: 21.63rem; }

.amenities-progress {
  background-color: var(--gray-alpha-200);
  display: flex;
  flex-direction: column;
  order: -9999;
  width: 0.13rem;
  height: 25.5rem;
  position: absolute;
  left: -2.75rem;
}

.amenities-progress-line {
  background-color: var(--white);
  width: 100%;
  height: 0%;
}

.amenities-triggers {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.amenities-trigger {
  width: 100%;
  height: 100vh;
}
.amenities-trigger.is-last { height: 50vh; }

/* ===== FAQ ===== */
.faq-relative { position: relative; }

.faq-spacer {
  height: 100vh;
  padding: 0;
}

.faq {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  position: sticky;
  bottom: 0;
}

.heading.faq-heading {
  display: grid;
  grid-template-columns: 1fr 75rem;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3.88rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-dropdown {
  display: grid;
  grid-template-columns: 1fr 37.5rem 27rem;
  gap: 10.63rem;
  align-items: start;
  padding: 2rem 0;
  position: relative;
}

.faq-dropdown::before,
.faq-dropdown::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: var(--white-alpha-50);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-dropdown::after {
  top: auto;
  bottom: 0;
}

.faq-dropdown-toggle {
  pointer-events: none;
  text-align: left;
  background-color: transparent;
  width: 100%;
  padding: 0;
}

.faq-dropdown-list {
  will-change: transform, opacity;
  transition: transform 0.4s ease, opacity 0.2s ease;
}

.faq-dropdown-box {
  color: var(--white-alpha-700);
}

/* FAQ desktop hover mode */
@media (hover: hover) {
  .faq [data-dropdown-list] {
    pointer-events: none;
    opacity: 0;
    transform: translateX(2rem);
  }

  .faq [data-dropdown]:hover [data-dropdown-list] {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
}

/* FAQ mobile click mode */
@media (hover: none) {
  .faq [data-dropdown].active [data-dropdown-list] {
    display: block;
    animation: slideFromRight 0.4s ease both;
  }
  .faq [data-dropdown-toggle] {
    pointer-events: auto;
  }
}

@media (min-width: 480px) {
  .faq-dropdown-toggle { grid-column: 3 / 3; }
  .faq-dropdown-list {
    grid-column: 2 / 2;
    grid-row: 1 / 1;
  }
  [data-dropdown-list] {
    display: block !important;
    opacity: 0;
    height: auto !important;
  }
}

/* ===== CTA / CONTACT ===== */
.cta {
  z-index: 20;
  background-color: var(--black-900);
  min-height: 68.75rem;
  margin-top: -100vh;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  position: relative;
}

.wrap.cta-wrap {
  display: flex;
  justify-content: space-between;
}

.heading.cta-heading {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 27.5rem;
}

.form-wrap {
  padding-top: 16.44rem;
}

.form-block {
  background-color: var(--green-700);
  width: 100%;
  max-width: 56.25rem;
  min-height: 60.62rem;
  margin-bottom: 0;
}

.form {
  text-align: center;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 6.25rem;
}

.heading.form-heading {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.inputs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 3.5rem;
  margin-bottom: 5rem;
}

.input-wrap { position: relative; }

.input {
  border: none;
  border-bottom: 1px solid var(--white-alpha-50);
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1rem;
  line-height: 150%;
  font-weight: var(--weight-regular);
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0;
  width: 100%;
  height: auto;
  padding: 2.5rem 4rem 0.75rem 0;
  transition: border-color 0.2s ease;
}

.input:focus {
  outline: none;
  border-bottom-color: var(--white);
}

.input::placeholder { color: var(--white); }

.input-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.25rem;
}

.input-select option {
  background-color: var(--green-700);
  color: var(--white);
}

.input-textarea {
  resize: vertical;
  min-height: 6rem;
  padding-top: 1.5rem;
  text-transform: none;
  line-height: 170%;
}

.input-clear-btn {
  z-index: 5;
  background-color: transparent;
  display: none;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  position: absolute;
  bottom: 0.13rem;
  right: 0;
  transition: color 0.2s ease;
}

.input:not(:placeholder-shown) ~ .input-clear-btn {
  display: flex;
}

.input-clear-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.form-bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: flex-start;
  align-items: center;
}

.form-bottom-text {
  color: var(--white-alpha-700);
  max-width: 30rem;
}

.success-msg {
  color: var(--white);
  min-height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.success-msg-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.25rem;
  text-align: center;
}

.error-msg { margin-top: 0; padding: 0; }
.error-msg-box {
  color: var(--white);
  text-align: center;
  padding: 2rem;
}

/* ===== FOOTER ===== */
.footer {
  z-index: 5;
  background-color: var(--black-900);
  position: relative;
}

.wrap.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-right.in-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  color: var(--white-alpha-50);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer-col-title.is-first {
  position: relative;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-logo-img {
  height: 6rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: var(--weight-regular);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-line {
  background-color: var(--white-alpha-50);
  width: 100%;
  height: 0.06rem;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.footer-line.is-top {
  transform-origin: 50%;
  top: 3.5rem;
  left: 50%;
  right: 0;
  transform: translateX(-50%);
}

.footer-bottom {
  color: var(--white-alpha-500);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 1.5rem;
  position: relative;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.text-link-light {
  width: fit-content;
  position: relative;
}

.is-location { max-width: 9.38rem; }

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.social-icon {
  color: var(--white-alpha-500);
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.social-icon:hover { color: var(--gold); }

.footer-social-icons {
  gap: 1.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid var(--white-alpha-50);
}

.footer-social-icons .social-icon {
  width: 1.125rem;
  height: 1.125rem;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

/* ===== MODAL ===== */
.modal {
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.modal.is-open,
.modal.is-closing {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-overlay {
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  cursor: default;
}

/* V-013 FIX: Enable overlay click-to-close when modal is visible */
.modal.is-open .modal-overlay,
.modal.is-closing .modal-overlay {
  pointer-events: auto;
  cursor: pointer;
}

.modal-content {
  z-index: 5;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.modal-layout {
  display: grid;
  grid-template-columns: 1fr 33.33%;
  grid-template-rows: 1fr auto;
  width: 100%;
  height: 100%;
  position: relative;
}

.modal-layout-bg {
  z-index: 5;
  background-color: var(--black-900);
  width: 33.33%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.modal-info {
  z-index: 5;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6.75rem;
  margin-bottom: 3rem;
  position: relative;
}

.modal-logo-img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.modal-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: var(--weight-regular);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-title { margin-bottom: 2rem; }
.modal-description { margin-bottom: 2.5rem; }

.modal-close {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.3s ease;
  position: relative;
  right: -0.75rem;
}

.modal-close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.modal-header-line {
  background-color: var(--white);
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.modal-slider-wrap {
  z-index: 2;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  position: relative;
}

.modal-bg-images {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.modal-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  --mask-gradient: linear-gradient(0deg, black 0%, black 100%);
  mask-image: var(--mask-gradient);
  -webkit-mask-image: var(--mask-gradient);
}

.modal-bg-image.is-active { z-index: 2; }
.modal-bg-image:first-child { z-index: 1; }

.modal-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.splide.modal-thumb-slider {
  z-index: 4;
  margin: 0 auto 3rem;
  position: relative;
}

.splide__track.modal-thumb-slider-track {
  overflow: visible;
}

.splide__list.modal-thumb-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-thumb-slider .splide__slide {
  transition: border-color 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent !important;
}

.modal-thumb-slider .splide__slide.is-active {
  border: 2px solid white !important;
}

.modal-slide-info-wrap {
  z-index: 5;
  position: relative;
  overflow: clip;
}

.modal-slide-info {
  z-index: 5;
  padding: 3rem 3.75rem;
  position: relative;
}

.slide-info-label { margin-bottom: 0; }

.slide-info-area {
  display: flex;
  gap: 1.25rem;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.slide-info-area-unit {
  position: relative;
  top: -0.75rem;
}

/* Modal open animations (desktop) */
@media (min-width: 480px) {
  .modal.is-open .modal-header-line {
    animation: lineCss 0.5s ease both 1.25s;
  }
  .modal.is-open .modal-slider-wrap {
    animation: slideFromRightV2 1.2s ease-in-out both;
  }
  .modal.is-open .modal-layout-bg {
    animation: slideFromRightV2 1s ease-out both;
  }
  .modal.is-open .modal-info {
    animation: fadeInCss 0.5s ease 1s both;
  }
  .modal.is-open .modal-slide-info-wrap {
    animation: fadeInCss 0.5s linear 1s both;
  }
  .modal.is-open .modal-thumb-slider {
    animation: fadeInCss 0.8s ease 1s both;
  }

  .modal.is-closing .modal-slider-wrap {
    animation: slideToRightV2 0.8s ease-in-out 0.5s both;
  }
  .modal.is-closing .modal-layout-bg {
    animation: slideToRightV2 1s ease-out 0.8s both;
  }
  .modal.is-closing .modal-info,
  .modal.is-closing .modal-slide-info-wrap {
    animation: fadeOutCss 0.5s ease both;
  }
  .modal.is-closing .modal-thumb-slider {
    animation: fadeOutCss 0.5s ease 0s both;
  }
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeInCss {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOutCss {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes slideFromRightV2 {
  from { transform: translateX(101vw); }
  to { transform: translateX(0); }
}

@keyframes slideToRightV2 {
  from { transform: translateX(0); }
  to { transform: translateX(101vw); }
}

@keyframes lineCss {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(6rem); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideFromTop {
  from { transform: translateY(-101%); }
  to { transform: translateY(0); }
}

@keyframes slideToTop {
  from { transform: translateY(0); }
  to { transform: translateY(-101%); }
}

@keyframes slideUpCSS {
  from { transform: translateY(2rem); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== ANIMATION INITIAL STATES ===== */
[data-anim="element"],
[data-anim="split"],
[data-anim="img-overlay"],
[data-anim="slideUp-once"],
[data-anim="stagger"],
.amenities-progress-line,
[data-footer="step-1"],
[data-footer="step-2"],
[data-footer="step-3"],
[data-footer="line"] {
  visibility: hidden;
}

/* ===== RESPONSIVE: MOBILE (max-width: 479px) ===== */
@media screen and (max-width: 479px) {
  .page-padding {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Header mobile */
  .header {
    padding: 0 1.25rem;
    height: 4.5rem;
  }

  .burger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background-color: var(--black-900);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 4;
    overflow: hidden auto;
    padding: 2.5rem 1.25rem;
  }

  .header.menu-open .nav-menu {
    transform: translateX(0);
  }

  .nav-menu-top {
    display: block;
    z-index: 2;
    background-color: var(--black-900);
    width: 100%;
    height: 4.5rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  .nav-menu-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .nav-list {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
  }

  .nav-link { font-size: 1.75rem; }

  .gold-btn.nav-btn {
    width: 100%;
    margin-top: 2rem;
  }

  .nav-line {
    width: calc(100% - 2.5rem);
    left: 50%;
    transform: translateX(-50%);
  }

  /* Typography mobile overrides */
  .h1.hero-title { font-size: 12rem; }
  .h6.mob-h8 {
    font-family: var(--font-accent);
    font-size: 1rem;
    line-height: 123%;
    font-style: italic;
    font-weight: var(--weight-light);
  }
  .h4.mob-h7,
  .h5.mob-h7,
  .h5-glare.mob-h7 {
    font-family: var(--font-accent);
    font-size: 2rem;
    line-height: 123%;
    font-style: italic;
    font-weight: var(--weight-light);
  }
  .h5.mob-h6 {
    font-family: var(--font-accent);
    font-size: 1.75rem;
    line-height: 123%;
    font-style: italic;
    font-weight: var(--weight-regular);
  }
  .h2.mob-h5 {
    font-family: var(--font-serif);
    font-size: 4.75rem;
    line-height: 118%;
    font-weight: var(--weight-light);
    top: 0.8rem;
  }
  .h3.mob-h5 {
    font-family: var(--font-serif);
    font-size: 4.75rem;
    line-height: 118%;
    font-weight: var(--weight-light);
    top: 0.8rem;
  }
  .b1.mob-b4 {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 130%;
    font-weight: var(--weight-light);
  }
  .b4.mob-c1 {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    line-height: 130%;
    font-weight: var(--weight-light);
  }
  .b0.mob-b1 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 125%;
    font-weight: var(--weight-light);
  }

  /* Hero mobile */
  .hero { height: 100svh; }
  .heading.hero-heading {
    flex-direction: column;
    gap: 2.5rem;
    padding-left: 0;
    padding-right: 0;
    top: 0;
  }
  .hero-right {
    gap: 2.5rem;
    padding: 0;
  }
  .hero-right-heading { gap: 1.5rem; }

  /* Image toggle desktop/mobile */
  .img-full-cover.is-desktop,
  .img-placeholder.is-desktop { display: none; }
  .img-full-cover.is-mobile,
  .img-placeholder.is-mobile { display: flex; }

  /* About mobile */
  .about-info {
    flex-direction: column;
    gap: 3.75rem;
    padding-top: 6.25rem;
    padding-bottom: 3.75rem;
  }
  .about-left {
    flex-direction: column;
    gap: 1.25rem;
  }
  .about-heading {
    gap: 3.75rem;
    justify-content: flex-start;
  }
  .about-img { height: 32.25rem; }
  .about-text-box {
    gap: 1.5rem;
    margin-right: 0;
  }

  /* Stats mobile */
  .stats {
    gap: 3.75rem;
    padding-bottom: 6.25rem;
  }
  .stats-row-1 {
    grid-template-columns: 1fr;
    gap: 3.75rem;
    justify-content: start;
  }
  .stats-row-3 { padding-left: 0; }
  .stats-box { gap: 0.75rem; }
  .stats-box-4-text { max-width: none; }

  /* Projects mobile */
  .projects {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .projects-heading { margin-bottom: 3.75rem; }
  .splide.projects-slider {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .splide__slide.projects-slide { height: 32.25rem; }
  .project-titles {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    position: relative;
    top: 0;
  }
  .project-texts {
    width: 100%;
    padding-top: 3.75rem;
  }
  .project-text {
    grid-template-columns: 1fr;
    place-items: start;
  }
  .stroke-btn.in-project { width: auto; }
  .projects-slider .splide__arrows { top: -0.9rem; }

  /* Our Beliefs mobile */
  .our-beliefs {
    height: auto;
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .our-beliefs-img {
    width: 100%;
    height: 32.25rem;
    position: static;
  }
  .our-beliefs-heading {
    gap: 3.75rem;
    justify-content: flex-start;
    align-self: auto;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    margin-right: 0;
  }
  .our-beliefs-caption { margin-right: 0; }
  .our-beliefs-text-box {
    gap: 1.5rem;
    max-width: none;
    margin-top: 3.75rem;
    margin-right: 0;
  }

  /* Beliefs cards mobile */
  .beliefs {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .wrap.beliefs-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    row-gap: 2rem;
    padding-right: 0;
  }
  .beliefs-card {
    width: 100%;
    height: 13.25rem;
  }
  .beliefs-card-heading {
    gap: 0.75rem;
    max-width: 7.9rem;
  }
  .beliefs-text-box { gap: 3.75rem; }

  /* Services mobile */
  /* Disable desktop scroll-scrub container on mobile so the section flows
     naturally and doesn't trap stacked text inside a 100vh sticky frame. */
  .anim-track { height: auto; }
  .amenities-triggers { display: none; }
  .wrap.amenities-wrap {
    flex-direction: column;
    gap: 3.75rem;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
    position: static;
    height: auto;
    top: auto;
  }
  .amenities-images-container {
    width: 100%;
    max-width: 100%;
    height: 25rem;
    max-height: none;
    justify-content: flex-end;
    align-items: center;
  }
  .amenities-images-small {
    width: 12.94rem;
    height: 15.44rem;
    max-height: 15.44rem;
    bottom: -5.5rem;
    left: auto;
  }
  .amenities-texts-container {
    order: 9999;
    width: 100%;
    max-width: 100%;
    margin-top: 3rem;
    margin-left: 0;
  }
  .amenities-slide-imgs { width: 100%; }
  .amenities-slide-box { gap: 1.25rem; }

  /* Mobile fix: stack service text blocks vertically so titles/paragraphs
     above the FAQ section no longer overlap (scroll-scrub fades between
     absolutely-positioned boxes on desktop; mobile shows all three). */
  .amenities-slide-box {
    position: relative;
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }
  .amenities-slide-box + .amenities-slide-box {
    margin-top: 3.75rem;
  }
  .amenities-progress {
    width: 100%;
    height: 0.13rem;
    position: absolute;
    top: -3rem;
    left: 0;
  }
  .amenities-progress-line {
    width: 0%;
    height: 100%;
  }
  .amenities-slide-text .b1 { font-size: 1rem; }

  /* Mobile CTAs */
  .mobile-cta-sticky {
    display: inline-flex;
  }
  /* Reserve scroll space below the page so the fixed sticky CTA never
     covers footer/CTA content when scrolled to the bottom. */
  body { padding-bottom: 5rem; }
  .pre-faq-cta {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .projects-cta {
    margin-top: 2.5rem;
  }

  /* FAQ mobile */
  /* Unstick FAQ on mobile — desktop stacks it via sticky bottom + spacer,
     which causes it to overlap the last service block on small screens. */
  .faq {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
    position: static;
    bottom: auto;
  }
  .heading.faq-heading {
    grid-template-columns: 1fr;
    gap: 3.75rem;
    margin-bottom: 3.75rem;
  }
  .faq-dropdown {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--white-alpha-50);
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .faq-dropdown:last-child {
    border-bottom: 1px solid var(--white-alpha-50);
  }
  .faq-dropdown-toggle {
    pointer-events: auto;
    margin-top: 2.5rem;
  }
  .faq-dropdown-list { transition: none; }
  .faq-dropdown-box { padding-top: 2.5rem; }
  .faq-spacer { display: none; }

  /* CTA mobile */
  .cta {
    min-height: auto;
    margin-top: 0;
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .wrap.cta-wrap {
    flex-direction: column;
    gap: 3.75rem;
  }
  .form-wrap { padding-top: 0; }
  .form-block { min-height: 45rem; }
  .form { padding: 2rem 1.63rem; }
  .input {
    padding-right: 3rem;
    font-size: 16px;
  }
  .gold-btn.form-btn { height: 2.75rem; }
  .form-bottom-text { max-width: 100%; }
  .full-bg-wrap.in-cta { height: 100%; }

  /* Footer mobile */
  .wrap.footer-wrap {
    gap: 5rem;
    padding-top: 6.25rem;
    padding-bottom: 3rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-right {
    justify-content: flex-start;
  }
  .footer-logo-wrap {
    flex-wrap: wrap;
  }
  .footer-social-icons {
    border-left: none;
    padding-left: 0;
    margin-top: 0.5rem;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-col-title {
    margin-bottom: 2rem;
    padding-bottom: 0;
  }
  .footer-col-title.is-first {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .footer-line.is-top {
    top: auto;
    bottom: 0;
  }
  .footer-logo-text { font-size: 1.5rem; }
  .footer-logo-img { height: 4rem; }
  .logo-img { height: 2.75rem; }
  .is-location { max-width: 100%; }

  /* Modal mobile */
  .modal { height: 100svh; }
  .modal-content { background-color: var(--black-900); }
  .modal-layout {
    display: flex;
    flex-direction: column;
  }
  .modal-layout-bg { display: none; }
  .modal-bg-images { display: none; }
  .modal-info {
    margin-bottom: 3.75rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .modal-header {
    height: 3.62rem;
    margin-bottom: 2rem;
  }
  .modal-slider-wrap {
    background-color: transparent;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    display: block;
    overflow: clip;
  }
  .modal-slide-info {
    padding: 3.75rem 1.25rem 2.75rem;
  }
  .slide-info-area {
    gap: 0.63rem;
    margin-top: 0.75rem;
    margin-bottom: 0.88rem;
  }
  .slide-info-area-unit { top: 0.25rem; }
  .gold-btn.modal-btn { width: 100%; }

  .splide.modal-thumb-slider {
    margin: 0;
  }
  .splide__list.modal-thumb-list {
    justify-content: flex-start;
    align-items: stretch;
  }
  .modal-thumb-slider .splide__slide {
    border: none !important;
  }

  /* Modal mobile animations */
  .modal.is-open .modal-content {
    animation: slideFromTop 0.8s ease both;
  }
  .modal.is-open .modal-header-line {
    animation: lineCss 0.5s ease both 1s;
  }
  .modal.is-open .modal-header {
    animation: fadeInCss 0.5s ease 0.7s both;
  }
  .modal.is-open .modal-thumb-slider {
    animation: slideFromTop 0.5s ease 1s both;
  }
  .modal.is-open .modal-slide-info {
    animation: fadeInCss 0.5s ease 1s both;
  }
  .modal.is-closing .modal-content {
    animation: slideToTop 0.8s ease both 0.5s;
  }
  .modal.is-closing .modal-header {
    animation: fadeOutCss 0.5s ease 0s both;
  }
  .modal.is-closing .modal-thumb-slider {
    animation: fadeOutCss 0.5s ease 0.5s both;
  }
  .modal.is-closing .modal-slide-info {
    animation: fadeOutCss 0.5s ease 0.5s both;
  }

  /* Hero char spacing mobile */
  .char-mask { margin-right: -0.9375rem; }
}

/* ===== OUR VISION: desktop text-box alignment with "QUALITY" ===== */
@media screen and (min-width: 480px) {
  .our-beliefs-text-box {
    margin-top: -26.3rem;
  }
}

/* ===== TABLET ADJUSTMENTS ===== */
@media screen and (max-width: 991px) and (min-width: 480px) {
  .about-left { gap: 4rem; }
  .about-img { max-width: 28rem; height: 44rem; }
  .stats-row-1 { gap: 4rem; }
  .stats-row-3 { padding-left: 20rem; }
  .wrap.beliefs-wrap { gap: 3rem; }
  .beliefs-card { width: 100%; height: 24rem; }
  .our-beliefs-heading { margin-right: 4rem; }
  .faq-dropdown { gap: 4rem; }
}
