/* 리첼 에듀포레 경산역 — 프로젝트 이미지 오버라이드 */

/* 히어로: 주간 투시도 (비교용 — 기존 aerial_day와 교체) */
.rh-main_vd:after {
  display: none;
}

.rh-main_vd_box::before {
  background: url(../project/perspective_day.jpg) no-repeat center / cover;
  opacity: 1;
}

.rh-main_wrap.on .rh-main_vd_box::before {
  opacity: 1;
}

/* 분양일정(on2) 시 검정 박스 위로 이미지만 어둡게 → 글씨 가독성 */
.rh-main_wrap.on2 .rh-main_vd_box::before {
  opacity: 0.2;
}

/* 흰 GNB·히어로 카피 가독성: 상단~중상단까지 어둡게 + 가장자리 비네트 */
.rh-main_vd_box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background:
    -o-linear-gradient(
      top,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.42) 18%,
      rgba(0, 0, 0, 0.22) 38%,
      rgba(0, 0, 0, 0.08) 52%,
      rgba(0, 0, 0, 0) 68%
    ),
    -o-radial-gradient(
        center,
        ellipse,
        rgba(0, 0, 0, 0) 42%,
        rgba(0, 0, 0, 0.28) 100%
      );
  background:
    -webkit-gradient(
      linear,
      left top, left bottom,
      from(rgba(0, 0, 0, 0.62)),
      color-stop(18%, rgba(0, 0, 0, 0.42)),
      color-stop(38%, rgba(0, 0, 0, 0.22)),
      color-stop(52%, rgba(0, 0, 0, 0.08)),
      color-stop(68%, rgba(0, 0, 0, 0))
    ),
    radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0) 42%,
      rgba(0, 0, 0, 0.28) 100%
    );
  background:
    -o-linear-gradient(
      top,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.42) 18%,
      rgba(0, 0, 0, 0.22) 38%,
      rgba(0, 0, 0, 0.08) 52%,
      rgba(0, 0, 0, 0) 68%
    ),
    -o-radial-gradient(
      center,
      ellipse,
      rgba(0, 0, 0, 0) 42%,
      rgba(0, 0, 0, 0.28) 100%
    );
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.42) 18%,
      rgba(0, 0, 0, 0.22) 38%,
      rgba(0, 0, 0, 0.08) 52%,
      rgba(0, 0, 0, 0) 68%
    ),
    radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0) 42%,
      rgba(0, 0, 0, 0.28) 100%
    );
  -webkit-transition: opacity 0.8s;
  -o-transition: opacity 0.8s;
  transition: opacity 0.8s;
}

.rh-main_wrap.on2 .rh-main_vd_box::after {
  opacity: 0;
}

/* 2섹션(sum): perspective-bg — 상단 하늘 앵커로 텍스트 가독성
   3섹션(overview, 남천 물세권): aerial_day — 조감도 */
.rh-sum_bg::before {
  background: url(../project/perspective-bg.jpg) no-repeat bottom / cover;
}

.rh-sum_wrap.on2 .rh-sum_bg::before {
  background: url(../project/perspective-bg.jpg) center bottom 100% no-repeat;
  background-size: cover;
}

.overview_wrap::before {
  background: url(../project/aerial_day.jpg) no-repeat center / cover;
}

/* 남천 섹션: 상단·좌우를 밝혀 어두운 타이포 가독성 확보 */
.overview_wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    -webkit-gradient(
      linear,
      left top, left bottom,
      from(rgba(255, 255, 255, 0.72)),
      color-stop(12%, rgba(255, 255, 255, 0.38)),
      color-stop(24%, rgba(255, 255, 255, 0.12)),
      color-stop(38%, rgba(255, 255, 255, 0))
    ),
    -webkit-gradient(
      linear,
      left top, right top,
      from(rgba(255, 255, 255, 0.75)),
      color-stop(16%, rgba(255, 255, 255, 0.42)),
      color-stop(28%, rgba(255, 255, 255, 0.14)),
      color-stop(40%, rgba(255, 255, 255, 0)),
      color-stop(68%, rgba(255, 255, 255, 0)),
      color-stop(78%, rgba(255, 255, 255, 0.06)),
      color-stop(88%, rgba(255, 255, 255, 0.32)),
      to(rgba(255, 255, 255, 0.62))
    );
  background:
    -o-linear-gradient(
      top,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.38) 12%,
      rgba(255, 255, 255, 0.12) 24%,
      rgba(255, 255, 255, 0) 38%
    ),
    -o-linear-gradient(
      left,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0.42) 16%,
      rgba(255, 255, 255, 0.14) 28%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0) 68%,
      rgba(255, 255, 255, 0.06) 78%,
      rgba(255, 255, 255, 0.32) 88%,
      rgba(255, 255, 255, 0.62) 100%
    );
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.38) 12%,
      rgba(255, 255, 255, 0.12) 24%,
      rgba(255, 255, 255, 0) 38%
    ),
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0.42) 16%,
      rgba(255, 255, 255, 0.14) 28%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0) 68%,
      rgba(255, 255, 255, 0.06) 78%,
      rgba(255, 255, 255, 0.32) 88%,
      rgba(255, 255, 255, 0.62) 100%
    );
}

.overview_wrap .over_tit_box {
  z-index: 2;
}

.overview_wrap .over_tit_box h2 {
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.55);
}

.overview_wrap .over_tit_box p {
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.45);
  opacity: 0.85;
}

@media (max-width: 1400px) {
  .rh-sum_wrap::before {
    background: url(../project/perspective-bg.jpg) no-repeat bottom / cover !important;
  }

  .rh-sum_wrap.active .rh-sum_bg::before {
    background: url(../project/perspective-bg.jpg) center bottom 100% no-repeat !important;
    background-size: cover !important;
  }

  .overview_wrap::before {
    background: url(../project/aerial_day.jpg) no-repeat center / cover !important;
  }
}

@media (max-width: 768px) {
  .rh-sum_wrap::before {
    background: url(../project/perspective-bg.jpg) no-repeat bottom / cover !important;
  }
}

.rh-brand_bg.bg01 {
  background: url(../project/b_01.jpg) center / cover no-repeat;
}

.rh-brand_bg.bg02 {
  background: url(../project/b_02.jpg) center / cover no-repeat;
}

.rh-brand_bg.bg03 {
  background: url(../project/b_03.jpg) center / cover no-repeat;
}

/* 브랜드 섹션 하단 카드 — 단지 썸네일 */
.rh-brand_content {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
  padding: 0 2rem 2.5rem 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.rh-brand_content > div {
  width: calc(33.333% - 1.85rem);
  max-width: 220px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 220px;
  flex: 0 1 220px;
  cursor: pointer;
}

.rh-brand_content h4 {
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.rh-brand_img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.rh-brand_img img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

@media (max-width: 1200px) {
  .rh-brand_content > div {
    max-width: 180px;
    -ms-flex-preferred-size: 180px;
    flex-basis: 180px;
  }
}

@media (max-width: 900px) {
  .rh-brand_content {
    width: 92% !important;
    height: auto !important;
    right: 4% !important;
    bottom: 4rem !important;
    gap: 0.75rem !important;
  }

  .rh-brand_content > div {
    max-width: none;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    width: auto;
  }
}

.rh-out_vd:after {
  display: none;
}

.rh-out_vd_box {
  background: url(../project/aerial_night.jpg) center / cover no-repeat;
}

.rh-out_vd_box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
  pointer-events: none;
}

.rh-unit_img_box img.rh-unit_img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* 서브 페이지 GNB: 스크롤 시 흰 배경 전환 */
body.sub .rh-navi {
  -webkit-transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    height 0.35s ease;
  -o-transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    height 0.35s ease;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    height 0.35s ease;
}

body.sub .rh-navi.mouseover {
  display: block !important;
}

body.sub .rh-navi.active,
body.sub .rh-navi.mouseover {
  background-color: #fff !important;
  border-bottom: 1px solid #ddd !important;
}

body.sub .rh-navi.active #logo a,
body.sub .rh-navi.mouseover #logo a {
  color: #11284e !important;
}

body.sub .rh-navi.active #logo .logo-mark,
body.sub .rh-navi.mouseover #logo .logo-mark {
  -webkit-filter: brightness(0) saturate(100%);
  filter: brightness(0) saturate(100%);
  opacity: 0.88;
}

body.sub .rh-navi.active .rh-tel_wrap a p,
body.sub .rh-navi.mouseover .rh-tel_wrap a p {
  color: #11284e !important;
}

/* 서브 페이지 로컬 내비게이션(#snb) */
#snb_wrap {
  width: 100% !important;
  max-width: 1100px;
  height: 58px !important;
  margin: 0 auto !important;
  border-bottom: 1px solid rgba(17, 40, 78, 0.1);
}

#snb {
  width: auto !important;
  min-width: 0;
  max-width: 100%;
  height: 58px !important;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: visible;
  top: 0 !important;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#snb > li {
  float: none !important;
  width: auto !important;
  height: 100% !important;
  min-width: 8.5rem;
  color: #11284e;
}

#snb > li > a:after {
  display: none !important;
}

#snb > li:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.75rem !important;
  min-width: 2.75rem !important;
}

#snb > li:first-child a {
  position: relative !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  width: 2.35rem !important;
  height: 2.35rem !important;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(17, 40, 78, 0.06);
  -webkit-transition: background 0.25s ease;
  -o-transition: background 0.25s ease;
  transition: background 0.25s ease;
}

#snb > li:first-child a:hover {
  background: rgba(17, 40, 78, 0.12);
}

#snb > li:first-child img {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0 !important;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  -webkit-filter: none;
          filter: none;
}

#snb > li:nth-child(3) {
  width: auto !important;
  min-width: 9.5rem;
}

#snb > li:first-child + li + li > a {
  margin-top: 0 !important;
  color: #11284e !important;
  font-weight: 600;
}

#snb .ov {
  margin-left: 0 !important;
}

#snb .ov > a {
  height: 100% !important;
  line-height: 1 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.85rem 0 1rem !important;
  font-size: 0.8125rem !important;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #11284e !important;
  min-width: 0 !important;
}

#snb > li:nth-child(2):after,
#snb > li:nth-child(3):after {
  content: "";
  width: 0.4rem !important;
  height: 0.4rem !important;
  border: 0 !important;
  border-right: 1.5px solid rgba(17, 40, 78, 0.55) !important;
  border-bottom: 1.5px solid rgba(17, 40, 78, 0.55) !important;
  -webkit-transform: rotate(45deg) !important;
      -ms-transform: rotate(45deg) !important;
          transform: rotate(45deg) !important;
  right: 0.85rem !important;
  top: 0 !important;
  bottom: 0;
  margin: auto 0;
}

#snb > li:nth-child(2):hover:after,
#snb > li:nth-child(3):hover:after {
  -webkit-transform: rotate(-135deg) !important;
      -ms-transform: rotate(-135deg) !important;
          transform: rotate(-135deg) !important;
  top: 0.15rem !important;
}

#snb .ov ul {
  top: calc(100% + 0.45rem) !important;
  min-width: 100%;
  padding: 0.35rem 0;
  background: #fff !important;
  border: 1px solid rgba(17, 40, 78, 0.1);
  border-radius: 0.75rem;
  -webkit-box-shadow: 0 14px 32px rgba(17, 40, 78, 0.12);
          box-shadow: 0 14px 32px rgba(17, 40, 78, 0.12);
  overflow: hidden;
}

#snb .ov ul li {
  border: 0 !important;
  margin-top: 0 !important;
}

#snb .ov ul li a {
  font-size: 0.8125rem !important;
  color: #2a3444 !important;
  padding: 0.7rem 1rem !important;
  -webkit-transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  -o-transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

#snb .ov ul li a:hover {
  background: rgba(17, 40, 78, 0.06) !important;
  color: #11284e !important;
  padding-left: 1.15rem !important;
}

@media (max-width: 1024px) {
  #snb_wrap {
    height: 52px !important;
    padding: 0 0.75rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  #snb {
    height: 48px !important;
    top: 0 !important;
    border-radius: 0;
    width: 100% !important;
    right: 0;
    left: 0;
    margin: 0 auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  #snb > li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0;
            flex: 1 1 0;
    min-width: 0;
  }

  #snb > li:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 2.75rem;
            flex: 0 0 2.75rem;
  }

  #snb .ov > a {
    font-size: 0.75rem !important;
    padding: 0 1.5rem 0 0.75rem !important;
  }
}

/* 사업개요 슬라이드 이전/다음 버튼 숨김 */
.swiper-button-prev-planning,
.swiper-button-next-planning {
  display: none !important;
}

/* 서브 사업개요 슬라이드 이미지 — 리첼 조감/투시도 */
.sub_planning_img.img01 {
  background: url(../project/aerial_day.jpg) center / cover no-repeat !important;
}
.sub_planning_img.img02 {
  background: url(../project/perspective_day.jpg) center / cover no-repeat !important;
}
.sub_planning_img.img03 {
  background: url(../project/perspective_night.jpg) center / cover no-repeat !important;
}

/* 서브 상단 배경 — Unsplash 교체 이미지 (캐시 무효화) */
.sub_top_img.img01 {
  background-image: url(../project/sub_bg01.jpg);
}
.sub_top_img.img02 {
  background: url(../project/land_sub.jpg) center / cover no-repeat !important;
  opacity: 1;
}
.sub_top_img.img03 {
  background-image: url(../images/sub_top03.jpg?v=20260714);
}
.sub_top_img.img04 {
  background: url(../project/contract_sub.jpg) center / cover no-repeat !important;
  opacity: 1;
}
.sub_top_img.img05 {
  background: url(../project/presale_sub.jpg) center / cover no-repeat !important;
  opacity: 1;
}
.sub_top_img.img06 {
  background-image: url(../images/sub_top06.jpg?v=20260714);
}
.sub_top_img.img07 {
  background: url(../project/presale_sub.jpg) center / cover no-repeat !important;
  opacity: 1;
}

/* 서브 상단 타이틀 — 퍼진 자간 상태에서 글자별 페이드인 */
.sub_top_txt {
  -webkit-animation: none !important;
  animation: none !important;
  opacity: 1 !important;
}
.sub_top_txt h2 {
  -webkit-animation: none !important;
  animation: none !important;
  color: #fff !important;
  letter-spacing: 2.5rem !important;
  padding-left: 2.5rem !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sub_top_txt h2 .richell-sub-char {
  display: inline-block;
  color: #fff;
  opacity: 0;
  -webkit-transform: translate3d(0, -0.9em, 0);
  transform: translate3d(0, -0.9em, 0);
  -webkit-animation: richell-sub-char-fade 1.45s ease forwards;
  animation: richell-sub-char-fade 1.45s ease forwards;
  will-change: opacity, transform;
}
.sub_top_txt h2 .richell-sub-char.is-space {
  width: 0.35em;
}
@-webkit-keyframes richell-sub-char-fade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -0.9em, 0);
    transform: translate3d(0, -0.9em, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes richell-sub-char-fade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -0.9em, 0);
    transform: translate3d(0, -0.9em, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 767px) {
  .sub_top_txt h2 {
    letter-spacing: 1rem !important;
    padding-left: 1rem !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sub_top_txt h2 .richell-sub-char {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    -webkit-animation: none;
    animation: none;
  }
}

/* 모집공고 — 좌측 배경·로고를 리첼 에듀포레 경산역으로 교체 */
.sub_gongo_img_box {
  background: url(../project/aerial_day.jpg) center / cover no-repeat !important;
}
.sub_gongo_txt_box img.sub_gongo_logo,
.sub_gongo_logo {
  display: block;
  max-width: none !important;
  height: auto !important;
  margin-left: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #11284e;
}

/* 홈 Location 섹션 — 이미지 크기 */
.location_wrap .rh-loca_img_box {
  overflow: hidden;
  line-height: 0;
}
.location_wrap .rh-loca_img_box img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 홈 라이프 섹션 — 이미지/텍스트 등장 효과 (클립 와이프 + 분리 타이밍) */
.location_wrap .rh-loca_tit_box {
  opacity: 0;
  -webkit-transform: translate3d(0, 2.25rem, 0) !important;
      -ms-transform: translate3d(0, 2.25rem, 0) !important;
          transform: translate3d(0, 2.25rem, 0) !important;
  -webkit-filter: blur(4px);
          filter: blur(4px);
  -webkit-transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-filter 1s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1) !important;
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.location_wrap.on .rh-loca_tit_box,
.location_wrap.on2 .rh-loca_tit_box {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) !important;
      -ms-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition-delay: 0.12s !important;
       -o-transition-delay: 0.12s !important;
          transition-delay: 0.12s !important;
}

.location_wrap .rh-loca_con.con01,
.location_wrap .rh-loca_con.con02,
.location_wrap .rh-loca_con.con03,
.location_wrap .rh-loca_con.con04,
.location_wrap .rh-loca_con.con05 {
  opacity: 1 !important;
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.location_wrap .rh-loca_con.con01 {
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}

.location_wrap .rh-loca_con.con02 {
  -webkit-transform: translate(0, -3.25rem) !important;
      -ms-transform: translate(0, -3.25rem) !important;
          transform: translate(0, -3.25rem) !important;
}

.location_wrap .rh-loca_con.con03,
.location_wrap .rh-loca_con.con04,
.location_wrap .rh-loca_con.con05 {
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}

.location_wrap .rh-loca_img_box img {
  opacity: 0;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-clip-path: inset(12% 12% 12% 12%);
          clip-path: inset(12% 12% 12% 12%);
  -webkit-transition:
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-clip-path 1.25s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 1.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, clip-path;
}

.location_wrap .rh-loca_txt_box {
  opacity: 0;
  -webkit-transform: translate3d(0, 1.75rem, 0);
      -ms-transform: translate3d(0, 1.75rem, 0);
          transform: translate3d(0, 1.75rem, 0);
  -webkit-transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.location_wrap.on .rh-loca_con.con01 .rh-loca_img_box img,
.location_wrap.on2 .rh-loca_con.con01 .rh-loca_img_box img {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.28s;
       -o-transition-delay: 0.28s;
          transition-delay: 0.28s;
}

.location_wrap.on .rh-loca_con.con01 .rh-loca_txt_box,
.location_wrap.on2 .rh-loca_con.con01 .rh-loca_txt_box {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0.55s;
       -o-transition-delay: 0.55s;
          transition-delay: 0.55s;
}

.location_wrap.on .rh-loca_con.con02 .rh-loca_img_box img,
.location_wrap.on2 .rh-loca_con.con02 .rh-loca_img_box img {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.42s;
       -o-transition-delay: 0.42s;
          transition-delay: 0.42s;
}

.location_wrap.on .rh-loca_con.con02 .rh-loca_txt_box,
.location_wrap.on2 .rh-loca_con.con02 .rh-loca_txt_box {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0.7s;
       -o-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.location_wrap.on .rh-loca_con.con03 .rh-loca_img_box img,
.location_wrap.on2 .rh-loca_con.con03 .rh-loca_img_box img {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.56s;
       -o-transition-delay: 0.56s;
          transition-delay: 0.56s;
}

.location_wrap.on .rh-loca_con.con03 .rh-loca_txt_box,
.location_wrap.on2 .rh-loca_con.con03 .rh-loca_txt_box {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0.85s;
       -o-transition-delay: 0.85s;
          transition-delay: 0.85s;
}

.location_wrap.on2 .rh-loca_con.con04 .rh-loca_img_box img {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.18s;
       -o-transition-delay: 0.18s;
          transition-delay: 0.18s;
}

.location_wrap.on2 .rh-loca_con.con04 .rh-loca_txt_box {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0.42s;
       -o-transition-delay: 0.42s;
          transition-delay: 0.42s;
}

.location_wrap.on2 .rh-loca_con.con05 .rh-loca_img_box img {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transition-delay: 0.32s;
       -o-transition-delay: 0.32s;
          transition-delay: 0.32s;
}

.location_wrap.on2 .rh-loca_con.con05 .rh-loca_txt_box {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0.58s;
       -o-transition-delay: 0.58s;
          transition-delay: 0.58s;
}

@media (prefers-reduced-motion: reduce) {
  .location_wrap .rh-loca_tit_box,
  .location_wrap .rh-loca_img_box img,
  .location_wrap .rh-loca_txt_box {
    opacity: 1 !important;
    -webkit-filter: none !important;
            filter: none !important;
    -webkit-clip-path: none !important;
            clip-path: none !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
  }

  .location_wrap .rh-loca_con.con02 {
    -webkit-transform: translate(0, -3.25rem) !important;
        -ms-transform: translate(0, -3.25rem) !important;
            transform: translate(0, -3.25rem) !important;
  }
}
/* 첫 번째(자연·life01): 가로형 원본 → 크게 표시 */
.location_wrap .rh-loca_con.con01 .rh-loca_img_box img {
  width: 34rem;
  max-width: 34rem;
  aspect-ratio: 16 / 10;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.location_wrap .rh-loca_con.con04 .rh-loca_img_box img,
.location_wrap .rh-loca_con.con05 .rh-loca_img_box img {
  width: 18.8125rem; /* 세로형 */
}
.location_wrap .rh-loca_con.con02 .rh-loca_img_box img,
.location_wrap .rh-loca_con.con03 .rh-loca_img_box img {
  width: 26.9375rem; /* 가로형 */
}
.location_wrap .rh-loca_txt_box {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  padding: 0;
  border-left: 0;
  white-space: nowrap;
  max-width: none;
}

.location_wrap .rh-loca_txt_box > span,
.location_wrap .rh-loca_txt_box h4 {
  display: none !important;
}

.location_wrap .rh-loca_idx {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  margin: 0;
  border: 1px solid rgba(17, 40, 78, 0.35);
  border-radius: 50%;
  font-style: normal;
  font-family: "DEFINE", "Arial", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #11284e;
  line-height: 1;
}

.location_wrap .rh-loca_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.25rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 3.5rem;
  padding-right: 1rem;
  border-right: 1px solid rgba(17, 40, 78, 0.28);
}

.location_wrap .rh-loca_label h5 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif !important;
  font-size: 1.125rem !important;
  font-weight: 700;
  line-height: 1.15 !important;
  color: #11284e !important;
  text-transform: none !important;
  letter-spacing: -0.03em;
}

.location_wrap .rh-loca_txt_box .rh-loca_en,
.location_wrap .rh-loca_label .rh-loca_en {
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  font-family: "DEFINE", "Arial", sans-serif !important;
  font-size: 0.625rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #8a93a3 !important;
  line-height: 1.2 !important;
}

.location_wrap .rh-loca_txt_box p {
  margin: 0;
  font-size: 0.875rem !important;
  line-height: 1.65 !important;
  opacity: 0.78 !important;
  color: #2a3444;
  white-space: nowrap;
}

.location_wrap .rh-loca_con.con04 {
  white-space: nowrap;
}

/* location01/02 정렬 보정: 자연/생활 텍스트, 교육/교통 이미지, 비전 텍스트 */
.location_wrap .rh-loca_txt_box.box01 {
  right: -24rem !important;
}
.location_wrap .rh-loca_txt_box.box02 {
  right: -2.5rem !important;
}
.location_wrap .rh-loca_con.con03 .rh-loca_img_box {
  position: relative;
  -webkit-transform: translate(-7rem, 1.25rem);
  -ms-transform: translate(-7rem, 1.25rem);
  transform: translate(-7rem, 1.25rem);
}
.location_wrap .rh-loca_con.con04 .rh-loca_img_box {
  position: relative;
  -webkit-transform: translateY(-3.5rem);
  -ms-transform: translateY(-3.5rem);
  transform: translateY(-3.5rem);
}
.location_wrap .rh-loca_txt_box.box03 {
  left: -15.5rem !important;
  bottom: -4.5rem !important;
}
.location_wrap .rh-loca_txt_box.box05 {
  left: -11rem !important;
  top: 14rem !important;
}

@media (max-width: 1400px) {
  .location_wrap .rh-loca_txt_box.box01 {
    right: -18rem !important;
  }
  .location_wrap .rh-loca_txt_box.box02 {
    right: -1.5rem !important;
  }
  .location_wrap .rh-loca_con.con03 .rh-loca_img_box {
    -webkit-transform: translate(-5rem, 1rem);
    -ms-transform: translate(-5rem, 1rem);
    transform: translate(-5rem, 1rem);
  }
  .location_wrap .rh-loca_con.con04 .rh-loca_img_box {
    -webkit-transform: translateY(-2.5rem);
    -ms-transform: translateY(-2.5rem);
    transform: translateY(-2.5rem);
  }
  .location_wrap .rh-loca_txt_box.box03 {
    left: -12rem !important;
    bottom: -3.5rem !important;
  }
  .location_wrap .rh-loca_txt_box.box05 {
    left: -9rem !important;
    top: 11rem !important;
  }
}

@media (max-width: 768px) {
  .location_wrap .rh-loca_con.con03 .rh-loca_img_box,
  .location_wrap .rh-loca_con.con04 .rh-loca_img_box {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .location_wrap .rh-loca_txt_box.box01,
  .location_wrap .rh-loca_txt_box.box02,
  .location_wrap .rh-loca_txt_box.box03,
  .location_wrap .rh-loca_txt_box.box05 {
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
  }
}

@media (max-width: 768px) {
  .location_wrap .rh-loca_txt_box,
  .location_wrap .rh-loca_txt_box p,
  .location_wrap .rh-loca_con.con04 {
    white-space: normal;
  }

  .location_wrap .rh-loca_txt_box {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media (max-width: 1400px) {
  /* 데스크톱과 비슷한 체감 크기 유지 */
  .location_wrap .rh-loca_con.con01 .rh-loca_img_box img {
    width: min(32rem, 52vw);
    max-width: min(32rem, 52vw);
  }
  .location_wrap .rh-loca_con.con02 .rh-loca_img_box img,
  .location_wrap .rh-loca_con.con03 .rh-loca_img_box img {
    width: min(28rem, 46vw);
    max-width: min(28rem, 46vw);
  }
  .location_wrap .rh-loca_con.con04 .rh-loca_img_box img,
  .location_wrap .rh-loca_con.con05 .rh-loca_img_box img {
    width: min(20rem, 36vw);
    max-width: min(20rem, 36vw);
  }
}

@media (max-width: 1024px) {
  .location_wrap .rh-loca_con.con01 .rh-loca_img_box img {
    width: min(28rem, 70vw);
    max-width: min(28rem, 70vw);
  }
  .location_wrap .rh-loca_con.con02 .rh-loca_img_box img,
  .location_wrap .rh-loca_con.con03 .rh-loca_img_box img {
    width: min(24rem, 64vw);
    max-width: min(24rem, 64vw);
  }
  .location_wrap .rh-loca_con.con04 .rh-loca_img_box img,
  .location_wrap .rh-loca_con.con05 .rh-loca_img_box img {
    width: min(18rem, 50vw);
    max-width: min(18rem, 50vw);
  }
}

@media (max-width: 768px) {
  .location_wrap .rh-loca_con.con01 .rh-loca_img_box img,
  .location_wrap .rh-loca_con.con02 .rh-loca_img_box img,
  .location_wrap .rh-loca_con.con03 .rh-loca_img_box img,
  .location_wrap .rh-loca_con.con04 .rh-loca_img_box img,
  .location_wrap .rh-loca_con.con05 .rh-loca_img_box img {
    width: 100%;
    max-width: 100%;
  }
}

.sub_over_txt_box > div p {
  height: auto !important;
  min-height: 3rem;
}

/* 로고 — rh-land_logo + Richell Edufore / 리첼 에듀포레 */
#logo {
  width: auto !important;
  min-width: 0;
  height: auto !important;
}

#logo a,
body.main #logo a,
.rh-navi.white #logo a,
.rh-navi.over #logo a,
.rh-navi.mouseover #logo a,
.rh-navi.active #logo a,
body.main .rh-navi.white #logo a,
body.main .rh-navi.over #logo a,
body.main .rh-navi.active #logo a,
body.main .rh-navi.mouseover #logo a {
  background: none !important;
  background-image: none !important;
  text-indent: 0 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
  overflow: visible !important;
  width: auto !important;
  height: auto !important;
  line-height: 1;
  text-decoration: none !important;
  -webkit-transition:
    color 0.3s ease,
    opacity 0.3s ease;
  -o-transition:
    color 0.3s ease,
    opacity 0.3s ease;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

#logo a::before {
  content: none !important;
  display: none !important;
}

#logo .logo-mark {
  display: block;
  width: 2.65rem;
  height: 2.65rem;
  -o-object-fit: contain;
  object-fit: contain;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition:
    -webkit-filter 0.3s ease,
    filter 0.3s ease,
    opacity 0.3s ease;
  -o-transition:
    filter 0.3s ease,
    opacity 0.3s ease;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease,
    -webkit-filter 0.3s ease;
}

#logo .logo-wordmark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.18rem;
  padding-left: 0.75rem;
  border-left: 1px solid currentColor;
  opacity: 0.96;
}

#logo .logo-en {
  font-family: "futura", "DEFINE", "Arial", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-transform: none;
  opacity: 0.78;
}

#logo .logo-ko {
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.26rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  opacity: 1;
}

/* 밝은 섹션: 진한 로고 / 히어로·어두운 섹션(.white): 흰 로고 */
#logo a,
body.main #logo a {
  color: #11284e !important;
}

#logo .logo-mark {
  -webkit-filter: brightness(0) saturate(100%);
  filter: brightness(0) saturate(100%);
  opacity: 0.88;
}

.rh-navi.white #logo a,
.rh-navi.over #logo a,
body.main .rh-navi.white #logo a,
body.main .rh-navi.over #logo a {
  color: #fff !important;
}

.rh-navi.white #logo .logo-mark,
.rh-navi.over #logo .logo-mark,
body.main .rh-navi.white #logo .logo-mark,
body.main .rh-navi.over #logo .logo-mark {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

.rh-navi.active #logo a,
.rh-navi.mouseover #logo a,
body.main .rh-navi.active #logo a,
body.main .rh-navi.mouseover #logo a {
  color: #11284e !important;
}

.rh-navi.active #logo .logo-mark,
.rh-navi.mouseover #logo .logo-mark,
body.main .rh-navi.active #logo .logo-mark,
body.main .rh-navi.mouseover #logo .logo-mark {
  -webkit-filter: brightness(0) saturate(100%);
  filter: brightness(0) saturate(100%);
  opacity: 0.88;
}

@media screen and (max-width: 1280px) {
  #logo .logo-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  #logo .logo-wordmark {
    padding-left: 0.6rem;
    gap: 0.1rem;
  }

  #logo .logo-en {
    font-size: 0.64rem;
  }

  #logo .logo-ko {
    font-size: 1.12rem;
  }
}

@media screen and (max-width: 900px) {
  #logo a {
    gap: 0.5rem !important;
  }

  #logo .logo-mark {
    width: 2.1rem;
    height: 2.1rem;
  }

  #logo .logo-wordmark {
    padding-left: 0.5rem;
  }

  #logo .logo-en {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  #logo .logo-ko {
    font-size: 1.02rem;
    letter-spacing: -0.02em;
  }
}

@media screen and (max-width: 640px) {
  #logo .logo-en {
    display: none;
  }

  #logo .logo-wordmark {
    border-left-width: 1px;
    gap: 0;
  }

  #logo .logo-ko {
    display: block;
    font-size: 0.94rem;
  }
}

.rh-footer_logo {
  opacity: 0;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden;
}

/* TOP 버튼 — 원형 + 얇은 화살표 */
.rh-top_bt {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #11284e;
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.rh-top_bt:before {
  content: "";
  width: 9px;
  height: 9px;
  left: 0;
  right: 0;
  top: -2px;
  bottom: 0;
  margin: auto;
  border-left: 1.5px solid #fff;
  border-top: 1.5px solid #fff;
  border-right: 0;
  border-bottom: 0;
  background: none;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.rh-top_bt:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  bottom: 0;
  margin: auto;
  width: 1.5px;
  height: 11px;
  background-color: #fff;
  border-radius: 1px;
  pointer-events: none;
}

.rh-top_bt:hover {
  background-color: #1a3a6b;
  border-color: rgba(255, 255, 255, 0.35);
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (max-width: 767px) {
  .rh-footer .rh-top_bt {
    width: 38px;
    height: 38px;
  }

  .rh-footer .rh-top_bt:before {
    width: 8px;
    height: 8px;
    top: -1px;
  }

  .rh-footer .rh-top_bt:after {
    height: 10px;
    top: 2px;
  }
}

/* 기본 숨김 — .show 가 붙으면 홈 팝업 노출 */
.rh-popup_wrap {
  display: none !important;
}
.rh-popup_wrap.show {
  display: block !important;
}

/* 홈 팝업 — 모바일 가로 중앙 정렬 */
@media (max-width: 767px) {
  #rh-k_popup2.richell-home-popups .rh-popup {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 1rem;
  }
  #rh-k_popup2.richell-home-popups .rh-pop_content {
    margin-left: auto;
    margin-right: auto;
    width: 85%;
    max-width: 350px;
  }
  #rh-k_popup2.richell-home-popups .swiper_pop .richell-popup-item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100% !important;
    max-width: 100%;
  }
  #rh-k_popup2.richell-home-popups .swiper_pop .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #rh-k_popup2.richell-home-popups .rh-pop_arrow {
    float: none;
    clear: both;
    margin: 12px auto 0;
    position: relative;
    z-index: 1;
  }
  #rh-k_popup2.richell-home-popups .check {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 16px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    position: relative;
    z-index: 1;
  }
}

/* 영상 팝업(#rh-k_popup) 임시 숨김 — 복구 시 이 블록 제거 */
#rh-k_popup,
#rh-k_popup.show {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* OPEN 예정 배지 — 중앙 고정 + 주변 텍스트 회전 */
.rh-main_guest {
  width: 8.75rem;
  height: 8.75rem;
}

.rh-main_guest a,
.rh-main_guest a.open-badge {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  cursor: default;
  text-decoration: none;
}

.rh-main_guest_bg {
  display: none !important;
}

.rh-main_guest p {
  display: none !important;
}

.open-badge__spin {
  position: absolute;
  inset: 0;
  -webkit-animation: open-badge-spin 18s linear infinite;
  animation: open-badge-spin 18s linear infinite;
}

.open-badge__ring {
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1;
  stroke-dasharray: 1.5 5;
}

.open-badge__text {
  fill: #fff;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.open-badge__center {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.2rem;
  color: #fff;
  text-align: center;
  line-height: 1;
}

.open-badge__center strong {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.open-badge__center em {
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

@-webkit-keyframes open-badge-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes open-badge-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .rh-main_guest {
    width: 7.25rem;
    height: 7.25rem;
  }

  .open-badge__text {
    font-size: 10.5px;
  }

  .open-badge__center strong {
    font-size: 1rem;
  }

  .open-badge__center em {
    font-size: 0.75rem;
  }
}

/* 상단: 관심고객등록 (전화번호 우측) — 밝은 섹션=진한색, .white=흰색 */
.rh-top_fixed_wrap {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.875rem;
  top: 50% !important;
  bottom: auto !important;
  height: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.rh-tel_wrap,
.rh-guest_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  line-height: 1;
}

.rh-tel_wrap {
  margin-right: 0;
}

.rh-tel_wrap .rh-tel {
  height: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rh-tel_wrap .rh-tel a {
  width: auto;
  height: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  gap: 0.25rem;
}

.rh-tel_wrap .rh-tel a div {
  width: 1.25rem;
  height: 1.25rem;
  background-size: 1.125rem !important;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}

.rh-tel_wrap .rh-tel a p {
  margin: 0 !important;
  line-height: 1 !important;
  display: block;
}

.rh-navi.white .rh-tel_wrap .rh-tel a div,
.rh-navi.over .rh-tel_wrap .rh-tel a div,
.rh-navi.active .rh-tel_wrap .rh-tel a div,
.rh-navi.mouseover .rh-tel_wrap .rh-tel a div {
  background-size: 1.125rem !important;
}

.rh-guest_wrap a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2.5rem;
  padding: 0 0.95rem;
  border: 1px solid #11284e;
  border-radius: 999px;
  color: #11284e;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.rh-guest_wrap a:hover {
  background: rgba(17, 40, 78, 0.06);
}

.rh-navi.white .rh-guest_wrap a,
.rh-navi.over .rh-guest_wrap a {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.rh-navi.white .rh-guest_wrap a:hover,
.rh-navi.over .rh-guest_wrap a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.rh-navi.active .rh-guest_wrap a,
.rh-navi.mouseover .rh-guest_wrap a {
  border-color: #002e45;
  color: #002e45;
}

.rh-navi.active .rh-guest_wrap a:hover,
.rh-navi.mouseover .rh-guest_wrap a:hover {
  background: rgba(0, 46, 69, 0.06);
}

@media (max-width: 1024px) {
  .rh-guest_wrap a {
    padding: 0 0.65rem;
    font-size: 0.75rem;
    height: 1.875rem;
  }

  .rh-tel_wrap .rh-tel a div {
    width: 1.1rem;
    height: 1.1rem;
    background-size: 1rem !important;
  }

  .rh-tel_wrap .rh-tel a p {
    font-size: 1.05rem;
  }
}

/* 좁은 해상도에서도 전화번호·관심등록 텍스트 유지 */
@media (max-width: 767px) {
  .rh-top_fixed_wrap {
    right: calc(1% + 2.875rem) !important;
    gap: 0.35rem !important;
  }

  .rh-tel_wrap {
    margin: 0 !important;
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .rh-guest_wrap {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .rh-tel_wrap .rh-tel {
    width: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
  }

  .rh-tel_wrap .rh-tel a {
    gap: 0.2rem;
  }

  .rh-tel_wrap .rh-tel a div {
    width: 1.05rem !important;
    height: 1.05rem !important;
    background-size: 0.95rem !important;
  }

  .rh-tel_wrap .rh-tel a p {
    display: block !important;
    font-size: 0.8125rem !important;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .rh-navi.white .rh-tel_wrap .rh-tel,
  .rh-navi.over .rh-tel_wrap .rh-tel,
  .rh-navi.active .rh-tel_wrap .rh-tel,
  .rh-navi.mouseover .rh-tel_wrap .rh-tel {
    border: 0 !important;
  }

  .rh-guest_wrap a {
    font-size: 0.6875rem !important;
    width: auto !important;
    height: 1.75rem !important;
    padding: 0 0.55rem !important;
    border-radius: 999px !important;
    background: none !important;
    background-image: none !important;
    white-space: nowrap;
  }

  .rh-navi.white .rh-guest_wrap a,
  .rh-navi.over .rh-guest_wrap a,
  .rh-navi.active .rh-guest_wrap a,
  .rh-navi.mouseover .rh-guest_wrap a {
    background: none !important;
    background-image: none !important;
  }
}

@media (max-width: 400px) {
  .rh-tel_wrap .rh-tel a p {
    font-size: 0.75rem !important;
  }

  .rh-guest_wrap a {
    font-size: 0.625rem !important;
    padding: 0 0.45rem !important;
  }
}

/* ========== 사업개요 ========== */
.richell-summary .richell-summary__eyebrow {
  margin: 0 0 0.85rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #11284e;
  opacity: 0.55;
}

.richell-summary .rh-sum_tit_box h2 {
  position: relative;
  padding-bottom: 1.25rem;
  font-size: 2.5rem !important;
}

.richell-summary .rh-sum_tit_box h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 2px;
  background: #11284e;
}

.richell-summary .rh-sum_tit_box p {
  max-width: 26rem;
  font-size: 1.0625rem !important;
}

.richell-summary .rh-sum_content > div {
  gap: 3.5rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  max-width: 1480px;
  width: 94%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.richell-summary .rh-sum_txt_box {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-width: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.richell-summary .rh-sum_txt_box h2 {
  font-family: "Nanum Myeongjo", serif !important;
  font-size: 3.5rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em;
  color: #11284e;
  white-space: nowrap;
}

.richell-summary .rh-sum_txt_box h5 {
  margin-top: 0.85rem !important;
  margin-left: 0 !important;
  font-size: 1.125rem !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em;
  color: #11284e;
  opacity: 0.7;
  white-space: nowrap;
}

.richell-summary .rh-sum_sum {
  max-width: none;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  min-width: 0;
}

.richell-summary .rh-sum_sum ul {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.5rem 2.25rem;
}

.richell-summary .rh-sum_sum ul li {
  width: calc(33.333% - 1.5rem);
  text-align: left;
}

.richell-summary .rh-sum_sum ul li > div {
  position: relative;
  height: 100%;
  padding: 0.25rem 0.5rem 0.25rem 1.15rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  -o-transition: transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  transition:
    transform 0.35s ease,
    -webkit-transform 0.35s ease;
}

.richell-summary .rh-sum_sum ul li > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 2px;
  background: #11284e;
  -webkit-transform: scaleY(0.35);
  -ms-transform: scaleY(0.35);
  transform: scaleY(0.35);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  -o-transition: transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  transition:
    transform 0.35s ease,
    -webkit-transform 0.35s ease;
  opacity: 0.35;
}

.richell-summary .richell-summary__num {
  display: block;
  margin-bottom: 0.55rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #11284e;
  opacity: 0.45;
}

.richell-summary .rh-sum_sum ul li h3 {
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em;
  color: #11284e;
  line-height: 1.25 !important;
  white-space: nowrap;
}

.richell-summary .rh-sum_sum ul li p {
  margin-top: 0.75rem !important;
  padding-top: 0 !important;
  border-top: 0 !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
  opacity: 0.78 !important;
  color: #11284e;
  white-space: nowrap;
}

.richell-summary .rh-sum_sum ul li > div:hover {
  -webkit-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}

.richell-summary .rh-sum_sum ul li > div:hover::before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}

@media (max-width: 1400px) {
  .richell-summary .rh-sum_content > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 92%;
    max-width: 1100px;
    gap: 2rem;
  }

  .richell-summary .rh-sum_txt_box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    min-width: 0;
  }

  .richell-summary .rh-sum_sum ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .richell-summary .rh-sum_sum ul li > div {
    padding-left: 1.15rem;
  }

  .richell-summary .rh-sum_sum ul li p {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .richell-summary .rh-sum_txt_box h2 {
    font-size: 2.5rem !important;
  }

  .richell-summary .rh-sum_sum ul li {
    width: calc(50% - 0.5rem);
  }

  .richell-summary .rh-sum_sum ul li h3 {
    font-size: 1.35rem !important;
  }

  .richell-summary .rh-sum_sum ul li h3,
  .richell-summary .rh-sum_sum ul li p {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .richell-summary .rh-sum_sum ul li {
    width: 100%;
  }
}

/* ========== 분양 일정 ========== */
.richell-schedule .rh-cal_tit_box {
  text-align: center;
}

.richell-schedule .richell-schedule__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.richell-schedule .rh-cal_tit_box h2 {
  font-family: "Nanum Myeongjo", serif !important;
  font-size: 2.75rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em;
  color: #fff !important;
  -webkit-text-stroke: 0 !important;
}

.richell-schedule .rh-cal_tit_box h2 b {
  color: inherit !important;
  -webkit-text-stroke: 0 !important;
}

.richell-schedule .rh-cal_content {
  max-width: 1080px;
  gap: 0;
  margin-top: 2.5rem;
}

.richell-schedule .rh-cal_content ul {
  gap: 0.875rem;
}

.richell-schedule .rh-cal_content ul li {
  width: calc(20% - 0.7rem);
  height: 9.5rem;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
  -webkit-transition:
    background 0.35s ease,
    -webkit-transform 0.35s ease,
    -webkit-box-shadow 0.35s ease;
  transition:
    background 0.35s ease,
    -webkit-transform 0.35s ease,
    -webkit-box-shadow 0.35s ease;
  -o-transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    -webkit-transform 0.35s ease,
    -webkit-box-shadow 0.35s ease;
}

.richell-schedule .rh-cal_content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: -o-linear-gradient(left, #d4b896 0%, rgba(212, 184, 150, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, from(#d4b896), to(rgba(212, 184, 150, 0)));
  background: linear-gradient(90deg, #d4b896 0%, rgba(212, 184, 150, 0) 100%);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
  z-index: 2;
}

.richell-schedule .rh-cal_content ul li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -o-linear-gradient(
    top,
    rgba(17, 40, 78, 0) 30%,
    rgba(17, 40, 78, 0.55) 100%
  );
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    color-stop(30%, rgba(17, 40, 78, 0)),
    to(rgba(17, 40, 78, 0.55))
  );
  background: linear-gradient(
    180deg,
    rgba(17, 40, 78, 0) 30%,
    rgba(17, 40, 78, 0.55) 100%
  );
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  -o-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.richell-schedule .rh-cal_content ul li:nth-child(n + 6) {
  width: calc(50% - 0.45rem);
  height: 5.5rem;
}

.richell-schedule .rh-cal_box {
  position: relative;
  z-index: 1;
  padding: 0 1.25rem;
}

.richell-schedule .rh-cal_content ul li:nth-child(n + 6) .rh-cal_box > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
}

.richell-schedule .rh-cal_content ul li h3 {
  font-family: "Nanum Myeongjo", serif !important;
  font-size: 1.375rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  -webkit-transition:
    color 0.35s ease,
    -webkit-transform 0.35s ease;
  transition:
    color 0.35s ease,
    -webkit-transform 0.35s ease;
  -o-transition:
    transform 0.35s ease,
    color 0.35s ease;
  transition:
    transform 0.35s ease,
    color 0.35s ease;
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    -webkit-transform 0.35s ease;
}

.richell-schedule .rh-cal_content ul li p {
  margin-top: 0.625rem !important;
  font-size: 0.8125rem !important;
  letter-spacing: -0.02em;
  opacity: 0.78 !important;
  -webkit-transition:
    opacity 0.35s ease,
    color 0.35s ease;
  -o-transition:
    opacity 0.35s ease,
    color 0.35s ease;
  transition:
    opacity 0.35s ease,
    color 0.35s ease;
}

.richell-schedule .rh-cal_content ul li:nth-child(n + 6) p {
  margin-top: 0 !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.richell-schedule .rh-cal_box span {
  display: none !important;
}

.richell-schedule .rh-cal_content ul li:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.richell-schedule .rh-cal_content ul li:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.richell-schedule .rh-cal_content ul li:hover::after {
  opacity: 1;
}

.richell-schedule .rh-cal_content ul li:hover h3 {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  color: #f0e2cf;
}

.richell-schedule .rh-cal_content ul li:hover p {
  opacity: 1 !important;
  color: #fff;
}

.richell-schedule .calendar_btn {
  margin-top: 3.25rem;
}

.richell-schedule .calendar_btn ul {
  gap: 0.75rem;
}

.richell-schedule .calendar_btn ul li a {
  width: auto !important;
  min-width: 11.5rem;
  padding: 0.95rem 1.5rem !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  color: #fff;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  gap: 0.5rem;
  position: relative;
  font-size: 0.875rem !important;
  letter-spacing: -0.02em;
  -webkit-transition:
    color 0.3s ease,
    background 0.3s ease !important;
  -o-transition:
    color 0.3s ease,
    background 0.3s ease !important;
  transition:
    color 0.3s ease,
    background 0.3s ease !important;
}

.richell-schedule .calendar_btn ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.richell-schedule .calendar_btn ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #d4b896;
  -webkit-transition: width 0.35s ease;
  -o-transition: width 0.35s ease;
  transition: width 0.35s ease;
}

.richell-schedule .calendar_btn ul li a span {
  position: relative;
  z-index: 1;
}

.richell-schedule .calendar_btn ul li a:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

.richell-schedule .calendar_btn ul li a:hover::after {
  width: 100%;
}

@media (max-width: 1024px) {
  .richell-schedule .rh-cal_tit_box h2 {
    font-size: 2.25rem !important;
  }

  .richell-schedule .rh-cal_content ul li {
    width: calc(33.333% - 0.6rem);
    height: 8rem;
  }

  .richell-schedule .rh-cal_content ul li:nth-child(n + 6) {
    width: calc(50% - 0.45rem);
    height: 5rem;
  }
}

@media (max-width: 640px) {
  .richell-schedule .rh-cal_content ul li {
    width: calc(50% - 0.45rem);
  }

  .richell-schedule .calendar_btn ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .richell-schedule .calendar_btn ul li a {
    width: 100% !important;
    min-width: 0;
  }
}

/* ========== 단지안내 (LANDSCAPE → Landmark Design) ========== */
.richell-land .rh-land_tit h2 {
  font-family: "Nanum Myeongjo", serif !important;
  font-size: 4rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em;
}

/* 단지안내 첫 구역(land01) 임시 숨김 — land02부터 표시 */
.richell-land.rh-land_wrap {
  width: 133vw !important;
}
.richell-land .land01 {
  display: none !important;
}
.richell-land.rh-land_wrap.on2 {
  -webkit-transform: translateX(0) !important;
      -ms-transform: translateX(0) !important;
          transform: translateX(0) !important;
}
.richell-land.rh-land_wrap.on3 {
  -webkit-transform: translateX(-33vw) !important;
      -ms-transform: translateX(-33vw) !important;
          transform: translateX(-33vw) !important;
}

/* 컨시어지·시스템 임시 숨김 — #fullpage 밖에 둠(섹션 사이 배치 금지). 복구 시 community↔unit 사이로 옮기고 class="section" */
.richell-section-kept-hidden {
  display: none !important;
}

.richell-land .rh-land_tit h4 {
  font-size: 1.125rem !important;
  letter-spacing: -0.02em;
  opacity: 0.85;
}

.richell-land .rh-land_vd:after {
  background: url(../project/land/land_hero.jpg) center / cover no-repeat;
}

.richell-land .rh-land_bg {
  /* 좌측 이미지 — 우측 이미지 영역 확보를 위해 소폭 축소 */
  max-width: 720px;
  width: 42vw;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.richell-land .rh-land_bg > div::after {
  background: url(../project/land.jpg) center / cover no-repeat !important;
}

.richell-land .rh-land_content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* GNB(약 7rem) 아래로 텍스트가 올라가지 않도록 */
  padding-top: 7.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.richell-land .rh-land_content > div {
  -webkit-transform: translateY(0.5rem);
      -ms-transform: translateY(0.5rem);
          transform: translateY(0.5rem);
}
.richell-land .rh-land_txt_wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  max-width: 32rem;
  padding-right: 1.25rem;
}
.richell-land .rh-land_img_wrap {
  max-width: 680px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 680px;
          flex: 0 1 680px;
}
.richell-land .rh-land_img_wrap > div {
  /* 정사각 → 가로형 직사각 */
  height: 13.5rem;
}
.richell-land.rh-land_wrap.on2 .rh-land_img_wrap,
.richell-land.rh-land_wrap.on3 .rh-land_img_wrap {
  -webkit-transform: translate(0, 2rem);
      -ms-transform: translate(0, 2rem);
          transform: translate(0, 2rem);
}

.richell-land .rh-land_img.img01::after {
  background: url(../project/land01.jpg) center / cover no-repeat !important;
}

.richell-land .rh-land_img.img02::after {
  background: url(../project/land02.jpg) center / cover no-repeat !important;
}

.richell-land .rh-land_img.img03::after {
  background: url(../project/land03.jpg) center / cover no-repeat !important;
}

.richell-land .rh-land_img.img04::after {
  background: url(../project/land04.jpg) center / cover no-repeat !important;
}

.richell-land .rh-land_txt_box {
  margin-top: 2.75rem !important;
}
.richell-land .rh-land_txt_box li {
  margin-bottom: 1.35rem !important;
}

.richell-land .rh-land_txt_box h4 {
  font-family: "Nanum Myeongjo", serif !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em;
  color: #11284e !important;
}

.richell-land .rh-land_txt_box p {
  font-size: 0.9375rem !important;
  line-height: 1.55 !important;
  color: #11284e;
  opacity: 0.75 !important;
}

.richell-land .rh-land_tit_box2 h2 {
  font-size: 2.125rem !important;
  word-break: keep-all;
  overflow-wrap: normal;
  line-height: 1.35 !important;
}

.richell-land .rh-land_tit_box2 p {
  font-size: 1rem !important;
  color: #11284e;
  margin-top: 1.25rem !important;
}

.richell-land .rh-land_img_box h5 {
  font-size: 0.8125rem !important;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

@media (max-width: 1440px) {
  .richell-land .rh-land_bg {
    max-width: 580px;
    width: 38vw;
  }
  .richell-land .rh-land_tit_box2 h2 {
    font-size: 1.75rem !important;
  }
  .richell-land .rh-land_txt_wrap {
    max-width: 28rem;
  }
  .richell-land .rh-land_img_wrap {
    max-width: 560px;
    -ms-flex-preferred-size: 560px;
        flex-basis: 560px;
  }
  .richell-land .rh-land_img_wrap > div {
    height: 12rem;
  }
}

@media (max-width: 1200px) {
  .richell-land .rh-land_bg {
    max-width: 480px;
    width: 36vw;
  }
  .richell-land .rh-land_content {
    padding-top: 7rem;
  }
  .richell-land .rh-land_tit_box2 h2 {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 1024px) {
  .richell-land .rh-land_tit h2 {
    font-size: 2.75rem !important;
  }
  .richell-land .rh-land_bg {
    max-width: 100%;
    width: 100%;
  }
  .richell-land .rh-land_content {
    padding-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .richell-land .rh-land_txt_wrap {
    max-width: none;
    padding-right: 0;
  }
}

/* ========== 커뮤니티 센터 ========== */
.richell-commu .richell-commu__eyebrow {
  margin: 0 0 0.85rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.richell-commu .rh-commu_img.img01 {
  background: url(../project/commu/fitness.jpg) center / cover no-repeat !important;
}

.richell-commu .rh-commu_img.img02 {
  background: url(../project/commu/library.jpg) center / cover no-repeat !important;
}

.richell-commu .rh-commu_img.img03 {
  background: url(../project/commu/golf.jpg) center / cover no-repeat !important;
}

.richell-commu .rh-commu_img.img04 {
  background: url(../project/commu/conference.jpg) center / cover no-repeat !important;
}

.richell-commu .rh-commu_img::after {
  display: none;
}

.richell-commu .rh-commu_thumb.thumb01 {
  background: url(../project/commu/fitness.jpg) center / cover no-repeat !important;
}

.richell-commu .rh-commu_thumb.thumb02 {
  background: url(../project/commu/library.jpg) center / cover no-repeat !important;
}

.richell-commu .rh-commu_thumb.thumb03 {
  background: url(../project/commu/golf.jpg) center / cover no-repeat !important;
}

.richell-commu .rh-commu_thumb.thumb04 {
  background: url(../project/commu/conference.jpg) center / cover no-repeat !important;
}

.richell-commu .rh-commu_txt_box h3 {
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.5rem !important;
  letter-spacing: -0.03em;
}

.richell-commu .rh-commu_txt_box p {
  font-size: 0.9375rem !important;
}

.richell-commu .rh-swiper_commu_thumb {
  max-width: 340px;
}

/* ========== 상품안내 (UNIT) ========== */
.richell-unit .rh-unit_tit {
  white-space: normal;
  max-width: 28rem;
}

.richell-unit .rh-unit_tit h2 {
  font-family: "Nanum Myeongjo", serif;
  font-weight: 700;
  font-size: 4.25rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-left: 0;
}

.richell-unit .rh-unit_tit h5 {
  font-size: 1rem;
  letter-spacing: -0.02em;
  opacity: 0.72;
  margin-top: 0.75rem;
}

.richell-unit .rh-unit_tit_box {
  max-width: 40rem;
}

.richell-unit .rh-unit_tit_box h3 {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.richell-unit .richell-unit__features {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.05rem;
  opacity: 0;
  -webkit-transform: translateY(1rem);
      -ms-transform: translateY(1rem);
          transform: translateY(1rem);
}

.richell-unit .richell-unit__features li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3rem;
  padding-left: 0.9rem;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.richell-unit .richell-unit__features strong {
  font-family: "Nanum Myeongjo", serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0.95;
}

.richell-unit .richell-unit__features span {
  font-size: 0.8125rem;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0.62;
}

.rh-unit_wrap.on.richell-unit .richell-unit__features,
.richell-unit .unit01.active .richell-unit__features {
  opacity: 1;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
  -webkit-transition: 1.2s 0.55s;
  -o-transition: 1.2s 0.55s;
  transition: 1.2s 0.55s;
}

/* 상품안내 배경: 고급 인테리어 (기존 rh-unit_bg + 검정 오버레이 대신) */
.richell-unit .rh-unit_bg::before {
  background: url(../project/unit/living.jpg?v=20260714) center / cover
    no-repeat !important;
  opacity: 1 !important;
}

.richell-unit .rh-unit_bg::after {
  background: -webkit-gradient(
    linear,
    left top, right top,
    from(rgba(0, 0, 0, 0.62)),
    color-stop(42%, rgba(0, 0, 0, 0.38)),
    to(rgba(0, 0, 0, 0.18))
  ) !important;
  background: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.38) 42%,
    rgba(0, 0, 0, 0.18) 100%
  ) !important;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.38) 42%,
    rgba(0, 0, 0, 0.18) 100%
  ) !important;
  opacity: 1 !important;
}

.richell-unit .rh-unit_bg_box {
  background:
    -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.45)), to(rgba(0, 0, 0, 0.45))),
    url(../project/unit/living.jpg?v=20260714) center / cover no-repeat !important;
  background:
    -o-linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url(../project/unit/living.jpg?v=20260714) center / cover no-repeat !important;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url(../project/unit/living.jpg?v=20260714) center / cover no-repeat !important;
  opacity: 1 !important;
}

@media (max-width: 1400px) {
  .richell-unit .rh-unit_tit h2 {
    font-size: 2.75rem;
  }

  .richell-unit .rh-unit_tit_box {
    white-space: normal;
    max-width: 100%;
  }

  .richell-unit .richell-unit__features {
    text-align: left;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }

  .richell-unit .richell-unit__features span br.pc {
    display: none;
  }
}

/* ========== 브랜드 소개 ========== */
.richell-brand {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 2rem;
  color: #231815;
}

.richell-brand__hero {
  position: relative;
  text-align: center;
  padding: 3.5rem 1.5rem 3rem;
  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(17, 40, 78, 0.06) 0%,
      rgba(17, 40, 78, 0) 58%
    ),
    -webkit-gradient(linear, left top, left bottom, from(#f4f6f9), color-stop(72%, #ffffff));
  background:
    -o-radial-gradient(
      50% 0%,
      ellipse,
      rgba(17, 40, 78, 0.06) 0%,
      rgba(17, 40, 78, 0) 58%
    ),
    -o-linear-gradient(top, #f4f6f9 0%, #ffffff 72%);
  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(17, 40, 78, 0.06) 0%,
      rgba(17, 40, 78, 0) 58%
    ),
    linear-gradient(180deg, #f4f6f9 0%, #ffffff 72%);
  overflow: hidden;
}

.richell-brand__hero::before,
.richell-brand__hero::after {
  content: "";
  position: absolute;
  width: 42%;
  height: 70%;
  bottom: -18%;
  pointer-events: none;
  background: -o-repeating-linear-gradient(
    108deg,
    rgba(17, 40, 78, 0.045) 0 1px,
    transparent 1px 18px
  );
  background: repeating-linear-gradient(
    -18deg,
    rgba(17, 40, 78, 0.045) 0 1px,
    transparent 1px 18px
  );
  opacity: 0.9;
}

.richell-brand__hero::before {
  left: -8%;
  -webkit-transform: skewX(-12deg);
  -ms-transform: skewX(-12deg);
  transform: skewX(-12deg);
}

.richell-brand__hero::after {
  right: -8%;
  -webkit-transform: skewX(12deg);
  -ms-transform: skewX(12deg);
  transform: skewX(12deg);
}

.richell-brand__mark {
  position: relative;
  z-index: 1;
  margin: 0 auto 1.25rem;
  width: min(220px, 52vw);
}

.richell-brand__mark img {
  width: 100%;
  height: auto;
  display: block;
}

.richell-brand__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 0.85rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(17, 40, 78, 0.55);
}

.richell-brand__headline {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.875rem, 3.2vw, 2.625rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: #1b1b1b;
}

.richell-brand__headline em {
  font-style: normal;
  color: #b08d5b;
}

.richell-brand__lead {
  position: relative;
  z-index: 1;
  margin: 1.25rem auto 0;
  max-width: 40rem;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #555;
}

.richell-brand__lead strong {
  color: #11284e;
  font-weight: 700;
}

.richell-brand__meta {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.85rem;
  margin: 1.75rem 0 0;
  font-size: 0.9375rem;
  color: #777;
}

.richell-brand__meta-sep {
  width: 1px;
  height: 0.85rem;
  background: #cfcfcf;
}

.richell-brand__portfolio {
  margin-top: 2.75rem;
}

.richell-brand__portfolio ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.125rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.richell-brand__portfolio figure {
  margin: 0;
  background: #f0f0f0;
}

.richell-brand__portfolio img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  -o-object-fit: cover;
  object-fit: cover;
}

.richell-brand__portfolio figcaption {
  margin: 0;
  padding: 0.85rem 0.5rem;
  background: #ececec;
  text-align: center;
  letter-spacing: -0.02em;
  color: #333;
  word-break: keep-all;
}

.richell-brand__portfolio figcaption strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.richell-brand__portfolio figcaption span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(51, 51, 51, 0.72);
}

.richell-brand__premium {
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid #e6e6e6;
}

.richell-brand__premium-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) 1.4fr;
  gap: 2rem 2.5rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin-bottom: 2.75rem;
}

.richell-brand__premium-head h3 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #11284e;
}

.richell-brand__premium-sub {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #11284e;
}

.richell-brand__premium-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: #666;
}

.richell-brand__values {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.richell-brand__value-img {
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  -webkit-box-shadow: 0 10px 28px rgba(17, 40, 78, 0.12);
  box-shadow: 0 10px 28px rgba(17, 40, 78, 0.12);
}

.richell-brand__value-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.richell-brand__values h4 {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #11284e;
}

.richell-brand__values p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #777;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* brand reveal motion */
.richell-brand [data-reveal] {
  opacity: 0;
  -webkit-transform: translate3d(0, 1.75rem, 0);
  -ms-transform: translate3d(0, 1.75rem, 0);
  transform: translate3d(0, 1.75rem, 0);
  -webkit-transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: var(--reveal-delay, 0s);
  -o-transition-delay: var(--reveal-delay, 0s);
     transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.richell-brand .is-inview [data-reveal],
.richell-brand [data-reveal].is-inview {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.richell-brand__portfolio figure {
  overflow: hidden;
}

.richell-brand__portfolio img {
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.richell-brand__portfolio li:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.richell-brand__value-img img {
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.richell-brand__values li:hover .richell-brand__value-img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.richell-brand__mark img {
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.richell-brand__hero.is-inview .richell-brand__mark img {
  -webkit-animation: richellBrandMark 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation: richellBrandMark 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@-webkit-keyframes richellBrandMark {
  from {
    opacity: 0;
    -webkit-transform: translateY(1.25rem) scale(0.94);
    transform: translateY(1.25rem) scale(0.94);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

@keyframes richellBrandMark {
  from {
    opacity: 0;
    -webkit-transform: translateY(1.25rem) scale(0.94);
    transform: translateY(1.25rem) scale(0.94);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .richell-brand [data-reveal],
  .richell-brand__portfolio img,
  .richell-brand__value-img img,
  .richell-brand__mark img {
    opacity: 1 !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    animation: none !important;
  }
}

@media (max-width: 1024px) {
  .richell-brand__portfolio ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .richell-brand__premium-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .richell-brand__values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 1rem;
  }
}

@media (max-width: 640px) {
  .richell-brand__hero {
    padding: 2.5rem 1rem 2.25rem;
  }

  .richell-brand__meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.35rem;
  }

  .richell-brand__meta-sep {
    display: none;
  }

  .richell-brand__portfolio ul {
    grid-template-columns: 1fr;
  }

  .richell-brand__values {
    grid-template-columns: 1fr 1fr;
  }

  .richell-brand__value-img {
    width: 6.25rem;
    height: 6.25rem;
  }
}

/* ========== 입지환경 ========== */
.richell-location {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 2rem;
  color: #231815;
}

.richell-location__hero {
  position: relative;
  overflow: hidden;
  background: #0d1a2e;
}

.richell-location__hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.richell-location__hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(rgba(8, 16, 32, 0.22)),
    color-stop(38%, rgba(8, 16, 32, 0.08)),
    to(rgba(8, 16, 32, 0.72))
  );
  background: -o-linear-gradient(
    top,
    rgba(8, 16, 32, 0.22) 0%,
    rgba(8, 16, 32, 0.08) 38%,
    rgba(8, 16, 32, 0.72) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(8, 16, 32, 0.22) 0%,
    rgba(8, 16, 32, 0.08) 38%,
    rgba(8, 16, 32, 0.72) 100%
  );
  pointer-events: none;
}

.richell-location__hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 35%;
  object-position: center 35%;
}

.richell-location__circles {
  position: absolute;
  left: 50%;
  bottom: 7%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.richell-location__circles li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: clamp(7rem, 15vw, 10.25rem);
  height: clamp(7rem, 15vw, 10.25rem);
  margin: 0 -1rem;
  padding: 0.75rem;
  border-radius: 50%;
  text-align: center;
  color: #f7f3ea;
  border: 1px solid rgba(196, 168, 122, 0.45);
  -webkit-box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.richell-location__circles li::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 248, 235, 0.12);
  pointer-events: none;
}

.richell-location__circles li em {
  display: block;
  margin: 0 0 0.4rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-style: normal;
  font-size: clamp(0.5625rem, 1.1vw, 0.6875rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 214, 178, 0.92);
}

.richell-location__circles li span {
  display: block;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(0.8125rem, 1.55vw, 1.0625rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.4;
  color: #f8f4ec;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.richell-location__circles li.is-nature {
  background:
    -o-radial-gradient(
      30% 25%,
      circle,
      rgba(232, 214, 178, 0.28) 0%,
      rgba(232, 214, 178, 0) 55%
    ),
    rgba(28, 36, 48, 0.55);
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(232, 214, 178, 0.28) 0%,
      rgba(232, 214, 178, 0) 55%
    ),
    rgba(28, 36, 48, 0.55);
  z-index: 1;
}

.richell-location__circles li.is-station {
  background:
    -o-radial-gradient(
      50% 20%,
      circle,
      rgba(196, 168, 122, 0.38) 0%,
      rgba(196, 168, 122, 0) 58%
    ),
    rgba(17, 40, 78, 0.72);
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(196, 168, 122, 0.38) 0%,
      rgba(196, 168, 122, 0) 58%
    ),
    rgba(17, 40, 78, 0.72);
  z-index: 3;
  border-color: rgba(212, 184, 136, 0.7);
}

.richell-location__circles li.is-center {
  background:
    -o-radial-gradient(
      70% 30%,
      circle,
      rgba(160, 188, 220, 0.22) 0%,
      rgba(160, 188, 220, 0) 55%
    ),
    rgba(22, 32, 52, 0.58);
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(160, 188, 220, 0.22) 0%,
      rgba(160, 188, 220, 0) 55%
    ),
    rgba(22, 32, 52, 0.58);
  z-index: 1;
}

.richell-location__premium {
  margin-top: 4rem;
  padding: 0 0.5rem;
}

.richell-location__premium-head,
.richell-location__map-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.richell-location__eyebrow {
  margin: 0 0 0.65rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(17, 40, 78, 0.55);
}

.richell-location__premium-head h3,
.richell-location__map-head h3 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #11284e;
}

.richell-location__premium-head h3 em {
  font-style: normal;
  color: #b08d5b;
}

.richell-location__lead {
  margin: 1rem auto 0;
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #666;
}

.richell-location__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.richell-location__points > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem 1.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f8fb), to(#ffffff));
  background: -o-linear-gradient(top, #f6f8fb 0%, #ffffff 100%);
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
  border: 1px solid #e8ecf1;
}

.richell-location__icon {
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 1.15rem;
}

.richell-location__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.richell-location__point-cat {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #b08d5b;
}

.richell-location__points h4 {
  margin: 0 0 0.85rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #11284e;
}

.richell-location__points p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #666;
}

.richell-location__map {
  margin-top: 4.5rem;
  padding-top: 3.25rem;
  border-top: 1px solid #e6e6e6;
}

.richell-location__map-figure {
  margin: 0 auto;
  max-width: 720px;
  background: #f4f6f8;
  border: 1px solid #e4e8ee;
}

.richell-location__map-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.richell-location__map-figure figcaption {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #777;
  background: #eef1f5;
}

.richell-location__spots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.richell-location__spots li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 0.85rem;
  text-align: center;
  background: #f7f8fa;
  border-top: 2px solid #11284e;
}

.richell-location__spots strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #11284e;
}

.richell-location__spots span {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #666;
}

@media (max-width: 900px) {
  .richell-location__points {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .richell-location__spots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .richell-location__hero-visual {
    aspect-ratio: 4 / 5;
  }

  .richell-location__circles {
    bottom: 5%;
    width: 100%;
    padding: 0 0.5rem;
  }

  .richell-location__circles li {
    margin: 0 -0.7rem;
  }

  .richell-location__premium {
    margin-top: 2.75rem;
  }

  .richell-location__map {
    margin-top: 3rem;
    padding-top: 2.25rem;
  }

  .richell-location__spots {
    grid-template-columns: 1fr;
  }
}

/* location reveal motion */
.richell-location__hero-visual img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
  -webkit-transition: -webkit-transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.richell-location__hero.is-inview .richell-location__hero-visual img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.richell-location [data-reveal] {
  opacity: 0;
  -webkit-transform: translate3d(0, 1.75rem, 0);
  -ms-transform: translate3d(0, 1.75rem, 0);
  transform: translate3d(0, 1.75rem, 0);
  -webkit-transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: var(--reveal-delay, 0s);
  -o-transition-delay: var(--reveal-delay, 0s);
     transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.richell-location .is-inview [data-reveal],
.richell-location [data-reveal].is-inview {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.richell-location__circles li[data-reveal] {
  -webkit-transform: translate3d(0, 1.5rem, 0) scale(0.92);
  -ms-transform: translate3d(0, 1.5rem, 0) scale(0.92);
  transform: translate3d(0, 1.5rem, 0) scale(0.92);
}

.richell-location__circles li.is-station[data-reveal] {
  -webkit-transform: translate3d(0, 1.5rem, 0) scale(0.98);
  -ms-transform: translate3d(0, 1.5rem, 0) scale(0.98);
  transform: translate3d(0, 1.5rem, 0) scale(0.98);
}

.richell-location__hero.is-inview .richell-location__circles li[data-reveal] {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -ms-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

.richell-location__hero.is-inview
  .richell-location__circles
  li.is-station[data-reveal] {
  -webkit-transform: translate3d(0, 0, 0) scale(1.06);
  -ms-transform: translate3d(0, 0, 0) scale(1.06);
  transform: translate3d(0, 0, 0) scale(1.06);
}

.richell-location__points > li,
.richell-location__spots li,
.richell-location__map-figure {
  -webkit-transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-box-shadow 0.35s ease,
    box-shadow 0.35s ease;
  -webkit-transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-box-shadow 0.35s ease;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-box-shadow 0.35s ease;
  -o-transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-box-shadow 0.35s ease;
}

.richell-location__points > li:hover,
.richell-location__spots li:hover {
  -webkit-box-shadow: 0 12px 28px rgba(17, 40, 78, 0.1);
  box-shadow: 0 12px 28px rgba(17, 40, 78, 0.1);
}

.richell-location__icon {
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.richell-location__points > li:hover .richell-location__icon {
  -webkit-transform: translateY(-0.25rem) scale(1.06);
  -ms-transform: translateY(-0.25rem) scale(1.06);
  transform: translateY(-0.25rem) scale(1.06);
}

.richell-location__map-figure img {
  -webkit-transition: -webkit-transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.richell-location__map.is-inview .richell-location__map-figure img {
  -webkit-animation: richellLocationMapIn 1.15s cubic-bezier(0.22, 1, 0.36, 1)
    both;
  animation: richellLocationMapIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@-webkit-keyframes richellLocationMapIn {
  from {
    opacity: 0.65;
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes richellLocationMapIn {
  from {
    opacity: 0.65;
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .richell-location__hero.is-inview
    .richell-location__circles
    li.is-station[data-reveal] {
    -webkit-transform: translate3d(0, 0, 0) scale(1.04);
    -ms-transform: translate3d(0, 0, 0) scale(1.04);
    transform: translate3d(0, 0, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .richell-location [data-reveal],
  .richell-location__hero-visual img,
  .richell-location__icon,
  .richell-location__map-figure img,
  .richell-location__points > li,
  .richell-location__spots li {
    opacity: 1 !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    animation: none !important;
  }

  .richell-location__circles li.is-station {
    -webkit-transform: scale(1.06) !important;
    -ms-transform: scale(1.06) !important;
    transform: scale(1.06) !important;
  }
}

/* ========== 서브 이미지(단지배치도 등) ========== */
.sub_img_wrap {
  overflow: hidden;
}

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

/* ========== 동·호수 배치도 ========== */
.richell-dongho__mo {
  display: none;
}

.richell-dongho__mo img {
  display: block;
  width: 100%;
  height: auto;
}

.richell-dongho__mo img + img {
  margin-top: 0.75rem;
}

@media (max-width: 767px) {
  .richell-dongho__mo {
    display: block !important;
  }
}

/* ========== 오시는 길 ========== */
.sub_contact_map_box {
  overflow: hidden;
  background: #f4f6f8;
}

.sub_contact_map_box .root_daum_roughmap,
.sub_contact_map_box .root_daum_roughmap .wrap_map {
  width: 100% !important;
}

.sub_contact_map_box .root_daum_roughmap .wrap_controllers {
  display: none !important;
}

.sub_contact_add p {
  line-height: 1.5;
  max-width: 16rem;
}

@media (max-width: 767px) {
  .sub_contact_map_box {
    height: auto !important;
    min-height: 280px;
  }

  .sub_contact_add {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1rem;
  }

  .sub_contact_add p {
    max-width: none;
  }

  .sub_contact_bt {
    margin-left: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

/* 1400px 이하: fullPage 미사용 — 스크롤 잠금 해제 */
@media (max-width: 1400px) {
  html,
  body.main,
  body.main.locked {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    -ms-touch-action: auto !important;
    touch-action: auto !important;
  }

  body.main .section {
    height: auto !important;
    min-height: 100vh;
    overflow: visible !important;
  }
}

/* ========== 단지설계 (/complex/design) ========== */
.richell-design {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 3rem;
  color: #11284e;
}

.richell-design__intro {
  position: relative;
  z-index: auto;
  text-align: center;
  margin-bottom: 2.75rem;
}

.richell-design__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(17, 40, 78, 0.55);
}

.richell-design__intro h3 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.4;
  word-break: keep-all;
  color: #11284e;
}

.richell-design__lead {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  font-size: 0.975rem;
  line-height: 1.85;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: rgba(17, 40, 78, 0.72);
}

.richell-design__hero {
  position: relative;
  margin: 0 0 1rem;
  overflow: hidden;
  background: #e8edf2;
}

.richell-design__hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  -o-object-fit: cover;
     object-fit: cover;
}

.richell-design__hero::after,
.richell-design__grid li::after {
  content: "이미지컷";
  position: absolute;
  right: 0.55rem;
  bottom: 0.45rem;
  z-index: 3;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.richell-design__hero figcaption {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 0.7rem 1.15rem;
  background: rgba(17, 40, 78, 0.78);
  color: #fff;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  line-height: 1;
}

.richell-design__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
}

.richell-design__grid li {
  position: relative;
  overflow: hidden;
  background: #e8edf2;
}

.richell-design__grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  -o-transition: transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.richell-design__grid li:hover img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.richell-design__grid span {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 2;
  padding: 0.55rem 0.9rem;
  background: rgba(17, 40, 78, 0.72);
  color: #fff;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.richell-design__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2.5rem;
}

.richell-design__list li {
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid #11284e;
}

.richell-design__list strong {
  display: block;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #11284e;
}

.richell-design__list p {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: rgba(17, 40, 78, 0.72);
}

@media (max-width: 767px) {
  .richell-design__intro {
    margin-bottom: 2rem;
    text-align: left;
  }

  .richell-design__lead {
    margin-left: 0;
    margin-right: 0;
  }

  .richell-design__lead .pc {
    display: none;
  }

  .richell-design__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
  }

  .richell-design__list {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .richell-design__hero figcaption,
  .richell-design__grid span {
    font-size: 0.625rem;
    padding: 0.5rem 0.75rem;
  }
}

/* ========== 커뮤니티 (/complex/community) ========== */
.richell-community {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 3rem;
  color: #11284e;
  text-align: left;
}

.richell-community__intro {
  margin-bottom: 2.75rem;
}

.richell-community__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(17, 40, 78, 0.55);
}

.richell-community__intro h3 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.35;
  word-break: keep-all;
  color: #11284e;
}

.richell-community__lead {
  margin: 1.25rem 0 0;
  max-width: 40rem;
  font-size: 0.975rem;
  line-height: 1.85;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: rgba(17, 40, 78, 0.72);
}

.richell-community__gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.richell-community__feature {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e8edf2;
  min-height: 100%;
}

.richell-community__feature::after,
.richell-community__thumbs li::after {
  content: "이미지컷";
  position: absolute;
  right: 0.55rem;
  bottom: 0.45rem;
  z-index: 3;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.richell-community__feature img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 28rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.richell-community__feature figcaption,
.richell-community__thumbs span {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 0.55rem 0.9rem;
  background: rgba(17, 40, 78, 0.75);
  color: #fff;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.richell-community__thumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.richell-community__thumbs li {
  position: relative;
  overflow: hidden;
  background: #e8edf2;
  min-height: 8.5rem;
}

.richell-community__thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 8.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  -o-transition: transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.richell-community__feature:hover img,
.richell-community__thumbs li:hover img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.richell-community__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 3rem;
}

.richell-community__list li {
  padding-left: 1rem;
  border-left: 2px solid #11284e;
}

.richell-community__list strong {
  display: block;
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #11284e;
}

.richell-community__list p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: rgba(17, 40, 78, 0.72);
}

@media (max-width: 900px) {
  .richell-community__gallery {
    grid-template-columns: 1fr;
  }

  .richell-community__feature img {
    min-height: 16rem;
    aspect-ratio: 16 / 10;
  }

  .richell-community__thumbs {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}

@media (max-width: 767px) {
  .richell-community__list {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .richell-community__feature figcaption,
  .richell-community__thumbs span {
    font-size: 0.625rem;
    padding: 0.5rem 0.75rem;
  }
}

/* ========== 프리미엄 (/business/premium) ========== */
.richell-premium {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 3rem;
  color: #11284e;
  text-align: left;
}

.richell-premium__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(17, 40, 78, 0.55);
}

.richell-premium__hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
  background: #0d1a2e;
}

.richell-premium__hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.richell-premium__hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-transition: -webkit-transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.richell-premium__hero.is-inview .richell-premium__hero-visual img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.richell-premium__hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    -webkit-gradient(
      linear,
      left top, right top,
      from(rgba(8, 16, 30, 0.72)),
      color-stop(48%, rgba(8, 16, 30, 0.35)),
      to(rgba(8, 16, 30, 0.18))
    ),
    -webkit-gradient(linear, left bottom, left top, from(rgba(8, 16, 30, 0.45)), color-stop(45%, transparent));
  background:
    -o-linear-gradient(
      left,
      rgba(8, 16, 30, 0.72) 0%,
      rgba(8, 16, 30, 0.35) 48%,
      rgba(8, 16, 30, 0.18) 100%
    ),
    -o-linear-gradient(bottom, rgba(8, 16, 30, 0.45) 0%, transparent 45%);
  background:
    linear-gradient(
      90deg,
      rgba(8, 16, 30, 0.72) 0%,
      rgba(8, 16, 30, 0.35) 48%,
      rgba(8, 16, 30, 0.18) 100%
    ),
    linear-gradient(0deg, rgba(8, 16, 30, 0.45) 0%, transparent 45%);
}

.richell-premium__hero-copy {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  max-width: 34rem;
  padding: 2.5rem 2rem 2.75rem;
  color: #f7f3ea;
}

.richell-premium__hero-copy .richell-premium__eyebrow {
  color: rgba(232, 214, 178, 0.85);
}

.richell-premium__hero-copy h3 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.35;
  word-break: keep-all;
  color: #fff;
}

.richell-premium__hero-copy > p {
  margin: 1rem 0 0;
  font-size: 0.975rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: rgba(247, 243, 234, 0.82);
}

.richell-premium__stats {
  margin-bottom: 4rem;
}

.richell-premium__stats ul {
  list-style: none;
  margin: 0;
  padding: 1.75rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background: #f4f6f9;
  border: 1px solid #e6ebf1;
}

.richell-premium__stats li {
  text-align: center;
  padding: 0.5rem;
}

.richell-premium__stats em {
  display: block;
  font-family: "Nanum Myeongjo", serif;
  font-style: normal;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #11284e;
}

.richell-premium__stats span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.875rem;
  letter-spacing: -0.02em;
  color: rgba(17, 40, 78, 0.62);
}

.richell-premium__section-head {
  margin-bottom: 2.5rem;
}

.richell-premium__section-head h3 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.35;
  word-break: keep-all;
}

.richell-premium__section-head > p:last-child {
  margin: 0.85rem 0 0;
  font-size: 0.975rem;
  line-height: 1.7;
  color: rgba(17, 40, 78, 0.7);
}

.richell-premium__points {
  display: grid;
  gap: 3.5rem;
  margin-bottom: 4.5rem;
}

.richell-premium__point {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.richell-premium__point.is-reverse {
  direction: rtl;
}

.richell-premium__point.is-reverse > * {
  direction: ltr;
}

.richell-premium__point figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e8edf2;
}

.richell-premium__point figure::after {
  content: "이미지컷";
  position: absolute;
  right: 0.55rem;
  bottom: 0.45rem;
  z-index: 3;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.richell-premium__point img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.richell-premium__point:hover img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.richell-premium__point figcaption {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 0.55rem 0.9rem;
  background: rgba(17, 40, 78, 0.78);
  color: #fff;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  line-height: 1;
}

.richell-premium__point-cat {
  margin: 0 0 0.45rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #b08d5b;
}

.richell-premium__point h4 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
  word-break: keep-all;
}

.richell-premium__point div > p:last-child {
  margin: 0.9rem 0 0;
  font-size: 0.975rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: rgba(17, 40, 78, 0.72);
}

.richell-premium__life {
  margin-bottom: 4rem;
}

.richell-premium__gallery {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.richell-premium__gallery li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: transparent;
}

.richell-premium__gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e8edf2;
}

.richell-premium__gallery figure::after {
  content: "이미지컷";
  position: absolute;
  right: 0.55rem;
  bottom: 0.45rem;
  z-index: 2;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.richell-premium__gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  -o-transition: transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.richell-premium__gallery li:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.richell-premium__gallery span {
  display: block;
  margin-top: 0.55rem;
  padding: 0;
  color: #11284e;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-align: left;
}

.richell-premium__links {
  padding: 2.5rem 2rem;
  background: #11284e;
  color: #fff;
  text-align: center;
}

.richell-premium__links .richell-premium__eyebrow {
  color: rgba(232, 214, 178, 0.8);
}

.richell-premium__links h3 {
  margin: 0 0 1.5rem;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.richell-premium__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.75rem;
}

.richell-premium__links a {
  display: inline-block;
  min-width: 8.5rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  -webkit-transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
  -o-transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.richell-premium__links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.richell-premium [data-reveal] {
  opacity: 0;
  -webkit-transform: translate3d(0, 1.75rem, 0);
  -ms-transform: translate3d(0, 1.75rem, 0);
  transform: translate3d(0, 1.75rem, 0);
  -webkit-transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: var(--reveal-delay, 0s);
  -o-transition-delay: var(--reveal-delay, 0s);
     transition-delay: var(--reveal-delay, 0s);
}

.richell-premium .is-inview [data-reveal],
.richell-premium [data-reveal].is-inview {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

@media (max-width: 900px) {
  .richell-premium__stats ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .richell-premium__point,
  .richell-premium__point.is-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.25rem;
  }

  .richell-premium__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .richell-premium__hero-copy {
    position: relative;
    max-width: none;
    padding: 1.5rem 1.1rem 1.75rem;
    background: #11284e;
  }

  .richell-premium__hero-visual {
    aspect-ratio: 4 / 3;
  }

  .richell-premium__stats ul {
    padding: 1.25rem 0.75rem;
  }

  .richell-premium__gallery {
    grid-template-columns: 1fr 1fr;
  }

  .richell-premium__links {
    padding: 2rem 1.25rem;
  }

  .richell-premium__links a {
    min-width: calc(50% - 0.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .richell-premium [data-reveal],
  .richell-premium__hero-visual img,
  .richell-premium__point img,
  .richell-premium__gallery img {
    opacity: 1 !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
  }
}

/* ========== 시스템 (/complex/system) ========== */
.richell-system {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 3rem;
  color: #11284e;
  text-align: left;
}

.richell-system__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(17, 40, 78, 0.55);
}

.richell-system__en {
  margin: 0 0 0.4rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: #b08d5b;
}

/* 이미지 우측 하단 — 이미지컷 표기 */
.richell-system__hero-visual::before,
.richell-system__feature figure::after,
.richell-system__cards figure::after,
.richell-system__life-visual > figure::after {
  content: "이미지컷";
  position: absolute;
  right: 0.55rem;
  bottom: 0.45rem;
  z-index: 4;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.richell-system__hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: #0d1a2e;
}

.richell-system__hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.richell-system__hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-transition: -webkit-transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.richell-system__hero.is-inview .richell-system__hero-visual img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.richell-system__hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    -webkit-gradient(
      linear,
      left top, right top,
      from(rgba(8, 16, 30, 0.76)),
      color-stop(55%, rgba(8, 16, 30, 0.36)),
      to(rgba(8, 16, 30, 0.16))
    ),
    -webkit-gradient(linear, left bottom, left top, from(rgba(8, 16, 30, 0.4)), color-stop(42%, transparent));
  background:
    -o-linear-gradient(
      left,
      rgba(8, 16, 30, 0.76) 0%,
      rgba(8, 16, 30, 0.36) 55%,
      rgba(8, 16, 30, 0.16) 100%
    ),
    -o-linear-gradient(bottom, rgba(8, 16, 30, 0.4) 0%, transparent 42%);
  background:
    linear-gradient(
      90deg,
      rgba(8, 16, 30, 0.76) 0%,
      rgba(8, 16, 30, 0.36) 55%,
      rgba(8, 16, 30, 0.16) 100%
    ),
    linear-gradient(0deg, rgba(8, 16, 30, 0.4) 0%, transparent 42%);
}

.richell-system__hero-copy {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  max-width: 34rem;
  padding: 2.5rem 2rem 2.75rem;
  color: #f7f3ea;
}

.richell-system__hero-copy .richell-system__eyebrow {
  color: rgba(232, 214, 178, 0.85);
}

.richell-system__hero-copy h3 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.35;
  word-break: keep-all;
  color: #fff;
}

.richell-system__hero-copy > p {
  margin: 1rem 0 0;
  font-size: 0.975rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: rgba(247, 243, 234, 0.82);
}

.richell-system__block {
  margin-bottom: 4.5rem;
}

.richell-system__panel-head {
  margin-bottom: 2.75rem;
}

.richell-system__panel-head h3 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.35;
  word-break: keep-all;
}

.richell-system__panel-head > p:last-child {
  margin: 0.95rem 0 0;
  max-width: 40rem;
  font-size: 0.975rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: rgba(17, 40, 78, 0.72);
}

.richell-system__feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3rem;
}

.richell-system__feature.is-reverse {
  direction: rtl;
}

.richell-system__feature.is-reverse > * {
  direction: ltr;
}

.richell-system__feature figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e8edf2;
}

.richell-system__feature img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.richell-system__feature:hover img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.richell-system__feature h4 {
  margin: 0 0 1.1rem;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.richell-system__feature ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.richell-system__feature li {
  padding-left: 0.95rem;
  border-left: 2px solid #11284e;
}

.richell-system__feature li strong {
  display: block;
  font-size: 0.975rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.richell-system__feature li span {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.9rem;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: rgba(17, 40, 78, 0.7);
}

.richell-system__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.richell-system__cards article {
  background: #f4f6f9;
  border: 1px solid #e6ebf1;
  overflow: hidden;
}

.richell-system__cards figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #dde3ea;
}

.richell-system__cards img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  -o-transition: transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.richell-system__cards article:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.richell-system__cards > article > div {
  padding: 1.35rem 1.2rem 1.5rem;
}

.richell-system__cards h4 {
  margin: 0 0 0.9rem;
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.4;
  word-break: keep-all;
}

.richell-system__cards ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.richell-system__cards li {
  position: relative;
  padding-left: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.55;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: rgba(17, 40, 78, 0.75);
}

.richell-system__cards li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #b08d5b;
}

.richell-system__life-visual {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  overflow: hidden;
  background: #11284e;
  color: #fff;
}

.richell-system__life-visual > figure {
  position: relative;
  margin: 0;
  min-height: 18rem;
  overflow: hidden;
}

.richell-system__life-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 18rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.richell-system__life-visual > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2.25rem 2rem;
}

.richell-system__life-visual .richell-system__eyebrow {
  color: rgba(232, 214, 178, 0.85);
}

.richell-system__life-visual h4 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.4;
  word-break: keep-all;
}

.richell-system__life-visual p:last-child {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.75;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: rgba(255, 255, 255, 0.78);
}

.richell-system [data-reveal] {
  opacity: 0;
  -webkit-transform: translate3d(0, 1.75rem, 0);
  -ms-transform: translate3d(0, 1.75rem, 0);
  transform: translate3d(0, 1.75rem, 0);
  -webkit-transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: var(--reveal-delay, 0s);
  -o-transition-delay: var(--reveal-delay, 0s);
     transition-delay: var(--reveal-delay, 0s);
}

.richell-system .is-inview [data-reveal],
.richell-system [data-reveal].is-inview {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

@media (max-width: 900px) {
  .richell-system__feature,
  .richell-system__feature.is-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.15rem;
  }

  .richell-system__cards {
    grid-template-columns: 1fr;
  }

  .richell-system__life-visual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .richell-system__hero-copy {
    position: relative;
    max-width: none;
    padding: 1.5rem 1.1rem 1.75rem;
    background: #11284e;
  }

  .richell-system__hero-visual {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .richell-system [data-reveal],
  .richell-system__hero-visual img,
  .richell-system__feature img,
  .richell-system__cards img {
    opacity: 1 !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
  }
}

/* ========== e모델하우스 (/product/vr) ========== */
.richell-vr .tabs2 {
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.richell-vr .tabs2 li {
  margin-left: 0 !important;
}

.richell-vr__soon {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  overflow: hidden;
  background: #11284e;
  color: #fff;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.richell-vr__soon-visual {
  min-height: 22rem;
  overflow: hidden;
  background: #0d1a2e;
}

.richell-vr__soon-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.82;
}

.richell-vr__soon-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2.75rem 2.25rem;
  text-align: left;
}

.richell-vr__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 214, 178, 0.85);
}

.richell-vr__soon-copy h3 {
  margin: 0;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.richell-vr__soon-copy strong {
  display: block;
  margin-top: 0.85rem;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.3;
  color: #fff;
}

.richell-vr__soon-copy > p {
  margin: 1.1rem 0 0;
  font-size: 0.975rem;
  line-height: 1.8;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .richell-vr__soon {
    grid-template-columns: 1fr;
  }

  .richell-vr__soon-visual,
  .richell-vr__soon-visual img {
    min-height: 14rem;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767px) {
  .richell-vr .tabs2 {
    max-width: none;
    width: 100%;
  }

  .richell-vr__soon-copy {
    padding: 2rem 1.25rem 2.25rem;
  }
}

/* ===== 특별공급 HTML 표 ===== */
.richell-special-wrap,
.richell-special-wrap #t-container2 {
  max-width: 1100px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.richell-special-wrap .tabcontents,
.richell-special-wrap .richell-special {
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.richell-special {
  text-align: left;
  color: #222;
  font-size: 1.12rem;
  line-height: 1.55;
}

.richell-special__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid #11284e;
}

.richell-special__head h3 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #11284e;
  letter-spacing: -0.02em;
}

.richell-special__brand {
  margin: 0;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: #11284e;
  opacity: 0.75;
  white-space: nowrap;
}

.richell-special__notice {
  margin: 0 0 1.25rem;
  padding: 1.05rem 1.2rem;
  background: #f4f6f9;
  border-left: 3px solid #11284e;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #444;
}

.richell-special__notice p {
  margin: 0;
}

.richell-special__notice p + p {
  margin-top: 0.45rem;
}

.richell-special__h4 {
  margin: 2rem 0 0.75rem;
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.28rem;
  color: #11284e;
  font-weight: 700;
}

.richell-special__scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.richell-special__table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border: 1px solid #cfd6e0;
  background: #fff;
  table-layout: fixed;
}

.richell-special__table th,
.richell-special__table td {
  border: 1px solid #cfd6e0;
  padding: 1.1rem 1.15rem;
  vertical-align: top;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-size: 1.1rem;
}

/* 헤더: 가운데 */
.richell-special__table thead th {
  background: #11284e;
  color: #fff;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  padding: 0.85rem 0.75rem;
  line-height: 1.05;
}

/* 메인 표 좌측 구분 셀: 가운데 + 세로 중앙 */
.richell-special__table--main > tbody > tr > th {
  background: #eef2f7;
  color: #11284e;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  padding: 1.1rem 0.65rem;
  line-height: 1.05;
}

/* 메인 표 내용 셀: 좌측, 여유 패딩 */
.richell-special__table--main > tbody > tr > td {
  text-align: left;
  vertical-align: top;
  padding: 1.1rem 1.15rem 1.2rem;
}

.richell-special__table tbody > tr > th {
  background: #eef2f7;
  color: #11284e;
  font-weight: 700;
}

.richell-special__table--inner {
  margin: 0.85rem 0 0.35rem;
  table-layout: auto;
  width: 100%;
}

.richell-special__table--inner thead th {
  background: #3a5278;
  font-size: 1.02rem;
  text-align: center;
  vertical-align: middle;
  padding: 0.8rem 0.6rem;
}

/* 내부 표: 항목명 가운데, 기준/비고 좌측, 숫자 가운데 */
.richell-special__table--inner > tbody > tr > th {
  text-align: center;
  vertical-align: middle;
  padding: 0.85rem 0.6rem;
  line-height: 1.05;
  font-size: 1.05rem;
}

.richell-special__table--inner > tbody > tr > td {
  text-align: left;
  vertical-align: middle;
  padding: 0.85rem 0.8rem;
  line-height: 1.05;
  font-size: 1.05rem;
}

.richell-special__table--income {
  width: 100%;
  min-width: 0;
  font-size: 1rem;
  table-layout: fixed;
}

.richell-special__table--income thead th {
  text-align: center;
  vertical-align: middle;
  padding: 0.8rem 0.45rem;
  line-height: 1.05;
}

.richell-special__table--income tbody > tr > th {
  text-align: center;
  vertical-align: middle;
  padding: 0.8rem 0.55rem;
  font-size: 0.98rem;
  word-break: keep-all;
  line-height: 1.05;
}

.richell-special__table--income tbody > tr > td {
  text-align: center;
  vertical-align: middle;
  padding: 0.8rem 0.45rem;
  font-size: 0.95rem;
  word-break: keep-all;
  line-height: 1.05;
}

.richell-special__table--income tbody > tr > td:first-child {
  text-align: left;
  padding-left: 0.7rem;
}

.richell-special__table ul {
  margin: 0;
  padding-left: 1.15rem;
  line-height: 1.08;
}

.richell-special__table ul ul {
  margin-top: 0.2rem;
  margin-bottom: 0.1rem;
  padding-left: 1rem;
}

.richell-special__table li {
  margin: 0;
  padding: 0;
}

.richell-special__table li + li {
  margin-top: 0.2rem;
}

.richell-special__table ul ul li + li {
  margin-top: 0.12rem;
}

.richell-special__table p {
  margin: 0 0 0.35rem;
  line-height: 1.08;
}

.richell-special__table p:last-child {
  margin-bottom: 0;
}

.richell-special__notes {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  font-size: 1.02rem;
  color: #555;
  line-height: 1.5;
}

.richell-special__notes li + li {
  margin-top: 0.35rem;
}

.richell-special__note {
  margin: 0.65rem 0 0;
  font-size: 1.02rem;
  color: #555;
  line-height: 1.5;
}

/* 숫자·배점·비율 등 */
.richell-special .is-center {
  text-align: center !important;
  vertical-align: middle !important;
  white-space: nowrap;
}

.richell-special-wrap .sub_ori {
  margin-top: 1.5rem;
}

.richell-special-wrap .sub_ori ul {
  line-height: 1.5;
}

.richell-special-wrap .sub_ori li + li {
  margin-top: 0.4rem;
}

@media (max-width: 900px) {
  .richell-special__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .richell-special__head h3 {
    font-size: 1.4rem;
  }

  .richell-special__table th,
  .richell-special__table td {
    padding: 0.85rem 0.8rem;
    font-size: 1.02rem;
    line-height: 1.05;
  }

  .richell-special__table--main > tbody > tr > th {
    padding: 0.85rem 0.45rem;
  }

  .richell-special__table--main,
  .richell-special__table--income {
    min-width: 0;
    width: 100%;
  }

  .richell-special .is-center {
    white-space: normal;
  }
}

/* GNB 노출 구간(>1400px): 우측 상단 점점점 숨김 / GNB 숨김 구간: 표시 */
@media (min-width: 1401px) {
  .rh-ham {
    display: none !important;
  }
}

/* ===== 사이트맵 드로어 (1400↓) — 우측 패널 + 스테거 등장 ===== */
@media (max-width: 1400px) {
  .rh-ham {
    display: block !important;
  }

  .richell-sitemap.site_wrap {
    justify-content: flex-end;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .richell-sitemap .site_map {
    width: min(86vw, 380px);
    max-width: 380px;
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
    overflow: hidden;
  }

  /* 기존 원형 wipe 대신 우측 패널 슬라이드 */
  .richell-sitemap .site_map:after {
    content: "";
    top: 0 !important;
    right: 0 !important;
    left: auto;
    width: 100%;
    height: 100%;
    border-radius: 0 !important;
    background:
      -webkit-gradient(linear, left top, left bottom, from(#0c1f3d), color-stop(55%, #11284e), to(#16345f));
    background: linear-gradient(180deg, #0c1f3d 0%, #11284e 55%, #16345f 100%);
    -webkit-box-shadow: -18px 0 40px rgba(8, 18, 36, 0.35);
            box-shadow: -18px 0 40px rgba(8, 18, 36, 0.35);
    -webkit-transform: translateX(105%);
    -ms-transform: translateX(105%);
    transform: translateX(105%);
    -webkit-transition: -webkit-transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .richell-sitemap.site_wrap.active .site_map:after {
    top: 0 !important;
    border-radius: 0 !important;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .richell-sitemap ~ .site_bg,
  .site_bg {
    background-color: rgba(10, 20, 38, 0.42);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    opacity: 0;
  }

  .site_bg.active {
    opacity: 1;
    -webkit-transition: opacity 0.35s ease;
    transition: opacity 0.35s ease;
  }

  .richell-sitemap .site_map > div {
    width: 100%;
    height: 100%;
    opacity: 1;
    padding: 5.5rem 1.35rem 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
  }

  .richell-sitemap.site_wrap.active .site_map > div {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .richell-sitemap__head {
    margin-bottom: 1.1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    opacity: 0;
    -webkit-transform: translateX(1.25rem);
    -ms-transform: translateX(1.25rem);
    transform: translateX(1.25rem);
    -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .richell-sitemap.site_wrap.active .richell-sitemap__head {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 0.12s;
            transition-delay: 0.12s;
  }

  .richell-sitemap__eyebrow {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(212, 190, 140, 0.92);
    font-weight: 500;
  }

  .richell-sitemap .site_list {
    width: 100%;
    max-width: none;
    margin: 0;
    border: 0;
  }

  .richell-sitemap .site_list > li {
    display: block;
    height: auto !important;
    overflow: visible !important;
    margin: 0;
    padding: 0.15rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    -webkit-transform: translateX(1.5rem);
    -ms-transform: translateX(1.5rem);
    transform: translateX(1.5rem);
    -webkit-transition: opacity 0.38s ease, -webkit-transform 0.38s ease, background 0.2s ease;
    transition: opacity 0.38s ease, transform 0.38s ease, background 0.2s ease;
  }

  .richell-sitemap.site_wrap.active .site_list > li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.16s; }
  .richell-sitemap.site_wrap.active .site_list > li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.22s; }
  .richell-sitemap.site_wrap.active .site_list > li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.28s; }
  .richell-sitemap.site_wrap.active .site_list > li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.34s; }
  .richell-sitemap.site_wrap.active .site_list > li:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.4s; }
  .richell-sitemap.site_wrap.active .site_list > li:nth-child(6) { opacity: 1; transform: translateX(0); transition-delay: 0.46s; }
  .richell-sitemap.site_wrap.active .site_list > li:nth-child(7),
  .richell-sitemap.site_wrap.active .site_list > li:nth-child(8) { opacity: 1; transform: translateX(0); transition-delay: 0.5s; }

  .richell-sitemap .site_list > li > div {
    display: none !important;
  }

  .richell-sitemap .site_list > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 0.95rem 0.15rem;
    position: relative;
    overflow: visible;
  }

  .richell-sitemap .site_list > li > a > span {
    font-size: 1.12rem !important;
    font-weight: 650 !important;
    letter-spacing: -0.03em;
    color: #fff;
    padding: 0 !important;
    line-height: 1.3;
  }

  .richell-sitemap .site_list > li > a > span:nth-child(2),
  .richell-sitemap .site_list > li > a h5 {
    display: none !important;
  }

  .richell-sitemap .site_list > li > a::before {
    content: attr(data-num);
    display: none;
  }

  .richell-sitemap .site_list > li > a > span:nth-child(1)::before {
    content: "";
    display: inline-block;
    width: 0.35rem;
    height: 0.35rem;
    margin-right: 0.65rem;
    border-radius: 50%;
    background: #d4be8c;
    vertical-align: 0.15em;
  }

  .richell-sitemap .site_list > li:hover > a > span:nth-child(1),
  .richell-sitemap .site_list > li.open > a > span:nth-child(1) {
    color: #f3e6c6;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }

  .richell-sitemap .site_list2 a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    -webkit-transition: color 0.2s ease, padding-left 0.2s ease;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .richell-sitemap .site_list2 a:hover {
    color: #f3e6c6;
    padding-left: 0.2rem;
  }
}

/* 1001~1400: 서브메뉴 전부 노출 + 가로 정렬 (넓은 드로어) */
@media (min-width: 1001px) and (max-width: 1400px) {
  .richell-sitemap .site_map {
    width: min(88vw, 760px) !important;
    max-width: 760px !important;
    overflow: visible;
  }

  .richell-sitemap .site_map > div {
    padding: 5.25rem 2rem 2rem;
  }

  .richell-sitemap .site_list > li {
    height: auto !important;
    overflow: visible !important;
    padding: 0.55rem 0 0.65rem !important;
  }

  .richell-sitemap .site_list > li > a {
    pointer-events: none;
    padding: 0.35rem 0.15rem 0.45rem;
    overflow: visible !important;
  }

  .richell-sitemap .site_list > li > a::after {
    display: none;
  }

  .richell-sitemap .site_list2 {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    gap: 0.45rem 1.15rem !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0.15rem 0 0.2rem 1.05rem !important;
    border-top: 0 !important;
    border-left: 1px solid rgba(212, 190, 140, 0.35);
    text-align: left !important;
    opacity: 1 !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }

  .richell-sitemap .site_list2 li {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0.2rem 0 !important;
    text-align: left !important;
    font-size: 0.95rem !important;
    white-space: nowrap;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
  }

  .richell-sitemap .site_list2 li:first-child {
    padding-top: 0.2rem !important;
  }
}

/* 1000↓: 서브메뉴 아코디언 */
@media (max-width: 1000px) {
  .richell-sitemap .site_map {
    width: min(86vw, 380px);
    max-width: 380px;
  }

  .richell-sitemap .site_list > li > a {
    pointer-events: auto !important;
    padding: 0.95rem 0.15rem;
    cursor: pointer;
  }

  .richell-sitemap .site_list > li > a::after {
    content: "";
    display: block;
    width: 0.4rem;
    height: 0.4rem;
    margin-left: auto;
    border-right: 1.5px solid rgba(243, 230, 198, 0.7);
    border-bottom: 1.5px solid rgba(243, 230, 198, 0.7);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    opacity: 0.75;
  }

  .richell-sitemap .site_list > li.open > a::after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .richell-sitemap .site_list2 {
    position: relative !important;
    display: none !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100% !important;
    margin: 0 0 0.55rem !important;
    padding: 0.15rem 0 0.55rem 1.05rem !important;
    border-top: 0 !important;
    border-left: 1px solid rgba(212, 190, 140, 0.35);
    gap: 0 !important;
    text-align: left !important;
  }

  .richell-sitemap .site_list2.open {
    display: block !important;
  }

  .richell-sitemap .site_list2 li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0.35rem 0 !important;
    text-align: left !important;
    font-size: 0.92rem !important;
    white-space: normal;
  }

  .richell-sitemap .site_list2 li:first-child {
    padding-top: 0.15rem !important;
  }
}

@media (max-width: 767px) {
  .richell-sitemap .site_map {
    width: min(92vw, 360px);
  }

  .richell-sitemap .site_map > div {
    padding: 4.75rem 1.15rem 1.75rem;
  }

  .richell-sitemap .site_list > li > a > span {
    font-size: 1.05rem !important;
  }
}

/* ===== GNB depth1 호버 — 기울기 라인 → 하단 언더라인 확장 ===== */
.rh-gnb .line {
  top: calc(50% + 0.72rem) !important;
  bottom: auto !important;
  left: 50% !important;
  right: auto !important;
  margin: 0 !important;
  width: 2rem !important;
  height: 2px !important;
  background: #11284e !important;
  opacity: 0 !important;
  z-index: 2 !important;
  -webkit-transform: translateX(-50%) scaleX(0.25);
  -ms-transform: translateX(-50%) scaleX(0.25);
  transform: translateX(-50%) scaleX(0.25);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition:
    opacity 0.25s ease,
    -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
  -o-transition:
    opacity 0.25s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
  transition:
    opacity 0.25s ease,
    -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
  transition:
    opacity 0.25s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
  transition:
    opacity 0.25s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.rh-gnb .line.depth1-line-show {
  opacity: 1 !important;
  -webkit-transform: translateX(-50%) scaleX(1.85) !important;
  -ms-transform: translateX(-50%) scaleX(1.85) !important;
  transform: translateX(-50%) scaleX(1.85) !important;
}

.rh-navi.active .rh-gnb .line,
.rh-navi.mouseover .rh-gnb .line,
.rh-navi.over .rh-gnb .line {
  background: #11284e !important;
}

.rh-navi.white .rh-gnb .line,
body.main .rh-navi.white .rh-gnb .line {
  background: #fff !important;
}

.rh-navi.white.mouseover .rh-gnb .line,
.rh-navi.white.active .rh-gnb .line,
body.main .rh-navi.white.mouseover .rh-gnb .line,
body.main .rh-navi.white.active .rh-gnb .line,
.rh-navi.active .rh-gnb .line,
.rh-navi.mouseover .rh-gnb .line {
  background: #11284e !important;
}

/* 호버 텍스트 컬러도 브랜드 네이비로 통일 */
.rh-gnb > ul > li:hover > a,
body.main .rh-gnb > ul > li:hover > a,
.rh-navi.white .rh-gnb > ul > li:hover > a,
.rh-navi.over .rh-gnb > ul > li:hover > a,
.rh-navi.mouseover .rh-gnb > ul > li:hover > a {
  color: #11284e !important;
}

.rh-navi.white:not(.active):not(.mouseover) .rh-gnb > ul > li:hover > a,
body.main .rh-navi.white:not(.active):not(.mouseover) .rh-gnb > ul > li:hover > a {
  color: #fff !important;
}

/* ========== /product/unit 주택형 안내 (브로슈어형) ========== */
.richell-unitplan-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

ul.tabs2.unit.richell-unitplan-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: none;
  margin: 0 0 2rem;
  gap: 0.5rem;
}

ul.tabs2.unit.richell-unitplan-tabs li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: auto !important;
  margin: 0 !important;
}

ul.tabs2.unit.richell-unitplan-tabs li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 2.75rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid #d5dbe6;
  background: #fff;
  color: #44516a;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  -webkit-transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  -o-transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

ul.tabs2.unit.richell-unitplan-tabs li.selected a,
ul.tabs2.unit.richell-unitplan-tabs li a:hover {
  border-color: #11284e;
  background: #11284e;
  color: #fff;
}

.richell-unitplan {
  color: #1a2436;
}

.richell-unitplan__hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 9.5rem;
  padding: 2rem 2.25rem;
  overflow: hidden;
  background:
    -o-linear-gradient(
      345deg,
      rgba(17, 40, 78, 0.92) 0%,
      rgba(17, 40, 78, 0.72) 42%,
      rgba(17, 40, 78, 0.28) 70%,
      rgba(17, 40, 78, 0.08) 100%
    ),
    url(../project/unit/living.jpg) right center / cover no-repeat;
  background:
    linear-gradient(
      105deg,
      rgba(17, 40, 78, 0.92) 0%,
      rgba(17, 40, 78, 0.72) 42%,
      rgba(17, 40, 78, 0.28) 70%,
      rgba(17, 40, 78, 0.08) 100%
    ),
    url(../project/unit/living.jpg) right center / cover no-repeat;
  color: #fff;
}

.richell-unitplan__hero-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.85rem 1.1rem;
}

.richell-unitplan__hero h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.richell-unitplan__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.richell-unitplan__hero-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.richell-unitplan__specs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #d9dee8;
  border-top: 0;
  background: #f7f8fb;
}

.richell-unitplan__specs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1rem;
  border-right: 1px solid #d9dee8;
  text-align: center;
}

.richell-unitplan__specs li:last-child {
  border-right: 0;
}

.richell-unitplan__spec-label {
  color: #5b677c;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.richell-unitplan__spec-value {
  color: #11284e;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.richell-unitplan__spec-note {
  color: #8893a6;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
}

.richell-unitplan__section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5rem 1rem;
  margin: 2rem 0 0.85rem;
}

.richell-unitplan__section-head h4 {
  margin: 0;
  color: #11284e;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.richell-unitplan__section-head p {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: #6a758a;
  font-size: 0.86rem;
  font-weight: 500;
}

.richell-unitplan__swatch {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  border: 1px solid rgba(17, 40, 78, 0.15);
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.richell-unitplan__site-fig,
.richell-unitplan__iso-fig {
  margin: 0;
  padding: 1.25rem;
  border: 1px solid #e2e6ef;
  background: #fff;
}

.richell-unitplan__site-fig img,
.richell-unitplan__iso-fig img {
  display: block;
  width: 100%;
  height: auto;
}

.richell-unitplan__plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.richell-unitplan__plan {
  margin: 0;
  border: 1px solid #e2e6ef;
  background: #fff;
  overflow: hidden;
}

.richell-unitplan__plan figcaption {
  margin: 0;
  padding: 0.85rem 1rem;
  background: #11284e;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
}

.richell-unitplan__plan-img {
  padding: 1rem;
  background: #fff;
}

.richell-unitplan__plan-img img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 900px) {
  .richell-unitplan__hero {
    min-height: 8rem;
    padding: 1.5rem 1.25rem;
  }

  .richell-unitplan__specs {
    grid-template-columns: 1fr;
  }

  .richell-unitplan__specs li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.35rem 0.75rem;
    border-right: 0;
    border-bottom: 1px solid #d9dee8;
    text-align: left;
  }

  .richell-unitplan__specs li:last-child {
    border-bottom: 0;
  }

  .richell-unitplan__plans {
    grid-template-columns: 1fr;
  }

  .richell-unitplan__site-fig,
  .richell-unitplan__iso-fig {
    padding: 0.75rem;
  }
}

@media screen and (max-width: 640px) {
  ul.tabs2.unit.richell-unitplan-tabs {
    gap: 0.35rem;
  }

  ul.tabs2.unit.richell-unitplan-tabs li a {
    min-height: 2.4rem;
    font-size: 0.9rem;
  }

  .richell-unitplan__hero h3 {
    font-size: 2rem;
  }

  .richell-unitplan__hero-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.2rem;
  }

  .richell-unitplan__section-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

/* ========== /apply/check 청약체크포인트 ========== */
.richell-check-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.richell-check__intro {
  text-align: center;
  margin-bottom: 2.25rem;
}

.richell-check__eyebrow {
  margin: 0 0 0.65rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(17, 40, 78, 0.55);
}

.richell-check__intro h3 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: #11284e;
}

.richell-check__lead {
  margin: 1rem auto 0;
  max-width: 38rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #666;
}

.richell-check__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.richell-check__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  padding: 2.25rem 1.5rem 1.85rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 1rem;
  -webkit-box-shadow: 0 10px 28px rgba(17, 40, 78, 0.06);
          box-shadow: 0 10px 28px rgba(17, 40, 78, 0.06);
  text-align: center;
}

.richell-check__card::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
  background: -o-radial-gradient(
      circle,
      currentColor 0 0.18rem,
      transparent 0.19rem
    )
    0 0 / 0.7rem 0.7rem;
  background: radial-gradient(
      circle,
      currentColor 0 0.18rem,
      transparent 0.19rem
    )
    0 0 / 0.7rem 0.7rem;
}

.richell-check__card.is-01 {
  color: #1f9e9a;
}

.richell-check__card.is-02 {
  color: #2f6fbf;
}

.richell-check__card.is-03 {
  color: #6b5bb8;
}

.richell-check__num {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 3.1rem;
  height: 2.15rem;
  padding: 0 0.85rem 0 0.7rem;
  background: currentColor;
  color: #fff;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  -webkit-clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.richell-check__label {
  margin: 0.35rem 0 1.1rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: currentColor;
}

.richell-check__icon {
  width: 4.75rem;
  height: 4.75rem;
  margin-bottom: 1.15rem;
}

.richell-check__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.richell-check__card h4 {
  margin: 0;
  padding-bottom: 0.95rem;
  border-bottom: 2px solid currentColor;
  color: #1a2436;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.richell-check__card > p {
  margin: 1rem 0 0;
  color: #555;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.richell-check__card > p strong {
  color: #11284e;
  font-weight: 700;
}

.richell-check__note {
  margin-top: 0.85rem !important;
  padding-top: 0.85rem;
  border-top: 1px dashed #d7dde8;
  color: #778197 !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
}

@media (max-width: 900px) {
  .richell-check__cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.richell-check__section {
  margin-top: 3.25rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e6ebf2;
}

.richell-check__section-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.richell-check__section-head h3 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: #11284e;
}

.richell-check__section-head p {
  margin: 0.85rem auto 0;
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #666;
}

.richell-check__deposit th,
.richell-check__deposit td {
  font-size: 1.08rem;
  line-height: 1.05;
}

.richell-check__special {
  min-width: 920px;
}

.richell-check__special thead th {
  background: #11284e;
  color: #fff;
  font-size: 1rem;
  line-height: 1.05;
  vertical-align: middle;
}

.richell-check__special tbody > tr > th {
  width: 7.5rem;
  background: #f3f6fa;
  color: #11284e;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}

.richell-check__special tbody > tr > td {
  font-size: 0.98rem;
  line-height: 1.05;
  text-align: center;
  vertical-align: middle;
  letter-spacing: -0.02em;
}

.richell-check__sub {
  display: inline-block;
  margin-top: 0.35rem;
  color: #778197;
  font-size: 0.9rem;
}

.richell-check__limit {
  text-align: left !important;
}

.richell-check__limit ul {
  margin: 0;
  padding-left: 1.1rem;
  text-align: left;
}

.richell-check__limit li + li {
  margin-top: 0.15rem;
}

/* ========== /apply/system 변경된 청약제도 ========== */
.richell-system-apply__table > tbody > tr > th {
  font-size: 1.12rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.richell-system-apply__table > tbody > tr > td {
  font-size: 1.1rem;
  line-height: 1.08;
}

.richell-system-apply__table > tbody > tr > td > p {
  margin: 0.55rem 0 0.2rem;
  color: #11284e;
  font-weight: 700;
}

.richell-system-apply__table > tbody > tr > td > p:first-child {
  margin-top: 0;
}

.richell-system-apply__tag {
  display: inline-block;
  margin-left: 0.25rem;
  color: #6a758a;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

.richell-system-apply__sub {
  display: inline-block;
  margin-top: 0.35rem;
  color: #778197;
  font-size: 0.95rem;
  line-height: 1.45;
}

.richell-system-apply__housing .is-highlight {
  background: #fff7f7;
  border: 2px solid #d64545 !important;
  color: #11284e;
  font-weight: 800;
}

/* ========== /apply/points 청약가점표 ========== */
.richell-points__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.05rem 1.25rem;
  background: #11284e;
}

.richell-points__head h3 {
  margin: 0;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.richell-points__brand {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.richell-points__summary {
  margin-top: 1.25rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid #d7deea;
  background: #f7f9fc;
}

.richell-points__summary-note {
  margin: 0 0 0.85rem;
  color: #44516a;
  font-size: 1.02rem;
  font-weight: 600;
}

.richell-points__summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.richell-points__summary-item,
.richell-points__summary-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 0.9rem;
  background: #fff;
  border: 1px solid #e2e7ef;
}

.richell-points__summary-item span,
.richell-points__summary-total span {
  color: #6a758a;
  font-size: 0.95rem;
  font-weight: 600;
}

.richell-points__summary-item strong,
.richell-points__summary-total strong {
  color: #11284e;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.richell-points__summary-total {
  background: #11284e;
  border-color: #11284e;
}

.richell-points__summary-total span {
  color: rgba(255, 255, 255, 0.78);
}

.richell-points__summary-total strong {
  color: #fff;
}

.richell-points__summary-total em {
  font-style: normal;
  font-size: 1.55rem;
}

.richell-points__table {
  min-width: 920px;
  table-layout: fixed;
}

.richell-points__col-item {
  width: 7.5rem;
}
.richell-points__col-limit {
  width: 4.8rem;
}
.richell-points__col-sub {
  width: 4.4rem;
}
.richell-points__col-score {
  width: 3.8rem;
}
.richell-points__col-check {
  width: 3.4rem;
}

.richell-points__table thead th {
  background: #eef2f7;
  color: #11284e;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.75rem 0.45rem;
  vertical-align: middle;
  text-align: center;
}

.richell-points__table th,
.richell-points__table td {
  font-size: 1.08rem;
  line-height: 1.15;
  padding: 0.55rem 0.6rem;
  vertical-align: middle;
  word-break: keep-all;
}

.richell-points__item {
  background: #eef2f7 !important;
  color: #11284e !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  text-align: center !important;
  line-height: 1.3 !important;
}

.richell-points__limit {
  font-size: 1.15rem;
  font-weight: 800;
  color: #11284e;
}

.richell-points__sub {
  background: #f7f9fc !important;
  color: #11284e !important;
  font-weight: 700 !important;
  text-align: center !important;
}

.richell-points__label {
  text-align: left !important;
}

.richell-points__label label {
  cursor: pointer;
  display: block;
}

.richell-points__check {
  color: #44516a;
}

.richell-points__input {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  accent-color: #11284e;
  cursor: pointer;
  vertical-align: middle;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

.richell-points-m {
  display: none;
}

@media (max-width: 900px) {
  .richell-points__desktop {
    display: none;
  }

  .richell-points-m {
    display: block;
  }

  .richell-points__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.35rem;
  }

  .richell-points__summary {
    margin-top: 1rem;
    padding: 1rem;
  }

  .richell-points__summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .richell-points__summary-total {
    grid-column: 1 / -1;
  }

  .richell-points-m__section {
    margin-bottom: 1.1rem;
    border: 1px solid #e2e7ef;
    background: #fff;
    overflow: hidden;
  }

  .richell-points-m__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: #11284e;
    color: #fff;
  }

  .richell-points-m__head h4 {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .richell-points-m__head span {
    font-size: 0.9rem;
    opacity: 0.85;
    white-space: nowrap;
  }

  .richell-points-m__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .richell-points-m__option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-top: 1px solid #e8edf4;
    cursor: pointer;
  }

  .richell-points-m__list li:first-child .richell-points-m__option {
    border-top: 0;
  }

  .richell-points-m__text {
    color: #222;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    word-break: keep-all;
  }

  .richell-points-m__score {
    color: #11284e;
    font-size: 1.05rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .richell-points-m__option:has(input:checked) {
    background: #eef3fb;
  }
}

/* ========== /sales/stamp 인지세 안내문 ========== */
.richell-stamp__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding: 1.05rem 1.25rem;
  background: #11284e;
}

.richell-stamp__head h3 {
  margin: 0;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.richell-stamp__brand {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.12rem;
  font-weight: 700;
  white-space: nowrap;
}

.richell-stamp__section {
  margin-bottom: 2rem;
}

.richell-stamp__section h4 {
  position: relative;
  margin: 0 0 0.85rem;
  padding-left: 1.05rem;
  color: #11284e;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.richell-stamp__section h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.55rem;
  height: 0.55rem;
  background: #11284e;
}

.richell-stamp__section h4 span {
  color: #6a758a;
  font-size: 1.05rem;
  font-weight: 600;
}

.richell-stamp__section > p,
.richell-stamp__facts span,
.richell-stamp__steps p,
.richell-stamp__steps li {
  color: #333;
  font-size: 1.18rem;
  line-height: 1.55;
  word-break: keep-all;
}

.richell-stamp__law {
  margin: 0 0 0.75rem !important;
  color: #667286 !important;
  font-size: 1.05rem !important;
}

.richell-stamp__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #d7deea;
  background: #f7f9fc;
}

.richell-stamp__facts li {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-top: 1px solid #e4e9f1;
}

.richell-stamp__facts li:first-child {
  border-top: 0;
}

.richell-stamp__facts strong {
  color: #11284e;
  font-weight: 800;
}

.richell-stamp .richell-special__table th,
.richell-stamp .richell-special__table td {
  font-size: 1.15rem;
}

.richell-stamp__amount thead th:last-child,
.richell-stamp__amount .is-buyer {
  color: #c0392b;
  font-weight: 800;
}

.richell-stamp__amount tr.is-emphasis td {
  background: #fff7f7;
  font-weight: 700;
}

.richell-stamp__alerts {
  margin: 0.85rem 0 0;
  padding-left: 0;
  list-style: none;
}

.richell-stamp__alerts li {
  color: #c0392b !important;
  font-size: 1.08rem !important;
  font-weight: 600;
  line-height: 1.5 !important;
}

.richell-stamp__alerts li + li {
  margin-top: 0.35rem;
}

.richell-stamp__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.richell-stamp__steps > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1.1rem 1rem 1.15rem;
  border: 1px solid #d7deea;
  background: #fff;
}

.richell-stamp__step-num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #11284e;
  color: #fff;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.richell-stamp__steps strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #11284e;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.richell-stamp__steps p,
.richell-stamp__steps ul {
  margin: 0;
}

.richell-stamp__steps ul {
  padding-left: 1.1rem;
}

.richell-stamp__steps ul li + li {
  margin-top: 0.2rem;
}

.richell-stamp__flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.richell-stamp__flow li {
  position: relative;
  padding: 1.2rem 1rem;
  background: #11284e;
  color: #fff;
  text-align: center;
}

.richell-stamp__flow li strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.richell-stamp__flow li span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.4;
}

@media (min-width: 901px) {
  .richell-stamp__flow li:not(:last-child)::after {
    content: "›";
    position: absolute;
    right: -0.7rem;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #8a97ad;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
  }
}

@media (max-width: 900px) {
  .richell-stamp__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.35rem;
  }

  .richell-stamp__facts li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .richell-stamp__steps {
    grid-template-columns: 1fr;
  }

  .richell-stamp__flow {
    grid-template-columns: 1fr;
  }

  .richell-stamp__flow li:not(:last-child)::after {
    content: "↓";
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: -0.85rem;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    color: #8a97ad;
    font-size: 1.2rem;
  }
}

/* ========== /sales/fund ========== */
.richell-fund .richell-stamp__head {
  margin-bottom: 1.15rem;
}

.richell-fund img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== 관심고객등록 (/pr/guest) ========== */
.richell-guest {
  max-width: 920px;
  margin: 0 auto 3rem;
  text-align: left;
  color: #222;
}

.richell-guest__flash {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 0.35rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.richell-guest__flash--ok {
  background: #e8f7ef;
  color: #067647;
}
.richell-guest__flash--err {
  background: #fef3f2;
  color: #b42318;
}
.richell-guest__again {
  margin: 0;
}
.richell-guest__again a {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: #11284e;
  color: #fff;
  text-decoration: none;
}

.richell-guest__block {
  margin-bottom: 2.25rem;
}
.richell-guest__heading {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.03em;
}
.richell-guest__heading--bar {
  padding-top: 1.1rem;
  border-top: 3px solid #11284e;
}

.richell-guest__terms {
  max-height: 11.5rem;
  overflow: auto;
  padding: 1rem 1.1rem;
  border: 1px solid #cfd3da;
  background: #fff;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #444;
  -webkit-overflow-scrolling: touch;
}
.richell-guest__terms p,
.richell-guest__terms ol {
  margin: 0 0 0.75rem;
}
.richell-guest__terms ol {
  padding-left: 1.2rem;
}
.richell-guest__terms li + li {
  margin-top: 0.55rem;
}
.richell-guest__terms strong {
  color: #222;
  font-weight: 700;
}

.richell-guest__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.richell-guest__radios label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  color: #333;
}
.richell-guest__radios input {
  width: 1rem;
  height: 1rem;
  margin: 0;
}

.richell-guest__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #cfd3da;
  border-bottom: 1px solid #cfd3da;
}
.richell-guest__table th,
.richell-guest__table td {
  border-bottom: 1px solid #e2e5ea;
  vertical-align: middle;
  text-align: left;
}
.richell-guest__table th {
  width: 8.5rem;
  padding: 1rem 1rem;
  background: #f3f4f6;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  text-align: center;
}
.richell-guest__table td {
  padding: 0.75rem 1rem;
  background: #fff;
}
.richell-guest__table input[type="text"],
.richell-guest__table input[type="rh-tel"],
.richell-guest__table select {
  width: 100%;
  height: 2.5rem;
  padding: 0 0.7rem;
  border: 1px solid #cfd3da;
  background: #fff;
  color: #222;
  font-size: 0.9375rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.richell-guest__table select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}
.richell-guest__table input:disabled,
.richell-guest__table select:disabled {
  background-color: #f7f8fa;
  color: #999;
}

.richell-guest__phone,
.richell-guest__addr {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
.richell-guest__phone select {
  max-width: none;
}

.richell-guest__notes {
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.15rem;
  background: #f3f4f6;
  color: #666;
  font-size: 0.8125rem;
  line-height: 1.65;
}
.richell-guest__notes ul {
  margin: 0;
  padding-left: 1rem;
}
.richell-guest__notes li + li {
  margin-top: 0.25rem;
}

.richell-guest__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.65rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.richell-guest__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 10.5rem;
  height: 3.1rem;
  padding: 0 1.5rem;
  border: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.richell-guest__btn--primary {
  background: #11284e;
  color: #fff;
}
.richell-guest__btn--primary:hover {
  background: #0d1f3d;
}
.richell-guest__btn--cancel {
  background: #e5e7eb;
  color: #222;
}
.richell-guest__btn--cancel:hover {
  background: #d7dbe2;
}

@media (max-width: 767px) {
  .richell-guest {
    margin-bottom: 2rem;
  }
  .richell-guest__heading {
    font-size: 1.05rem;
  }
  .richell-guest__radios {
    gap: 1.5rem;
  }
  .richell-guest__table th {
    width: 5.5rem;
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
  .richell-guest__table td {
    padding: 0.65rem 0.55rem;
  }
  .richell-guest__phone,
  .richell-guest__addr {
    gap: 0.4rem;
  }
  .richell-guest__table input[type="text"],
  .richell-guest__table input[type="tel"],
  .richell-guest__table select {
    height: 2.35rem;
    font-size: 0.875rem;
    padding: 0 0.5rem;
  }
  .richell-guest__table select {
    padding-right: 1.5rem;
    background-position: right 0.45rem center;
  }
  .richell-guest__btn {
    min-width: 8.5rem;
    height: 2.85rem;
    font-size: 0.9375rem;
  }
}

/* ========== 인테리어 (/product/interior) ========== */
.richell-interior-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.richell-interior {
  width: 100%;
  color: #11284e;
  text-align: left;
}

.richell-interior__intro {
  margin-bottom: 2rem;
}

.richell-interior__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "futura", "DEFINE", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(17, 40, 78, 0.55);
}

.richell-interior__intro h3 {
  margin: 0;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.4;
  word-break: keep-all;
}

.richell-interior__intro > p {
  margin: 1.1rem 0 0;
  max-width: 40rem;
  font-size: 0.975rem;
  line-height: 1.85;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: rgba(17, 40, 78, 0.72);
}

.richell-interior__points {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
  max-width: 46rem;
}
.richell-interior__points li {
  padding-left: 1rem;
  border-left: 2px solid #11284e;
}
.richell-interior__points strong {
  display: block;
  font-family: "Nanum Myeongjo", serif;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  word-break: keep-all;
  color: #11284e;
}
.richell-interior__points p {
  margin: 0.45rem 0 0;
  font-size: 0.925rem;
  line-height: 1.7;
  letter-spacing: -0.02em;
  word-break: keep-all;
  color: rgba(17, 40, 78, 0.72);
}

.richell-interior__hero,
.richell-interior__grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e8edf2;
}

.richell-interior__hero {
  margin-bottom: 0.75rem;
}

.richell-interior__hero img,
.richell-interior__grid img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  -o-transition: transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}

.richell-interior__hero img {
  aspect-ratio: 16 / 10;
}

.richell-interior__hero:hover img,
.richell-interior__grid li:hover img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

.richell-interior__hero figcaption,
.richell-interior__grid figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 0.55rem 0.9rem;
  background: rgba(17, 40, 78, 0.72);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.richell-interior__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.richell-interior__grid li {
  min-width: 0;
}

.richell-interior__grid img {
  aspect-ratio: 4 / 3;
}

@media (max-width: 767px) {
  .richell-interior__intro {
    margin-bottom: 1.5rem;
  }

  .richell-interior__intro > p .pc,
  .richell-interior__points p .pc {
    display: none;
  }

  .richell-interior__points {
    margin-top: 1.35rem;
    gap: 1rem;
  }

  .richell-interior__grid {
    gap: 0.55rem;
  }

  .richell-interior__hero figcaption,
  .richell-interior__grid figcaption {
    font-size: 0.75rem;
    padding: 0.45rem 0.7rem;
  }
}

/* /sales/telecom — 준비중 blur 오버레이 */
.richell-telecom-soon {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.richell-telecom-soon__content {
  -webkit-filter: blur(10px);
  filter: blur(10px);
  opacity: 0.35;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.richell-telecom-soon__content img {
  width: 100%;
  display: block;
}

.richell-telecom-soon__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2.5rem;
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.richell-telecom-soon__overlay strong {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

@media (max-width: 767px) {
  .richell-telecom-soon {
    min-height: 220px;
  }

  .richell-telecom-soon__content {
    -webkit-filter: blur(8px);
    filter: blur(8px);
  }

  .richell-telecom-soon__overlay {
    padding-top: 1.75rem;
  }
}
