/* =========================================
 * Sub Pages 공통 레이아웃 (ABOUT, PRICE, GALLERY, CONTACT 등)
 * front-page 제외 모든 page(+posts page)에 적용
 * =======================================*/

/* 전체 배경 톤 */
body.page:not(.home),
body.blog.page {
  background:
    radial-gradient(circle at top, rgba(20, 20, 36, 0.7), transparent 55%),
    #050509;
}

/* GeneratePress 기본 레이아웃 정리 */
body.page:not(.home) .site-main {
  padding: 80px 16px 96px;
}

body.page:not(.home) .inside-article {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

/* 기본 페이지 타이틀 숨김 */
body.page:not(.home) .inside-article > .entry-header {
  display: none;
}

body.page:not(.home) .entry-content {
  margin: 0;
}

/* -----------------------------------------
 * 공통 컨테이너
 * --------------------------------------*/

.sub-shell {
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px 28px 72px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 206, 120, 0.06), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 206, 120, 0.03), transparent 55%),
    linear-gradient(to bottom, #101018, #050509);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff; /* 기본 글자색 흰색으로 강제 */
}

/* 모바일에서 여백 조정 */
@media (max-width: 768px) {
  .sub-shell {
    padding: 40px 20px 56px;
    border-radius: 18px;
  }
}

/* 섹션 헤더 */
.sub-head-kicker {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #f4c15d;
  margin-bottom: 16px;
}

.sub-head-title {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.sub-head-lead {
  font-size: 14px;
  line-height: 1.8;
  color: #cbc7e3;
  max-width: 640px;
}

/* 본문 레이아웃 */
.sub-body {
  margin-top: 40px;
  display: grid;
  gap: 32px;
}

/* 개별 블록 */
.sub-block {
  border-radius: 18px;
  padding: 20px 22px;
  background: radial-gradient(circle at top left, rgba(255, 206, 120, 0.08), transparent 60%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* 카드 스타일을 끄고 텍스트 영역처럼 쓰는 변형(인라인 스타일 방지용) */
.sub-block--plain{
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.sub-block-title {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.sub-block p {
  font-size: 14px;
  line-height: 1.9;
  color: #cbc7e3;
  margin-bottom: 10px;
}

.sub-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.sub-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.9;
  color: #cbc7e3;
}

.sub-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f4c15d;
}

/* 버튼 공통 */
.sub-btn-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sub-btn,
a.sub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.12s ease;
}

.sub-btn--primary {
  background: #f4c15d;
  color: #181015;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.7);
}

.sub-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
}

.sub-btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.sub-btn--outline:hover {
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 640px) {
  .sub-btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .sub-btn,
  a.sub-btn {
    width: 100%;
    justify-content: center;
  }
}

/* 히어로 + 이미지 영역 (우리가 만든 about HTML 기준) */
.sub-hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 32px;
  align-items: center;
}

.sub-hero-text p {
  font-size: 14px;
  line-height: 1.9;
  color: #cbc7e3;
}

.sub-hero-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

/* 아래쪽 섹션 그리드 */
.sub-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr);
  gap: 24px;
}

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

/* =========================================
 * ABOUT 전용 레이아웃 & 배너 스타일
 * =======================================*/

/* ABOUT 전체 래퍼 – 여백/간격만 약간 보정 */
.about-shell {
  display: flex;
  flex-direction: column;
}

/* 배너/CTA 공통 카드(이미지 + 텍스트) */
.sub-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #050509;
  margin-top: 40px;
}

.sub-banner-inner {
  position: relative;
  z-index: 2;
  padding: 26px 22px;
}

.sub-banner-inner h2 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #ffffff;
}

.sub-banner-inner p {
  font-size: 14px;
  line-height: 1.9;
  color: #cbc7e3;
}

.sub-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sub-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  display: block;
}

/* 배너 전체를 덮는 오버레이 (다크 + 골드톤) */
.sub-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5, 5, 9, 0.94), rgba(5, 5, 9, 0.45)),
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.22), transparent 55%);
  z-index: 1;
}

/* ABOUT 본문용 배경 배너 (텍스트 BG 이미지) */
.sub-banner--about {
  margin-top: 40px;
}

/* CTA 배너는 아래쪽 버튼 정렬만 살짝 다르게 */
.sub-banner--cta {
  margin-top: 40px;
}

.sub-banner-inner--cta {
  padding-bottom: 24px;
}

/* ABOUT 히어로에서 메인 이미지만 살짝 오버레이 */
.sub-hero-photo--about {
  position: relative;
}

.sub-hero-photo--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 5, 9, 0.78), rgba(5, 5, 9, 0.18)),
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.35), transparent 65%);
  mix-blend-mode: normal;
  pointer-events: none;
}

/* 정빠/오빠방 섹션 카드에 살짝 더 고급스러운 배경 */
.sub-grid--jung .sub-block,
.sub-grid--oppa .sub-block {
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.12), transparent 65%),
    linear-gradient(to bottom, rgba(16, 16, 24, 0.95), rgba(5, 5, 9, 0.98));
}

/* CTA 배너 안 버튼 정렬 */
.sub-banner--cta .sub-btn-row {
  margin-top: 20px;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
  .sub-banner-inner {
    padding: 22px 18px 22px;
  }

  .sub-banner-inner h2 {
    font-size: 16px;
  }

  .sub-btn,
a.sub-btn {
  
  padding: 12px 0px;

}

/* =========================================
 * BLOG PAGE TEMPLATE (template-blog.php)
 * =======================================*/
.blogsub-shell {
  display: grid;
  gap: 20px;
}

/* blog 페이지에서는 스크롤 리빌 숨김이 남아도 강제로 표시 */
.blogsub-shell .gyg-reveal,
.blogsub-shell.gyg-reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.blogsub-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a101d;
}

.blogsub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(5, 8, 14, 0.35) 8%, rgba(5, 8, 14, 0.15) 48%, rgba(5, 8, 14, 0.38) 100%);
}

.blogsub-hero-inner {
  position: relative;
  z-index: 1;
  padding: 26px 22px 24px;
  max-width: 780px;
}

.blogsub-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f4c15d;
}

.blogsub-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.14;
}

.blogsub-lead,
.blogsub-hero-excerpt {
  margin: 12px 0 0;
  color: #cbc7e3;
  line-height: 1.9;
}

.blogsub-hero-excerpt {
  max-width: 56ch;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blogsub-hero-more {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(244, 193, 93, 0.65);
  color: #f4c15d;
  font-size: 13px;
  text-decoration: none;
}

.blogsub-hero-more:hover {
  text-decoration: none;
  background: rgba(244, 193, 93, 0.08);
}

.blogsub-list-wrap {
  display: grid;
  gap: 12px;
}

.blogsub-list-title {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  color: #fff;
}

.blogsub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.blogsub-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.08), transparent 60%),
    #0d1424;
  overflow: hidden;
}

.blogsub-card-link {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: stretch;
  min-height: 180px;
  height: 100%;
}

.blogsub-card-link:hover {
  text-decoration: none;
}

.blogsub-thumb {
  height: 100%;
  min-height: 180px;
  overflow: hidden;
  background: #0b1220;
}

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

.blogsub-thumb-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top, rgba(244, 193, 93, 0.14), transparent 58%),
    linear-gradient(135deg, #111827, #0b1220);
}

.blogsub-body {
  padding: 16px 16px 18px;
  display: grid;
  align-content: center;
}

.blogsub-date {
  font-size: 12px;
  color: #98a2b8;
}

.blogsub-body h3 {
  margin: 8px 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.28;
  color: #f8f7ff;
}

.blogsub-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #c9c5de;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogsub-more {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #f4c15d;
  display: inline-block;
}

.blogsub-pagination .page-numbers {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.blogsub-pagination a,
.blogsub-pagination span {
  min-width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
}

.blogsub-pagination .current {
  background: #f4c15d;
  color: #111;
  border-color: #f4c15d;
}

.blogsub-empty {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 1024px) {
  .blogsub-card-link {
    grid-template-columns: 280px minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .blogsub-card-link {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .blogsub-thumb {
    min-height: 200px;
  }

  .blogsub-body {
    padding: 14px;
  }

  .blogsub-body h3 {
    font-size: 20px;
  }
}

/* =========================================
 * PRICE PAGE 전용 스타일
 * =======================================*/

.price-shell {
  display: flex;
  flex-direction: column;
}

/* 1. 상단 PRICE Top Banner (price-top.webp) */

.price-hero {
  position: relative;
  height: 30vh;
  min-height: 200px;
  margin-bottom: 40px;
  background:
    url('https://xn--939au0gbvouhx.xyz/wp-content/uploads/2025/04/price-top.webp')
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.price-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 5, 9, 0.45), rgba(5, 5, 9, 0.9));
}

.price-hero-heading {
  position: relative;
  z-index: 1;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* 2. 바 배경 페럴렉스 섹션 (bar-background.webp) */

.price-parallax {
  position: relative;
  margin-bottom: 40px;
  padding: 6rem 1rem;
  color: #fff;
  text-align: center;
  background:
    url('https://xn--939au0gbvouhx.xyz/wp-content/uploads/2025/04/bar-background.webp')
    center center / cover no-repeat fixed;
}

.price-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 5, 9, 0.9), rgba(5, 5, 9, 0.85));
  z-index: 0;
}

.price-parallax-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.price-parallax-title {
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: 16px;
}

.price-parallax-text {
  font-size: 15px;
  line-height: 1.9;
  color: #f0ecff;
}

.price-parallax-phone {
  color: #ffd700;
}

/* 3. 기본 가격표 섹션 */

.price-table {
  padding: 4rem 1rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  border-radius: 22px;
  margin-bottom: 40px;
}

.price-table-heading {
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 2rem;
}

.price-table-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.price-item {
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.12), transparent 60%),
    #101018;
  border-radius: 16px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.price-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #fff;
}

.price-item p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #ddd;
}

.price-table-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #ccc;
}

/* 4. CTA 섹션 */

.price-cta {
  padding: 4rem 1rem;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  text-align: center;
  border-radius: 22px;
}

.price-cta-title {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.price-cta-text {
  color: #ccc;
  margin-bottom: 2rem;
}

.price-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.price-cta-btn {
  padding: 1rem 2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition:
    background 0.2s ease,
    transform 0.12s ease,
    box-shadow 0.2s ease;
}

.price-cta-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.7);
}

/* 모바일 대응 */

@media (max-width: 960px) {
  .price-parallax {
    padding: 4rem 1.5rem;
    background-attachment: scroll; /* 모바일에서 fixed 버그 방지 */
  }
}

@media (max-width: 640px) {
  .price-table-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-hero {
    height: 26vh;
  }
}

/* =========================================
 * ABOUT /about page (page-about.php)
 * =======================================*/

.about-v2 {
  gap: 32px;
}

.about-v2-section {
  display: grid;
  gap: 18px;
}

.about-v2-title {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.4;
  color: #fff;
}

.about-v2-copy {
  display: grid;
  gap: 10px;
}

.about-v2-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #d7d2ea;
}

.about-v2-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-v2-service {
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.11), transparent 65%),
    linear-gradient(to bottom, rgba(16, 16, 24, 0.95), rgba(5, 5, 9, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 18px 16px;
}

.about-v2-service h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
}

.about-v2-service p {
  margin: 0;
  color: #cbc7e3;
  font-size: 14px;
  line-height: 1.8;
}

.about-v2-service p + p {
  margin-top: 8px;
}

.about-v2-rooms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-v2-room {
  margin: 0;
  background: rgba(12, 12, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.about-v2-room img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.about-v2-room figcaption {
  font-size: 13px;
  color: #f6f2ff;
  text-align: center;
  padding: 10px 8px;
}

.about-v2-cta {
  margin-top: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.14), transparent 60%),
    linear-gradient(to bottom, rgba(12, 12, 18, 0.95), rgba(5, 5, 9, 0.98));
  padding: 22px 20px;
}

.about-v2-cta p {
  margin: 8px 0 0;
  color: #d2cde6;
  line-height: 1.8;
}

.about-v2-btns {
  margin-top: 16px;
}

@media (max-width: 980px) {
  .about-v2-services {
    grid-template-columns: 1fr;
  }

  .about-v2-rooms {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-v2-rooms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-v2-room img {
    height: 150px;
  }
}

/* =========================================
 * ABOUT rich layout (template-parts/subpage/about-rich.php)
 * =======================================*/

.about-rich-hero {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(to top, rgba(5, 5, 9, 0.9), rgba(5, 5, 9, 0.35)),
    var(--about-hero) center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
}

.about-rich-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.24), transparent 60%),
    linear-gradient(to right, rgba(5, 5, 9, 0.45), rgba(5, 5, 9, 0.1));
  pointer-events: none;
}

.about-rich-hero-inner {
  position: relative;
  z-index: 1;
  padding: 30px 24px;
}

.about-rich-kicker {
  margin: 0 0 8px;
  letter-spacing: 0.26em;
  font-size: 11px;
  color: #f4c15d;
}

.about-rich-main-title {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.3;
  color: #fff;
}

.about-rich-main-lead {
  margin: 10px 0 0;
  font-size: 16px;
  color: #f3eefc;
}

.about-rich-section {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.about-rich-title {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.4;
  color: #fff;
}

.about-rich-copy {
  display: grid;
  gap: 11px;
}

.about-rich-copy p {
  margin: 0;
  color: #d5d0e8;
  line-height: 1.95;
  font-size: 15px;
}

.about-rich-greeting {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 18px;
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.12), transparent 66%),
    linear-gradient(to bottom, rgba(16, 16, 24, 0.94), rgba(5, 5, 9, 0.98));
}

.about-rich-greeting p {
  margin: 0 0 10px;
  color: #d5d0e8;
  line-height: 1.9;
}

.about-rich-sign {
  margin-top: 12px;
  color: #f6e7bd;
  font-weight: 600;
}

.about-rich-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-rich-principle {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 11, 16, 0.9);
  padding: 16px;
}

.about-rich-principle h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
}

.about-rich-principle p {
  margin: 0;
  color: #cbc7e3;
  line-height: 1.8;
  font-size: 14px;
}

.about-rich-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-rich-story-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 11, 16, 0.9);
  padding: 16px;
}

.about-rich-story-card h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
}

.about-rich-story-card p {
  margin: 0;
  color: #cbc7e3;
  line-height: 1.8;
  font-size: 14px;
}

.about-rich-flow {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.about-rich-flow li {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 11, 16, 0.9);
  padding: 14px 14px 12px;
}

.about-rich-flow h4 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 16px;
}

.about-rich-flow p {
  margin: 0;
  color: #cbc7e3;
  line-height: 1.8;
  font-size: 14px;
}

.about-rich-promise {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 16px;
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.1), transparent 66%),
    linear-gradient(to bottom, rgba(16, 16, 24, 0.94), rgba(5, 5, 9, 0.98));
}

.about-rich-promise p {
  margin: 0 0 10px;
  color: #d5d0e8;
  line-height: 1.9;
}

.about-rich-promise p:last-child {
  margin-bottom: 0;
}

.about-rich-quicklinks {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-rich-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-rich-service {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.14), transparent 66%),
    linear-gradient(to bottom, rgba(16, 16, 24, 0.95), rgba(5, 5, 9, 0.98));
}

.about-rich-service h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 19px;
}

.about-rich-service p {
  margin: 0;
  color: #cbc7e3;
  font-size: 14px;
  line-height: 1.82;
}

.about-rich-service p + p {
  margin-top: 8px;
}

.about-rich-rooms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-rich-room {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 11, 16, 0.9);
}

.about-rich-room img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.about-rich-room figcaption {
  padding: 10px 8px;
  text-align: center;
  color: #f2edf9;
  font-size: 13px;
}

.about-rich-cta {
  margin-top: 34px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 20px;
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.15), transparent 58%),
    linear-gradient(to bottom, rgba(16, 16, 24, 0.96), rgba(5, 5, 9, 0.98));
}

.about-rich-cta p {
  margin: 8px 0 0;
  color: #d6d1e9;
  line-height: 1.85;
}

.about-rich-cta .sub-btn-row {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .about-rich-services {
    grid-template-columns: 1fr;
  }

  .about-rich-principles {
    grid-template-columns: 1fr;
  }

  .about-rich-story-grid {
    grid-template-columns: 1fr;
  }

  .about-rich-rooms {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-rich-hero {
    min-height: 260px;
  }

  .about-rich-hero-inner {
    padding: 24px 18px;
  }

  .about-rich-rooms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-rich-room img {
    height: 150px;
  }
}

/* =========================================
 * Service - Gangnam Room Salon
 * =======================================*/

.roomsalon-shell {
  display: grid;
  gap: 30px;
}

.roomsalon-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(to bottom, rgba(5, 5, 9, 0.9), rgba(5, 5, 9, 0.72)),
    var(--roomsalon-hero) center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.roomsalon-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.24), transparent 64%),
    linear-gradient(to right, rgba(5, 5, 9, 0.62), rgba(5, 5, 9, 0.28));
}

.roomsalon-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 32px 24px;
}

.roomsalon-kicker {
  margin: 0 0 8px;
  letter-spacing: 0.24em;
  font-size: 11px;
  color: #f4c15d;
}

.roomsalon-headline {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  color: #fff;
}

.roomsalon-sub {
  margin: 12px 0 0;
  color: #f0ecff;
  line-height: 1.9;
  max-width: 680px;
}

.roomsalon-subhead,
.fullsalon-subhead,
.hyper-subhead {
  margin: 10px 0 0;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.45;
  color: #fff;
}

.roomsalon-trust {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.roomsalon-trust li {
  position: relative;
  padding-left: 18px;
  color: #e2dff2;
  line-height: 1.8;
}

.roomsalon-trust li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f4c15d;
}

.roomsalon-owner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(5, 5, 9, 0.82), rgba(5, 5, 9, 0.72)),
    var(--roomsalon-owner-bg) center/cover no-repeat fixed;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 18px;
}

.roomsalon-owner-card {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 16, 0.62);
  backdrop-filter: blur(4px);
  padding: 24px 20px;
}

.roomsalon-owner-kicker {
  margin: 0 0 6px;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: #f4c15d;
}

.roomsalon-owner-desc,
.roomsalon-section p {
  color: #d7d2ea;
  line-height: 1.9;
}

.roomsalon-owner-points {
  margin: 12px 0 0;
  padding-left: 20px;
  color: #e7e2f5;
}

.roomsalon-owner-line {
  margin: 12px 0 14px;
  color: #f6e7bd;
  font-weight: 600;
}

.roomsalon-section {
  display: grid;
  gap: 12px;
}

.roomsalon-section-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.4;
  color: #fff;
}

.roomsalon-core-grid,
.roomsalon-situation-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.roomsalon-core-card,
.roomsalon-situation-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 11, 16, 0.9);
  padding: 16px;
}

.roomsalon-core-card h3,
.roomsalon-situation-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #fff;
}

.roomsalon-core-card p,
.roomsalon-situation-card p {
  margin: 0;
  color: #cbc7e3;
  line-height: 1.85;
}

.roomsalon-summary,
.roomsalon-inline-link {
  margin-top: 6px;
}

.roomsalon-inline-link a {
  color: #f4c15d;
}

.roomsalon-checklist {
  margin: 0;
  padding-left: 20px;
  color: #d7d2ea;
  line-height: 1.9;
}

.roomsalon-linkbox {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.12), transparent 66%),
    linear-gradient(to bottom, rgba(16, 16, 24, 0.95), rgba(5, 5, 9, 0.98));
  padding: 18px;
}

.roomsalon-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.roomsalon-link-list a {
  color: #f1edfa;
  text-decoration: none;
}

.roomsalon-link-list a:hover {
  text-decoration: underline;
}

.roomsalon-faq {
  max-width: 980px;
}

.roomsalon-bottom-cta {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.18), transparent 62%),
    linear-gradient(to bottom, rgba(12, 12, 18, 0.96), rgba(5, 5, 9, 0.98));
  padding: 22px 20px;
}

.roomsalon-bottom-note {
  margin: 8px 0 0;
  color: #bdb8cf;
  font-size: 12px;
}

@media (max-width: 980px) {
  .roomsalon-core-grid,
  .roomsalon-situation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .roomsalon-hero {
    min-height: 360px;
  }

  .roomsalon-owner {
    background-attachment: scroll;
  }

  .roomsalon-hero-inner {
    padding: 24px 18px;
  }
}

/* =========================================
 * Service - Gangnam Full Salon
 * =======================================*/

.fullsalon-shell {
  display: grid;
  gap: 28px;
}

.fullsalon-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(to bottom, rgba(5, 5, 9, 0.9), rgba(5, 5, 9, 0.72)),
    var(--fullsalon-hero) center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fullsalon-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.2), transparent 64%),
    linear-gradient(to right, rgba(5, 5, 9, 0.62), rgba(5, 5, 9, 0.3));
}

.fullsalon-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 32px 24px;
}

.fullsalon-kicker {
  margin: 0 0 8px;
  letter-spacing: 0.24em;
  font-size: 11px;
  color: #f4c15d;
}

.fullsalon-headline {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  color: #fff;
}

.fullsalon-sub {
  margin: 12px 0 0;
  color: #f0ecff;
  line-height: 1.9;
}

.fullsalon-points,
.fullsalon-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #e2dff2;
  line-height: 1.85;
}

.fullsalon-target-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fullsalon-target-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 11, 16, 0.9);
  padding: 16px;
}

.fullsalon-target-card p {
  margin: 0;
}

.fullsalon-section {
  display: grid;
  gap: 12px;
}

.fullsalon-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
}

.fullsalon-section p {
  margin: 0;
  color: #d7d2ea;
  line-height: 1.9;
}

.fullsalon-parallax {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(5, 5, 9, 0.8), rgba(5, 5, 9, 0.72)),
    var(--fullsalon-parallax) center/cover no-repeat fixed;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 38px 20px;
}

.fullsalon-parallax-card {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 16, 0.6);
  backdrop-filter: blur(4px);
  padding: 22px 18px;
}

.fullsalon-parallax-copy {
  margin: 0 0 10px;
  color: #f6e7bd;
  font-size: clamp(20px, 2.8vw, 30px);
  line-height: 1.35;
  font-weight: 700;
}

.fullsalon-profile p {
  margin: 0 0 8px;
}

.fullsalon-assist {
  margin: 8px 0 0;
  color: #d7d2ea;
}

.fullsalon-linkbox {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.12), transparent 66%),
    linear-gradient(to bottom, rgba(16, 16, 24, 0.95), rgba(5, 5, 9, 0.98));
  padding: 18px;
}

.fullsalon-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.fullsalon-link-list a {
  color: #f1edfa;
  text-decoration: none;
}

.fullsalon-link-list a:hover {
  text-decoration: underline;
}

.fullsalon-faq {
  max-width: 980px;
}

@media (max-width: 768px) {
  .fullsalon-hero {
    min-height: 360px;
  }

  .fullsalon-hero-inner {
    padding: 24px 18px;
  }

  .fullsalon-parallax {
    background-attachment: scroll;
  }
}

/* =========================================
 * Service - Hyperpublic
 * =======================================*/

.hyper-shell {
  display: grid;
  gap: 28px;
}

.hyper-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  background:
    linear-gradient(to bottom, rgba(5, 5, 9, 0.9), rgba(5, 5, 9, 0.72)),
    var(--hyper-hero) center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hyper-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.2), transparent 64%),
    linear-gradient(to right, rgba(5, 5, 9, 0.62), rgba(5, 5, 9, 0.28));
}

.hyper-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 32px 24px;
}

.hyper-kicker {
  margin: 0 0 8px;
  letter-spacing: 0.24em;
  font-size: 11px;
  color: #f4c15d;
}

.hyper-headline {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  color: #fff;
}

.hyper-sub {
  margin: 12px 0 0;
  color: #f0ecff;
  line-height: 1.9;
}

.hyper-points,
.hyper-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #e2dff2;
  line-height: 1.85;
}

.hyper-section {
  display: grid;
  gap: 12px;
}

.hyper-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
}

.hyper-section p {
  margin: 0;
  color: #d7d2ea;
  line-height: 1.9;
}

.hyper-parallax {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(5, 5, 9, 0.8), rgba(5, 5, 9, 0.72)),
    var(--hyper-parallax) center/cover no-repeat fixed;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 34px 18px;
}

.hyper-parallax-card {
  max-width: 740px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 16, 0.62);
  backdrop-filter: blur(4px);
  padding: 22px 18px;
}

.hyper-parallax-copy {
  margin: 0 0 10px;
  color: #f6e7bd;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.35;
  font-weight: 700;
}

.hyper-linkbox {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.12), transparent 66%),
    linear-gradient(to bottom, rgba(16, 16, 24, 0.95), rgba(5, 5, 9, 0.98));
  padding: 18px;
}

.hyper-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hyper-link-list a {
  color: #f1edfa;
  text-decoration: none;
}

.hyper-link-list a:hover {
  text-decoration: underline;
}

.hyper-faq {
  max-width: 980px;
}

.hyper-bottom-cta {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.18), transparent 62%),
    linear-gradient(to bottom, rgba(12, 12, 18, 0.96), rgba(5, 5, 9, 0.98));
  padding: 22px 20px;
}

.service-nav-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-nav-card {
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.1), transparent 66%),
    linear-gradient(to bottom, rgba(16, 16, 24, 0.95), rgba(5, 5, 9, 0.98));
  padding: 16px;
  text-decoration: none;
}

.service-nav-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
}

.service-nav-card p {
  margin: 0;
  color: #d2cde6;
  line-height: 1.75;
  font-size: 14px;
}

.service-nav-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hyper-hero {
    min-height: 340px;
  }

  .hyper-hero-inner {
    padding: 24px 18px;
  }

  .hyper-parallax {
    background-attachment: scroll;
  }

  .fullsalon-target-grid,
  .service-nav-cards {
    grid-template-columns: 1fr;
  }
}

/* =========================================
 * Service - Hardcore
 * =======================================*/

.hardcore-shell {
  display: grid;
  gap: 28px;
}

.hardcore-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  background:
    linear-gradient(to bottom, rgba(5, 5, 9, 0.9), rgba(5, 5, 9, 0.72)),
    var(--hardcore-hero) center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hardcore-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.2), transparent 64%),
    linear-gradient(to right, rgba(5, 5, 9, 0.62), rgba(5, 5, 9, 0.3));
}

.hardcore-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 32px 24px;
}

.hardcore-kicker {
  margin: 0 0 8px;
  letter-spacing: 0.24em;
  font-size: 11px;
  color: #f4c15d;
}

.hardcore-headline {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  color: #fff;
}

.hardcore-subhead {
  margin: 10px 0 0;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.45;
  color: #fff;
}

.hardcore-sub {
  margin: 12px 0 0;
  color: #f0ecff;
  line-height: 1.9;
}

.hardcore-points,
.hardcore-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #e2dff2;
  line-height: 1.85;
}

.hardcore-section {
  display: grid;
  gap: 12px;
}

.hardcore-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
}

.hardcore-section p {
  margin: 0;
  color: #d7d2ea;
  line-height: 1.9;
}

.hardcore-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hardcore-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 11, 16, 0.9);
  padding: 16px;
}

.hardcore-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
}

.hardcore-card p {
  margin: 0;
}

.hardcore-parallax {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(5, 5, 9, 0.8), rgba(5, 5, 9, 0.72)),
    var(--hardcore-parallax) center/cover no-repeat fixed;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 34px 18px;
}

.hardcore-parallax-card {
  max-width: 740px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 16, 0.62);
  backdrop-filter: blur(4px);
  padding: 22px 18px;
}

.hardcore-faq {
  max-width: 980px;
}

.hardcore-bottom-cta {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(244, 193, 93, 0.18), transparent 62%),
    linear-gradient(to bottom, rgba(12, 12, 18, 0.96), rgba(5, 5, 9, 0.98));
  padding: 22px 20px;
}

@media (max-width: 768px) {
  .hardcore-hero {
    min-height: 340px;
  }

  .hardcore-hero-inner {
    padding: 24px 18px;
  }

  .hardcore-grid {
    grid-template-columns: 1fr;
  }

  .hardcore-parallax {
    background-attachment: scroll;
  }
}

/* =========================================
 * JJEOMO PAGE
 * =======================================*/
.jjeomo-shell {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.jjeomo-hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0a0a12;
}

.jjeomo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(5,5,9,0.92) 14%, rgba(5,5,9,0.72) 48%, rgba(5,5,9,0.92) 100%),
    var(--jjeomo-hero) center/cover no-repeat;
}

.jjeomo-hero-inner {
  position: relative;
  z-index: 1;
  padding: 42px 34px;
}

.jjeomo-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f4c15d;
}

.jjeomo-headline {
  margin: 0;
  font-size: clamp(30px, 4.8vw, 46px);
  line-height: 1.14;
  color: #ffffff;
}

.jjeomo-subhead {
  margin: 16px 0 10px;
  font-size: clamp(21px, 3vw, 30px);
  line-height: 1.32;
  color: #ffffff;
}

.jjeomo-sub,
.jjeomo-section p,
.jjeomo-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #d7d3eb;
}

.jjeomo-points,
.jjeomo-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.jjeomo-points li,
.jjeomo-list li {
  position: relative;
  padding-left: 18px;
  color: #efeafd;
  line-height: 1.7;
}

.jjeomo-points li::before,
.jjeomo-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f4c15d;
}

.jjeomo-section {
  padding: 22px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(244,193,93,0.11), transparent 62%),
    linear-gradient(to bottom, rgba(16,16,24,0.92), rgba(5,5,9,0.98));
  border: 1px solid rgba(255,255,255,0.09);
}

.jjeomo-title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.2vw, 31px);
  line-height: 1.34;
  color: #ffffff;
}

.jjeomo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.jjeomo-card {
  border-radius: 14px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
}

.jjeomo-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #ffffff;
}

.jjeomo-parallax {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0a0a12;
}

.jjeomo-parallax::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    linear-gradient(to right, rgba(5,5,9,0.9), rgba(5,5,9,0.56), rgba(5,5,9,0.9)),
    var(--jjeomo-parallax) center/cover no-repeat;
  background-attachment: fixed;
  transform: scale(1.08);
}

.jjeomo-parallax-card {
  position: relative;
  z-index: 1;
  padding: 34px;
  max-width: 760px;
}

.jjeomo-faq {
  display: grid;
  gap: 10px;
}

.jjeomo-bottom-cta {
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at top right, rgba(244,193,93,0.15), transparent 60%),
    linear-gradient(to bottom, #141420, #08080d);
}

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

@media (max-width: 768px) {
  .jjeomo-hero-inner,
  .jjeomo-section,
  .jjeomo-parallax-card,
  .jjeomo-bottom-cta {
    padding: 22px 18px;
  }

  .jjeomo-sub,
  .jjeomo-section p,
  .jjeomo-card p,
  .jjeomo-points li,
  .jjeomo-list li {
    font-size: 14px;
    line-height: 1.8;
  }

  .jjeomo-parallax::before {
    background-attachment: scroll;
  }
}

/* =========================================
 * PRICE PAGE V2
 * =======================================*/
.pricev2-shell {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricev2-hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0a0a10;
}

.pricev2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(5,5,9,0.92) 12%, rgba(5,5,9,0.68) 48%, rgba(5,5,9,0.92) 100%),
    var(--pricev2-hero) center/cover no-repeat;
}

.pricev2-hero-inner {
  position: relative;
  z-index: 1;
  padding: 44px 34px;
  max-width: 860px;
}

.pricev2-kicker {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #f4c15d;
}

.pricev2-title {
  margin: 0;
  font-size: clamp(30px, 4.8vw, 46px);
  line-height: 1.15;
  color: #fff;
}

.pricev2-lead,
.pricev2-section p,
.pricev2-cta p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: #d8d3eb;
}

.pricev2-section {
  border-radius: 18px;
  padding: 24px 22px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    radial-gradient(circle at top left, rgba(244,193,93,0.11), transparent 62%),
    linear-gradient(to bottom, rgba(16,16,24,0.94), rgba(5,5,9,0.98));
}

.pricev2-h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.32;
  color: #fff;
}

.pricev2-note {
  margin-top: 10px;
  font-size: 14px;
  color: #c6c1d9;
}

.pricev2-criteria {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pricev2-criterion {
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
}

.pricev2-criterion h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #fff;
}

.pricev2-criterion p {
  margin: 0;
}

.pricev2-table-wrap {
  margin-top: 16px;
  border-radius: 14px;
  overflow: auto;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(9,9,15,0.82);
}

.pricev2-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  color: #f2f0fa;
}

.pricev2-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.pricev2-table th,
.pricev2-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
  font-size: 14px;
}

.pricev2-table thead th {
  background: rgba(244,193,93,0.14);
  color: #ffe7a8;
  font-weight: 700;
  white-space: nowrap;
}

.pricev2-table tbody th {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.pricev2-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.pricev2-section--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pricev2-box {
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
}

.pricev2-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.pricev2-list li {
  position: relative;
  padding-left: 18px;
  color: #ece8fb;
  line-height: 1.7;
}

.pricev2-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f4c15d;
}

.pricev2-cta {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.pricev2-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,5,9,0.92), rgba(5,5,9,0.6), rgba(5,5,9,0.92)),
    var(--pricev2-cta) center/cover no-repeat;
}

.pricev2-cta-inner {
  position: relative;
  z-index: 1;
  padding: 34px;
}

@media (max-width: 980px) {
  .pricev2-criteria,
  .pricev2-section--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pricev2-hero-inner,
  .pricev2-section,
  .pricev2-cta-inner {
    padding: 22px 18px;
  }

  .pricev2-lead,
  .pricev2-section p,
  .pricev2-cta p,
  .pricev2-table th,
  .pricev2-table td {
    font-size: 14px;
  }

  .pricev2-table {
    min-width: 660px;
  }
}

/* =========================================
 * RESERVATION PAGE TEMPLATE
 * =======================================*/
.reservation-shell {
  display: grid;
  gap: 24px;
}

.reservation-hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0a0a10;
}

.reservation-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(5,5,9,0.92) 12%, rgba(5,5,9,0.64) 52%, rgba(5,5,9,0.92) 100%),
    var(--reservation-hero) center/cover no-repeat;
}

.reservation-hero-inner {
  position: relative;
  z-index: 1;
  padding: 44px 34px;
  max-width: 860px;
}

.reservation-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f4c15d;
}

.reservation-title {
  margin: 0;
  font-size: clamp(30px, 4.8vw, 46px);
  line-height: 1.16;
  color: #fff;
}

.reservation-lead,
.reservation-section p,
.reservation-step p,
.reservation-parallax-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: #d8d3eb;
}

.reservation-section {
  border-radius: 18px;
  padding: 24px 22px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    radial-gradient(circle at top left, rgba(244,193,93,0.1), transparent 62%),
    linear-gradient(to bottom, rgba(16,16,24,0.94), rgba(5,5,9,0.98));
}

.reservation-h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.32;
  color: #fff;
}

.reservation-steps {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reservation-step {
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
}

.reservation-step h3 {
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.reservation-step p {
  margin-top: 8px;
}

.reservation-section--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.reservation-box {
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
}

.reservation-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.reservation-list li {
  position: relative;
  padding-left: 18px;
  color: #ece8fb;
  line-height: 1.7;
}

.reservation-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f4c15d;
}

.reservation-note {
  margin-top: 10px;
  color: #c8c3dd;
}

.reservation-parallax {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.reservation-parallax::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(to right, rgba(5,5,9,0.9), rgba(5,5,9,0.55), rgba(5,5,9,0.9)),
    var(--reservation-parallax) center/cover no-repeat;
  background-attachment: fixed;
  transform: scale(1.06);
}

.reservation-parallax-card {
  position: relative;
  z-index: 1;
  padding: 34px;
  max-width: 760px;
}

.reservation-faq {
  display: grid;
  gap: 10px;
}

.reservation-bottom-cta {
  border-radius: 18px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at top right, rgba(244,193,93,0.15), transparent 60%),
    linear-gradient(to bottom, #141420, #08080d);
}

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

@media (max-width: 860px) {
  .reservation-steps,
  .reservation-section--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .reservation-hero-inner,
  .reservation-section,
  .reservation-parallax-card,
  .reservation-bottom-cta {
    padding: 22px 18px;
  }

  .reservation-lead,
  .reservation-section p,
  .reservation-step p,
  .reservation-list li {
    font-size: 14px;
    line-height: 1.8;
  }

  .reservation-parallax::before {
    background-attachment: scroll;
  }
}

/* =========================================
 * RESERVATION PAGE V2
 * =======================================*/
.reservation-v2 {
  display: grid;
  gap: 24px;
}

.reservation-v2 .reservation-hero {
  min-height: 420px;
}

.reservation-v2 .reservation-hero-inner {
  max-width: 760px;
}

.reservation-v2 .reservation-lead {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.7;
  color: #f1ecff;
}

.reservation-v2 .reservation-hero-points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.reservation-v2 .reservation-hero-points li {
  position: relative;
  padding-left: 18px;
  color: #e7e2f8;
  line-height: 1.7;
}

.reservation-v2 .reservation-hero-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f4c15d;
}

.reservation-v2 .reservation-micro {
  margin-top: 8px;
  font-size: 12px;
  color: #b9b3ce;
}

.reservation-v2 .reservation-quick {
  background:
    radial-gradient(circle at top right, rgba(244,193,93,0.13), transparent 55%),
    linear-gradient(to bottom, rgba(15,15,24,0.94), rgba(6,6,10,0.98));
}

.reservation-v2 .reservation-quick-lead {
  margin-top: 10px;
}

.reservation-v2 .reservation-quick-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.reservation-v2 .reservation-quick-item {
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.03);
}

.reservation-v2 .reservation-quick-item h3 {
  margin: 0;
  font-size: 17px;
  color: #fff;
}

.reservation-v2 .reservation-quick-item p {
  margin-top: 8px;
}

.reservation-v2 .reservation-quick-note {
  margin-top: 12px;
  font-size: 13px;
  color: #c7c2d9;
}

.reservation-v2 .reservation-stepper {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.reservation-v2 .reservation-stepper::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(244,193,93,0.6), rgba(244,193,93,0.1));
}

.reservation-v2 .reservation-stepper li {
  position: relative;
  padding: 2px 0 16px 46px;
}

.reservation-v2 .reservation-stepper li:last-child {
  padding-bottom: 0;
}

.reservation-v2 .reservation-stepper li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(244,193,93,0.55);
  background: rgba(244,193,93,0.12);
  color: #ffe39a;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reservation-v2 .reservation-stepper {
  counter-reset: step;
}

.reservation-v2 .reservation-stepper h3 {
  margin: 0;
  font-size: 20px;
  color: #fff;
}

.reservation-v2 .reservation-stepper p {
  margin-top: 6px;
}

.reservation-v2 .reservation-stepper-note {
  margin-top: 12px;
  color: #d0cade;
}

.reservation-v2 .reservation-dual-note {
  grid-column: 1 / -1;
  margin-top: 2px;
  font-size: 13px;
  color: #c9c3db;
}

.reservation-v2 .reservation-parallax {
  min-height: 310px;
}

.reservation-v2 .reservation-parallax-card {
  margin: 0 auto;
  text-align: center;
  max-width: 820px;
}

.reservation-v2 .reservation-parallax-card .sub-btn-row {
  justify-content: center;
}

.reservation-v2 .reservation-nav-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reservation-v2 .reservation-endnote {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 14px;
}

.reservation-v2 .reservation-endnote p {
  margin: 0;
  text-align: center;
  color: #cfc9df;
  font-size: 14px;
}

.reservation-v2 .reservation-endnote a {
  color: #f4c15d;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .reservation-v2 .reservation-quick-grid,
  .reservation-v2 .reservation-nav-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .reservation-v2 .reservation-lead {
    font-size: 16px;
  }

  .reservation-v2 .reservation-stepper h3 {
    font-size: 18px;
  }

  .reservation-v2 .reservation-stepper li {
    padding-left: 42px;
  }

  .reservation-v2 .reservation-stepper::before {
    left: 13px;
  }

  .reservation-v2 .reservation-stepper li::before {
    width: 26px;
    height: 26px;
  }
}
