/* wonkneo 디자인 인터랙션 보조 스타일 (시안 index.html inline style 이전) */
#site-header {
  transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
#site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  border-bottom-color: rgba(217, 245, 228, 0.6);
}
/* 높이 애니메이션을 쓰지 않아 스크롤 시 헤더 떨림을 막는다 */
#site-header.is-scrolled #header-top-bar {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  border-color: transparent;
  pointer-events: none;
}
#header-top-bar {
  max-height: 48px;
  transition: max-height .22s ease, opacity .18s ease, padding .18s ease, border-color .18s ease;
}
#header-main {
  height: 5rem;
}
.desktop-menu-item > a.is-current,
.desktop-menu-item.is-current > a {
  color: var(--color-primary-600);
}
.desktop-menu-item .menu-dropdown {
  display: none;
  margin-top: 0 !important;
  /* 메뉴와 패널 사이 보이지 않는 다리 — 마우스 이동 중 닫힘 방지 */
  padding-top: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.desktop-menu-item .menu-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 14px;
}
.desktop-menu-item .menu-dropdown__panel {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229, 231, 235, 0.7);
  border-radius: 1rem;
  box-shadow: 0 14px 40px rgba(38, 60, 50, 0.1);
  overflow: hidden;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.desktop-menu-item.is-open .menu-dropdown {
  display: block;
}
.desktop-menu-item.is-open > a {
  color: var(--color-primary-600);
}
#mobile-menu {
  display: none;
}
#mobile-menu.is-open {
  display: block;
}
.mobile-sub-panel {
  display: none;
}
.mobile-sub-panel.is-open {
  display: block;
}
[data-mobile-toggle] svg {
  transition: transform 0.2s ease;
}
[data-mobile-toggle].is-active svg {
  transform: rotate(180deg);
  color: var(--color-primary-600);
}
[data-mobile-toggle].is-active {
  color: var(--color-primary-600);
}
[data-tab] .tab-underline {
  display: none;
}
[data-tab].is-active {
  color: #111827;
}
[data-tab].is-active .tab-underline {
  display: block;
}
[data-tab]:not(.is-active) {
  color: #d1d5db;
}
[data-tab-panel] {
  display: none;
}
[data-tab-panel].is-active {
  display: block;
}

/* Logo */
.wonk-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 280px;
}
.wonk-logo--header {
  max-width: min(248px, 58vw);
}
.wonk-logo--footer {
  max-width: 200px;
  opacity: 0.72;
  filter: grayscale(1);
}
.wonk-logo__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}
.wonk-logo--footer .wonk-logo__img {
  max-height: 42px;
}
.wonk-logo-link {
  transition: opacity .2s ease;
}
.wonk-logo-link:hover {
  opacity: 0.88;
}

/* Footer contacts */
.wonk-footer-contacts {
  display: grid;
  gap: 6px;
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.7;
  color: #6b7a72;
}
.wonk-footer-contacts p {
  margin: 0;
}
.wonk-footer-sep {
  margin: 0 0.55em;
  color: #c5cec8;
}
@media (max-width: 760px) {
  .wonk-footer-contacts {
    font-size: 12.5px;
  }
  .wonk-footer-sep {
    display: inline-block;
  }
}

/* Footer partners */
.wonk-footer-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e5ebe7;
}
@media (min-width: 768px) {
  .wonk-footer-partners {
    justify-content: flex-start;
  }
}
.wonk-footer-partner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  min-width: 168px;
  padding: 14px 16px 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e7ece9;
  box-shadow: 0 6px 18px rgba(49, 85, 65, .04);
}
.wonk-footer-partner__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #2f453a;
}
.wonk-footer-partner__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 36px;
  opacity: 1;
}
.wonk-footer-partner__logo img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 132px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.wonk-footer-partner__logo--ganam {
  padding: 2px 4px;
  border-radius: 6px;
  background: transparent;
}
.wonk-footer-partner__logo--ganam img {
  height: 32px;
  max-width: 120px;
}
.wonk-footer-partner__logo--voucher img {
  height: 36px;
  max-width: 128px;
}

/* Counsel / tel cards */
.wonk-counsel-panel {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(160deg, #ffffff 0%, #f3faf6 58%, #fff8ef 100%);
  border: 1px solid rgba(196, 224, 208, .7);
  box-shadow: 0 8px 28px rgba(61, 90, 73, .07);
}
.wonk-counsel-panel__glow {
  position: absolute;
  right: -18%;
  bottom: -28%;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(190, 232, 202, .55) 0%, rgba(190, 232, 202, 0) 70%);
  pointer-events: none;
}
.wonk-counsel-panel__inner {
  position: relative;
  z-index: 1;
  padding: 28px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.wonk-counsel-panel__intro {
  margin-bottom: 18px;
}
.wonk-counsel-panel__eyebrow {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  color: #287653;
}
.wonk-counsel-panel__intro h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1f2f27;
  letter-spacing: -.02em;
}
.wonk-counsel-panel__intro > p:last-child {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #6b7a72;
  line-height: 1.5;
}
.wonk-tel-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wonk-tel-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 18px 18px 16px;
  border: 5px solid rgba(255, 255, 255, .72);
  box-shadow: 0 10px 24px rgba(61, 90, 73, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wonk-tel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(61, 90, 73, .1);
}
.wonk-tel-card--apgujeong {
  background: linear-gradient(145deg, #e8f6fd 0%, #d7eef8 100%);
}
.wonk-tel-card--dogok {
  background: linear-gradient(145deg, #fff0e8 0%, #ffe4d6 100%);
}
.wonk-tel-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.wonk-tel-card__branch {
  font-size: 15px;
  font-weight: 800;
  color: #30433a;
  letter-spacing: -.01em;
}
.wonk-tel-card__branch span {
  margin-left: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #6b7a72;
}
.wonk-tel-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .78);
  color: #3d5148;
  box-shadow: 0 4px 12px rgba(49, 85, 65, .08);
  flex-shrink: 0;
}
.wonk-tel-card--apgujeong .wonk-tel-card__icon { color: #397c9e; }
.wonk-tel-card--dogok .wonk-tel-card__icon { color: #bd704f; }
.wonk-tel-card__phone {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.wonk-tel-card--apgujeong .wonk-tel-card__phone a { color: #2f6f8f; }
.wonk-tel-card--dogok .wonk-tel-card__phone a { color: #b05a38; }
.wonk-tel-card__phone a:hover { opacity: .86; }
.wonk-tel-card__meta {
  padding-top: 10px;
  border-top: 1px solid rgba(48, 67, 58, .08);
}
.wonk-tel-card__hours {
  margin: 0;
  font-size: 12.5px;
  color: #4f5f57;
  font-weight: 600;
  line-height: 1.45;
}
.wonk-tel-card__holiday {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: #c45b4a;
  font-weight: 700;
}

/* Center gallery */
.wonk-center-grid {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.wonk-center-grid.is-active {
  display: grid;
}
.wonk-center-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px 8px;
  text-align: center;
  font-size: 14px;
  color: #9aa59e;
  background: #f7faf8;
  border-radius: 16px;
  border: 1px dashed #dce5e0;
}
.wonk-center-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8eee9;
  box-shadow: 0 8px 20px rgba(49, 85, 65, .04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.wonk-center-card:hover {
  transform: translateY(-3px);
  border-color: #cfe3d6;
  box-shadow: 0 14px 28px rgba(49, 85, 65, .1);
}
.wonk-center-card__thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, #f3f7f4, #eaf3ee);
}
.wonk-center-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}
.wonk-center-card:hover .wonk-center-card__thumb img {
  transform: scale(1.05);
}
.wonk-center-card__title {
  display: block;
  padding: 11px 12px 13px;
  font-size: 13px;
  font-weight: 700;
  color: #4b5a52;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -.01em;
}
.wonk-center-card:hover .wonk-center-card__title {
  color: #27845c;
}
[data-center-tab] .tab-underline { display: none; }
[data-center-tab].is-active { color: #111827; }
[data-center-tab].is-active .tab-underline { display: block; }
[data-center-tab]:not(.is-active) { color: #d1d5db; }
@media (max-width: 760px) {
  .wonk-center-grid.is-active {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .wonk-counsel-panel__inner { padding: 22px 18px; }
  .wonk-tel-card { padding: 16px; border-width: 4px; }
  .wonk-footer-partner { min-width: calc(50% - 6px); }
}
