@charset "UTF-8";
/* =========================================================
   Titian hair — 티티안헤어 (용인 처인구 역북동)
   ========================================================= */
:root {
  --c-text: #404040;
  --c-sub: #aaa;
  --c-line: #e5e5e5;
  --f-en: "Josefin Sans", sans-serif;
  --f-kr: "Noto Sans KR", sans-serif;
  --f-script: "Dancing Script", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: var(--f-kr);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .07em;
  line-height: 1.9;
  color: var(--c-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s; }
a:hover { opacity: .6; }
ul, li { list-style: none; }
table { border-collapse: collapse; }

/* ---------- Loading ---------- */
.loadingAnim {
  position: fixed; inset: 0; z-index: 9999;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease .2s, visibility .8s ease .2s;
}
.loadingAnim_line {
  display: block; width: 0; height: 1px; background: var(--c-text);
  animation: loadLine 1.2s ease forwards;
}
@keyframes loadLine { to { width: 120px; } }
.loadingAnim.is-done { opacity: 0; visibility: hidden; }

/* ---------- Header ---------- */
.gHeader {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 60px;
  background: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
}
.gHeader_logo a { display: flex; align-items: baseline; gap: 10px; }
.logo_script { font-family: var(--f-script); font-size: 27px; font-weight: 600; letter-spacing: .02em; }
.logo_sub { font-size: 10px; letter-spacing: .25em; color: var(--c-sub); }

.gNav_list { display: flex; align-items: center; gap: 30px; }
.gNav_list > li { position: relative; }
.gNav_list a, .reserveBtn {
  font-family: var(--f-en);
  font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.reserveBtn { display: inline-block; border: 1px solid var(--c-text); padding: 8px 18px 6px; }
.hasSub .subMenu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid var(--c-line);
  min-width: 150px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: .3s;
}
.hasSub:hover .subMenu { opacity: 1; visibility: visible; transform: none; }
.subMenu li a {
  display: block; padding: 8px 18px;
  font-family: var(--f-kr); font-size: 12px; letter-spacing: .1em; text-transform: none;
}

.menuBtn { display: none; }

/* ---------- Side rail ---------- */
.sideRail {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 90;
  writing-mode: vertical-rl;
}
.sideRail a {
  display: block; padding: 22px 10px;
  background: #fff; border: 1px solid var(--c-line); border-right: none;
  font-family: var(--f-en); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--c-text);
}

/* ---------- Photo placeholder ---------- */
.ph {
  display: block; width: 100%; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f5f2ee 0%, #eae5de 55%, #f1ede7 100%);
}
.ph--wide { aspect-ratio: 3 / 2; }
.ph_mark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-script); font-style: normal; font-weight: 500;
  font-size: 30px; color: #d5cec4; letter-spacing: .04em;
}

/* ---------- Image reveal motion ---------- */
.revealImg { position: relative; display: block; overflow: hidden; }
.revealImg::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: #fff;
  transition: transform 1s cubic-bezier(.77, 0, .18, 1);
}
.revealImg .ph { transform: scale(1.1); transition: transform 1.4s cubic-bezier(.22, 1, .36, 1) .15s; }
.revealImg.is-view::after { transform: translateX(101%); }
.revealImg.is-view .ph { transform: scale(1); }

/* ---------- Main visual ---------- */
.mv {
  position: relative;
  height: calc(100vh - 60px);
  min-height: 480px;
  margin-top: 60px;
  overflow: hidden;
}
.mv_slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.06);
  transition: opacity 2.4s ease, transform 8s linear;
}
.mv_slide--a { background: linear-gradient(150deg, #f7f3ee 0%, #eae2d6 55%, #f0e9df 100%); }
.mv_slide--b { background: linear-gradient(150deg, #f3f1f0 0%, #e3dedb 55%, #ede8e5 100%); }
.mv_slide--c { background: linear-gradient(150deg, #f5f1ec 0%, #e7dfe0 55%, #eee7e3 100%); }
.mv_slide.is-active { opacity: 1; transform: scale(1); }

.mv_copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--c-text);
  opacity: 0; transform: translateY(26px);
  transition: opacity 1.6s ease .4s, transform 1.6s ease .4s;
}
body.is-loaded .mv_copy { opacity: 1; transform: none; }
.mv_script { font-family: var(--f-script); font-size: 78px; font-weight: 500; line-height: 1.2; }
.mv_txt { font-size: 13px; letter-spacing: .42em; padding-left: .42em; margin-top: 12px; color: #8d8880; }

.mv_scroll {
  position: absolute; right: 34px; bottom: 0;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.mv_scroll span {
  font-family: var(--f-en); font-size: 10px; letter-spacing: .3em;
  color: var(--c-sub); writing-mode: vertical-rl; text-transform: uppercase;
}
.mv_scroll i {
  width: 1px; height: 64px; background: rgba(64,64,64,.18);
  position: relative; overflow: hidden;
}
.mv_scroll i::after {
  content: ""; position: absolute; left: 0; top: -40%;
  width: 1px; height: 40%; background: var(--c-text);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -40%; } 100% { top: 110%; } }

/* ---------- Sections common ---------- */
.sec { padding: 110px 28px; max-width: 1080px; margin: 0 auto; text-align: center; }
.anTtl {
  font-family: var(--f-en);
  font-size: 18px; font-weight: 600; letter-spacing: .28em;
  text-transform: lowercase;
  margin-bottom: 56px;
}
.anTtl::before {
  content: ""; display: block; width: 1px; height: 46px;
  background: var(--c-text); margin: 0 auto 20px;
}

/* fade up animation */
.fadeUp { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.fadeUp.is-view { opacity: 1; transform: none; }

/* ---------- Concept ---------- */
.concept_copy { line-height: 2.4; font-size: 14px; }

/* ---------- Salon ---------- */
.salonCard { max-width: 680px; margin: 0 auto; }
.salonCard_img.is-view:hover .ph { transform: scale(1.04); }
.salonCard_name {
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); z-index: 1;
  color: #b0a698; font-family: var(--f-script); font-size: 44px; font-weight: 500;
  pointer-events: none;
}
.salonCard_name em { font-family: var(--f-kr); font-style: normal; font-size: 14px; letter-spacing: .3em; display: block; margin-top: 2px; }
.salonCard_addr { margin-top: 18px; font-size: 12px; color: var(--c-sub); letter-spacing: .15em; }
.salonCard_btns { display: flex; justify-content: center; gap: 14px; margin-top: 18px; }
.salonCard_btns a {
  display: inline-block; min-width: 150px; padding: 12px 10px 10px;
  border: 1px solid var(--c-text);
  font-family: var(--f-en); font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  transition: .3s;
}
.salonCard_btns a:hover { background: var(--c-text); color: #fff; opacity: 1; }

/* ---------- Staff ---------- */
.staffList {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 26px;
  text-align: center;
}
.staffList .revealImg.is-view:hover .ph { transform: scale(1.05); }
.staff_name { margin-top: 14px; font-size: 14px; font-weight: 500; letter-spacing: .2em; }
.staff_role {
  display: block; margin-top: 2px;
  font-family: var(--f-en); font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--c-sub);
}
.staff_career { font-size: 11px; color: var(--c-sub); letter-spacing: .2em; margin-top: 2px; }

/* ---------- Menu ---------- */
.menuGrid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 46px 70px;
  text-align: left; max-width: 860px; margin: 0 auto;
}
.menuGroup h4 {
  font-family: var(--f-en); font-size: 15px; font-weight: 600;
  letter-spacing: .3em; text-transform: lowercase;
  margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--c-text);
}
.menuGroup dl div {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 7px 0; border-bottom: 1px dotted var(--c-line);
}
.menuGroup dt { font-size: 13px; }
.menuGroup dd { font-family: var(--f-en); font-size: 13px; letter-spacing: .08em; }
.menu_note { margin-top: 40px; font-size: 11px; color: var(--c-sub); }

/* ---------- News ---------- */
.newsList { max-width: 680px; margin: 0 auto; text-align: left; }
.newsList li {
  display: flex; gap: 26px; align-items: baseline;
  padding: 18px 4px; border-bottom: 1px solid var(--c-line);
}
.newsList li:first-child { border-top: 1px solid var(--c-line); }
.newsList time { font-family: var(--f-en); font-size: 12px; letter-spacing: .15em; color: var(--c-sub); white-space: nowrap; }
.newsList p { font-size: 13px; }

/* ---------- Info ---------- */
.infoWrap { max-width: 560px; margin: 0 auto; }
.infoTable { width: 100%; text-align: left; }
.infoTable th, .infoTable td { padding: 13px 6px; border-bottom: 1px solid var(--c-line); font-weight: 400; font-size: 13px; }
.infoTable tr:first-child th, .infoTable tr:first-child td { border-top: 1px solid var(--c-line); }
.infoTable th { width: 90px; color: var(--c-sub); letter-spacing: .2em; }
.infoBtns { display: flex; justify-content: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.infoBtns a {
  display: inline-block; min-width: 190px; padding: 13px 16px 11px;
  border: 1px solid var(--c-text);
  font-size: 12px; letter-spacing: .12em;
  transition: .3s;
}
.infoBtns a:hover { background: var(--c-text); color: #fff; opacity: 1; }
.info_note { margin-top: 22px; font-size: 11px; color: var(--c-sub); }

/* ---------- SNS strip ---------- */
.snsStrip { display: flex; }
.snsStrip_item {
  position: relative; flex: 1; height: 240px;
  display: flex; align-items: center; justify-content: center;
}
.snsStrip_item--style { background: linear-gradient(120deg, #f0ebe4 0%, #e2dacd 100%); }
.snsStrip_item--review { background: linear-gradient(120deg, #efedec 0%, #dcd7d3 100%); }
.snsStrip_item:hover { opacity: 1; }
.snsStrip_item:hover span { letter-spacing: .5em; }
.snsStrip_item span {
  position: relative; z-index: 1; color: var(--c-text);
  font-family: var(--f-en); font-size: 17px; letter-spacing: .35em; text-transform: lowercase;
  transition: letter-spacing .5s ease;
  padding-left: .35em;
}

/* ---------- Footer ---------- */
.gFooter { padding: 70px 28px 90px; text-align: center; }
.gFooter_logo .logo_script { font-size: 36px; display: block; }
.gFooter_logo .logo_sub { display: block; margin-top: 8px; }
.gFooter_nav { display: flex; justify-content: center; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.gFooter_nav a { font-family: var(--f-en); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.gFooter_copy { margin-top: 34px; font-family: var(--f-en); font-size: 10px; letter-spacing: .18em; color: var(--c-sub); }

/* ---------- Mobile fixed bar ---------- */
.spFixBar { display: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .staffList { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { font-size: 13px; }
  .pc { display: none; }

  /* header / nav */
  .gHeader { padding: 0 18px; }
  .gNav {
    position: fixed; inset: 60px 0 0 0; z-index: 99;
    background: rgba(255,255,255,.97);
    opacity: 0; visibility: hidden; transition: .4s;
    overflow-y: auto;
  }
  .gNav.is-open { opacity: 1; visibility: visible; }
  .gNav_list { flex-direction: column; gap: 0; padding: 40px 0; }
  .gNav_list > li { width: 100%; text-align: center; }
  .gNav_list a { display: block; padding: 16px 0; font-size: 14px; }
  .hasSub { display: none; }

  .menuBtn {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 30px; height: 30px; background: none; border: none; cursor: pointer;
  }
  .menuBtn span { display: block; width: 24px; height: 1px; background: var(--c-text); transition: .3s; margin: 0 auto; }
  .menuBtn.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menuBtn.is-open span:nth-child(2) { opacity: 0; }
  .menuBtn.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .sideRail { display: none; }

  .mv { height: calc(100svh - 60px); min-height: 420px; }
  .mv_script { font-size: 46px; }
  .mv_txt { font-size: 11px; letter-spacing: .28em; padding-left: .28em; }
  .mv_scroll { right: 20px; }

  .sec { padding: 80px 22px; }
  .anTtl { margin-bottom: 42px; }

  .menuGrid { grid-template-columns: 1fr; gap: 38px; }
  .staffList { gap: 30px 16px; }
  .staff_name { font-size: 13px; }
  .ph_mark { font-size: 24px; }

  .newsList li { flex-direction: column; gap: 2px; padding: 14px 2px; }

  .snsStrip { flex-direction: column; }
  .snsStrip_item { height: 150px; }

  .gFooter { padding-bottom: 130px; }

  /* mobile bottom bar */
  .spFixBar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    display: flex; border-top: 1px solid var(--c-line);
  }
  .spFixBar a {
    flex: 1; padding: 15px 0 13px; text-align: center;
    font-family: var(--f-en); font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
    background: #fff;
  }
  .spFixBar a + a { background: var(--c-text); color: #fff; }
}
