/* BASIC css start */
#skin_preview_wrap{display:none !important}


.overlay_bg{position:relative;}
.overlay_bg .overlay_{
    position: absolute;
    right: 0;
    width: 147px;
    bottom: 344px;
    left: 394px;
    transform: rotateZ(-34deg);}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */

:root {
  --white:   #FFFFFF;
  --off:     #F7F5F2;
  --dark:    #111110;
  --red:     #C0392B;
  --gray:    #888580;
  --light:   #E8E4DE;
}

html:has(body#hwasa) { scroll-behavior: smooth; }
body#hwasa{
    overflow-x: hidden;}
    
body#hwasa #section_wrap{
  background: var(--white);
  color: var(--dark);
 font-family: 'Inter', 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
  font-weight: 300; 
    min-width: 1400px;
 _overflow-x: hidden;
}

#hwasa_plan{
    max-width: 1920px;
    margin: auto;
    padding: 0 5%;}
    
#hwasa_plan img {border-radius: 10px; display: block; width: 100%;}

/* ══════════════════════════════════════════
   SCROLL ANIMATION — 양방향
   ↓ 내릴 때: 아래서 올라오며 등장
   ↑ 올릴 때: 위에서 내려오며 재등장
   → 뷰포트 벗어나면 다시 숨겨짐 (budhi-mudra 방식)
══════════════════════════════════════════ */

/* 기본 숨김 상태 */
.reveal,
.reveal-left,
.reveal-right,
.reveal-fade,
.reveal-scale { will-change: opacity, transform; }

/* 아래서 올라오기 (기본) */
.reveal {
  opacity: 0;
  transform: translateY(30px); /* 48px에서 30px로 축소 */
  transition: opacity 1.2s cubic-bezier(.22,1,.36,1),
              transform 1.2s cubic-bezier(.22,1,.36,1);
}

/* 스크롤 올릴 때는 위에서 내려옴 */
.reveal.exit-up {
  opacity: 0;
  transform: translateY(-32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1),
              transform .7s cubic-bezier(.22,1,.36,1);
}

/* 왼쪽 슬라이드 */
.reveal-left {
  opacity: 0;
  transform: translateX(-56px);
  transition: opacity 1.2s cubic-bezier(.22,1,.36,1),
              transform 1.2s cubic-bezier(.22,1,.36,1);
}
.reveal-left.exit-up {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1),
              transform .7s cubic-bezier(.22,1,.36,1);
}

/* 오른쪽 슬라이드 */
.reveal-right {
  opacity: 0;
  transform: translateX(56px);
  transition: opacity 1.2s cubic-bezier(.22,1,.36,1),
              transform 1.2s cubic-bezier(.22,1,.36,1);
}


.sec1-img-sq .double{position:relative}
.sec1-img-sq .double .ph p{}
.sec1-img-sq .double .ph p img{}

.reveal-right.exit-up {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1),
              transform .7s cubic-bezier(.22,1,.36,1);
}

/* 페이드 */
.reveal-fade {
  opacity: 0;
  transition: opacity 1.4s ease;
}
.reveal-fade.exit-up {
  opacity: 0;
  transition: opacity .7s ease;
}

/* 스케일 */
.reveal-scale {
  opacity: 0;
  transform: scale(.93);
  transition: opacity 1.3s cubic-bezier(.22,1,.36,1),
              transform 1.3s cubic-bezier(.22,1,.36,1);
}
.reveal-scale.exit-up {
  opacity: 0;
  transform: scale(.97);
  transition: opacity .7s ease, transform .7s ease;
}

/* 등장 상태 (is-visible) — exit-up보다 우선순위 낮아야 함 */

.is-visible {
  opacity: 1 !important;
  transform: none  !important; /* none 대신 명시적인 수치 사용 */
}

/* 지연 */
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .44s; }

/* 텍스트 라인 클립 */
.clip-line  { overflow: hidden; }
.clip-inner {
  display: block;
  transform: translateY(105%);
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.clip-line.visible   .clip-inner { transform: translateY(0); }
.clip-line.exit-clip .clip-inner {
  transform: translateY(-105%);
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}

.ph {
  display:flex; align-items:center; justify-content:center;
  color:#9A948C; font-size:.65rem; letter-spacing:.2em; text-transform:uppercase;
  overflow:hidden; position:relative;
}
.ph::after {/*
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(135deg,rgba(255,255,255,.15) 0%,transparent 60%);
  pointer-events:none;*/
}

.hero {    position: relative;
    margin: auto;
    max-width: 1920px;
}

.hero span{color:#D50D00; font-size:64px; font-weight:400; }
.hero span.line1{}
.hero span.line2{}

.hero-img {
  inset:0;
  opacity:0;
  transform: scale(1.05);
  transition: opacity 1.8s cubic-bezier(.22,1,.36,1),
  transform 1.8s cubic-bezier(.22,1,.36,1);
}

.hero-img .ph { /*_background: #D0D1D2;width:100%; height:100%; justify-content: flex-end;*/ }

.hero-img .ph img{border-radius: 0 !important;}

.hero-title {
  position:absolute;
  top: 50%;
  margin-top: -120px;
  left: 5%;
  z-index:3;
  opacity:0;
  transform:translateY(28px);
  transition: opacity 1.4s cubic-bezier(.22,1,.36,1),
              transform 1.4s cubic-bezier(.22,1,.36,1);
}

.hero-sub {
  position:absolute;
  top: 50%;
  margin-top: -120px;
  right:5%;
  font-family:'Cormorant Garamond', serif;
  font-style:italic;
  font-size: clamp(.75rem, 1.2vw, 1.1rem);
  color:var(--red);
  z-index:3;
  letter-spacing:.04em;
  opacity:0;
  transform:translateY(18px);
  transition: opacity 1.4s cubic-bezier(.22,1,.36,1) .3s,
              transform 1.4s cubic-bezier(.22,1,.36,1) .3s;
}

.sec1 {
  padding: 123px 0 329px
  background: var(--white);
}
.sec1-head {
  margin-bottom: 151px;
}
.sec1-head .eyebrow {
  margin-bottom:33px;
}

.sec1-head .eyebrow img{
    width: 450px !important;
    margin: 123px auto 0;}

.sec1-head .body-text {
    font-size: 20px;
    line-height: 1.5em;
    color: #222222;
    margin: auto;
    text-align: center;
    font-weight: 500;
    letter-spacing: -.015em;
}
.sec1-video{margin-bottom: 150px;}


.sec1-images {
    display: flex;
    gap: 7.7%;
    align-items: center;
    margin: 0 8.3% auto;
    justify-content: space-between;
    margin-left: 0;
    margin-right: 0;
}

.sec1-img-tall {
    width: 51.15%;}
    
.sec1-img-tall .ph { _aspect-ratio:3/4; }
.sec1-img-sq {
    display: block;
    width: 40.45%;
    margin-left: 0;
    margin-top: -10%;
}
.sec1-img-sq .ph {
    overflow: visible;
    display: flex;
    margin-right: auto;
    justify-content: flex-start;}


.sec2 {
    position: relative;
    padding: 329px 0 202px;
    display: flex;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    flex-direction: column;
    align-items: center;
}

.sec2-left{
    width: 100%;
    display: flex;}
    

.sec2-left .small-label {
    z-index: 2;
    font-size: 32px;
    color: #D2281D;
    line-height: 1.4em;
    font-weight: 500;
    padding-left: 5%;
    position: absolute;
    top: 40%;
}

.sec2-left .small-text {
  font-size:.78rem;
  line-height:1.9;
  color:#5A5550;
  max-width:240px;
}

.sec2-right {
    position: absolute;
    bottom: 0;
}

.sec2-right .big-italic {
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size: clamp(3.5rem, 9vw, 9.5rem);
  font-weight:400;
  color:var(--dark);
  letter-spacing:-.02em;
  line-height:.95;
}
.sec2-right .big-italic .red { color:var(--red); }

.sec3 {
    padding: 202px 0 302px;
    display: flex;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    align-content: space-between;
    margin-top: calc(20% - 202px);
}

.sec3-left{
    display: flex;
    width: 100%;
    flex-direction: row;}

.sec3-left .sec3-left--{
    display: flex;
    width: 100%;}

.sec3-left .sec3-left-- .sec3-left-txt{
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;}

.sec3-left .italic-title {
    margin-left: 7%;
  margin-bottom:35px;
}

.sec3-left .italic-title img{width:520px !important;}

.sec3-left .desc {
    font-size: 20px;
    line-height: 1.4em;
    color: #D2281D;
    font-weight: 500;
    text-align: right;
}
.sec3-img-a.reveal-fade.is-visible {
    position: relative;
    display: block;
    width: 100%;
}


.sec3-right {/*
    display: flex;
    align-items: start;
    flex-direction: column;
    margin-left: auto
    justify-content: flex-start;*/
}

.sec3-img-a .ph {
    position: relative;
    justify-content: space-between; overflow: visible; display: block;}

.sec3-right .sec3-img-a .ph img:nth-child(1){width: 85% !important; margin-bottom: -20%; margin-top: -20%; float: right;}
.sec3-right .sec3-img-a .ph img:nth-child(2){}

.sec3-img-b { margin-top:30%; }
.sec3-img-b .ph {}

.sec3-bottom{width: 100%;}
.sec3-bottom .ph{display:flex}
.sec3-bottom .ph img:nth-child(1){width: 55% !important; flex-shrink: 0;}
.sec3-bottom .ph img:nth-child(2){width: 56% !important; position: absolute; right: 0; bottom: -30%; z-index: -1;}

.sec4 {
    margin-top: 300px;
    padding: 0 0 302px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 155px;
    align-items: start;
}

.sec4-left .ph {}

.sec4-right {
    margin-top: 35%;
    display: flex;
    flex-direction: column;
}

.sec4-right .red-small {
    color: #D2281D;
    font-size: 20px;
    line-height: 1.4em;
    font-weight: 500;
}

.sec4-right .small-img{
    margin-left: auto;
    width: 80%;}

.sec4-right .right-text {
    margin-left: 0;
    color: #D2281D;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 1.4em;
    font-weight: 500;
    margin-top: 89px;
    margin-bottom: 81px;
}

.sec4-right .small-img .ph{
    display: flex;
    flex-direction: column;
    align-items: flex-start;}


.sec5 {
  padding: 0;
  background:var(--white);
}
.sec5-img .ph margin: 0 auto 250px;}

.sec6 {padding: 0 0 20%;}

.sec6-title {
    width: 382px;
    margin: 250px auto 96.81px;
}

.sec6 .ph{aspect-ratio: initial !important;}

.products {
    display: grid;
    gap: 80px 8px;
    grid-template-columns: repeat(4, 1fr);
    margin: 0px 0 346px;
}

.product-item {}
.product-img .ph { aspect-ratio:3/4; }
.product-img .ph img{border-radius:0 !important; width: 100%;}

.product-name {
    font-size: 16px;
    color: rgb(34, 34, 34);
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1;
    padding: 15px 9px 3px;
}

.product-subname{
    color: rgb(34, 34, 34);
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 15px;
    line-height: 1.4em;
    word-break: keep-all;
    padding: 0 9px 3px;}
    
.product-price {
    font-size: 16px;
    color: rgb(34, 34, 34);
    padding: 0 9px;
}

.product-price strike{
    font-size: 12px;
    color: #bbb;
    display: block;
    _font-family: 'Montserrat';
}



.product-price span.price_d{
    margin-right: 5px;
    font-size: 16px;
    color: #E30000;
    font-weight: bold;
    _font-family: 'Montserrat';}
    

.product-price span.price{
    font-size: 16px;
    color: #000;
    font-weight: bold;
    _font-family: 'Montserrat';}



.footer {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-position: center;
    background-size: cover;    
}

.footer-bg {_opacity:0}
.footer-bg .ph { width:100%; height:100%; _background:#222; }

.footer-bg img{ */
    border-radius: 0 !important;_opacity:0}

.footer-content { 

    margin-top: -5%;
    z-index: 2;
    text-align: center;
    color: var(--white);
    position: absolute;
}
.footer-content .big-title {
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight:400;
  line-height:1.05;
  letter-spacing:-.01em;
}
.footer-content .big-title .red { color:var(--red); }

.footer-content .foot-sub {
    margin-top: 27px;
    font-size: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.4em;
    font-weight: 300;
}
.footer-bottom{
    position: absolute;
    bottom: 102px;
    width: 261px;}

@media(max-width:768px){
  .sec1-images,
  .sec2, .sec3, .sec4 { grid-template-columns:1fr; }
  .sec3-right         { grid-template-columns:1fr 1fr; }
  .sec2-right .big-italic { font-size:clamp(3rem,12vw,5.5rem); }
  .products           { grid-template-columns:repeat(2,1fr); }
  .sec5-img .ph       { aspect-ratio:3/4; max-width:100%; }
}

.guide {
  position:fixed; bottom:24px; right:24px;
  background:var(--dark); color:var(--white);
  width:260px; padding:18px 20px;
  font-size:.72rem; line-height:1.8;
  z-index:999; border-radius:2px;
  box-shadow:0 6px 30px rgba(0,0,0,.35);
}
.guide strong {
  display:block; margin-bottom:8px;
  font-size:.78rem; letter-spacing:.08em; text-transform:uppercase;
}
.guide em { color:#C0392B; font-style:normal; }
.guide-close {
  position:absolute; top:10px; right:14px;
  background:none; border:none; color:#888;
  font-size:1.1rem; cursor:pointer; line-height:1;
}
/* BASIC css end */

