/* =====================================================
   ORL Recovery Slide — 기획전 스타일 (PC)
   prefix "orl-" / 운영 CSS 충돌 방지
   * 폰트(Pretendard)는 운영 fonts.css에서 로드됨
===================================================== */

:root {
  --orl-black:   #1d1d1d;
  --orl-gray:    #555555;
  --orl-muted:   #999999;
  --orl-border:  #e5e5e5;
  --orl-bg:      #ffffff;
  --orl-bg-alt:  #f5f5f5;
  --orl-lime:    #5BA9E6;
  --orl-dark:    #111111;
  --orl-font:       'Pretendard Variable', -apple-system, BlinkMacSystemFont, sans-serif;
  /* PC fonts.css: Regular(400) = 'GeneralSans-Regular', Semibold(600) = 'GeneralSans-semi' */
  --orl-font-en:    'GeneralSans-Regular', 'Pretendard Variable', -apple-system, sans-serif;
  --orl-font-en600: 'GeneralSans-semi',    'Pretendard Variable', -apple-system, sans-serif;
  --orl-lh:      1.5;
}

.orl-page *,
.orl-page *::before,
.orl-page *::after { box-sizing: border-box; margin: 0; padding: 0; }

.orl-page {
  font-family: var(--orl-font);
  font-size: 16px;
  font-weight: 400;
  line-height: var(--orl-lh);
  color: var(--orl-black);
  background: var(--orl-bg);
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* ---- Image placeholder ---- */
.orl-img {
  background: #dedede;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.orl-img::after {
  content: attr(data-alt);
  font-family: var(--orl-font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #aaa;
  position: absolute;
}
.orl-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* 이미지 있을 때 placeholder 텍스트 숨김 */
.orl-img:has(img)::after { display: none; }


/* =====================================================
   §1  HERO
===================================================== */
.orl-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  overflow: hidden;
}

.orl-hero__bg {
  position: absolute;
  inset: -8% 0;
  will-change: transform;
}
.orl-hero__bg .orl-img { width: 100%; height: 100%; background: #1a1a1a; }
.orl-hero__bg .orl-img::after { content: 'MAIN VISUAL'; color: #444; }
.orl-hero__bg .orl-img:has(img[src]:not([src=""]))::after { display: none; }

.orl-hero__overlay {
  display: none;
}

.orl-hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 40px;
}

.orl-hero__eyebrow {
  font-family: var(--orl-font-en);
  font-size: 11px;
  letter-spacing: 0;
  color: rgba(255,255,255,0.42);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: orlFadeUp 0.9s ease forwards 0.2s;
}

.orl-hero__name {
  font-family: var(--orl-font-en);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
  opacity: 0;
  transform: translateY(24px);
  animation: orlFadeUp 1s ease forwards 0.4s;
}

.orl-hero__sub {
  font-family: var(--orl-font-en);
  font-size: clamp(12px, 1.5vw, 18px);
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.38);
  margin-top: 12px;
  opacity: 0;
  transform: translateY(16px);
  animation: orlFadeUp 0.9s ease forwards 0.6s;
}

.orl-hero__rule {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.22);
  margin: 40px auto;
  opacity: 0;
  animation: orlFadeIn 0.8s ease forwards 0.85s;
}

.orl-hero__tagline {
  font-family: var(--orl-font);
  font-size: clamp(17px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #ffffff;
  opacity: 0;
  transform: translateY(16px);
  animation: orlFadeUp 0.9s ease forwards 1s;
}

.orl-hero__scroll { display: none; }


/* =====================================================
   §2  INTRO
===================================================== */
.orl-intro {
  max-width: 1440px;
  margin: 0 auto;
  padding: 160px 0px 140px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 80px;
  text-align: left;
}

.orl-intro__left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.orl-intro__heading {
  font-family: var(--orl-font-en);
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--orl-black);
  margin-bottom: 28px;
}

.orl-intro__chip {
  display: inline-block;
  font-family: var(--orl-font-en);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--orl-muted);
  margin-top: auto;
  margin-left: 5px;
}

.orl-intro__right {
  max-width: 600px;
  padding-top: 8px;
}

.orl-intro__copy {
  font-size: 16px;
  color: var(--orl-gray);
  line-height: var(--orl-lh);
  text-align: left;
}
.orl-intro__copy p + p { margin-top: 18px; }

.orl-intro__quote {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 500;
  color: var(--orl-black);
  letter-spacing: 0.02em;
}


/* =====================================================
   §2.5  EVENT  — 오픈 기념 특별 혜택 (텍스트 / 상하 라인)
===================================================== */
.orl-event {
  font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #5BA9E6;
  padding: 100px 80px;
  text-align: center;
}

.orl-event__inner { max-width: 680px; margin: 0 auto; }

.orl-event__title {
  font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #000000;
  text-align: center;
  margin-bottom: 36px;
}

.orl-event__list {
  font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, sans-serif;
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
  border-top: 1px solid rgba(0,0,0,0.25);
}

.orl-event__row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.25);
}

.orl-event__label {
  flex: 0 0 88px;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}

.orl-event__value {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #000000;
}

.orl-event__note {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: rgba(0,0,0,0.65);
}


/* =====================================================
   §3  FEATURES  2 × 2 GRID
===================================================== */
.orl-features {
  background: var(--orl-bg-alt);
  padding: 120px 24px 100px;
}

.orl-features__head {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.orl-fg-ctrl {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.orl-fg-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--orl-border);
  background: var(--orl-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.orl-fg-btn:hover { background: var(--orl-black); border-color: var(--orl-black); }
.orl-fg-btn:hover svg path { stroke: #fff; }
.orl-fg-btn svg { width: 20px; height: 20px; }
.orl-fg-btn svg path { stroke: var(--orl-black); stroke-width: 1.4; fill: none; transition: stroke 0.25s; }
.orl-fg-btn.swiper-button-disabled { opacity: 0.25; pointer-events: none; }

.orl-features__tag {
  font-family: var(--orl-font-en);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--orl-muted);
  margin-bottom: 16px;
}

.orl-features__title {
  font-family: var(--orl-font);
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--orl-black);
}

.orl-fg.swiper {
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0 80px;
}
.orl-fg .swiper-slide {
  width: 100%;
  height: auto;
}

.orl-fg__card {
  display: flex;
  background: var(--orl-bg);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 630px;
}

/* Features 페이지네이션 */
.orl-fg-pagi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.orl-fg-pagi .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  opacity: 1;
  transition: all 0.3s;
}
.orl-fg-pagi .swiper-pagination-bullet-active {
  background: var(--orl-black);
  width: 24px;
  border-radius: 3px;
}

.orl-fg__img {
  width: 44%;
  flex-shrink: 0;
  overflow: hidden;
}
.orl-fg__img .orl-img {
  width: 100%;
  height: 100%;
  background: #d8d8d8;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.orl-fg__card:hover .orl-fg__img .orl-img { transform: scale(1.04); }

.orl-fg__body {
  flex: 1;
  padding: 40px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.orl-fg__num {
  font-family: var(--orl-font-en);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--orl-muted);
  margin-bottom: 18px;
}

.orl-fg__en {
  font-family: var(--orl-font-en);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--orl-black);
}

.orl-fg__kr {
  font-family: var(--orl-font);
  font-size: 16px;
  color: var(--orl-gray);
  margin-top: 8px;
  margin-bottom: 24px;
}

.orl-fg__desc {
  font-size: 16px;
  color: var(--orl-gray);
  line-height: var(--orl-lh);
  margin-bottom: 28px;
}

.orl-fg__spec {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--orl-border);
}

.orl-fg__spec-label {
  font-family: var(--orl-font-en);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--orl-muted);
  white-space: nowrap;
}

.orl-fg__spec-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--orl-black);
}


/* =====================================================
   §4  GALLERY SWIPER  (연출컷)
===================================================== */
.orl-gallery {
  background: var(--orl-dark);
  padding: 100px 0;
  overflow: hidden;
}

.orl-gallery__head {
  padding: 0 80px 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.orl-gallery__tag {
  font-family: var(--orl-font-en);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}

.orl-gallery__title {
  font-family: var(--orl-font-en);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.orl-gallery-swiper.swiper {
  overflow: visible;
  padding: 0 80px !important;
}

.orl-gallery-swiper .swiper-slide {
  width: auto;
}

.orl-gallery-slide {
  height: 60vh;
  max-height: 640px;
  min-height: 420px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.orl-gallery-slide .orl-img {
  width: 100%;
  height: 100%;
  background: #2a2a2a;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.orl-gallery-swiper .swiper-slide:hover .orl-gallery-slide .orl-img { transform: scale(1.04); }

.orl-gallery-ctrl {
  display: flex;
  align-items: center;
  gap: 16px;
}

.orl-gallery-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.orl-gallery-btn:hover { background: #fff; border-color: #fff; }
.orl-gallery-btn:hover svg path { stroke: var(--orl-dark); }
.orl-gallery-btn svg { width: 20px; height: 20px; }
.orl-gallery-btn svg path { stroke: rgba(255,255,255,0.7); stroke-width: 1.4; fill: none; transition: stroke 0.25s; }
.orl-gallery-btn.swiper-button-disabled { opacity: 0.2; pointer-events: none; }

.orl-gallery-pagi {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 0 80px;
}
.orl-gallery-pagi .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  opacity: 1;
  transition: all 0.3s;
}
.orl-gallery-pagi .swiper-pagination-bullet-active {
  background: #fff;
  width: 24px;
  border-radius: 3px;
}


/* =====================================================
   §5  STATS
===================================================== */
.orl-stats {
  background: var(--orl-dark);
  padding: 48px 80px 120px;
  position: relative;
  overflow: hidden;
}

.orl-stats::before {
  content: 'RECOVERY';
  font-family: var(--orl-font-en);
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 600;
  color: rgba(255,255,255,0.025);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.03em;
}

.orl-stats__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.orl-stats__tag {
  font-family: var(--orl-font-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.22);
  text-align: center;
  margin-bottom: 80px;
}

.orl-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
}

.orl-stat {
  background: var(--orl-dark);
  padding: 64px 72px;
  text-align: center;
}

.orl-stat__num {
  font-family: var(--orl-font-en);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.025em;
}

.orl-stat__unit {
  font-size: 0.42em;
  vertical-align: super;
  font-weight: 400;
  line-height: 1;
}

.orl-stat__label-en {
  font-family: var(--orl-font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.28);
  margin-top: 28px;
  margin-bottom: 10px;
}

.orl-stat__label-kr {
  font-size: 16px;
  color: rgba(255,255,255,0.48);
  line-height: var(--orl-lh);
}


/* =====================================================
   §6  COMPARISON
===================================================== */
.orl-compare {
  background: var(--orl-dark);
  padding: 80px 80px 40px;
}

.orl-compare__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.orl-compare__tag {
  font-family: var(--orl-font-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.22);
  margin-bottom: 40px;
}

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

.orl-ccard {
  background: #1c1c1c;
  padding: 36px 44px 44px;
  position: relative;
}

.orl-ccard--active {
  background: #1a1a1a;
  outline: 2px solid var(--orl-lime);
  outline-offset: 0;
}

.orl-ccard__badge {
  display: inline-block;
  font-family: var(--orl-font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--orl-dark);
  background: var(--orl-lime);
  padding: 4px 12px;
  margin-bottom: 20px;
}
.orl-ccard__badge--empty { visibility: hidden; }

.orl-ccard__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 36px;
}
.orl-ccard__img .orl-img { width: 100%; height: 100%; background: #2c2c2c; }
.orl-ccard--active .orl-ccard__img .orl-img { background: #282828; }

.orl-ccard__name {
  font-family: var(--orl-font-en);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 36px;
}

.orl-ccard__specs { display: flex; flex-direction: column; }

.orl-ccard__row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.orl-ccard__row:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }

.orl-ccard__key {
  font-family: var(--orl-font-en);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  width: 160px;
  flex-shrink: 0;
}

.orl-ccard__val {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  line-height: var(--orl-lh);
}

.orl-ccard--active .orl-ccard__val { color: rgba(255,255,255,0.88); }

.orl-ccard__val--new {
  color: var(--orl-lime) !important;
  font-weight: 500;
}


/* =====================================================
   §7  CTA BANNER
===================================================== */
.orl-cta {
  background: var(--orl-lime);
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 160px;
}

.orl-cta__headline {
  font-family: var(--orl-font-en);
  font-size: clamp(24px, 3.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--orl-dark);
  line-height: 1;
}

.orl-cta__sub {
  font-family: var(--orl-font);
  font-size: 16px;
  color: rgba(0,0,0,0.55);
  margin-top: 10px;
}

.orl-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--orl-dark);
  color: #fff;
  font-family: var(--orl-font-en);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 22px 48px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s, gap 0.25s;
  text-decoration: none;
}
.orl-cta__btn:hover { background: #333; gap: 24px; }
.orl-cta__btn svg { width: 20px; height: 20px; }
.orl-cta__btn svg path { stroke: #fff; stroke-width: 1.5; fill: none; }


/* weight 600 영문 요소 — GeneralSans-semi 적용 */
.orl-hero__name,
.orl-intro__heading,
.orl-fg__en,
.orl-gallery__title,
.orl-stat__num,
.orl-ccard__name,
.orl-cta__headline,
.orl-cta__btn,
.orl-ccard__badge,
.orl-stats::before {
  font-family: var(--orl-font-en600);
}


/* =====================================================
   ANIMATIONS & REVEAL
===================================================== */
@keyframes orlFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes orlFadeIn {
  to { opacity: 1; }
}
@keyframes orlScrollPulse {
  0%,100% { opacity: 0.65; }
  50%      { opacity: 0.15; }
}

.orl-rv {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.orl-rv.--in { opacity: 1; transform: translateY(0); }
.orl-rv-d1 { transition-delay: 0.1s; }
.orl-rv-d2 { transition-delay: 0.2s; }
.orl-rv-d3 { transition-delay: 0.3s; }
.orl-rv-d4 { transition-delay: 0.4s; }
