/* =====================================================================
   LIFTON DERMATOLOGY – main page clone
   Breakpoints (from source): 1560 / 1380 / 1200 / 902 / 800 / 520
   Colors: primary #694b40, secondary #ee6c14, dark #702a13
   ===================================================================== */

/* ---------- Fonts ---------- */
@font-face { font-family: Pretendard; font-weight: 700; font-display: swap; src: local("Pretendard Bold"), url("../assets/fonts/Pretendard-Bold-BYNivUXw.woff2") format("woff2"); }
@font-face { font-family: Pretendard; font-weight: 600; font-display: swap; src: local("Pretendard SemiBold"), url("../assets/fonts/Pretendard-SemiBold-ClEDdoZU.woff2") format("woff2"); }
@font-face { font-family: Pretendard; font-weight: 500; font-display: swap; src: local("Pretendard Medium"), url("../assets/fonts/Pretendard-Medium-Dw2vNklR.woff2") format("woff2"); }
@font-face { font-family: Pretendard; font-weight: 400; font-display: swap; src: local("Pretendard Regular"), url("../assets/fonts/Pretendard-Regular-BhrLQoBv.woff2") format("woff2"); }
@font-face { font-family: Pretendard; font-weight: 300; font-display: swap; src: local("Pretendard Light"), url("../assets/fonts/Pretendard-Light-knQmDAda.woff2") format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url("../assets/fonts/open-sans-v40-latin-regular-Cjao0ETp.woff2") format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 500; font-display: swap; src: url("../assets/fonts/open-sans-v40-latin-500-CDvJACdq.woff2") format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 700; font-display: swap; src: url("../assets/fonts/open-sans-v40-latin-700-C2okHfb_.woff2") format("woff2"); }
@font-face { font-family: Prelia; font-weight: 400; font-display: swap; src: local("Prelia"), url("../assets/fonts/prelia-El7qke2c.ttf") format("truetype"); }

/* ---------- Reset (identical to source) ---------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font: inherit; vertical-align: baseline;
  font-family: Pretendard, "Open Sans", Prelia;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; max-width: 100%; overflow-x: hidden; word-break: keep-all; color: #1d1d1d; background: #fff; }
@media (max-width: 800px) { body br { display: none !important; } }
ol, ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
button { font-family: inherit; color: inherit; }
input { font-family: inherit; }
a { color: inherit; text-decoration: none; }
img { display: inline-block; }
body.no-scroll { overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

:root {
  --primary: #694b40;
  --secondary: #ee6c14;
  --dark: #702a13;
  --font-en: Prelia, sans-serif;
}

/* ---------- Keyframes ---------- */
@keyframes fadeDown { 0% { transform: translateY(-20px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes fadeUp   { 0% { transform: translateY(50px); opacity: 0; }  100% { transform: translateY(0); opacity: 1; } }
@keyframes slideIn  { 0% { transform: translateX(-50px); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }
@keyframes bgZoom   { 0% { transform: scale(1.2); } 100% { transform: scale(1); } }

/* Scroll-reveal helpers */
.reveal { opacity: 0; visibility: hidden; animation-fill-mode: forwards; }
.reveal.visible { visibility: visible; animation: fadeUp 0.8s ease-out forwards; }
.reveal--left.visible { animation-name: slideIn; }

/* =====================================================================
   Page shell
   ===================================================================== */
.page { display: flex; flex-direction: column; position: relative; }

/* ---------- Event ticker ---------- */
.ticker-wrap { display: flex; flex-direction: column; width: 100%; background-color: var(--primary); }
.ticker { width: 100%; z-index: 99; position: static; }
.ticker.is-fixed { position: fixed; top: 0; background-color: var(--primary); }
.ticker__list { height: 48px; overflow: hidden; }
.ticker__track { display: flex; flex-direction: column; will-change: transform; }
.ticker__slide { height: 48px; padding: 13px 0; box-sizing: border-box; }
.ticker__item { display: flex; align-items: center; justify-content: center; gap: 15px; cursor: pointer; }
.ticker__badge { padding: 3px 15px; background-color: #fff; border-radius: 5px; font-size: 14px; color: var(--primary); font-weight: 500; }
.ticker__title { font-size: 15px; font-weight: 500; color: #fff; }

/* ---------- Hero ---------- */
.hero-wrap { background-color: var(--primary); position: relative; z-index: 1; }
.hero { width: 100%; height: 100vh; border-radius: 50px 50px 0 0; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; }
@media (max-width: 1380px) { .hero { height: 85vh; border-radius: 0; } }
@media (max-width: 902px)  { .hero { height: 100vh; } }
.hero__bg { width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-size: cover; background-position: center; animation: bgZoom 5s linear infinite; }
.header-spacer { display: none; height: 149.16px; }
.header-spacer.is-active { display: block; }

/* ---------- Header ---------- */
.header { position: static; top: 46px; width: 100%; transition: box-shadow 0.3s ease-in-out; z-index: 10; }
.header__inner { display: flex; z-index: 10; padding: 42px 50px 0; align-items: center; justify-content: space-between; }
.header__logo { width: 180px; height: auto; cursor: pointer; display: block; }
.header__logo-link { display: block; }
.header__right { display: flex; height: 100%; align-items: center; gap: 36px; }
.header__lang-wrap { display: flex; align-items: center; }
.lang { position: relative; display: inline-block; }
.lang__btn { background: none; border: none; font-size: 24px; cursor: pointer; }
.lang__btn > div { cursor: pointer; }
.lang__list { display: none; position: absolute; background-color: var(--primary); left: -30px; z-index: 1; }
.lang.is-open .lang__list { display: block; }
.lang__item { color: #fff; padding: 10px 16px; text-decoration: none; display: flex; align-items: center; cursor: pointer; }
.lang__item:hover { background-color: #575757; }
.lang__flag { width: 20px; height: 14px; margin-right: 10px; }
.lang__code { font-family: var(--font-en); font-size: 13px; }
.header__menu-btn { display: flex; align-items: center; z-index: 10; }
.header__menu-btn > div { cursor: pointer; }
.header__line { width: 100vw; max-width: 100%; display: block; }
.header__mobile-btn { display: none; cursor: pointer; }
.header .icon-menu-desktop { display: block; }
.header .icon-menu-mobile, .header .icon-call { display: none; }

/* sticky (scrollY > 70) */
.header.is-sticky { margin: 0 auto; position: fixed; background-color: rgba(255, 255, 255, 0.6); height: 100px; backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); box-shadow: rgba(0, 0, 0, 0.08) 0 0 6px 0; top: 46px; width: 100%; z-index: 10; }
.header.is-sticky .header__inner { padding: 0 50px; height: 100px; }
.header.is-sticky .header__line { display: none; }

@media (max-width: 800px) {
  .header { position: static; }
  .header__inner { padding: 20px; align-items: center; }
  .header__logo { width: 100px; height: auto; }
  .header__right, .header__line { display: none; }
  .header__mobile-btn { display: flex; align-items: center; }
  .header.is-sticky { top: 46px; height: 60px; }
  .header.is-sticky .header__inner { padding: 0 20px; height: 60px; }
}

/* Hero text */
.hero__text { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 90vh; z-index: 1; }
.hero__title { font-size: 58px; font-weight: 400; color: var(--primary); line-height: 61px; text-align: center; white-space: pre-line; opacity: 0; animation: fadeDown 2s ease-out forwards; }
.hero__title em { font-style: normal; font-size: 58px; font-weight: 400; color: var(--secondary); line-height: 61px; text-align: center; white-space: pre-line; }
.hero__sub-wrap { margin-top: 40px; margin-bottom: 40px; text-align: center; opacity: 0; animation: fadeDown 2s ease-out 0.3s forwards; }
.hero__sub { font-size: 18px; color: var(--primary); font-weight: 400; line-height: 32px; white-space: pre-line; }
.hero__about { display: flex; align-items: center; margin-top: 40px; margin-bottom: 97px; cursor: pointer; opacity: 0; animation: fadeDown 2s ease-out 0.6s forwards; }
.hero__about-label { margin-right: 10px; }
.hero__about-label span { font-size: 16px; color: var(--primary); font-weight: 400; text-decoration: underline; text-underline-offset: 8px; }
@media (max-width: 800px) {
  .hero__title, .hero__title em { text-align: center; font-size: 7vw; line-height: 1.1; letter-spacing: 0; }
}
@media (max-width: 520px) { .hero__sub { font-size: 12px; line-height: 24px; } }

.hero__progress { position: absolute; bottom: 100px; width: 100%; display: flex; align-items: center; justify-content: center; }
.hero__progress-bar { width: 80%; background-color: #e0e0e0; overflow: hidden; }
.hero__progress-fill { height: 4px; background-color: var(--primary); width: 100%; transform: scaleX(0.166667); transform-origin: left center; transition: transform 0.3s ease-in-out; }

/* =====================================================================
   Main content
   ===================================================================== */
.main { max-width: 100%; position: relative; }
.col { display: flex; flex-direction: column; }

/* ---------- Generic carousel ---------- */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; will-change: transform; }
.carousel__slide { flex: 0 0 auto; box-sizing: border-box; outline: none; }
.carousel__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; padding: 0; border: none; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; }
.carousel__arrow--prev { left: -25px; }
.carousel__arrow--next { right: -25px; }

/* ---------- Signature ---------- */
.signature { display: flex; flex-direction: column; }
.signature__head { display: flex; align-items: flex-start; justify-content: start; flex-direction: column; padding: 150px 0 0 300px; }
@media (max-width: 1560px) { .signature__head { padding: 150px 0 0 100px; } }
@media (max-width: 1380px) { .signature__head { padding: 150px 0 0 50px; } }
@media (max-width: 800px)  { .signature__head { align-items: center; justify-content: center; padding: 100px 0 0; } }
.signature__title { font-size: 48px; font-weight: 400; color: var(--primary); white-space: pre-wrap; font-family: var(--font-en); }
.signature__title em { font-style: normal; font-size: 48px; font-weight: 400; color: var(--secondary); white-space: pre-wrap; font-family: var(--font-en); }
.signature__desc-wrap { margin: 20px 0 0; }
.signature__desc { color: var(--primary); font-size: 18px; font-weight: 400; line-height: 41px; white-space: pre-line; }
@media (max-width: 800px) {
  .signature__title, .signature__title em { font-size: 6vw; letter-spacing: 0; line-height: 1; }
  .signature__desc-wrap { margin-bottom: 80px; text-align: center; }
  .signature__desc { font-size: 3.5vw; letter-spacing: 0; line-height: 1.8; text-align: center; }
}
.signature__slider { padding: 50px 0 0 300px; overflow: hidden; position: relative; }
@media (min-width: 1560px) { .signature__slider { width: 1300px; } }
@media (max-width: 1560px) { .signature__slider { padding-left: 100px; padding-right: 50px; } }
@media (max-width: 800px)  { .signature__slider { padding: 0 20px; } }
.sig-carousel { position: relative; text-align: center; }
.sig-slide__inner { position: relative; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.sig-slide__img-wrap img { width: 100%; max-width: 100%; aspect-ratio: 250 / 305; object-fit: cover; display: block; }
.sig-slide__overlay { position: absolute; inset: 0; background-color: rgba(105, 75, 64, 0.5); color: #fff; font-size: 20px; display: none; align-items: center; justify-content: center; z-index: 2; }
.sig-slide__inner:hover .sig-slide__overlay { display: flex; }
@media (max-width: 1200px) { .sig-slide__overlay--always { display: flex; } }
@media (max-width: 800px) { .sig-slide__inner:hover .sig-slide__overlay, .sig-slide__overlay, .sig-slide__overlay--always { display: none; } }
.sig-slide__overlay-inner { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 25px; width: auto; }
.sig-slide__names { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 10px; width: auto; }
.sig-slide__kor { font-size: 18px; font-weight: normal; line-height: normal; }
.sig-slide__eng { font-size: 15px; font-weight: normal; line-height: normal; }
.view-more { text-decoration: underline; text-underline-offset: 8px; color: var(--secondary); font-size: 20px; cursor: pointer; }
@media (max-width: 800px) { .view-more { font-size: 3.5vw; } }
.sig-slide__caption { display: none; flex-direction: column; gap: 25px; padding: 40px 0; align-items: center; }
.sig-slide__caption-names { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 5px; }
.sig-slide__caption-kor { font-size: 28px; font-weight: 500; }
.sig-slide__caption-eng { font-size: 26px; font-weight: 500; }
@media (max-width: 800px) {
  .sig-slide__caption { display: flex; }
  .sig-slide__caption-kor { font-size: 4vw; }
  .sig-slide__caption-eng { font-size: 3vw; }
}
@media (max-width: 520px) { .sig-slide__caption { gap: 15px; padding: 20px 0; } }
/* signature arrows */
.sig-carousel .carousel__arrow--prev svg { width: 41px; height: 12px; position: absolute; z-index: 3; left: -50px; }
.sig-carousel .carousel__arrow--next svg { width: 41px; height: 12px; position: absolute; z-index: 3; right: 30px; }
@media (max-width: 1560px) { .sig-carousel .carousel__arrow--next svg { right: -10px; } }
.sig-carousel .carousel__arrow .arrow-circle { display: none; }
@media (max-width: 800px) {
  .sig-carousel .carousel__arrow svg { position: static; width: 24px; height: 24px; }
  .sig-carousel .carousel__arrow--prev, .sig-carousel .carousel__arrow--next { width: 80px; height: 80px; border-radius: 99px; background-color: #fff; border: 0.5px solid #bbb; z-index: 5; transform: translateY(-50%); }
  .sig-carousel .carousel__arrow--prev { left: 100px; }
  .sig-carousel .carousel__arrow--next { right: 100px; }
  .sig-carousel .carousel__arrow--next svg { stroke: #acacac; }
}
@media (max-width: 520px) {
  .sig-carousel .carousel__arrow--prev, .sig-carousel .carousel__arrow--next { width: 40px; height: 40px; }
  .sig-carousel .carousel__arrow--prev { left: 40px; }
  .sig-carousel .carousel__arrow--next { right: 40px; }
}

/* ---------- Turn On ---------- */
.turnon { display: flex; flex-direction: column; }
.turnon__head { display: flex; justify-content: space-between; padding: 150px 0 0 300px; }
@media (max-width: 1560px) { .turnon__head { width: 1300px; padding: 150px 0 0 100px; } }
@media (max-width: 1380px) { .turnon__head { width: auto; padding: 150px 0 0 50px; } }
@media (max-width: 800px)  { .turnon__head { align-items: center; justify-content: center; padding: 100px 0 0; } }
.turnon__title-wrap { display: flex; width: 100%; gap: 36px; }
@media (max-width: 1380px) { .turnon__title-wrap { flex-direction: column; } }
@media (max-width: 800px)  { .turnon__title-wrap { align-items: center; text-align: center; } }
.turnon__title { font-size: 48px; font-weight: 400; color: var(--primary); white-space: pre-wrap; }
.turnon__title .en { font-size: 48px; font-weight: 400; color: var(--primary); white-space: pre-wrap; font-family: var(--font-en); }
.turnon__title .on { font-size: 48px; font-weight: 400; color: var(--secondary); white-space: pre-wrap; font-family: var(--font-en); }
.turnon__title .on--ko { font-family: inherit; }
@media (max-width: 800px) { .turnon__title, .turnon__title .en, .turnon__title .on { font-size: 6vw; letter-spacing: 0; line-height: 1; } }
.turnon__nav { display: flex; gap: 5px; }
@media (max-width: 800px) { .turnon__nav { display: none; } }
.turnon__nav-btn { display: flex; align-items: center; justify-content: center; background-color: #fff; width: 50px; height: 45px; border: 1px solid #666; cursor: pointer; padding: 0; }
.turnon__nav-btn--prev { border-radius: 50px 0 0 50px; }
.turnon__nav-btn--next { border-radius: 0 50px 50px 0; }
.turnon__nav-btn:hover { background-color: var(--secondary); border: 1px solid var(--secondary); }
.turnon__nav-btn:hover > svg { stroke: #fff; }
.turnon__slider { padding: 100px 0 0 300px; overflow: hidden; }
@media (max-width: 1560px) { .turnon__slider { padding: 100px 0 0 100px; } }
@media (max-width: 1380px) { .turnon__slider { padding: 100px 0 0 50px; } }
@media (max-width: 800px)  { .turnon__slider { align-items: center; justify-content: center; padding: 0 22px; } }
.turnon-carousel { width: 2069px; }
@media (max-width: 800px) { .turnon-carousel { width: auto; } }
.turnon-carousel .carousel__arrow { display: none; }
@media (max-width: 800px) {
  .turnon-carousel .carousel__arrow { display: flex; width: 80px; height: 80px; border-radius: 999px; background: rgba(254, 254, 254, 0.7); border: 0.5px solid #bbb; top: 25%; }
  .turnon-carousel .carousel__arrow--prev { left: -5px; }
  .turnon-carousel .carousel__arrow--next { right: -5px; }
  .turnon-carousel .carousel__arrow svg { width: 24px; height: 24px; z-index: 999; }
}
@media (max-width: 520px) {
  .turnon-carousel .carousel__arrow { width: 40px; height: 40px; }
  .turnon-carousel .carousel__arrow--prev { left: 8px; }
  .turnon-carousel .carousel__arrow--next { right: 8px; }
}
.turnon-slide { display: flex; flex-direction: column; gap: 45px; z-index: 1; margin-right: 20px; }
@media (max-width: 800px) { .turnon-slide { margin-right: 0; } }
.turnon-slide__img { z-index: 2; position: relative; }
.turnon-slide__img img { width: 100%; max-width: 100%; height: auto; display: block; }
.turnon-slide__body { display: flex; flex-direction: column; gap: 20px; }
.turnon-slide__head { display: flex; flex-direction: column; gap: 15px; }
@media (max-width: 800px) { .turnon-slide__head { gap: 2vw; } }
.turnon-slide__label { font-size: 16px; color: rgba(105, 75, 64, 0.4); font-weight: 500; }
.turnon-slide__title { font-size: 34px; color: var(--primary); font-weight: 500; }
@media (max-width: 1380px) { .turnon-slide__title { font-size: 26px; } }
@media (max-width: 800px) {
  .turnon-slide__label { font-size: 3vw; }
  .turnon-slide__title { font-size: 5vw; line-height: 1.2; letter-spacing: 0; }
}
.turnon-slide__divider { height: 1px; background-color: var(--primary); margin-right: 30px; }
.turnon-item { display: flex; align-items: center; gap: 25px; margin-right: 30px; }
.turnon-item > img { width: 141px; height: 104px; object-fit: cover; flex: 0 0 141px; }
@media (max-width: 800px) { .turnon-item > img { width: 100px; height: 74px; flex-basis: 100px; } }
.turnon-item__body { display: flex; width: 100%; justify-content: space-between; }
.turnon-item__eng { font-size: 16px; font-weight: 400; color: var(--primary); }
.turnon-item__kor { padding-top: 10px; font-size: 18px; font-weight: 400; color: var(--primary); }
.turnon-item__desc { padding-top: 10px; font-size: 14px; font-weight: 400; color: var(--primary); line-height: 21px; }
.turnon-item__arrow { display: flex; align-items: center; cursor: pointer; }
@media (max-width: 800px) {
  .turnon-item__eng { font-size: 3vw; }
  .turnon-item__kor { font-size: 16px; }
  .turnon-item__desc { font-size: 3vw; line-height: 1.6; letter-spacing: 0; }
  .turnon-item__arrow { display: none; }
}
@media (max-width: 520px) { .turnon-item__kor { font-size: 14px; } }

/* ---------- One and Only ---------- */
.only { display: flex; justify-content: center; padding: 150px 0 0; }
@media (max-width: 1380px) { .only { padding: 150px 0 100px; } }
@media (max-width: 800px)  { .only { padding: 150px 0 0; } }
.only__inner { display: flex; }
@media (max-width: 1380px) { .only__inner { flex-direction: column; } }
.only__card { display: flex; flex-direction: column; width: fit-content; }
@media (max-width: 1380px) { .only__card { margin-bottom: 50px; } }
.only__figure { display: flex; justify-content: center; position: relative; }
.only__figure img { width: 100%; height: auto; aspect-ratio: 420 / 399; object-fit: cover; object-position: center top; }
@media (max-width: 1380px) { .only__figure img { max-width: 80%; } }
.only__figure-title { position: absolute; font-size: 26px; font-weight: 400; color: var(--primary); bottom: 20px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
@media (min-width: 1380px) { .only__figure-title { left: 20px; transform: none; font-size: 32px; } }
@media (max-width: 800px) { .only__figure-title { font-size: 6vw; letter-spacing: 0; line-height: 1.2; } }
.only__text { font-size: 17px; color: var(--primary); font-weight: 400; line-height: 28px; white-space: pre-line; }
@media (max-width: 1380px) { .only__text { font-size: 15px; font-weight: 300; } }
@media (max-width: 800px)  { .only__text { font-size: 3.3vw; letter-spacing: 0; line-height: 1.8; } }
.only__text-wrap { padding: 10px 0 0 21px; }
@media (max-width: 1380px) { .only__text-wrap { text-align: center; padding: 0; } }
.only__center { padding: 80px 35px 40px; display: flex; flex-direction: column; align-items: center; }
@media (max-width: 1380px) { .only__center { padding: 0 35px 40px; order: -1; } }
@media (max-width: 800px)  { .only__center { padding: 0 0 40px; } }
.only__pb35 { padding-bottom: 35px; }
.only__pb20 { padding-bottom: 20px; }
.only__label { font-size: 26px; font-weight: 500; text-decoration-line: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; text-align: center; color: var(--primary); }
.only__heading { font-size: 60px; white-space: nowrap; color: var(--primary); font-weight: 400; text-align: center; font-family: var(--font-en); }
.only__desc { font-size: 17px; color: var(--primary); font-weight: 400; line-height: 28px; text-align: center; white-space: pre-wrap; }
.only__btn { background-color: var(--secondary); border: none; border-radius: 99px; padding: 12px 24px; font-size: 16px; color: #fff; cursor: pointer; }
.only__btn:hover { background-color: var(--primary); }
@media (max-width: 1380px) { .only__heading { font-size: 50px; } .only__desc { font-size: 15px; } }
@media (max-width: 800px) {
  .only__label { font-size: 5vw; }
  .only__heading { font-size: 10vw; }
  .only__desc { font-size: 3.3vw; letter-spacing: 0; line-height: 1.8; }
  .only__btn { padding: 3vw 6vw; font-size: 3.3vw; }
}

/* =====================================================================
   Location / Contact
   ===================================================================== */
.info { display: flex; flex-direction: column; gap: 56px; padding: 150px 0; }
@media (max-width: 1560px) { .info { padding: 150px 50px; } }
@media (max-width: 1380px) { .info { padding: 150px 30px 0; } }
@media (max-width: 520px)  { .info { padding: 60px 30px 0; } }
.info__inner { display: flex; justify-content: center; max-width: 100%; }
@media (max-width: 1380px) { .info__inner { flex-direction: column; align-items: center; } }
.location { display: flex; flex-direction: column; align-items: start; padding-right: 70px; }
@media (max-width: 1380px) { .location { align-items: center; padding-right: 0; margin-bottom: 50px; } }
.info__title-wrap { margin-top: 22px; margin-bottom: 30px; }
@media (max-width: 520px) { .info__title-wrap { margin-bottom: 10px; } }
.info__title { color: var(--primary); font-size: 42px; font-family: var(--font-en); }
@media (max-width: 800px) { .info__title { font-size: 7vw; } }
.location__addr { display: flex; gap: 40px; padding-bottom: 34px; text-align: center; }
.location__addr--parking { padding-bottom: 20px; }
@media (max-width: 520px) { .location__addr { gap: 10px; padding-bottom: 10px; } }
.location__addr span { color: var(--primary); font-size: 16px; font-weight: 500; line-height: 27px; white-space: pre-line; }
.location__addr .sub { font-size: 16px; color: rgba(105, 75, 64, 0.4); font-weight: 500; }
@media (max-width: 520px) { .location__addr span, .location__addr .sub { font-size: 14px; } }
.location__btn { display: flex; align-items: center; width: 240px; justify-content: space-between; background-color: var(--secondary); padding: 18px 28px; border: none; border-radius: 99px; color: #fff; font-size: 16px; font-weight: 600; cursor: pointer; box-sizing: content-box; }
.location__btn:hover { background-color: var(--primary); }
@media (max-width: 520px) { .location__btn { font-size: 14px; padding: 8px 16px; width: 180px; } }

.map { display: flex; width: 470px; height: 250px; position: relative; overflow: hidden; background: #f4f2ef url("../assets/img/map-static.png?v=2") center / cover no-repeat; }
@media (max-width: 1380px) { .map { width: 400px; } }
@media (max-width: 800px)  { .map { height: 250px; } }
@media (max-width: 520px)  { .map { width: 330px; } }
.map__canvas { position: absolute; inset: 0; }
.map__bar { display: flex; align-items: center; justify-content: space-between; background-color: #f9f9f9; padding: 7px 11px; border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 0 0 2px 2px; overflow: hidden; }
.map__bar img { height: 12px; width: auto; }
.map__link { font-size: 13px; text-decoration: none; color: inherit; cursor: pointer; }
.map__controls { position: absolute; top: 0; right: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; margin: 10px; }
.map__ctrl { font-size: 22px; width: 34px; height: 34px; box-sizing: border-box; background-color: #fff; border: 1px solid #ddd; color: #333; cursor: pointer; }
.map__ctrl:hover { color: #aaa; }
.customoverlay { position: relative; background-color: #fff; padding: 5px; border-radius: 3px; box-shadow: none; border: 1px solid rgba(0, 0, 0, 0.1); margin-bottom: 20px; }
.customoverlay::after { content: ""; position: absolute; bottom: -20px; left: 50%; margin-left: -10px; border-width: 10px; border-style: solid; border-color: #fff transparent transparent; }
.customoverlay .title { display: inline-block; font-size: 11px; font-weight: 600; color: #000; }
.customoverlay a:hover .title { text-decoration: underline; }

.contact { display: flex; flex-direction: column; align-items: start; padding-left: 60px; }
@media (max-width: 1380px) { .contact { align-items: start; padding-left: 0; margin-bottom: 50px; } }
.contact__title-wrap { margin-top: 22px; margin-bottom: 30px; display: flex; width: 100%; text-align: center; }
@media (max-width: 520px) { .contact__title-wrap { display: none; } }
.contact__title { color: var(--primary); font-size: 42px; font-family: var(--font-en); }
@media (max-width: 520px) { .contact__title { font-size: 28px; } }
.contact__phone-row { display: flex; gap: 42px; align-items: center; padding-bottom: 34px; }
@media (max-width: 520px) { .contact__phone-row { display: none; } }
.contact__label { color: var(--primary); font-size: 16px; font-weight: 500; line-height: 27px; white-space: nowrap; }
.contact__phone { font-size: 47px; color: var(--primary); font-family: var(--font-en); }
@media (max-width: 800px) { .contact__phone { font-size: 32px; } }
.contact__phone a { text-decoration: none; color: inherit; }
.contact__hours { display: flex; gap: 42px; align-items: start; }
.contact__extra { display: flex; gap: 42px; align-items: center; padding-bottom: 20px; }
.contact__extra .contact__label + .contact__label { font-weight: 400; }
.contact__note { color: rgba(105, 75, 64, 0.6); font-size: 13px; font-weight: 400; line-height: 22px; white-space: normal; max-width: 240px; padding-top: 4px; }
.contact__closed { color: var(--secondary); font-size: 16px; font-weight: 500; line-height: 27px; white-space: nowrap; }
@media (max-width: 520px) { .contact__label, .contact__closed { font-size: 14px; } }
@media (max-width: 520px) { .contact { max-width: 100%; } .contact__hours, .contact__extra { gap: 16px; } .contact__note { max-width: 170px; } }

/* =====================================================================
   Footer
   ===================================================================== */
.footer { display: flex; justify-content: center; padding: 40px 0 95px; background-color: var(--primary); }
@media (max-width: 1560px) { .footer { padding: 40px 10px; } }
@media (max-width: 1380px) { .footer { flex-direction: column; gap: 50px; padding: 40px 0; } }
@media (max-width: 800px)  { .footer { padding: 40px 0; gap: 20px; } }
.footer__logo-wrap { display: flex; flex-direction: row; justify-content: center; }
.footer__logo { width: 200px; height: auto; }
.footer__body { display: flex; padding-left: 200px; flex-direction: column; align-items: flex-start; }
@media (max-width: 1380px) { .footer__body { padding-left: 0; align-items: center; } }
.footer__top { display: flex; align-items: center; gap: 168px; padding-bottom: 33px; }
@media (max-width: 800px) { .footer__top { padding-bottom: 20px; gap: 0; } }
.row-20 { display: flex; flex-direction: row; align-items: center; justify-content: flex-start; gap: 20px; width: auto; }
.footer__link { font-size: 16px; color: #fff; cursor: pointer; }
.footer__sep { width: 1px; background-color: #a0a0a0; height: 12px; }
.footer__social { display: flex; justify-content: center; align-items: center; gap: 25px; }
.footer__social > div { cursor: pointer; }
.footer__social img { width: 17px; height: 17px; display: block; }
.footer__social .naver-badge { width: 17px; height: 17px; border-radius: 3px; background: #fff; color: var(--primary); font-weight: 800; font-size: 11px; display: flex; align-items: center; justify-content: center; font-family: var(--font-en); }
.footer__info { display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 20px; width: auto; }
.footer__text { font-size: 16px; color: #c3b7b2; }
.footer__copy-mobile { display: none; }
@media (max-width: 800px) {
  .footer__body { display: flex; flex-direction: column; align-items: center; }
  .footer__top { display: contents; }
  .footer__top > .row-20 { order: 1; padding-bottom: 20px; }
  .footer__info { order: 2; }
  .footer__link { font-size: 12px; }
  .footer__link--desktop, .footer__sep--desktop { display: none; }
  .footer__social { order: 3; margin-top: 20px; }
  .footer__social svg { width: 25px; height: 35px; }
  .footer__info { gap: 15px; align-items: center; text-align: center; }
  .footer__info .row-20 { flex-direction: column; gap: 5px; }
  .footer__sep { display: none; }
  .footer__text { font-size: 12px; text-align: center; }
  .footer__copy-desktop { display: none; }
  .footer__copy-mobile { display: flex; flex-direction: column; gap: 5px; }
  .footer__body { width: 100%; }
}

/* =====================================================================
   Fixed quick-consult stack
   ===================================================================== */
.quick { position: fixed; bottom: 60px; right: 60px; z-index: 3; pointer-events: none; }
.quick > * { pointer-events: auto; }
@media (max-width: 902px) { .quick { bottom: 40px; right: 40px; } }
@media (max-width: 800px) { .quick { bottom: 20px; right: 20px; } }
.quick__top { position: absolute; right: 0; top: -170px; cursor: pointer; background-color: transparent; width: 50px; height: 50px; border-radius: 100%; display: none; align-items: center; justify-content: center; box-sizing: border-box; border: 2px solid var(--secondary); }
.quick__top.is-visible { display: flex; }
.quick__top svg { transform: rotate(90deg); }
@media (max-width: 800px) { .quick__top { top: -230px; width: 40px; height: 40px; } }
.quick__globe { position: absolute; right: 0; top: -180px; background: #ffab5a; width: 50px; height: 50px; margin-top: 10px; border-radius: 100%; display: none; align-items: center; justify-content: center; box-sizing: border-box; cursor: pointer; }
.quick__lang { display: none; position: absolute; background-color: transparent; left: -10px; top: -360px; z-index: 1; }
.quick__lang.is-open { display: block; }
.quick__lang-item { color: var(--primary); padding: 10px 16px; text-decoration: none; display: flex; align-items: center; }
.quick__lang-item span { font-family: var(--font-en); font-size: 16px; cursor: pointer; }
@media (max-width: 800px) { .quick__globe { display: flex; width: 40px; height: 40px; } }
.quick__kakao { position: absolute; right: 0; top: -120px; background: #fbcc34; width: 50px; height: 50px; margin-top: 10px; border-radius: 100%; display: flex; align-items: center; justify-content: center; box-sizing: border-box; cursor: pointer; }
.quick__insta { position: absolute; right: 0; top: -60px; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); width: 50px; height: 50px; margin-top: 10px; border-radius: 100%; display: flex; align-items: center; justify-content: center; box-sizing: border-box; cursor: pointer; }
.quick__insta img { width: 24px; height: 24px; }
.quick__naver { position: absolute; right: 0; top: -60px; background: #03c75a; width: 50px; height: 50px; margin-top: 10px; border-radius: 100%; display: flex; align-items: center; justify-content: center; box-sizing: border-box; cursor: pointer; font-family: var(--font-en); font-weight: 700; font-size: 22px; color: #fff; }
@media (max-width: 800px) { .quick__naver { width: 40px; height: 40px; font-size: 18px; } }
@media (max-width: 800px) { .quick__kakao, .quick__insta { width: 40px; height: 40px; } }
.quick__open { background: var(--dark); width: 50px; height: 50px; margin-top: 10px; border-radius: 100%; font-size: 13px; font-weight: 300; line-height: 1.2; text-align: center; color: #fff; display: none; align-items: center; justify-content: center; box-sizing: border-box; cursor: pointer; }
@media (max-width: 902px) { .quick__open { display: flex; } }
@media (max-width: 800px) { .quick__open { width: 40px; height: 40px; font-size: 11px; } }
.quick__form { display: flex; align-items: center; padding: 15px 20px; gap: 20px; background-color: #fff; border-radius: 70px; box-shadow: rgba(112, 42, 19, 0.18) 8px 9px 16px 0; z-index: 6; margin-top: 20px; }
@media (max-width: 902px) { .quick__form { display: none; } }
.quick__field { display: flex; gap: 10px; }
@media (max-width: 902px) { .quick__field { flex-direction: column; } }
.quick__field label { display: block; font-size: 14px; color: #333; white-space: nowrap; }
.quick__input { height: 16.5px; border: none; border-bottom: 1px solid var(--dark); outline: none; box-sizing: border-box; font-size: 13px; background: transparent; }
.quick__input::placeholder { text-align: center; letter-spacing: -0.08em; color: rgba(128, 128, 128, 0.2); }
.quick__input--name { width: 40px; }
.quick__input--phone { width: 110px; }
.quick__input--content { width: 90px; }
.quick__input--full { width: 100%; }
@media (max-width: 902px) {
  .quick__input { border: 1px solid #000; height: 24px; padding: 0 10px; }
  .quick__input::placeholder { text-align: start; }
}
.quick__submit { width: 100%; padding: 15px 20px; border-radius: 32px; background-color: var(--secondary); color: #fff; border: none; font-family: var(--font-en); font-size: 13px; box-sizing: border-box; cursor: pointer; white-space: nowrap; }
.quick__submit:hover { background-color: var(--primary); }
@media (max-width: 902px) { .quick__submit { background-color: var(--dark); border-radius: 0; } }
.quick__consent { display: flex; justify-content: flex-end; margin: 10px 35px 0 0; gap: 10px; }
@media (max-width: 902px) { .quick__consent { display: none; } }
.consent { display: flex; align-items: center; cursor: pointer; gap: 6px; }
.consent input { cursor: pointer; position: absolute; opacity: 0; }
.consent__box { display: inline-block; width: 13px; height: 13px; border: 1px solid var(--dark); position: relative; cursor: pointer; }
.consent__box::before { content: ""; position: absolute; top: 40%; left: 50%; width: 4px; height: 7px; border-style: solid; border-color: var(--dark); border-width: 0 2px 2px 0; transform: translate(-50%, -50%) rotate(45deg); }
.consent__box::after { content: ""; position: absolute; top: 40%; left: 50%; width: 4px; height: 7px; border-style: solid; border-color: #fff; border-width: 0 0.5px 0.5px 0; transform: translate(-50%, -50%) rotate(30deg); display: none; }
.consent input:checked + .consent__box { background-color: var(--dark); }
.consent input:checked + .consent__box::before { border-color: #fff; }
.consent input:checked + .consent__box::after { display: block; }
.consent label { font-size: 12px; text-decoration: underline; text-underline-offset: 3px; color: var(--dark); cursor: pointer; }
/* mobile quick modal */
.quick-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); display: none; align-items: center; justify-content: center; z-index: 1000; }
.quick-modal.is-open { display: flex; }
.quick-modal__box { position: relative; width: 85%; max-width: 500px; background: #fff; padding: 20px; border-radius: 10px; box-sizing: border-box; box-shadow: rgba(0, 0, 0, 0.3) 0 5px 15px; display: flex; flex-direction: column; gap: 30px; }
.quick-modal__close { position: absolute; top: 10px; right: 10px; background: none; border: none; font-size: 24px; cursor: pointer; }
.quick-modal__title { margin: 0 0 20px; text-align: center; }
.quick-modal__consent { display: flex; justify-content: flex-end; gap: 10px; }

/* =====================================================================
   Side drawer menu
   ===================================================================== */
.drawer { height: 100%; background: #fff; position: fixed; top: 0; right: 0; transform: translateX(100%); transition: transform 0.5s; z-index: 1000; width: 30%; overflow-y: auto; box-sizing: border-box; }
@media (max-width: 1560px) { .drawer { width: 40%; } }
@media (max-width: 800px)  { .drawer { width: 60%; } }
@media (max-width: 520px)  { .drawer { width: 70%; } }
.drawer.is-open { transform: translateX(0); }
.drawer__close { display: flex; justify-content: flex-end; align-items: center; margin: 20px 0; padding: 20px; }
.drawer__close > div { cursor: pointer; }
@media (max-width: 800px) { .drawer__close { margin: 0; } }
.drawer__group { display: flex; flex-direction: column; padding: 0 20px; cursor: pointer; }
.drawer__group-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.drawer__group-title { font-weight: 700; color: var(--primary); font-size: 18px; }
@media (max-width: 800px) { .drawer__group-title { font-size: 14px; } }
.drawer__group-head .icon-minus { display: none; }
.drawer__group.is-open .icon-plus { display: none; }
.drawer__group.is-open .icon-minus { display: block; }
.drawer__list { overflow: hidden; max-height: 0; transition: 1.4s; }
.drawer__group.is-open .drawer__list { max-height: 1400px; }
.drawer__item { padding: 0 0 15px 5px; }
.drawer__item a { font-size: 14px; color: #999; }
.drawer__item a:hover { color: #222; }
@media (max-width: 800px) { .drawer__item a { font-size: 12px; } }
.drawer__hours { display: flex; flex-direction: column; gap: 10px; padding: 10px 20px; }
.drawer__hours-title { display: flex; flex-direction: row; align-items: center; justify-content: flex-start; gap: 6px; width: auto; }
.drawer__hours-title span { font-size: 18px; color: var(--primary); }
.drawer__hours-row { display: flex; flex-direction: row; justify-content: space-between; }
.drawer__hours-row--start { justify-content: flex-start; }
.drawer__hours-row span { color: #999; font-size: 18px; }
@media (max-width: 800px) { .drawer__hours-row span { font-size: 14px; } }
.drawer-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: rgba(0, 0, 0, 0.5); backdrop-filter: blur(2px) saturate(100%); -webkit-backdrop-filter: blur(2px) saturate(100%); z-index: 100; transition: opacity 0.5s; }
.drawer-overlay.is-open { display: block; }

/* =====================================================================
   Popup modal
   ===================================================================== */
.popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: flex; justify-content: center; align-items: center; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); z-index: 100; flex-direction: column; }
.popup[hidden] { display: none; }
.popup__head { display: flex; width: 500px; justify-content: space-between; align-items: center; }
.popup__today { font-family: var(--font-en); font-size: 16px; color: #fff; text-decoration: underline; cursor: pointer; }
.popup__close { cursor: pointer; border: none; background-color: transparent; padding: 0; display: flex; }
.popup__body { background: #fff; width: 500px; display: flex; flex-direction: column; justify-content: space-between; box-sizing: border-box; z-index: 101; }
.popup-carousel { width: 100%; height: 666px; }
.popup-carousel .carousel__viewport, .popup-carousel .carousel__track { height: 100%; }
.popup-carousel .carousel__slide { display: flex; justify-content: center; align-items: center; height: 100%; }
.popup-carousel .carousel__arrow { display: none; }
.popup__img { max-width: 100%; max-height: 100%; height: auto; cursor: pointer; }
.popup__tabs { display: flex; justify-content: space-between; flex-wrap: wrap; }
.popup__tab { flex: 1 1 20%; min-width: 0; text-align: center; display: flex; align-items: center; justify-content: center; padding: 10px; cursor: pointer; font-size: 16px; color: #333; background: #fff; box-sizing: border-box; height: 68px; }
.popup__tab:nth-child(-n+5) { border-bottom: 1px solid #ddd; }
.popup__tab.is-active { color: #fff; background: var(--primary); }
@media (max-width: 800px) {
  .popup__head, .popup__body { width: 340px; }
  .popup-carousel { height: 453px; }
  .popup__tab { font-size: 12px; }
}
@media (max-width: 520px) { .popup__tab { font-size: 10px; } }

/* =====================================================================
   Alert (sweetalert2-style)
   ===================================================================== */
.alert { position: fixed; inset: 0; z-index: 1060; background: rgba(0, 0, 0, 0.4); display: none; align-items: center; justify-content: center; padding: 0.625em; }
.alert.is-open { display: flex; }
.alert__box { position: relative; width: 32em; max-width: 100%; padding: 0 0 1.25em; border-radius: 5px; background: #fff; color: #545454; font-size: 16px; box-sizing: border-box; animation: alertShow 0.3s; }
@keyframes alertShow { 0% { transform: scale(0.7); } 45% { transform: scale(1.05); } 80% { transform: scale(0.95); } 100% { transform: scale(1); } }
.alert__close { position: absolute; top: 0; right: 0; width: 1.2em; height: 1.2em; font-size: 2.5em; line-height: 1.2em; color: #ccc; background: transparent; border: none; cursor: pointer; font-family: monospace; }
.alert__close:hover { color: #f27474; }
.alert__text { margin: 1em 1.6em 0.3em; padding-top: 2em; font-size: 1.125em; text-align: center; line-height: normal; word-break: break-word; }
.alert__actions { display: flex; justify-content: center; margin: 1.25em auto 0; }
.alert__btn { margin: 0.3125em; padding: 0.625em 1.1em; border: 0; border-radius: 0.25em; background: var(--secondary); color: #fff; font-size: 1em; font-weight: 500; cursor: pointer; }
.alert__btn:hover { background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }
