/* =========================================================
   Gangnamhobba - main.css (Final)
   - Tokens / Reset / Layout
   - Header + Drawer
   - Footer + Sticky CTA
   - Hero (Poster Neon)
========================================================= */

/* =========================================================
   0) Font
   - Pretendard 권장: 로컬호스팅(woff2)로 바꾸는 게 최선
   - 당장 적용만 원하면 아래 @import를 임시로 쓸 수 있음(성능엔 불리)
========================================================= */
/* @import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/pretendard.css"); */

/* =========================================================
   1) Tokens
========================================================= */
:root{
  /* Container */
  --ghb-container: 1360px;
  --ghb-gutter: 16px;     /* mobile padding */
  --ghb-gutter-lg: 24px;  /* desktop padding */

  /* Radius */
  --ghb-radius-sm: 12px;
  --ghb-radius-md: 16px;
  --ghb-radius-lg: 22px;

  /* Typography */
  --ghb-font: "Pretendard", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --ghb-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  /* Colors (Dark premium baseline) */
  --ghb-bg: #0b0b0f;
  --ghb-surface: rgba(255,255,255,0.06);
  --ghb-surface-2: rgba(255,255,255,0.10);
  --ghb-border: rgba(255,255,255,0.12);

  --ghb-text: rgba(255,255,255,0.92);
  --ghb-muted: rgba(255,255,255,0.72);
  --ghb-dim: rgba(255,255,255,0.55);

  /* Accent */
  --ghb-accent: #b48cff;   /* violet */
  --ghb-accent-2: #6ee7ff; /* cyan */
  --ghb-accent-grad: linear-gradient(135deg, var(--ghb-accent), var(--ghb-accent-2));

  /* Hero neon (poster) */
  --ghb-neon-pink: rgba(255,90,180,0.95);
  --ghb-neon-purple: rgba(170,95,255,0.95);

  /* Shadow */
  --ghb-shadow: 0 18px 60px rgba(0,0,0,0.45);

  /* Motion */
  --ghb-ease: cubic-bezier(.2,.8,.2,1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  :root{ --ghb-ease: linear; }
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* =========================================================
   2) Reset / Base
========================================================= */
*,
*::before,
*::after{ box-sizing: border-box; }

html, body{ height: 100%; }

html{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--ghb-bg);
}

body{
  margin: 0;
  font-family: var(--ghb-font);
  color: var(--ghb-text);
  background: var(--ghb-bg);
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden; /* 오른쪽 여백/가로스크롤 방지 */
}

img, video, svg{
  max-width: 100%;
  height: auto;
  display: block;
}

a{ color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible{
  outline: 2px solid rgba(180,140,255,0.8);
  outline-offset: 3px;
  border-radius: 10px;
}

button{
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

p{ margin: 0 0 12px; }
h1,h2,h3,h4,h5,h6{ margin: 0 0 12px; line-height: 1.15; letter-spacing: -0.02em; }
small{ color: var(--ghb-dim); }

/* =========================================================
   3) Layout Utilities
========================================================= */
.ghb-container{
  width: min(var(--ghb-container), calc(100% - (var(--ghb-gutter) * 2)));
  margin: 0 auto;
}

@media (min-width: 900px){
  .ghb-container{
    width: min(var(--ghb-container), calc(100% - (var(--ghb-gutter-lg) * 2)));
  }
}

.ghb-section{ padding: 84px 0; }
@media (max-width: 600px){
  .ghb-section{ padding: 64px 0; }
}

/* Type scales */
.ghb-h1{ font-size: clamp(30px, 3.4vw, 54px); line-height: 1.08; }
.ghb-h2{ font-size: clamp(24px, 2.6vw, 40px); line-height: 1.12; }
.ghb-lead{ font-size: clamp(15px, 1.2vw, 18px); color: var(--ghb-muted); }

/* Common surface/card */
.ghb-card{
  background: var(--ghb-surface);
  border: 1px solid var(--ghb-border);
  border-radius: var(--ghb-radius-lg);
  box-shadow: var(--ghb-shadow);
}

/* =========================================================
   4) CTA Button (global)
========================================================= */
.ghb-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ghb-accent-grad);
  color: rgba(0,0,0,0.92);
  font-weight: 800;
  box-shadow: var(--ghb-shadow);
  transition: transform .2s var(--ghb-ease), filter .2s var(--ghb-ease);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.ghb-cta-btn:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.ghb-cta-btn:active{ transform: translateY(0); filter: brightness(0.98); }

/* =========================================================
   5) Header + Drawer (themed)
========================================================= */
.ghb-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(180deg, rgba(11,11,15,0.92), rgba(11,11,15,0.65));
  border-bottom: 1px solid var(--ghb-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ghb-header-inner{
  width: min(var(--ghb-container), calc(100% - (var(--ghb-gutter) * 2)));
  margin: 0 auto;
  height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
@media (min-width: 900px){
  .ghb-header-inner{
    width: min(var(--ghb-container), calc(100% - (var(--ghb-gutter-lg) * 2)));
    height: 84px;
  }
}

.ghb-header-left{ min-height: 1px; }
.ghb-header-center{ justify-self: center; }
.ghb-header-right{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Logo */
.ghb-logo{ display: inline-flex; align-items: center; gap: 10px; }
.ghb-logo img{ height: 42px; width: auto; }
@media (min-width: 900px){ .ghb-logo img{ height: 48px; } }

.ghb-logo-text{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ghb-text);
}

/* Header CTA visibility */
.ghb-header-cta{ display: none; }
@media (min-width: 900px){
  .ghb-header-cta{ display: inline-flex; }
}
.ghb-cta-btn--header{ padding: 11px 14px; }

/* Burger */
.ghb-burger{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--ghb-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s var(--ghb-ease), background .2s var(--ghb-ease);
}
.ghb-burger:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.09); }
.ghb-burger:active{ transform: translateY(0); background: rgba(255,255,255,0.06); }

.ghb-burger-lines{ width: 18px; height: 12px; position: relative; display: block; }
.ghb-burger-lines::before,
.ghb-burger-lines::after{
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
}
.ghb-burger-lines::before{ top: 0; }
.ghb-burger-lines::after{ bottom: 0; }

/* Overlay */
.ghb-overlay{
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Drawer */
.ghb-drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 88vw);
  height: 100vh;
  z-index: 999;

  background: rgba(15,15,20,0.92);
  border-left: 1px solid var(--ghb-border);
  box-shadow: var(--ghb-shadow);

  transform: translateX(105%);
  transition: transform .28s var(--ghb-ease);

  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ghb-drawer.is-open{ transform: translateX(0); }

.ghb-drawer-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px 4px;
}

.ghb-drawer-title{
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ghb-dim);
}

.ghb-drawer-close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--ghb-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ghb-text);
}

/* Drawer menu */
.ghb-drawer-nav{ padding: 6px 0; }

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

.ghb-menu a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);

  color: var(--ghb-text);
  transition: transform .18s var(--ghb-ease), background .18s var(--ghb-ease), border-color .18s var(--ghb-ease);
}

.ghb-menu a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.10);
}

.ghb-menu .current-menu-item > a,
.ghb-menu .current_page_item > a,
.ghb-menu .current-menu-ancestor > a{
  background: rgba(180,140,255,0.14);
  border-color: rgba(180,140,255,0.26);
}

/* Drawer CTA */
.ghb-drawer-cta{ margin-top: auto; padding-top: 10px; }
.ghb-cta-btn--drawer{ width: 100%; justify-content: center; padding: 14px 16px; }

/* Open state scroll lock */
html.ghb-nav-open{ overflow: hidden; }
html.ghb-nav-open body{ overscroll-behavior: none; }

/* =========================================================
   6) Sticky Bottom CTA (always visible)
========================================================= */
.ghb-sticky-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 997;

  padding: 10px var(--ghb-gutter) calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(11,11,15,0), rgba(11,11,15,0.78));
  pointer-events: none;
}

.ghb-sticky-cta__inner{
  width: min(var(--ghb-container), calc(100% - (var(--ghb-gutter) * 2)));
  margin: 0 auto;
  pointer-events: auto;
}

@media (min-width: 900px){
  .ghb-sticky-cta{
    padding: 12px var(--ghb-gutter-lg) calc(12px + env(safe-area-inset-bottom));
  }
  .ghb-sticky-cta__inner{
    width: min(var(--ghb-container), calc(100% - (var(--ghb-gutter-lg) * 2)));
  }
}

.ghb-cta-btn--sticky{
  width: 100%;
  justify-content: center;
  padding: 15px 18px;
  font-weight: 900;
}

/* 페이지 콘텐츠가 CTA에 가리지 않게 */
.ghb-site-content{
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

/* 드로어 열리면 sticky CTA 숨김(겹침 방지) */
html.ghb-nav-open .ghb-sticky-cta{
  opacity: 0;
  pointer-events: none;
}

/* =========================================================
   HERO (Poster Neon)
========================================================= */
.ghb-hero--poster{
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.ghb-hero--poster .ghb-hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ghb-hero--poster .ghb-hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.05);
}

.ghb-hero--poster .ghb-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 600px at 50% 34%, rgba(210,120,255,0.18), transparent 62%),
    radial-gradient(900px 520px at 18% 70%, rgba(255,90,180,0.14), transparent 60%),
    linear-gradient(180deg, rgba(8,8,12,0.38), rgba(8,8,12,0.88));
}

.ghb-hero--poster .ghb-hero-spark{
  position: absolute;
  inset: -15%;
  z-index: 2;
  pointer-events: none;
  opacity: .55;
  background:
    radial-gradient(14px 14px at 22% 30%, rgba(255,255,255,0.16), transparent 60%),
    radial-gradient(12px 12px at 70% 44%, rgba(255,180,220,0.16), transparent 60%),
    radial-gradient(16px 16px at 82% 68%, rgba(180,220,255,0.12), transparent 60%),
    radial-gradient(18px 18px at 42% 78%, rgba(255,120,190,0.12), transparent 60%);
  filter: blur(0.2px);
}

.ghb-hero--poster .ghb-hero-inner{
  position: relative;
  z-index: 3;
  padding: 120px 0 130px;
  text-align: center;
}

.ghb-hero-kicker{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

/* ✅ Poster neon title */
.ghb-hero-title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  font-size: clamp(54px, 9.6vw, 132px);
  text-transform: uppercase;

  background: linear-gradient(
    180deg,
    #ffe7f6 0%,
    #ffb3e6 22%,
    #d06cff 55%,
    #6b2cff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow:
    0 2px 0 rgba(44, 10, 72, 0.92),
    0 4px 0 rgba(44, 10, 72, 0.78),
    0 18px 48px rgba(0,0,0,0.70),
    0 0 14px rgba(255, 120, 210, 0.55),
    0 0 30px rgba(210, 120, 255, 0.45),
    0 0 62px rgba(130, 70, 255, 0.32);

  transform: translateZ(0);
}

.ghb-hero-sub{
  margin: 14px auto 0;
  max-width: 60ch;
  font-size: clamp(14px, 1.25vw, 18px);
  color: rgba(255,255,255,0.84);
  text-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

/* ✅ Hero CTA neon pill (global CTA와 충돌 X) */
.ghb-cta-btn--neon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.01em;

  background: linear-gradient(90deg, var(--ghb-neon-pink), var(--ghb-neon-purple));
  border: 1px solid rgba(255,255,255,0.18);

  /* 전역 CTA(검은 텍스트) 덮어쓰기 */
  color: rgba(255,255,255,0.96);
  text-shadow: 0 10px 26px rgba(0,0,0,0.45);

  box-shadow:
    0 22px 70px rgba(0,0,0,0.62),
    0 0 28px rgba(255,90,180,0.22),
    0 0 34px rgba(170,95,255,0.18);

  transform: translateZ(0);
  transition: transform .18s var(--ghb-ease), filter .18s var(--ghb-ease);
}
.ghb-cta-btn--neon:hover{ transform: translateY(-1px); filter: brightness(1.03); }

.ghb-hero-links{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.ghb-hero-link{
  color: rgba(255,255,255,0.74);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px;
}
.ghb-hero-link:hover{
  color: rgba(255,255,255,0.92);
  border-bottom-color: rgba(255,255,255,0.32);
}
.ghb-hero-dot{ opacity: .6; }

/* scroll button (bottom center) */
.ghb-hero-scroll{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 4;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.86);

  box-shadow: 0 16px 50px rgba(0,0,0,0.45);
}

.ghb-hero-scroll__chev{
  display: inline-block;
  font-size: 18px;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: no-preference){
  .ghb-hero-scroll__chev{
    animation: ghbChev 1.15s var(--ghb-ease) infinite;
  }
  @keyframes ghbChev{
    0%{ transform: translateY(-2px); opacity: .65; }
    50%{ transform: translateY(3px); opacity: 1; }
    100%{ transform: translateY(-2px); opacity: .65; }
  }
}

@media (max-width: 600px){
  .ghb-hero--poster .ghb-hero-inner{ padding: 104px 0 118px; }
}



/* =========================================================
   About
========================================================= */
.ghb-about-x{
  position: relative;
  background: #000;
  height: 400vh; /* JS에서 (vh + 이동거리)로 자동 보정 */
}

/* 상단 UI */
.ghb-about-x__ui{
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--ghb-container), calc(100% - (var(--ghb-gutter) * 2)));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 5;
  pointer-events: none;
}
@media (min-width: 900px){
  .ghb-about-x__ui{
    width: min(var(--ghb-container), calc(100% - (var(--ghb-gutter-lg) * 2)));
  }
}

.ghb-about-x__pill{
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.10em;
}

.ghb-about-x__dots{
  display: flex;
  gap: 10px;
  pointer-events: auto;
}
.ghb-about-x__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.14);
  cursor: pointer;
  transition: transform .18s var(--ghb-ease), background .18s var(--ghb-ease);
}
.ghb-about-x__dot:hover{ transform: scale(1.15); }
.ghb-about-x__dot.is-active{ background: rgba(255,255,255,0.55); }

.ghb-about-x__index{
  font-size: 12px;
  letter-spacing: .18em;
  color: rgba(255,255,255,0.60);
  pointer-events: none;
}

/* pin 영역 */
.ghb-about-x__pin{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.ghb-about-x__track{
  height: 100%;
  display: flex;
  width: 400vw; /* JS에서 패널 수 기반으로 보정 */
  will-change: transform;
  transform: translate3d(0,0,0);
}

.ghb-about-x__slide{
  position: relative;
  flex: 0 0 100vw;
  height: 100%;
  overflow: hidden;
  background: #0b0b10;
}

/* 배경(2장 교차 페이드) */
.ghb-about-x__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  will-change: opacity;
}
.ghb-about-x__bg-a{
  background-image: var(--ghb-about-img-a, var(--ghb-about-fallback-a, none));
  opacity: 1;
}
.ghb-about-x__bg-b{
  background-image: var(--ghb-about-img-b, var(--ghb-about-fallback-b, none));
  opacity: 0;
}

/* 성능: active에서만 교차 페이드 */
.ghb-about-x__slide .ghb-about-x__bg{ animation-play-state: paused; }
.ghb-about-x__slide.is-active .ghb-about-x__bg-a{
  animation: ghbAboutFadeA 10s ease-in-out infinite;
  animation-play-state: running;
}
.ghb-about-x__slide.is-active .ghb-about-x__bg-b{
  animation: ghbAboutFadeB 10s ease-in-out infinite;
  animation-play-state: running;
}

@keyframes ghbAboutFadeA{
  0%, 40%{ opacity: 1; }
  55%, 95%{ opacity: 0; }
  100%{ opacity: 1; }
}
@keyframes ghbAboutFadeB{
  0%, 40%{ opacity: 0; }
  55%, 95%{ opacity: 1; }
  100%{ opacity: 0; }
}

/* 배경 위 가독성 오버레이 */
.ghb-about-x__slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(820px 520px at 70% 30%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(900px 560px at 28% 80%, rgba(210,120,255,0.12), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,0.48), rgba(0,0,0,0.20), rgba(0,0,0,0.55));
  pointer-events: none;
}

/* 카드 */
.ghb-about-x__content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 0 0;
}

.ghb-about-x__card{
  width: min(980px, calc(100% - 48px));
  padding: clamp(22px, 3.6vw, 44px);
  border-radius: var(--ghb-radius-lg);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--ghb-shadow);

  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s var(--ghb-ease), transform .45s var(--ghb-ease);
}

.ghb-about-x__slide.is-active .ghb-about-x__card{
  opacity: 1;
  transform: translateY(0);
}

.ghb-about-x__eyebrow{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .35em;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
}

.ghb-about-x__title{
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.ghb-about-x__desc{
  margin: 0 0 18px;
  max-width: 72ch;
  color: var(--ghb-muted);
  line-height: 1.75;
  font-size: clamp(14px, 1.6vw, 18px);
}

.ghb-about-x__bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.84);
  line-height: 1.9;
}

.ghb-about-x__actions{
  margin-top: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ghb-about-x__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 60px rgba(0,0,0,0.55);
  transition: transform .18s var(--ghb-ease), background .18s var(--ghb-ease);
}
.ghb-about-x__btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.09); }

/* CTA 버튼을 이 섹션에선 살짝 더 네온 느낌 */
.ghb-cta-btn--neon{
  color: rgba(0,0,0,0.92);
  filter: saturate(1.05);
}

.ghb-about-x__inline-link{
  color: rgba(255,255,255,0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.45);
  transition: opacity .18s var(--ghb-ease), text-decoration-color .18s var(--ghb-ease);
}
.ghb-about-x__inline-link:hover{
  opacity: .9;
  text-decoration-color: rgba(255,255,255,0.75);
}


@media (max-width: 600px){
  .ghb-about-x__ui{ top: 12px; }
  .ghb-about-x__card{ width: calc(100% - 32px); }
}

@media (prefers-reduced-motion: reduce){
  .ghb-about-x{ height: auto; }
  .ghb-about-x__pin{ position: relative; height: auto; }
  .ghb-about-x__track{ display: block; width: 100%; transform: none !important; }
  .ghb-about-x__slide{ height: auto; min-height: 78vh; }
  .ghb-about-x__card{ opacity: 1; transform: none; }
}




/* ===============================
   GHB Tips Section (CSS-only reveal)
   - scroll-driven animation if supported (animation-timeline: view)
   - graceful fallback if not supported
================================ */

.ghb-container{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.ghb-tips{
  position: relative;
  padding: clamp(72px, 8vw, 110px) 0;
  background: #07070a;
  overflow: clip;
}

.ghb-tips__bg{
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(800px 560px at 18% 14%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(900px 640px at 82% 28%, rgba(124,92,255,.20), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.55));
  pointer-events:none;
  opacity: 1;
}

.ghb-tips__wrap{
  position: relative;
  z-index: 1;
}

.ghb-tips__head{
  max-width: 78ch;
  margin-bottom: 30px;
}

.ghb-tips__kicker{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.70);
}

.ghb-tips__title{
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.92);
}

.ghb-tips__sub{
  margin: 0 0 18px;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

.ghb-tips__ctas{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ghb-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
}
.ghb-btn:hover{ transform: translateY(-1px); }
.ghb-btn--ghost{ background: rgba(255,255,255,.06); }
.ghb-btn--primary{
  border-color: rgba(124,92,255,.40);
  background: linear-gradient(180deg, rgba(124,92,255,.45), rgba(124,92,255,.18));
}

/* Layout */
.ghb-tips__grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: clamp(18px, 3.2vw, 34px);
  align-items: start;
}

.ghb-tips__cards{
  display:grid;
  gap: 12px;
}

/* Card */
.ghb-tips__card{
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  padding: 16px 16px 15px;
  box-shadow: 0 18px 60px rgba(0,0,0,.34);
  overflow: hidden;
}

.ghb-tips__card::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(540px 220px at 20% 0%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(90deg, rgba(124,92,255,.14), rgba(0,0,0,0));
  opacity: .45;
  pointer-events:none;
}

.ghb-tips__card-title{
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.92);
}

.ghb-tips__card-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.74);
}

.ghb-tips__card--warn{
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.ghb-tips__mini{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
  font-size: 14px;
}

/* Media stack */
.ghb-tips__media{
  position: sticky;
  top: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  padding: 14px;
  overflow: hidden;
  box-shadow: 0 18px 70px rgba(0,0,0,.45);
}

.ghb-tips__photo{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 55px rgba(0,0,0,.38);
}

.ghb-tips__photo img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;
  transform: scale(1.02);
}

.ghb-tips__photo--a{ height: 220px; }
.ghb-tips__photo--b{ height: 170px; margin-top: 10px; }
.ghb-tips__photo--c{ height: 140px; margin-top: 10px; opacity: .95; }

.ghb-tips__badge{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
}
.ghb-tips__badge-k{
  margin: 0 0 3px;
  font-size: 12px;
  letter-spacing: .22em;
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
}
.ghb-tips__badge-t{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.90);
}

/* ===============================
   Quick Pick Section (GHB)
   - CSS-only scroll reveal (View Timeline)
   - Luxury, women-first party mood
================================ */

.ghb-pick{
  position: relative;
  padding: clamp(76px, 9vw, 120px) 0;
  background: #07070a;
  overflow: clip;
}

.ghb-pick__bg{
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(860px 580px at 16% 18%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(980px 720px at 84% 26%, rgba(124,92,255,.22), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.55));
  pointer-events:none;
}

.ghb-pick__wrap{ position: relative; z-index: 1; }

.ghb-pick__head{ max-width: 82ch; margin-bottom: 28px; }

.ghb-pick__kicker{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.70);
}

.ghb-pick__title{
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.92);
}

.ghb-pick__sub{
  margin: 0 0 16px;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

.ghb-pick__ctas{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* If you already have .ghb-btn, this will blend; otherwise it becomes the base */
.ghb-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
}
.ghb-btn:hover{ transform: translateY(-1px); }
.ghb-btn--ghost{ background: rgba(255,255,255,.06); }
.ghb-btn--primary{
  border-color: rgba(124,92,255,.42);
  background: linear-gradient(180deg, rgba(124,92,255,.46), rgba(124,92,255,.18));
}

/* Layout */
.ghb-pick__grid{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap: clamp(18px, 3.2vw, 34px);
  align-items: start;
}

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

/* Cards */
.ghb-pick__card{
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  padding: 16px 16px 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.34);
  overflow: hidden;
  transform: translateZ(0);
}

.ghb-pick__card::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(560px 240px at 18% 0%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(90deg, rgba(124,92,255,.14), rgba(0,0,0,0));
  opacity: .45;
  pointer-events:none;
}

.ghb-pick__meta{ display:flex; gap: 10px; align-items:center; margin-bottom: 10px; }

.ghb-pick__tag{
  display:inline-flex;
  align-items:center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.ghb-pick__card-title{
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.92);
}

.ghb-pick__card-desc{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.74);
}

.ghb-pick__links{
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.ghb-pick__link{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -.01em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, opacity .18s ease;
}
.ghb-pick__link:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}
.ghb-pick__arrow{ opacity: .8; }

/* Media (sticky mosaic) */
.ghb-pick__media{
  position: sticky;
  top: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  padding: 14px;
  overflow: hidden;
  box-shadow: 0 18px 70px rgba(0,0,0,.45);
}

.ghb-pick__mosaic{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.ghb-pick__photo{
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 55px rgba(0,0,0,.38);
}
.ghb-pick__photo img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;
  transform: scale(1.02);
}

.ghb-pick__photo--a{ height: 220px; }
.ghb-pick__photo--b{ height: 170px; }
.ghb-pick__photo--c{ height: 140px; opacity: .96; }

.ghb-pick__badge{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
}
.ghb-pick__badge-k{
  margin: 0 0 3px;
  font-size: 12px;
  letter-spacing: .22em;
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
}
.ghb-pick__badge-t{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.90);
}

/* ===============================
   CSS-only Scroll Reveal (View Timeline)
   - Fallback: visible as-is
================================ */
.ghb-pick__head,
.ghb-pick__card,
.ghb-pick__media{
  opacity: 1; transform: none; /* fallback */
}

@supports (animation-timeline: view()){
  .ghb-pick__head{
    opacity: 0;
    transform: translateY(18px);
    animation: ghbPickFadeUp .9s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  .ghb-pick__card{
    opacity: 0;
    transform: translateY(18px);
    animation: ghbPickFadeUp .9s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }

  /* 스태거 느낌(순서차) */
  .ghb-pick__card:nth-child(1){ animation-delay: .02s; }
  .ghb-pick__card:nth-child(2){ animation-delay: .06s; }
  .ghb-pick__card:nth-child(3){ animation-delay: .10s; }
  .ghb-pick__card:nth-child(4){ animation-delay: .14s; }

  .ghb-pick__media{
    opacity: 0;
    transform: translateY(22px);
    animation: ghbPickFadeUp 1s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }

  .ghb-pick__photo img{
    transform: scale(1.10);
    filter: blur(6px);
    animation: ghbPickImgIn 1.2s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }
}

@keyframes ghbPickFadeUp{
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes ghbPickImgIn{
  to{ transform: scale(1.02); filter: blur(0px); }
}

@media (prefers-reduced-motion: reduce){
  .ghb-pick__card, .ghb-pick__media, .ghb-pick__link, .ghb-btn{ transition: none !important; }
  .ghb-pick__photo img{ filter:none !important; transform:none !important; }
}

/* Responsive */
@media (max-width: 980px){
  .ghb-pick__grid{ grid-template-columns: 1fr; }
  .ghb-pick__cards{ grid-template-columns: 1fr; }
  .ghb-pick__media{ position: relative; top: 0; }
  .ghb-pick__photo--a{ height: 240px; }
}


/* ===============================
   CSS-only Scroll Reveal
   - Uses View Timeline when supported
================================ */
.ghb-tips__head,
.ghb-tips__card,
.ghb-tips__media,
.ghb-tips__photo{
  opacity: 1; /* fallback */
  transform: none; /* fallback */
}

/* Only apply animations if supported */
@supports (animation-timeline: view()) {
  .ghb-tips__head{
    opacity: 0;
    transform: translateY(18px);
    animation: ghbFadeUp .9s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  .ghb-tips__card{
    opacity: 0;
    transform: translateY(18px);
    animation: ghbFadeUp .9s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }

  /* Stagger 느낌 (CSS만) */
  .ghb-tips__card:nth-child(1){ animation-delay: .02s; }
  .ghb-tips__card:nth-child(2){ animation-delay: .06s; }
  .ghb-tips__card:nth-child(3){ animation-delay: .10s; }
  .ghb-tips__card:nth-child(4){ animation-delay: .14s; }
  .ghb-tips__card:nth-child(5){ animation-delay: .18s; }
  .ghb-tips__card:nth-child(6){ animation-delay: .22s; }
  .ghb-tips__card:nth-child(7){ animation-delay: .26s; }

  .ghb-tips__media{
    opacity: 0;
    transform: translateY(22px);
    animation: ghbFadeUp 1s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .ghb-tips__photo img{
    transform: scale(1.10);
    filter: blur(6px);
    animation: ghbImgIn 1.2s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }
}

@keyframes ghbFadeUp{
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ghbImgIn{
  to { transform: scale(1.02); filter: blur(0px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .ghb-btn, .ghb-tips__card, .ghb-tips__media{ transition: none !important; }
  .ghb-tips__photo img{ filter: none !important; transform: none !important; }
}

/* Responsive */
@media (max-width: 980px){
  .ghb-tips__grid{ grid-template-columns: 1fr; }
  .ghb-tips__media{ position: relative; top: 0; }
  .ghb-tips__photo--a{ height: 240px; }
}



/* ===============================
   Featured Recommendations (GHB)
   - CSS-only scroll reveal
================================ */

.ghb-reco{
  position: relative;
  padding: clamp(70px, 8.5vw, 110px) 0;
  background: #07070a;
  overflow: clip;
}

.ghb-reco__bg{
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(860px 580px at 18% 18%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(980px 720px at 84% 26%, rgba(124,92,255,.18), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.55));
  pointer-events:none;
}

.ghb-reco__wrap{ position: relative; z-index: 1; }

.ghb-reco__head{
  max-width: 86ch;
  margin-bottom: 22px;
}

.ghb-reco__kicker{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.70);
}

.ghb-reco__title{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.7vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.92);
}

.ghb-reco__sub{
  margin: 0;
  font-size: clamp(14px, 1.55vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,.72);
}

.ghb-reco__list{
  display: grid;
  gap: 18px;
}

.ghb-reco__item{ position: relative; }

.ghb-reco__label{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 0 0 10px;
}

.ghb-reco__label-t{
  display:inline-flex;
  align-items:center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.84);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.ghb-reco__card{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.26);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 70px rgba(0,0,0,.42);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  min-height: 320px;
  transform: translateZ(0);
}

.ghb-reco__card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(560px 240px at 18% 0%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(90deg, rgba(124,92,255,.12), rgba(0,0,0,0));
  opacity: .45;
  pointer-events:none;
}

.ghb-reco__media{
  position: relative;
  border-right: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.ghb-reco__media img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  transform: scale(1.04);
}

.ghb-reco__body{
  position: relative;
  padding: clamp(18px, 2.4vw, 26px);
}

.ghb-reco__brand{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.62);
  text-transform: uppercase;
}

.ghb-reco__h{
  margin: 0 0 10px;
  font-size: clamp(18px, 2.15vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.92);
}

.ghb-reco__desc{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.74);
  max-width: 70ch;
}

.ghb-reco__tags{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.ghb-reco__tag{
  display:inline-flex;
  align-items:center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color: rgba(255,255,255,.82);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ghb-reco__points{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255,255,255,.80);
  line-height: 1.85;
  font-size: 14px;
}

.ghb-reco__actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.ghb-reco__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 800;
  font-size: 13px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.ghb-reco__btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}
.ghb-reco__btn--ghost{
  background: rgba(255,255,255,.06);
}

.ghb-reco__note{
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.58);
}

.ghb-reco__divider{
  margin-top: 26px;
  height: 1px;
  background: rgba(255,255,255,.10);
}

.ghb-reco__mini{
  margin-top: 18px;
  display:flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ghb-reco__mini-t{
  margin:0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 14px;
}

.ghb-reco__mini-link{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 2px;
}

/* ✅ CSS-only scroll reveal (View Timeline 지원 브라우저에서만 작동) */
@supports (animation-timeline: view()){
  .ghb-reco__head,
  .ghb-reco__item,
  .ghb-reco__mini{
    opacity: 0;
    transform: translateY(18px);
    animation: ghbRecoUp .9s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }

  .ghb-reco__item:nth-child(1){ animation-delay: .04s; }
  .ghb-reco__item:nth-child(2){ animation-delay: .10s; }

  .ghb-reco__media img{
    filter: blur(6px);
    transform: scale(1.12);
    animation: ghbRecoImg 1.1s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }
}

@keyframes ghbRecoUp{
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes ghbRecoImg{
  to{ filter: blur(0px); transform: scale(1.04); }
}

@media (max-width: 980px){
  .ghb-reco__card{ grid-template-columns: 1fr; }
  .ghb-reco__media{ border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); height: 220px; }
}

@media (prefers-reduced-motion: reduce){
  .ghb-reco__btn{ transition:none; }
  .ghb-reco__media img{ filter:none; transform:none; }
}




/* ===============================
   Blog Swiper Section (GHB)
================================ */

.ghb-blog{
  position: relative;
  padding: clamp(70px, 8.5vw, 110px) 0;
  background: #07070a;
  overflow: clip;
}

.ghb-blog__bg{
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 540px at 25% 10%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(900px 640px at 80% 18%, rgba(124,92,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.55));
  pointer-events:none;
}

.ghb-blog__wrap{ position: relative; z-index: 1; }

.ghb-blog__head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.ghb-blog__kicker{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.70);
}

.ghb-blog__title{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.7vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.92);
}

.ghb-blog__sub{
  margin: 0;
  font-size: clamp(14px, 1.55vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  max-width: 90ch;
}

.ghb-blog__more-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.ghb-blog__more-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}

.ghb-blog__swiper-wrap{
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 70px rgba(0,0,0,.42);
  overflow: hidden;
  padding: 18px 14px 52px; /* pagination 공간 */
}

.ghb-blog-swiper{ overflow: visible; }

.ghb-blog__slide{ height: auto; }

.ghb-blog__card{
  display:block;
  height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  overflow: hidden;
  text-decoration:none;
  color: inherit;
  box-shadow: 0 18px 60px rgba(0,0,0,.38);
  transform: translateZ(0);
}

.ghb-blog__thumb{
  height: 180px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.ghb-blog__thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.04);
}

.ghb-blog__body{ padding: 14px 14px 16px; }

.ghb-blog__meta{
  display:flex;
  gap: 10px;
  align-items:center;
  margin: 0 0 10px;
}

.ghb-blog__pill{
  display:inline-flex;
  align-items:center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
}

.ghb-blog__date{
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.58);
}

.ghb-blog__h{
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.92);
}

.ghb-blog__excerpt{
  margin: 0 0 10px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.ghb-blog__read{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  font-weight: 900;
  color: rgba(255,255,255,.92);
}

/* Swiper pagination */
.ghb-blog__pagination{
  position: absolute !important;
  left: 0; right: 0;
  bottom: 16px !important;
  text-align: center;
}
.ghb-blog__pagination .swiper-pagination-bullet{
  opacity: .55;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.16);
}
.ghb-blog__pagination .swiper-pagination-bullet-active{
  opacity: 1;
  background: rgba(255,255,255,.55);
}

/* Swiper nav */
.ghb-blog__nav{
  width: 42px !important;
  height: 42px !important;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
}
.ghb-blog__nav::after{
  font-size: 16px !important;
  color: rgba(255,255,255,.88);
}
.ghb-blog__nav--prev{ left: 10px !important; }
.ghb-blog__nav--next{ right: 10px !important; }

@media (max-width: 720px){
  .ghb-blog__head{ align-items:flex-start; flex-direction: column; }
  .ghb-blog__more-btn{ width: 100%; }
  .ghb-blog__thumb{ height: 200px; }
}

@media (prefers-reduced-motion: reduce){
  .ghb-blog__more-btn{ transition:none; }
  .ghb-blog__thumb img{ transform:none; }
}





/* =========================================================
   7) Footer
========================================================= */
.ghb-footer{
  padding: 64px 0 120px; /* sticky CTA 공간 감안 */
  border-top: 1px solid var(--ghb-border);
  background:
    radial-gradient(1200px 600px at 50% -20%, rgba(180,140,255,0.12), transparent 60%),
    radial-gradient(900px 500px at 70% 120%, rgba(110,231,255,0.10), transparent 55%),
    var(--ghb-bg);
}

.ghb-footer-inner{ display: grid; gap: 26px; }

.ghb-footer-top{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
}
@media (min-width: 900px){
  .ghb-footer-top{ grid-template-columns: 1fr auto; }
}

.ghb-footer-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ghb-footer-brand img{ height: 44px; width: auto; }
.ghb-footer-brand-text{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.ghb-cta-btn--footer{
  padding: 12px 16px;
  font-weight: 900;
}

.ghb-footer-menu{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ghb-footer-menu a{
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--ghb-muted);
  transition: background .18s var(--ghb-ease), transform .18s var(--ghb-ease);
}
.ghb-footer-menu a:hover{
  background: rgba(255,255,255,0.07);
  transform: translateY(-1px);
  color: var(--ghb-text);
}

.ghb-footer-bottom{
  display: grid;
  gap: 8px;
  color: var(--ghb-dim);
  font-size: 13px;
  line-height: 1.6;
}

.ghb-footer-copy,
.ghb-footer-note{ margin: 0; }
