/* ==========================================================================
   GPR 천국여행사 — 프리미엄 낙토장(落土葬)
   밝은 라이트 톤. modern 레이아웃이 덮어쓴 다크 변수를 쓰지 않고 자체 토큰만 사용.
   ========================================================================== */

.rn-heaven {
  --ht-green:      #1d6b45;
  --ht-green-deep: #145234;
  --ht-green-tint: #eaf5ef;
  --ht-gold:       #c99a4b;
  --ht-ink:        #16211c;
  --ht-ink-soft:   #5b6a63;
  --ht-ink-faint:  #8a978f;
  --ht-line:       #e6ebe8;
  --ht-surface:    #ffffff;
  --ht-surface-2:  #f6f8f6;
  --ht-shadow:     0 2px 10px rgba(20,45,32,.05);
  --ht-shadow-lg:  0 18px 40px rgba(15,60,38,.14);
  background: var(--ht-surface);
  color: var(--ht-ink);
}
.rn-heaven .mh-sub-main { background: var(--ht-surface); }

/* --- 공통 요소 --- */
.ht-badge {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid rgba(29,107,69,.22);
  border-radius: 50px;
  background: var(--ht-green-tint);
  color: var(--ht-green);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .02em;
}
.ht-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s, background .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap;
}
.ht-btn--lg { padding: 17px 32px; font-size: 16px; }
.ht-btn--primary { background: var(--ht-green); color: #fff; box-shadow: 0 10px 24px rgba(29,107,69,.28); }
.ht-btn--primary:hover { background: var(--ht-green-deep); color: #fff; transform: translateY(-2px); }
.ht-btn--ghost { background: #fff; color: var(--ht-ink); border: 1px solid var(--ht-line); box-shadow: var(--ht-shadow); }
.ht-btn--ghost:hover { border-color: var(--ht-green); color: var(--ht-green); transform: translateY(-2px); }
.ht-btn--outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.55); }
.ht-btn--outline:hover { background: rgba(255,255,255,.14); color: #fff; transform: translateY(-2px); }

.ht-sec__head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.ht-sec__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--ht-gold);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .18em;
}
.ht-sec__title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ht-ink);
  word-break: keep-all;
}
.ht-sec__lead {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ht-ink-soft);
  word-break: keep-all;
}

/* --- 01. HERO --- */
.ht-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 0;
  background: linear-gradient(180deg, #eef6f1 0%, #f7faf8 52%, #fff 100%);
}
.ht-hero__glow {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,107,69,.14), transparent 68%);
  pointer-events: none;
}
.ht-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 52px;
  align-items: center;
}
.ht-hero__title {
  margin: 22px 0 18px;
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(27px, 2.9vw, 40px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -.02em;
  color: var(--ht-ink);
  word-break: keep-all;
}
.ht-hero__title em { font-style: normal; color: var(--ht-green); }
.ht-hero__sub {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ht-ink-soft);
  word-break: keep-all;
}
.ht-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.ht-hero__note { margin-top: 16px; font-size: 13.5px; color: var(--ht-ink-faint); }

/* 히어로 이미지 콜라주 */
.ht-hero__media { position: relative; height: 460px; }
.ht-hero__shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #dfe7e2;
  box-shadow: var(--ht-shadow-lg);
}
.ht-hero__shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ht-hero__shot--main { top: 24px; left: 6%; width: 62%; height: 320px; z-index: 2; }
.ht-hero__shot--sub1 { top: 0; right: 0; width: 40%; height: 190px; }
.ht-hero__shot--sub2 { bottom: 8px; right: 4%; width: 46%; height: 200px; z-index: 3; }
.ht-hero__chip {
  position: absolute;
  left: 0;
  bottom: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--ht-line);
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(6px);
  box-shadow: var(--ht-shadow-lg);
  font-size: 14px;
  color: var(--ht-ink-soft);
}
.ht-hero__chip strong { color: var(--ht-green); font-weight: 800; }
.ht-hero__chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ht-green);
  box-shadow: 0 0 0 5px rgba(29,107,69,.16);
}

/* 히어로 하단 지표 바 */
.ht-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 56px;
  padding: 0;
  border: 1px solid var(--ht-line);
  border-radius: 18px;
  background: var(--ht-line);
  overflow: hidden;
  list-style: none;
  box-shadow: var(--ht-shadow);
}
.ht-stats li { padding: 26px 20px; background: #fff; text-align: center; }
.ht-stats strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ht-green);
}
.ht-stats span { display: block; margin-top: 6px; font-size: 13.5px; color: var(--ht-ink-faint); }

/* --- 02. PHILOSOPHY --- */
.ht-phil { padding: 100px 0; background: var(--ht-surface); }
.ht-phil__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.ht-phil__item {
  padding: 40px 32px;
  border: 1px solid var(--ht-line);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: var(--ht-shadow);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.ht-phil__item:hover { transform: translateY(-8px); box-shadow: var(--ht-shadow-lg); border-color: rgba(29,107,69,.28); }
.ht-phil__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--ht-green-tint);
  font-size: 27px;
}
.ht-phil__title { margin-bottom: 12px; font-size: 19px; font-weight: 800; color: var(--ht-ink); }
.ht-phil__desc { font-size: 15px; line-height: 1.8; color: var(--ht-ink-soft); word-break: keep-all; }

/* --- 03. COURSE --- */
.ht-course { padding: 100px 0; background: var(--ht-surface-2); }
.ht-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.ht-filter__btn {
  padding: 11px 20px;
  border: 1px solid var(--ht-line);
  border-radius: 50px;
  background: #fff;
  color: var(--ht-ink-soft);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.ht-filter__btn i { font-style: normal; margin-left: 5px; color: var(--ht-ink-faint); font-size: 13px; }
.ht-filter__btn:hover { border-color: var(--ht-green); color: var(--ht-green); }
.ht-filter__btn.is-active {
  background: var(--ht-green);
  border-color: var(--ht-green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(29,107,69,.25);
}
.ht-filter__btn.is-active i { color: rgba(255,255,255,.75); }

.ht-course__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 28px;
}
.ht-course__empty { margin-top: 20px; text-align: center; color: var(--ht-ink-faint); }
.ht-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ht-line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--ht-shadow);
  transition: transform .45s cubic-bezier(.165,.84,.44,1), box-shadow .45s, border-color .45s;
  scroll-margin-top: 110px;
}
.ht-card:hover { transform: translateY(-10px); box-shadow: var(--ht-shadow-lg); border-color: rgba(29,107,69,.3); }
.ht-card[hidden] { display: none; }
.ht-card__img { position: relative; height: 216px; overflow: hidden; background: #e9eeeb; }
.ht-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.ht-card:hover .ht-card__img img { transform: scale(1.07); }
.ht-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  color: var(--ht-green);
  font-size: 12.5px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.ht-card--hot .ht-card__badge { background: var(--ht-gold); color: #fff; }
.ht-card__body { display: flex; flex-direction: column; flex-grow: 1; padding: 26px 24px 24px; }
.ht-card__meta { display: flex; align-items: center; gap: 10px; }
.ht-card__no { font-size: 12.5px; font-weight: 800; letter-spacing: .08em; color: var(--ht-gold); }
.ht-card__cat {
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--ht-green-tint);
  color: var(--ht-green);
  font-size: 12px;
  font-weight: 700;
}
.ht-card__t {
  margin: 10px 0 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ht-ink);
  word-break: keep-all;
}
.ht-card__d { flex-grow: 1; font-size: 14.5px; line-height: 1.8; color: var(--ht-ink-soft); word-break: keep-all; }
.ht-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 18px 0 20px; }
.ht-card__tags span {
  padding: 5px 11px;
  border-radius: 20px;
  background: var(--ht-surface-2);
  color: var(--ht-ink-soft);
  font-size: 12.5px;
  font-weight: 600;
}
.ht-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--ht-line);
  color: var(--ht-green);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
}
.ht-card__link span { transition: transform .25s; }
.ht-card__link:hover { color: var(--ht-green-deep); }
.ht-card__link:hover span { transform: translateX(4px); }

/* --- 04. PROCESS --- */
.ht-process { padding: 100px 0; background: var(--ht-surface); }
.ht-process__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.ht-process__step {
  position: relative;
  padding: 34px 26px 30px;
  border: 1px solid var(--ht-line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--ht-green-tint) 0%, #fff 46%);
  transition: transform .35s, box-shadow .35s;
}
.ht-process__step:hover { transform: translateY(-6px); box-shadow: var(--ht-shadow-lg); }
.ht-process__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--ht-green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(29,107,69,.25);
}
.ht-process__t { margin-bottom: 10px; font-size: 18px; font-weight: 800; color: var(--ht-ink); }
.ht-process__d { font-size: 14.5px; line-height: 1.78; color: var(--ht-ink-soft); word-break: keep-all; }

/* --- 05. FAQ --- */
.ht-faq { padding: 100px 0; background: var(--ht-surface-2); }
.ht-faq__inner { max-width: 900px; }
.ht-faq__list { display: flex; flex-direction: column; gap: 12px; }
.ht-faq__item {
  border: 1px solid var(--ht-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--ht-shadow);
  overflow: hidden;
}
.ht-faq__item summary {
  position: relative;
  padding: 22px 56px 22px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ht-ink);
  cursor: pointer;
  list-style: none;
  word-break: keep-all;
}
.ht-faq__item summary::-webkit-details-marker { display: none; }
.ht-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: var(--ht-green);
  font-size: 22px;
  font-weight: 400;
  transition: transform .25s;
}
.ht-faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.ht-faq__item[open] summary { color: var(--ht-green); }
.ht-faq__item p {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ht-ink-soft);
  word-break: keep-all;
}

/* --- 06. CTA --- */
.ht-cta {
  padding: 96px 0;
  background: linear-gradient(140deg, #248053 0%, var(--ht-green) 46%, var(--ht-green-deep) 100%);
  color: #fff;
  text-align: center;
}
.ht-cta__title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -.03em;
  word-break: keep-all;
}
.ht-cta__sub {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,.85);
  word-break: keep-all;
}
.ht-cta .ht-btn--primary { background: #fff; color: var(--ht-green-deep); box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.ht-cta .ht-btn--primary:hover { background: #f1f5f2; color: var(--ht-green-deep); }
.ht-cta__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.ht-cta__links { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; margin-top: 44px; }
.ht-cta__links a { color: rgba(255,255,255,.78); font-size: 14.5px; text-decoration: none; transition: color .25s; }
.ht-cta__links a:hover { color: #fff; text-decoration: underline; }

/* --- 반응형 --- */
@media (max-width: 1024px) {
  .ht-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .ht-hero__media { height: 380px; }
  .ht-hero__chip { bottom: 10px; }
}
@media (max-width: 768px) {
  .ht-hero { padding-top: 56px; }
  /* 모바일 — 겹치는 콜라주 대신 단정한 2열 그리드 */
  .ht-hero__media {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ht-hero__shot { position: static; width: auto; height: 128px; border-radius: 16px; }
  .ht-hero__shot--main { grid-column: 1 / -1; height: 190px; }
  .ht-hero__chip { position: static; grid-column: 1 / -1; justify-content: center; margin-top: 4px; }
  .ht-stats { grid-template-columns: repeat(2, 1fr); margin-top: 44px; }
  .ht-stats li { padding: 20px 12px; }
  .ht-stats strong { font-size: 22px; }
  .ht-phil, .ht-course, .ht-process, .ht-faq, .ht-cta { padding: 68px 0; }
  .ht-course__grid { grid-template-columns: 1fr; gap: 20px; }
  .ht-card__img { height: 190px; }
  .ht-btn { width: 100%; }
  .ht-hero__cta, .ht-cta__btns { flex-direction: column; }
}
