/* =========================================================
   Be Stayable unified public header
   Source of truth: public/index.html
========================================================= */

body.home-search-is-open{
  overflow: hidden;
}

html body [data-site-header="main"].topbar.topbar--editorial.topbar--travel{
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #000000;
  background: #ffffff;
  color: #000000;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
  font-family: Pretendard, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

html body [data-site-header="main"].topbar.topbar--editorial.topbar--travel .topbar__inner.container{
  position: relative;
  width: 100%;
  max-width: var(--container, 1200px);
  min-height: 70px;
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  box-sizing: border-box;
}

html body [data-site-header="main"] .brand{
  min-width: 0;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  color: #000000;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.035em;
  text-decoration: none;
  white-space: nowrap;
}

html body [data-site-header="main"] .brand__mark{
  display: none;
}

html body [data-site-header="main"] .brand__text{
  display: inline;
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.035em;
  text-transform: none;
}

html body [data-site-header="main"] .topbar-search-button,
html body [data-site-header="main"] .topbar-search-button:hover,
html body [data-site-header="main"] .topbar-search-button:focus-visible{
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  flex: 0 0 42px;
  margin: 0 0 0 auto;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  box-shadow: none;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

html body [data-site-header="main"] .topbar-search-button{
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

html body [data-site-header="main"] .topbar-search-button:hover,
html body [data-site-header="main"] .topbar-search-button:focus-visible{
  background: #000000;
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

html body [data-site-header="main"] .topbar-search-button svg{
  width: 19px;
  height: 19px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

/* Fullscreen search: same structure and visual rules as the main index. */
html body .home-search-overlay[data-site-search-overlay="main"]{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: block;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility 0s linear .24s;
}

html body .home-search-overlay[data-site-search-overlay="main"].is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .24s ease, visibility 0s;
}

html body .home-search-overlay[data-site-search-overlay="main"][hidden]{
  display: none;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__backdrop{
  position: absolute;
  inset: 0;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__panel{
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: max(28px, env(safe-area-inset-top)) clamp(20px, 5vw, 56px) max(34px, env(safe-area-inset-bottom));
  overflow-y: auto;
  background: #ffffff;
  color: #000000;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: translateY(10px);
  transition: transform .24s ease;
  box-sizing: border-box;
  font-family: Pretendard, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

html body .home-search-overlay[data-site-search-overlay="main"].is-open .home-search-overlay__panel{
  transform: translateY(0);
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__bar{
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__close{
  width: 46px;
  height: 46px;
  min-width: 46px;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  border-radius: 0;
  background: #ffffff;
  color: #000000;
  box-shadow: none;
  cursor: pointer;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__close svg,
html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__icon svg{
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__form{
  min-height: 58px;
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 86px;
  align-items: center;
  gap: 12px;
  border: 1px solid #000000;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__icon{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__form input{
  width: 100%;
  min-width: 0;
  height: 56px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #000000;
  box-shadow: none;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.035em;
  -webkit-appearance: none;
  appearance: none;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__form input::placeholder{
  color: rgba(0, 0, 0, .44);
  opacity: 1;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__submit{
  width: 86px;
  height: 58px;
  margin: -1px -1px -1px 0;
  padding: 0;
  border: 0;
  border-left: 1px solid #000000;
  border-radius: 0;
  background: #000000;
  color: #ffffff;
  box-shadow: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__close:hover,
html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__close:focus-visible,
html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__submit:hover,
html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__submit:focus-visible{
  transform: none;
  outline: none;
  box-shadow: none;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__content{
  width: min(1080px, 100%);
  margin: clamp(72px, 11vh, 128px) auto 0;
  padding: 0;
  text-align: left;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__eyebrow{
  margin: 0 0 18px;
  color: #000000;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: none;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__content h2{
  max-width: 760px;
  margin: 0;
  color: #000000;
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.2;
  letter-spacing: -.06em;
  font-weight: 600;
  text-align: left;
  word-break: keep-all;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__desc{
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(0, 0, 0, .62);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: -.035em;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__quick{
  width: min(680px, 100%);
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__quick button{
  min-height: 40px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid #000000;
  border-radius: 0;
  background: #ffffff;
  color: #000000;
  box-shadow: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.025em;
  cursor: pointer;
}

html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__quick button:hover,
html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__quick button:focus-visible{
  border-color: #000000;
  background: #000000;
  color: #ffffff;
  outline: none;
}

@media (min-width: 768px) and (max-width: 1180px) {
  html body [data-site-header="main"].topbar.topbar--editorial.topbar--travel .topbar__inner.container{
    width: 100%;
    max-width: var(--container, 1200px);
    padding: 14px clamp(32px, 5vw, 56px);
  }
}

@media (max-width: 767px) {
  html body [data-site-header="main"].topbar.topbar--editorial.topbar--travel .topbar__inner.container{
    width: 100%;
    max-width: none;
    min-height: 70px;
    margin: 0;
    padding: 14px 16px;
  }

  html body [data-site-header="main"] .brand,
html body [data-site-header="main"] .brand__text{
    font-size: 15px;
    letter-spacing: -.035em;
  }

  html body [data-site-header="main"] .topbar-search-button,
html body [data-site-header="main"] .topbar-search-button:hover,
html body [data-site-header="main"] .topbar-search-button:focus-visible{
    border-radius: 0;
    transform: none;
  }

  html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__panel{
    padding: max(18px, env(safe-area-inset-top)) 16px max(28px, env(safe-area-inset-bottom));
  }

  html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__bar{
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
  }

  html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__close{
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__form{
    min-height: 52px;
    padding-left: 13px;
    grid-template-columns: 19px minmax(0, 1fr) 64px;
    gap: 8px;
  }

  html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__form input{
    height: 50px;
    font-size: 16px;
  }

  html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__submit{
    width: 64px;
    height: 52px;
    font-size: 13px;
  }

  html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__content{
    margin-top: 64px;
  }

  html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__eyebrow{
    margin-bottom: 14px;
    font-size: 12px;
  }

  html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__content h2{
    max-width: 330px;
    font-size: clamp(36px, 11vw, 44px);
    line-height: 1.2;
  word-break: keep-all;
  }

  html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__desc{
    max-width: 330px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.68;
  }

  html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__quick{
    margin-top: 28px;
    gap: 8px;
  }

  html body .home-search-overlay[data-site-search-overlay="main"] .home-search-overlay__quick button{
    min-height: 36px;
    padding: 0 13px;
    font-size: 12px;
  }
}
/* Global Korean text wrapping */
p,
strong {
  word-break: keep-all;
}
