:root{
  --find-coral:#EF4044;
  --find-coral-deep:#C92E32;
  --find-ink:#241C1A;
  --find-ink-soft:#6B615C;
  --find-paper:#FFFFFF;
  --find-line:rgba(36,28,26,0.12);
  --find-section-gap:100px;
  --find-frame-pad:clamp(16px, 22.03vw, 423px);
  --find-font:'Pretendard','Apple SD Gothic Neo','Malgun Gothic',sans-serif;
  --find-serif:'Noto Serif KR','Nanum Myeongjo','Apple Myungjo','Batang',serif;
  --find-paper-warm:#F7F5F2;
  --find-promo-h:0px;
  --find-gnb-h:56px;
  --find-nav-offset:56px;
  --find-subtab-h:48px;
}
*{box-sizing:border-box; margin:0; padding:0;}
body{
  font-family:var(--find-font);
  background:transparent;
  color:var(--find-ink);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
  padding-bottom:260px;
}
.find-page{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:var(--find-section-gap);
  width:100%;
  max-width:1920px;
  margin:0 auto;
  background:transparent;
  overflow:visible;
}
img{display:block;}

/* GNB + 서브탭 이중 고정 (QA #423-1)
   프로모: fixed / 메인 GNB: fixed(짧은 header sticky는 스크롤 시 풀림) / 미니 GNB: sticky */
/* sticky offset 변수는 :root / JS에서 관리 */
body.find-landing-on .site-header-sticky-stack{
  position:relative;
  z-index:auto;
  background:transparent;
}
body.find-landing-on .site-header-sticky-stack .navbar.sticky-top,
body.find-landing-on .site-header-sticky-stack > nav{
  position:fixed;
  top:var(--find-promo-h);
  left:0;
  right:0;
  width:100%;
  z-index:1030;
  background:#fff;
}
body.find-landing-on .navbar.sticky-top.top-nav--below-promo{
  top:var(--find-promo-h);
}
body.find-landing-on .site-header-sticky-stack::after{
  content:'';
  display:block;
  height:var(--find-gnb-h);
}
.find-subtab{
  position:sticky;
  top:var(--find-nav-offset);
  z-index:1020;
  width:100%;
  background:#FAFAFA;
  border-bottom:1px solid var(--find-line);
}
.find-subtab__inner{
  display:flex;
  align-items:stretch;
  justify-content:flex-start;
  gap:28px;
  width:100%;
  /* PC GNB(.navbar-content)와 동일 폭·좌측 라인 */
  max-width:1072px;
  margin:0 auto;
  padding:0 16px;
}
.find-subtab__item{
  flex:0 0 auto;
  text-align:left;
  padding:14px 2px 12px;
  font-size:14px;
  font-weight:500;
  color:var(--find-ink);
  text-decoration:none;
  line-height:1.4;
  border-bottom:none;
  box-shadow:none;
}
.find-subtab__item.is-active{
  color:var(--find-coral);
  font-weight:600;
  border-bottom:none;
  box-shadow:none;
}

.find-hero{
  display:flex;
  width:1920px;
  max-width:100%;
  margin:0 auto;
  padding:0;
  background:transparent;
  line-height:0;
}
.find-hero-banner{
  display:block;
  width:1920px;
  max-width:100%;
  text-decoration:none;
}
.find-hero-banner img{
  width:1920px;
  max-width:100%;
  height:auto;
}
.find-visual{
  display:flex;
  width:100%;
  max-width:1920px;
  margin:0 auto;
  padding:0 var(--find-frame-pad);
  background:transparent;
  line-height:0;
}
.find-visual__img{
  width:100%;
  height:auto;
  background:transparent;
}

/* #423-3 여정(원형 이미지) + 주기 버튼(HTML) — Figma find-content-10 합성 시안 */
.find-journey{
  width:100%;
  max-width:1920px;
  margin:0 auto;
  padding:60px;
  background-color:var(--find-paper-warm);
  background-image:url('../imgs/find/v2/find-paper-texture.png');
  background-size:200px 200px;
  background-repeat:repeat;
  box-sizing:border-box;
}
.find-journey__title{
  font-family:var(--find-serif);
  font-size:clamp(22px, 2.4vw, 28px);
  font-weight:600;
  line-height:1.4;
  letter-spacing:-0.02em;
  color:var(--find-ink);
  margin:0 0 40px;
}
.find-journey__steps{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:8px 12px;
  margin:0 0 40px;
  padding:0;
  width:100%;
}
.find-journey__step{
  position:relative;
  text-align:center;
  min-width:0;
}
.find-journey__step:not(:last-child)::after{
  content:'';
  position:absolute;
  top:44px;
  left:calc(50% + 48px);
  width:calc(100% - 96px);
  height:1px;
  background:#C9C3BD;
  pointer-events:none;
}
.find-journey__step:not(:last-child)::before{
  content:'';
  position:absolute;
  top:42px;
  left:calc(100% - 2px);
  width:5px;
  height:5px;
  border-radius:50%;
  background:#B0A9A2;
  z-index:1;
  pointer-events:none;
}
.find-journey__photo{
  width:88px;
  height:88px;
  border-radius:50%;
  margin:0 auto 10px;
  object-fit:cover;
  display:block;
}
.find-journey__name{
  font-family:var(--find-serif);
  font-size:15px;
  font-weight:600;
  margin:0 0 4px;
  color:var(--find-ink);
  letter-spacing:-0.01em;
}
.find-journey__desc{
  font-size:12px;
  line-height:1.45;
  font-weight:400;
  color:#8A827C;
  margin:0;
}
.find-journey .find-cycle{
  padding:0;
  max-width:none;
  margin:0;
  width:100%;
  display:flex;
  flex-wrap:nowrap;
  align-items:center;
  gap:12px 16px;
}
.find-cycle__title{
  flex:0 0 auto;
  font-family:var(--find-serif);
  font-size:14px;
  font-weight:600;
  margin:0;
  letter-spacing:-0.02em;
  color:var(--find-ink);
  white-space:nowrap;
}
.find-cycle__row{
  flex:0 1 auto;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.find-cycle-btn{
  border:1px solid #222;
  background:#fff;
  border-radius:999px;
  padding:8px 14px;
  font-size:12px;
  font-weight:500;
  line-height:1.2;
  cursor:pointer;
  color:var(--find-ink);
  white-space:nowrap;
  transition:border-color .2s, color .2s, background .2s;
}
.find-cycle-btn.is-selected{
  border:1.5px solid var(--find-coral);
  color:var(--find-coral);
  font-weight:600;
  background:#fdf1ee;
}
.find-faq{
  padding:0 var(--find-frame-pad) 48px;
  max-width:1920px;
  margin:0 auto;
  width:100%;
}
.find-faq__title{
  font-size:22px;
  font-weight:700;
  margin-bottom:8px;
  letter-spacing:-0.02em;
}
.find-faq-item{border-top:1px solid var(--find-line);}
.find-faq-item:last-child{border-bottom:1px solid var(--find-line);}
.find-faq-q{
  width:100%;
  background:none;
  border:none;
  padding:18px 4px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  text-align:left;
  font-size:14px;
  font-weight:600;
  color:var(--find-ink);
  cursor:pointer;
}
.find-faq-q__icon{color:var(--find-ink-soft); transition:transform .25s ease;}
.find-faq-item.is-open .find-faq-q__icon{transform:rotate(180deg);}
.find-faq-a{
  padding:0 4px 16px;
  font-size:13.5px;
  color:var(--find-ink-soft);
  line-height:1.6;
}
.find-scroll-cue{
  position:fixed;
  left:50%;
  bottom:calc(120px + env(safe-area-inset-bottom));
  transform:translateX(-50%);
  z-index:50;
  font-size:12px;
  color:var(--find-ink-soft);
  background:rgba(255,255,255,.9);
  padding:6px 12px;
  border-radius:999px;
  border:1px solid var(--find-line);
  pointer-events:none;
  opacity:1;
  transition:opacity .3s ease;
}
.find-scroll-cue.is-gone{opacity:0;}

.find-reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}
.find-reveal.is-in{
  opacity:1;
  transform:none;
}

.find-body-layout{
  width:100%;
  max-width:1920px;
  margin:0 auto;
  /* 모바일·태블릿: 메인배너 ↔ 첫 콘텐츠 간격 (PC는 padding-top으로 처리) */
  margin-top:60px;
}
.find-main.find-page{
  gap:var(--find-section-gap);
}
.find-main .find-visual,
.find-main .find-faq{
  padding-left:var(--find-frame-pad);
  padding-right:var(--find-frame-pad);
}
.find-main .find-faq{
  padding-top:40px;
}

/* sticky purchase — 모바일: 하단 fixed / PC: 우측 sticky */
.find-sticky{
  position:fixed;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:100%;
  max-width:520px;
  background:var(--find-paper);
  border-top:1px solid var(--find-line);
  padding:14px 16px calc(14px + env(safe-area-inset-bottom));
  box-shadow:0 -6px 18px rgba(36,28,26,0.08);
  z-index:2147483000;
  max-height:70vh;
  overflow-y:auto;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
}
.find-sticky__name{
  font-size:14px;
  font-weight:600;
  margin-bottom:10px;
}
.find-sticky__label{
  display:block;
  font-size:12px;
  color:var(--find-ink-soft);
  margin-bottom:6px;
}
.find-sticky__select{
  width:100%;
  padding:11px 36px 11px 12px;
  border:1px solid var(--find-line);
  border-radius:6px;
  font-size:14px;
  margin-bottom:12px;
  background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23757575' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size:20px;
  -webkit-appearance:none;
  appearance:none;
}
.find-sticky__price-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  margin-bottom:12px;
  font-size:13px;
  color:var(--find-ink-soft);
}
.find-sticky__price{
  font-size:22px;
  font-weight:700;
  color:var(--find-ink);
}
.find-sticky__buy{
  width:100%;
  padding:14px;
  border:none;
  border-radius:8px;
  background:#E3D9D6;
  color:#fff;
  font-weight:700;
  font-size:15px;
  cursor:not-allowed;
  margin-bottom:8px;
}
.find-sticky__buy.is-ready:not(:disabled){
  background:var(--find-coral);
  cursor:pointer;
}
.find-sticky__buy.is-ready:not(:disabled):hover{
  background:var(--find-coral-deep);
}
.find-sticky__notice-toggle{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  border-top:1px solid var(--find-line);
  padding-top:10px;
  font-size:12.5px;
  color:var(--find-ink-soft);
  display:flex;
  justify-content:space-between;
  cursor:pointer;
}
.find-sticky__notice-body{
  font-size:12px;
  color:var(--find-ink-soft);
  padding-top:8px;
  line-height:1.6;
  text-align:left;
  max-height:min(36vh, 280px);
  overflow-y:auto;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
}
.find-sticky__notice-body h4{
  font-size:12.5px;
  font-weight:700;
  color:var(--find-ink);
  margin:12px 0 4px;
}
.find-sticky__notice-body h4:first-child{margin-top:0;}
.find-sticky__notice-body p{margin:0;}
.find-sticky__notice-body p + p{margin-top:6px;}
.find-sticky__notice-body ul{
  margin:4px 0 0;
  padding-left:16px;
}
.find-sticky__notice-body li{margin-top:2px;}
.find-sticky__msg{
  text-align:center;
  font-size:12px;
  margin-top:8px;
  color:var(--find-coral-deep);
  min-height:16px;
}

@media (min-width:900px){
  body{padding-bottom:40px;}
  .find-subtab__inner{padding:0; gap:36px;}
  .find-subtab__item{font-size:15px; padding:14px 2px 12px;}
  .find-journey{padding:60px;}
  .find-journey__title{margin-bottom:40px; font-size:28px;}
  .find-journey__steps{margin-bottom:40px;}
  .find-journey__photo{width:100px; height:100px;}
  .find-journey__step:not(:last-child)::after{top:50px; left:calc(50% + 54px); width:calc(100% - 108px);}
  .find-journey__step:not(:last-child)::before{top:48px;}
  .find-journey__name{font-size:16px;}
  .find-journey__desc{font-size:12.5px;}
  .find-cycle-btn{font-size:13px; padding:9px 16px;}

  /* PC: 본문 + 우측 구매 패널 (Figma #3) */
  .find-body-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:40px;
    align-items:start;
    max-width:1172px;
    margin-top:0; /* 모바일용 배너 간격 리셋 — padding-top으로 통일 */
    padding:40px 0 80px;
    box-sizing:border-box;
  }
  .find-main.find-page{
    max-width:none;
    gap:var(--find-section-gap);
  }
  .find-main .find-visual,
  .find-main .find-faq{
    padding-left:0;
    padding-right:0;
  }
  .find-journey{
    padding:60px;
  }
  .find-sticky{
    position:sticky;
    top:calc(var(--find-nav-offset) + var(--find-subtab-h) + 16px);
    left:auto;
    bottom:auto;
    transform:none;
    width:360px;
    max-width:360px;
    border:1px solid var(--find-line);
    border-radius:8px;
    box-shadow:0 4px 12px rgba(34,34,34,.1);
    padding:28px 20px;
    z-index:20;
    max-height:calc(100dvh - var(--find-nav-offset) - var(--find-subtab-h) - 32px);
  }
  .find-sticky__notice-body{
    max-height:min(40vh, 320px);
  }
  .find-sticky__name{font-size:20px; font-weight:700;}
}
@media (min-width:768px) and (max-width:899px){
  body{padding-bottom:280px;}
  .find-subtab__inner{padding:0; gap:36px;}
  .find-subtab__item{font-size:15px; padding:14px 2px 12px;}
  .find-journey .find-cycle__title{font-size:14px;}
  .find-sticky{max-width:560px; padding:16px 20px calc(16px + env(safe-area-inset-bottom));}
}
@media (max-width:767px){
  :root{--find-frame-pad:16px;}
  .find-journey{padding:40px 24px;}
  .find-journey__title{font-size:22px; margin-bottom:28px;}
  .find-journey__steps{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:20px 12px;
    margin-bottom:28px;
  }
  .find-journey__step:not(:last-child)::before,
  .find-journey__step:not(:last-child)::after{display:none;}
  .find-journey__photo{width:88px; height:88px;}
  .find-journey .find-cycle{
    flex-direction:column;
    align-items:flex-start;
    flex-wrap:wrap;
  }
  .find-journey .find-cycle__title{font-size:14px;}
  .find-cycle__row{width:100%;}
  .find-cycle-btn{flex:1 1 calc(50% - 8px); text-align:center;}
}
