/* ===== FONTS ===== */
@font-face {
  font-family: "Fragment Serif";
  src: url("https://cdn.prod.website-files.com/69372e47ab695bf5546b46ec/6937ef0b6c9dadcfbd93bd4e_PPFragment-SerifRegular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fragment Serif";
  src: url("https://cdn.prod.website-files.com/69372e47ab695bf5546b46ec/6937ef0b0905bf5725e900a6_PPFragment-SerifLight.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fragment Serif";
  src: url("https://cdn.prod.website-files.com/69372e47ab695bf5546b46ec/6937ef0b9fd3801c1098e304_PPFragment-SerifLightItalic.woff2") format("woff2");
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Fragment Glare";
  src: url("https://cdn.prod.website-files.com/69372e47ab695bf5546b46ec/6937ef0b921db3dfec5db177_PPFragment-GlareRegularItalic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Fragment Glare";
  src: url("https://cdn.prod.website-files.com/69372e47ab695bf5546b46ec/6937ef0baff51853d4bd06e8_PPFragment-GlareLightItalic.woff2") format("woff2");
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Inter 28 Pt";
  src: url("https://cdn.prod.website-files.com/69372e47ab695bf5546b46ec/6937ee0fdebd0d3b477c9a7e_Inter28pt-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter 28 Pt";
  src: url("https://cdn.prod.website-files.com/69372e47ab695bf5546b46ec/6937ee0f069d35b2ecb936e0_Inter28pt-Light.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: clip; }

:root {
  --bg: #f4ede3;
  --bg2: #ece5db;
  --text: #1a1814;
  --text-muted: rgba(26, 24, 20, 0.55);
  --text-dim: rgba(26, 24, 20, 0.38);
  --border: rgba(26, 24, 20, 0.12);
  --border-light: rgba(26, 24, 20, 0.2);
  --hero-text: #f4ede3;
  --hero-muted: rgba(244, 237, 227, 0.55);
  --serif: "Fragment Serif", Georgia, serif;
  --glare: "Fragment Glare", Georgia, serif;
  --sans: "Inter 28 Pt", "Inter", Arial, sans-serif;
  --px: clamp(1.5rem, 4vw, 4rem);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem var(--px);
  transition: background 0.5s, padding 0.5s;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 100%);
}
.nav.is-scrolled {
  background: var(--bg);
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  border-color: var(--border);
}
.nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: rgba(255,255,255,0.35);
  transition: opacity 0.5s;
}
.nav.is-scrolled::after { opacity: 0; }
.nav__logo {
  flex-shrink: 0;
  font-family: var(--serif); font-weight: 300;
  font-size: 1.4rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--hero-text);
  transition: color 0.4s;
}
.nav.is-scrolled .nav__logo { color: var(--text); }
.nav { color: var(--hero-text); }
.nav.is-scrolled { color: var(--text); }
.nav__links {
  display: flex; gap: 2rem; list-style: none;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.nav__links a { opacity: 0.6; transition: opacity 0.25s; }
.nav__links a:hover { opacity: 1; }
.nav__cta {
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  border: 1px solid rgba(244,237,227,0.35); border-radius: 100px;
  transition: border-color 0.3s, background 0.3s;
}
.nav.is-scrolled .nav__cta { border-color: var(--border-light); }
.nav__cta:hover { border-color: currentColor; background: rgba(26,24,20,0.06); }
.nav:not(.is-scrolled) .nav__cta:hover { background: rgba(244,237,227,0.1); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(12,17,16,0.1) 0%,
    rgba(12,17,16,0.2) 50%,
    rgba(12,17,16,0.65) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  height: 100%;
  padding: 0 var(--px) 4rem;
}
.hero__eyebrow {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--hero-muted); margin-bottom: 1.2rem;
  opacity: 0; transform: translateY(16px);
}
.hero__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(7rem, 17vw, 20rem);
  line-height: 0.85; letter-spacing: -0.02em;
  color: var(--hero-text);
  opacity: 0; transform: translateY(40px);
}
.hero__subtitle {
  display: flex; align-items: center; gap: 0;
  margin-top: 2rem;
  font-family: var(--glare); font-style: italic; font-weight: 400;
  font-size: clamp(1rem, 2.2vw, 1.7rem);
  color: var(--hero-text);
  opacity: 0; transform: translateY(20px);
}
.hero__subtitle-word {
  padding: 0 1.2rem;
  border-left: 1px solid rgba(244,237,227,0.3);
}
.hero__subtitle-word:first-child { padding-left: 0; border-left: none; }
.hero__scroll {
  position: absolute; bottom: 3.5rem; right: var(--px);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--hero-muted); writing-mode: vertical-rl;
  opacity: 0;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 50px;
  background: var(--text-muted);
}

/* ===== SECTION LABEL ===== */
.label {
  font-family: var(--glare); font-style: italic; font-weight: 400;
  font-size: 0.82rem; color: var(--text-dim); letter-spacing: 0.04em;
}

/* ===== ABOUT ===== */
.about {
  padding: 10rem var(--px) 8rem;
  position: relative; overflow: hidden;
}
.about__label { margin-bottom: 5rem; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3rem 5rem;
  align-items: start;
}
.about__heading {
  grid-column: 1; grid-row: 1 / 3;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.06; letter-spacing: -0.015em;
}
.about__heading em {
  font-family: var(--glare); font-style: italic; font-weight: 300;
}
.word-wrap { overflow: hidden; display: inline-block; }
.word { display: inline-block; transform: translateY(100%); opacity: 0; }
.about__img-col { grid-column: 2; grid-row: 1; }
.about__img-wrap {
  position: relative; overflow: hidden; border-radius: 2px;
  aspect-ratio: 3/4;
}
.about__img-wrap img { transform: scale(1.08); }
.about__text { grid-column: 2; grid-row: 2; padding-top: 0.5rem; }
.about__text p {
  font-size: 0.88rem; line-height: 1.8; color: var(--text-muted);
  margin-bottom: 1.4rem;
}
.about__stats {
  margin-top: 5rem; padding-top: 3rem;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
}
.about__stat-num {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1;
  margin-bottom: 0.5rem;
}
.about__stat-num sup { font-size: 0.45em; vertical-align: super; }
.about__stat-label {
  font-size: 0.78rem; line-height: 1.45; color: var(--text-muted);
}

/* ===== LES ESPACES ===== */
.livings-outer {
  position: relative;
  height: 400vh;
}
.livings-sticky {
  position: sticky; top: 0;
  height: 100vh; overflow: hidden;
  display: grid; grid-template-columns: 1fr 55%;
}
.livings-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 5rem var(--px) 5rem;
  position: relative; z-index: 2;
}
.livings-label { margin-bottom: 3rem; }
.livings-slides-text { position: relative; height: 24rem; }
.living-slide-text {
  position: absolute; top: 0; left: 0; width: 100%;
  pointer-events: none;
}
.living-slide-text.is-active { pointer-events: auto; }
.living-slide-text h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.living-slide-text p {
  font-size: 0.88rem; line-height: 1.8; color: var(--text-muted);
  max-width: 28rem; margin-bottom: 2rem;
}
.livings-link {
  display: inline-block;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border-light);
  transition: border-color 0.3s;
}
.livings-link:hover { border-color: var(--text); }
.livings-progress {
  position: absolute; bottom: 3rem; right: var(--px);
  display: flex; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.08em; color: var(--text-dim);
}
.livings-dot { padding: 0.2rem 0.4rem; transition: color 0.4s; }
.livings-dot.is-active { color: var(--text); }
.livings-right { position: relative; overflow: hidden; }
.living-slide-img { position: absolute; inset: 0; }
.living-slide-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== PARTI ARCHITECTURAL ===== */
.beliefs { padding: 10rem var(--px) 8rem; }
.beliefs__top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
  margin-bottom: 6rem;
}
.beliefs__heading {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.06; letter-spacing: -0.015em;
}
.beliefs__heading em {
  font-family: var(--glare); font-style: italic; font-weight: 300;
}
.beliefs__mission {
  padding-top: 1rem;
  font-size: 0.9rem; line-height: 1.75; color: var(--text-muted);
}
.beliefs__body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.beliefs__list { list-style: none; }
.belief-item {
  border-top: 1px solid var(--border);
  padding: 1.8rem 0;
  display: grid; grid-template-columns: 3rem 1fr;
  gap: 1rem; align-items: start;
}
.belief-num { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--text-dim); padding-top: 0.2rem; }
.belief-title { font-family: var(--serif); font-weight: 300; font-size: 1.3rem; margin-bottom: 0.4rem; }
.belief-desc { font-size: 0.82rem; color: var(--text-muted); }
.beliefs__list li:last-child { border-bottom: 1px solid var(--border); }
.beliefs__images { display: flex; flex-direction: column; gap: 1.2rem; position: sticky; top: 5rem; }
.beliefs__img-wrap { overflow: hidden; border-radius: 2px; }
.beliefs__img-wrap:first-child { aspect-ratio: 4/3; }
.beliefs__img-wrap:last-child { aspect-ratio: 16/9; }
.beliefs__quote {
  margin-top: 5rem; padding-top: 3rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem; line-height: 1.8; color: var(--text-muted);
  max-width: 46rem;
}

/* ===== PRESTATIONS ===== */
.amenities { position: relative; }
.amenity-section {
  padding: 8rem var(--px);
  display: grid;
  grid-template-columns: 1fr 55%;
  gap: 4rem;
  align-items: center;
  border-top: 1px solid var(--border);
}
.amenity-left { display: flex; flex-direction: column; justify-content: center; }
.amenity-bar { width: 2px; height: 80px; background: var(--border-light); margin-bottom: 2.5rem; }
.amenity-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1; letter-spacing: -0.02em;
  text-transform: uppercase; margin-bottom: 2rem;
}
.amenity-title em {
  font-family: var(--glare); font-style: italic; font-weight: 300;
  text-transform: none;
}
.amenity-desc { font-size: 0.85rem; line-height: 1.8; color: var(--text-muted); max-width: 22rem; }
.amenity-right { position: relative; height: 600px; }
.amenity-img-big {
  position: absolute;
  top: 0; right: 0;
  width: 78%; height: 78%;
  overflow: hidden; border-radius: 2px;
}
.amenity-img-small {
  position: absolute;
  bottom: 0; left: 0;
  width: 52%; height: 52%;
  overflow: hidden; border-radius: 2px;
}
.blind-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  pointer-events: none;
}
.blind-strip {
  flex: 1;
  background: var(--bg);
  transform-origin: left center;
}

/* ===== FAQ ===== */
.faq {
  padding: 8rem var(--px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.faq__left { position: sticky; top: 8rem; }
.faq__label { margin-bottom: 2rem; }
.faq__heading {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.06; letter-spacing: -0.015em;
}
.faq__heading em { font-family: var(--glare); font-style: italic; font-weight: 300; }
.faq__list { list-style: none; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.8rem 0; cursor: pointer;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--text-muted); }
.faq-num { font-size: 0.68rem; letter-spacing: 0.1em; color: var(--text-dim); flex-shrink: 0; }
.faq-q-text { font-family: var(--serif); font-weight: 300; font-size: 1.1rem; flex: 1; }
.faq-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  position: relative; transition: transform 0.35s;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute;
  background: var(--text-dim);
  transition: opacity 0.35s;
}
.faq-icon::before { width: 1px; height: 100%; left: 50%; }
.faq-icon::after { width: 100%; height: 1px; top: 50%; }
.faq-item.open .faq-icon::before { opacity: 0; }
.faq-answer { overflow: hidden; height: 0; }
.faq-answer-inner {
  padding: 0 0 1.8rem 3rem;
  font-size: 0.85rem; line-height: 1.8; color: var(--text-muted);
  max-width: 36rem;
}

/* ===== CTA ===== */
.cta {
  padding: 8rem var(--px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  border-top: 1px solid var(--border);
}
.cta__left { position: sticky; top: 8rem; }
.cta__heading {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.06; letter-spacing: -0.015em;
  margin-bottom: 2rem;
}
.cta__heading em { font-family: var(--glare); font-style: italic; font-weight: 300; }
.cta__desc { font-size: 0.88rem; line-height: 1.8; color: var(--text-muted); max-width: 30rem; margin-bottom: 3rem; }
.cta__images { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 2rem; }
.cta__img-wrap { overflow: hidden; border-radius: 2px; aspect-ratio: 4/5; }
.cta__form-wrap {
  background: rgba(26,24,20,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}
.cta__form-heading {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.6rem; line-height: 1.1;
  margin-bottom: 0.6rem;
}
.cta__form-heading em { font-family: var(--glare); font-style: italic; font-weight: 300; }
.cta__form-sub { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 2rem; }
.cta__form { display: flex; flex-direction: column; gap: 1rem; }
.form-field {
  position: relative;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.8rem;
  transition: border-color 0.3s;
}
.form-field:focus-within { border-color: var(--text-muted); }
.form-field input {
  width: 100%; background: none; border: none; outline: none;
  font-family: var(--sans); font-weight: 300; font-size: 0.85rem;
  color: var(--text);
  padding: 0.5rem 0;
}
.form-field input::placeholder { color: var(--text-dim); }
.form-submit {
  margin-top: 0.5rem;
  width: 100%;
  background: var(--text); color: var(--bg);
  font-family: var(--sans); font-weight: 400;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: 100px;
  cursor: pointer; border: none;
  transition: opacity 0.3s;
}
.form-submit:hover { opacity: 0.75; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-note { font-size: 0.7rem; color: var(--text-dim); line-height: 1.55; margin-top: 1rem; }
.form-message { font-size: 0.85rem; }
.form-message.is-success { background: rgba(0,120,60,0.08); color: #004d20; border: 1px solid rgba(0,120,60,0.2); }
.form-message.is-error { background: rgba(180,0,0,0.08); color: #800000; border: 1px solid rgba(180,0,0,0.2); }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 5rem var(--px) 3rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer__label { margin-bottom: 1.5rem; }
.footer__logo {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.4rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text); margin-bottom: 1rem;
}
.footer__tagline { font-size: 0.8rem; color: var(--text-dim); }
.footer__address { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.footer__contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__contact a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.3s; }
.footer__contact a:hover { color: var(--text); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.04em;
}
.footer__bottom a { transition: color 0.3s; }
.footer__bottom a:hover { color: var(--text-muted); }

/* ===== UTILITIES ===== */
.reveal { opacity: 0; transform: translateY(28px); }
.line-wrap { overflow: hidden; display: inline-block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: rgba(26,24,20,0.25); border-radius: 2px; }

/* ===== HAMBURGER ===== */
.nav__burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  color: inherit; z-index: 210; position: relative;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.nav__burger.is-open span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav__burger.is-open span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
  position: fixed; inset: 0; z-index: 195;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.is-open { opacity: 1; pointer-events: auto; }
.nav-overlay__inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 2.2rem;
  text-align: center;
}
.nav-overlay__link {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.6rem, 7vw, 2.2rem); letter-spacing: -0.01em;
  color: var(--text); transition: opacity 0.25s;
}
.nav-overlay__link:hover { opacity: 0.45; }
.nav-overlay__cta {
  font-family: var(--sans); font-weight: 400;
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.75rem 2.2rem;
  border: 1px solid var(--border-light); border-radius: 100px;
  margin-top: 0.8rem; color: var(--text);
  transition: border-color 0.3s;
}
.nav-overlay__cta:hover { border-color: var(--text); }
.nav.overlay-open { color: var(--text); }
.nav.overlay-open .nav__logo { color: var(--text); }

/* ===== MOBILE ( ≤ 767px ) ===== */
@media (max-width: 767px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }

  .hero__content { padding-bottom: 3.5rem; }
  .hero__subtitle { flex-direction: column; align-items: flex-start; gap: 0.2rem; margin-top: 1.2rem; }
  .hero__subtitle-word { border-left: none !important; padding: 0 !important; }
  .hero__scroll { display: none; }

  .about { padding: 5rem var(--px) 4rem; }
  .about__label { margin-bottom: 2.5rem; }
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about__heading { grid-column: 1; grid-row: 1; font-size: clamp(2rem, 9vw, 2.8rem); }
  .about__img-col { grid-column: 1; grid-row: 2; }
  .about__text   { grid-column: 1; grid-row: 3; padding-top: 0; }
  .about__stats  { grid-template-columns: 1fr 1fr; margin-top: 3rem; padding-top: 2rem; gap: 2rem 1.5rem; }
  .about__stat-num { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  .livings-outer  { height: auto; }
  .livings-sticky { position: static; height: auto; display: flex; flex-direction: column; }
  .livings-right  { order: -1; height: 62vw; min-height: 240px; position: relative; }
  .livings-left   { padding: 3rem var(--px) 4rem; justify-content: flex-start; }
  .livings-label  { margin-bottom: 1.5rem; }
  .livings-slides-text { height: 20rem; }
  .living-slide-text h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); margin-bottom: 1rem; }
  .livings-progress { position: static; justify-content: flex-start; margin-top: 2rem; }
  .livings-dot { cursor: pointer; }

  .beliefs { padding: 5rem var(--px) 4rem; }
  .beliefs__top { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
  .beliefs__heading { font-size: clamp(2rem, 9vw, 2.8rem); }
  .beliefs__body { grid-template-columns: 1fr; gap: 2.5rem; }
  .beliefs__images { position: static; flex-direction: column; gap: 1rem; }
  .beliefs__quote { margin-top: 3rem; padding-top: 2rem; }

  .amenity-section { padding: 4rem var(--px); grid-template-columns: 1fr; gap: 2.5rem; }
  .amenity-title { font-size: clamp(1.8rem, 7vw, 2.8rem); margin-bottom: 1rem; }
  .amenity-right { height: 72vw; min-height: 260px; }
  .amenity-img-big   { width: 80%; height: 76%; }
  .amenity-img-small { width: 55%; height: 50%; }

  .faq { padding: 4rem var(--px); grid-template-columns: 1fr; gap: 2.5rem; }
  .faq__left { position: static; }
  .faq__heading { font-size: clamp(2rem, 9vw, 2.8rem); }
  .faq-q-text { font-size: 0.85rem; word-break: break-word; }
  .faq-answer-inner { padding-left: 0.8rem; font-size: 0.8rem; }

  .cta { padding: 4rem var(--px); grid-template-columns: 1fr; gap: 3rem; }
  .cta__left { position: static; }
  .cta__heading { font-size: clamp(2rem, 9vw, 2.8rem); }
  .cta__images { grid-template-columns: 1fr; }
  .cta__img-wrap { aspect-ratio: 16 / 9; }

  .footer { padding: 4rem var(--px) 2.5rem; }
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
