/* Main page specific styles */
.key-font{
  font-family:"ChungjuKimSaeng", "Pretendard", sans-serif;
  font-weight:400;
  letter-spacing:.01em;
}

.section-title{
  margin:0 0 14px;
  font-size:clamp(32px, 4.6vw, 54px);
  color:#2d4a3e;
  letter-spacing:-0.4px;
  text-align:center;
}

.section-sub{
  margin:0 auto 38px;
  width:min(760px, 94%);
  color:rgba(61,90,80,.78);
  font-size:15px;
  line-height:1.75;
  text-align:center;
}

.hero{
  position:relative;
  min-height:78vh;
  padding:92px 0 40px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("../../../img/main-bg.svg") center 85%/cover no-repeat;
  opacity:.12;
  pointer-events:none;
  z-index:0;
}

.hero .wrap{
  position:relative;
  width:min(1100px, 92vw);
  margin:0 auto;
  min-height:auto;
  padding:0 20px;
  background:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  z-index:1;
}

.hero .wrap::before{
  display:none;
}

.hero-badge{
  display:inline-block;
  background:rgba(45,74,62,.09);
  border:1px solid rgba(45,74,62,.16);
  color:#2d4a3e;
  font-size:12px;
  font-weight:600;
  letter-spacing:1.6px;
  padding:6px 16px;
  border-radius:999px;
  margin-bottom:22px;
}

.hero-title{
  margin:0;
  font-size:clamp(32px, 5.6vw, 68px);
  line-height:1.14;
  letter-spacing:-1.1px;
  color:#2d4a3e;
  font-family:"ChungjuKimSaeng", "Pretendard", sans-serif;
  font-weight:400;
}

.hero-keyline-bottom{
  display:inline;
}

.hero-title .accent{
  color:#c8600a;
}

.hero-desc{
  margin:30px auto 0;
  width:min(620px, 94%);
  color:rgba(61,90,80,.82);
  font-size:16px;
  line-height:1.85;
}

.hero-cta{
  display:flex;
  gap:12px;
  margin-top:40px;
  flex-wrap:wrap;
  justify-content:center;
}

.hero .btn{
  border-radius:999px;
  padding:14px 32px;
  font-size:15px;
  font-weight:700;
  letter-spacing:.2px;
}

.hero .btn-primary{
  background:#c8600a;
  color:#fff;
  box-shadow:0 12px 28px rgba(200,96,10,.26);
}

.hero .btn-primary:hover{
  background:#e07830;
  transform:translateY(-2px);
}

.hero .btn-saju{
  background:#2d4a3e;
  color:#fff;
  box-shadow:0 12px 28px rgba(45,74,62,.28);
}

.hero .btn-saju:hover{
  background:#4a7060;
  transform:translateY(-2px);
}

.hero .btn-ghost{
  background:transparent;
  border:2px solid #2d4a3e;
  color:#2d4a3e;
}

.hero .btn-ghost:hover{
  background:#2d4a3e;
  color:#fff;
}

.hero .btn-tarot{
  background:linear-gradient(145deg, #4a2c6e, #7c4db0);
  color:#fff;
  border:0;
  box-shadow:0 12px 28px rgba(74,44,110,.32);
}

.hero .btn-tarot:hover{
  background:linear-gradient(145deg, #5a357f, #9362cb);
  transform:translateY(-2px);
}

.hero-scroll{
  margin-top:44px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}

.hero-scroll span{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(61,90,80,.72);
}

.scroll-line{
  width:1px;
  height:40px;
  background:linear-gradient(to bottom, #c8600a, transparent);
  animation:scrollPulse 1.6s ease-in-out infinite;
}

@keyframes scrollPulse{
  0%,100%{ opacity:1; transform:scaleY(1); transform-origin:top; }
  50%{ opacity:.4; transform:scaleY(.55); }
}

.worry-section{
  background:
    radial-gradient(circle at top left, rgba(210,123,47,.18) 0%, transparent 32%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.08) 0%, transparent 24%),
    linear-gradient(180deg, #31473d 0%, #26362f 100%);
  padding:94px 0;
  position:relative;
  overflow:hidden;
}

.worry-section::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:min(1040px, 92vw);
  height:1px;
  background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.22) 20%, rgba(255,255,255,.22) 80%, rgba(255,255,255,0) 100%);
  transform:translateX(-50%);
  pointer-events:none;
}

.worry-head{
  width:min(760px, 92%);
  margin:0 auto 42px;
  text-align:center;
}

.worry-eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.76);
  font-size:11px;
  font-weight:700;
  letter-spacing:.8px;
}

.worry-title{
  margin:18px 0 0;
  text-align:center;
  color:#fff;
  font-size:clamp(32px, 4vw, 48px);
  line-height:1.2;
  font-family:"Pretendard", sans-serif;
  font-weight:800;
  letter-spacing:-1.3px;
}

.worry-sub{
  margin:16px auto 0;
  width:min(640px, 100%);
  text-align:center;
  color:rgba(255,255,255,.72);
  font-size:15px;
  line-height:1.85;
}

.worry-sub strong{
  color:#fff;
  font-weight:700;
}

.worry-sub-break{
  display:inline;
}

.saju-sub-break{
  display:inline;
}

.tarot-sub-break{
  display:inline;
}

.worry-grid{
  width:min(1080px, 96%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.worry-card{
  text-decoration:none;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:262px;
  padding:22px 22px 20px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.05) 100%);
  box-shadow:0 18px 30px rgba(7,16,13,.18);
  transition:transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.worry-card:hover{
  transform:translateY(-6px);
  border-color:rgba(210,123,47,.5);
  background:linear-gradient(180deg, rgba(255,255,255,.15) 0%, rgba(255,255,255,.08) 100%);
  box-shadow:0 26px 38px rgba(7,16,13,.24);
}

.worry-card:focus-visible{
  outline:none;
  transform:translateY(-6px);
  border-color:rgba(210,123,47,.54);
  box-shadow:0 0 0 3px rgba(210,123,47,.14), 0 26px 38px rgba(7,16,13,.24);
}

.worry-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.worry-index{
  color:rgba(255,255,255,.42);
  font-size:11px;
  font-weight:700;
  letter-spacing:2.6px;
}

.worry-service{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid transparent;
  font-size:12px;
  font-weight:800;
  letter-spacing:.2px;
}

.worry-service-saju{
  background:rgba(210,123,47,.14);
  border-color:rgba(210,123,47,.28);
  color:#f1c392;
}

.worry-service-taro{
  background:rgba(138,114,194,.18);
  border-color:rgba(138,114,194,.3);
  color:#dbc8ff;
}

.worry-service-gunghap{
  background:rgba(120,179,139,.18);
  border-color:rgba(120,179,139,.28);
  color:#c4f0ce;
}

.worry-card-body{
  margin-top:22px;
}

.worry-label{
  margin:0;
  color:rgba(255,255,255,.64);
  font-size:12px;
  font-weight:700;
  letter-spacing:.8px;
}

.worry-q{
  margin:10px 0 0;
  color:#fff;
  font-size:22px;
  line-height:1.45;
  font-weight:700;
}

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

.worry-card-foot{
  margin-top:24px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.worry-fit{
  color:rgba(255,255,255,.62);
  font-size:12px;
  line-height:1.5;
}

.worry-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff;
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}

.worry-link::after{
  content:"\2192";
  transition:transform .2s ease;
}

.worry-card:hover .worry-link::after{
  transform:translateX(3px);
}

.insight-section{
  padding-top:84px;
  padding-bottom:70px;
}

.insight-section.is-tarot{
  position:relative;
  overflow:hidden;
  background:linear-gradient(165deg, #d4e4d6 0%, #bdd2c1 52%, #d9e9db 100%);
}

.insight-section.is-tarot .wrap{
  position:relative;
  z-index:1;
}

.insight-section.is-tarot .section-title{
  color:#2b4b3f;
}

.insight-section.is-tarot .section-sub{
  color:rgba(53,80,69,.84);
}

.insight-desc{
  width:min(980px, 96%);
  margin:0 auto 20px;
  background:linear-gradient(135deg, rgba(45,74,62,.06) 0%, rgba(200,96,10,.05) 100%);
  border:1px solid rgba(45,74,62,.12);
  border-left:4px solid #2d4a3e;
  border-radius:0 14px 14px 0;
  padding:22px 24px;
}

.insight-desc p{
  margin:0;
  color:rgba(61,90,80,.9);
  font-size:14px;
  line-height:1.85;
}

.insight-desc p + p{
  margin-top:10px;
}

.insight-desc.is-tarot{
  background:linear-gradient(135deg, rgba(255,255,255,.78) 0%, rgba(244,249,245,.88) 100%);
  border:1px solid rgba(61,90,80,.2);
  border-left:4px solid #3d6a55;
  box-shadow:0 8px 18px rgba(53,84,67,.08);
}

.insight-desc.is-tarot p{
  color:rgba(53,76,65,.9);
}

.insight-grid{
  width:min(980px, 96%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.insight-card{
  background:#fff;
  border:1px solid rgba(45,74,62,.12);
  border-radius:16px;
  padding:18px 16px;
  box-shadow:0 10px 20px rgba(45,74,62,.08);
}

.insight-card h3{
  margin:0;
  color:#2d4a3e;
  font-size:23px;
  font-weight:400;
}

.insight-card p{
  margin:8px 0 0;
  color:#4b645b;
  font-size:13px;
  line-height:1.75;
}

.insight-card.is-tarot{
  background:linear-gradient(160deg, #f4faf5 0%, #e4efe7 100%);
  border-color:rgba(53,84,67,.24);
  box-shadow:0 10px 20px rgba(53,84,67,.12);
}

.insight-card.is-tarot h3{
  color:#284739;
}

.insight-card.is-tarot p{
  color:rgba(57,84,73,.9);
}

#faq{
  padding-top:86px;
}

.faq-list{
  width:min(980px, 96%);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:0;
}

.faq-item{
  border:0;
  border-bottom:1px solid rgba(45,74,62,.2);
  padding:0 6px;
  background:transparent;
}

.faq-item:first-child{
  border-top:1px solid rgba(45,74,62,.2);
}

.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:18px 26px 18px 0;
  position:relative;
  color:#2d4a3e;
  font-size:clamp(15px, 1.1vw, 18px);
  font-weight:700;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  color:rgba(61,90,80,.7);
  font-size:20px;
  line-height:1;
}

.faq-item[open] summary::after{
  content:"-";
}

.faq-item p{
  margin:0;
  padding:0 0 18px;
  color:rgba(61,90,80,.84);
  font-size:14px;
  line-height:1.75;
}

.btn-review-more{
  font-weight:600;
}

.btn-faq-more{
  font-weight:600;
}

#service .grid-3{
  justify-items:center;
}

#service .svc{
  width:min(320px, 100%);
  background:linear-gradient(180deg, #fcf7ee 0%, #f3eadc 100%);
  border-color:rgba(92,78,57,.24);
  box-shadow:
    0 10px 22px rgba(79,64,41,.09),
    inset 0 -1px 0 rgba(92,78,57,.24);
  position:relative;
  overflow:hidden;
  isolation:isolate;
  transform:translateZ(0);
  transition:transform .32s cubic-bezier(.22,.61,.36,1), box-shadow .32s ease, border-color .32s ease, filter .32s ease;
}

#service .svc > *{
  position:relative;
  z-index:1;
}

#service .svc::after{
  content:"";
  position:absolute;
  top:-120%;
  left:-65%;
  width:64%;
  height:260%;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.40) 36%,
    rgba(255,255,255,.98) 52%,
    rgba(255,255,255,.34) 68%,
    rgba(255,255,255,0) 100%
  );
  transform:rotate(24deg) translateX(-220%);
  opacity:0;
  pointer-events:none;
  z-index:3;
  mix-blend-mode:screen;
}

#service .svc::before{
  content:"";
  position:absolute;
  top:-130%;
  left:-78%;
  width:50%;
  height:280%;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.26) 38%,
    rgba(255,255,255,.82) 52%,
    rgba(255,255,255,.22) 66%,
    rgba(255,255,255,0) 100%
  );
  transform:rotate(24deg) translateX(-300%);
  opacity:0;
  pointer-events:none;
  z-index:3;
  mix-blend-mode:screen;
}

#service .svc:hover{
  transform:translateY(-14px) scale(1.07);
  border-color:rgba(176,132,72,.64);
  filter:saturate(1.14) brightness(1.05);
  box-shadow:
    0 36px 58px rgba(79,64,41,.32),
    0 0 0 1px rgba(176,132,72,.48) inset,
    inset 0 -1px 0 rgba(108,79,44,.52),
    0 0 70px rgba(244,213,160,.48);
}

#service .svc:hover::after{
  opacity:1;
  animation:svc-shine-sweep 1.05s cubic-bezier(.18,.72,.25,1) forwards;
}

#service .svc:hover::before{
  opacity:1;
  animation:svc-shine-sweep-2 1.05s cubic-bezier(.18,.72,.25,1) .22s forwards;
}

@keyframes svc-shine-sweep{
  0%{
    transform:rotate(24deg) translateX(-220%);
  }
  100%{
    transform:rotate(24deg) translateX(360%);
  }
}

@keyframes svc-shine-sweep-2{
  0%{
    transform:rotate(24deg) translateX(-380%);
  }
  100%{
    transform:rotate(24deg) translateX(500%);
  }
}

@media (prefers-reduced-motion: reduce){
  #service .svc:hover::after{
    animation:none;
    opacity:0;
  }

  #service .svc:hover::before{
    animation:none;
    opacity:0;
  }
}

#service .svc-menu-image{
  order:-1;
  /* margin:2px 0 4px; */
  width:100%;
  /* aspect-ratio:7 / 10; */
  border-radius:10px;
  overflow:hidden;
  /* border:1px solid rgba(31,42,36,.14); */
  box-shadow:0 8px 20px rgba(0,0,0,.10);
  transition:transform .3s ease, box-shadow .3s ease;
}

#service .svc-menu-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:none;
}

#service .svc:hover .svc-menu-image{
  box-shadow:0 22px 34px rgba(0,0,0,.26);
}

#service .price{
  margin-top:0;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  text-align:center;
}

#service .price-origin{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  gap:4px;
  color:rgba(46,66,57,.86);
  text-decoration:line-through;
  text-decoration-thickness:1.8px;
  text-decoration-color:rgba(46,66,57,.7);
}

#service .price-origin .num{
  font-size:21px;
  font-weight:800;
  letter-spacing:-0.1px;
  color:inherit;
}

#service .price-origin .unit{
  font-size:14px;
  font-weight:700;
  color:inherit;
}

#service .price-sale{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  gap:6px;
  flex-wrap:nowrap;
  white-space:nowrap;
}

#service .svc-bottom{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
  gap:10px;
}

#service .price-sale .label{
  padding:3px 7px;
  border-radius:999px;
  background:rgba(201,106,30,.16);
  color:#7f5a2f;
  font-size:11px;
  font-weight:800;
  line-height:1;
  transform:translateY(2px);
}

#service .price-sale .num{
  font-size:30px;
  font-weight:1000;
  letter-spacing:-0.3px;
  color:#C96A1E;
  line-height:1;
}

#service .price-sale .unit{
  font-size:15px;
  color:var(--ink-500);
  font-weight:800;
  line-height:1;
  transform:translateY(2px);
}

#service .price-sale .note{
  margin-left:4px;
  font-size:12px;
  font-weight:700;
  color:#8a5a38;
  line-height:1.2;
  white-space:nowrap;
}

#service .btn-small{
  background:#3a5648;
  border-color:#2f453a;
  color:#f6f2ea;
  box-shadow:0 8px 16px rgba(30,50,41,.18);
  width:100%;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
}

#service .btn-small:hover{
  background:#4a6a59;
  border-color:#3a5648;
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 12px 22px rgba(30,50,41,.24);
}

#service .svc.featured .svc-menu-image{
  border-color:rgba(218,178,255,.35);
  box-shadow:0 10px 24px rgba(16,6,34,.35);
}

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

@media (max-width: 700px){
  .hero{
    min-height:88vh;
    padding:84px 0 48px;
  }

  .hero .wrap{
    padding:0 14px;
  }

  .hero-title{
    font-size:34px;
    line-height:1.15;
  }

  .hero-keyline-bottom{
    display:block;
  }

  .hero-desc{
    font-size:13px;
    line-height:1.75;
  }

  .hero .btn{
    font-size:13px;
    padding:12px 22px;
  }

  .worry-grid,
  .insight-grid{
    grid-template-columns:1fr;
  }

  .worry-title{
    font-size:32px;
  }

  .worry-sub{
    font-size:14px;
    line-height:1.75;
  }

  .worry-sub-break{
    display:block;
  }

  .section-sub{
    font-size:13px;
    margin-bottom:30px;
  }

  .worry-card{
    min-height:auto;
    padding:20px 18px 18px;
    border-radius:18px;
  }

  .worry-q{
    font-size:19px;
  }

  .worry-desc{
    font-size:13px;
  }

  .worry-card-foot{
    flex-direction:column;
    align-items:flex-start;
  }

  .saju-sub-break{
    display:block;
  }

  .tarot-sub-break{
    display:block;
  }

  .faq-item{
    padding:0 2px;
  }

  .faq-item summary{
    font-size:13px;
    padding:14px 22px 14px 0;
  }

  .faq-item p{
    padding-bottom:14px;
    font-size:12px;
  }

  .insight-grid .key-font{
    font-size:20px;
  }
}
