:root {
  --ink: #25211d;
  --muted: #6e6259;
  --paper: #fbf8f3;
  --band: #f1ebe3;
  --line: #dfd3c5;
  --terracotta: #a95c43;
  --teal: #2f6f68;
  --gold: #c29655;
  --white: #fffdf9;
  --shadow: 0 20px 50px rgba(37, 33, 29, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
  word-break: keep-all;
}

p,
li,
dd,
.lead {
  overflow-wrap: anywhere;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 99;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(20, 17, 15, .72), rgba(20, 17, 15, .08));
}

.site-header.solid {
  position: sticky;
  color: #fff;
  background: #25211d;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  font-size: 13px;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: clamp(12px, 2.4vw, 28px);
  font-size: 15px;
  font-weight: 700;
}

nav a {
  text-decoration: none;
  opacity: .9;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(20px, 6vw, 86px) 80px;
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 14, 12, .82), rgba(18, 14, 12, .48) 42%, rgba(18, 14, 12, .08) 72%),
    linear-gradient(0deg, rgba(18, 14, 12, .3), rgba(18, 14, 12, .04));
}

.hero-content {
  position: relative;
  width: min(100%, 760px);
  min-width: 0;
  max-width: 760px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(43px, 7vw, 86px);
}

h2 {
  font-size: clamp(30px, 4.2vw, 52px);
}

h3 {
  font-size: 23px;
}

.lead {
  width: 100%;
  max-width: 630px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 420px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.btn-sms {
  color: #fff;
  background: var(--terracotta);
}

.btn-kakao {
  color: #1d1b12;
  background: #fee500;
}

.band {
  background: var(--band);
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-inner.slim {
  padding-top: 18px;
  padding-bottom: 18px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: #9b8d80;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro p:last-child,
.section-copy,
.cta p {
  color: var(--muted);
  font-size: 18px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.course-card,
.notice-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.course-card {
  min-height: 210px;
  padding: 28px;
}

.course-card.featured {
  border-color: rgba(47, 111, 104, .35);
  background: #eef7f4;
}

.course-card h3 {
  color: var(--teal);
  font-weight: 900;
}

.course-name {
  color: var(--teal);
  font-weight: 900;
}

.course-card strong {
  display: block;
  margin: 10px 0 14px;
  font-size: 28px;
}

.course-card p {
  margin: 0;
  color: var(--muted);
}

.course-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--teal);
  font-weight: 900;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.region-card {
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(37, 33, 29, .9), rgba(37, 33, 29, .28)),
    url("https://busantodak2.pe.kr/legacy-assets/skinfit.pe.kr/assets/hero-wellness-960.webp") center / cover;
  box-shadow: var(--shadow);
}

.region-card span {
  color: #f6d7bd;
  font-weight: 900;
}

.region-card strong {
  font-size: 22px;
  line-height: 1.2;
}

.region-card small {
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
}

.service-area-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.region-card.yangsan,
.region-page.yangsan .hero-overlay {
  background-color: #375f68;
}

.region-card.gimhae {
  background:
    linear-gradient(145deg, rgba(47, 111, 104, .92), rgba(37, 33, 29, .32)),
    url("https://busantodak2.pe.kr/legacy-assets/skinfit.pe.kr/assets/hero-wellness-960.webp") center / cover;
}

.region-card.yangsan {
  background:
    linear-gradient(145deg, rgba(55, 95, 104, .92), rgba(37, 33, 29, .28)),
    url("https://busantodak2.pe.kr/legacy-assets/skinfit.pe.kr/assets/hero-wellness-960.webp") center / cover;
}

.region-card.changwon,
.region-page.changwon .hero-overlay {
  background-color: #4f6540;
}

.region-card.changwon {
  background:
    linear-gradient(145deg, rgba(79, 101, 64, .92), rgba(37, 33, 29, .3)),
    url("https://busantodak2.pe.kr/legacy-assets/skinfit.pe.kr/assets/hero-wellness-960.webp") center / cover;
}

.region-card.jangyu,
.region-page.jangyu .hero-overlay {
  background-color: #6b5842;
}

.region-card.jangyu {
  background:
    linear-gradient(145deg, rgba(107, 88, 66, .92), rgba(37, 33, 29, .3)),
    url("https://busantodak2.pe.kr/legacy-assets/skinfit.pe.kr/assets/hero-wellness-960.webp") center / cover;
}

.region-card.ulsan,
.region-page.ulsan .hero-overlay {
  background-color: #2f5b7a;
}

.region-card.ulsan {
  background:
    linear-gradient(145deg, rgba(47, 91, 122, .92), rgba(37, 33, 29, .28)),
    url("https://busantodak2.pe.kr/legacy-assets/skinfit.pe.kr/assets/hero-wellness-960.webp") center / cover;
}

.region-card.daegu,
.region-page.daegu .hero-overlay {
  background-color: #70483d;
}

.region-card.daegu {
  background:
    linear-gradient(145deg, rgba(112, 72, 61, .92), rgba(37, 33, 29, .28)),
    url("https://busantodak2.pe.kr/legacy-assets/skinfit.pe.kr/assets/hero-wellness-960.webp") center / cover;
}

.region-card.geoje,
.region-page.geoje .hero-overlay {
  background-color: #3f6f73;
}

.region-card.geoje {
  background:
    linear-gradient(145deg, rgba(63, 111, 115, .92), rgba(37, 33, 29, .28)),
    url("https://busantodak2.pe.kr/legacy-assets/skinfit.pe.kr/assets/hero-wellness-960.webp") center / cover;
}

.region-card.sacheon,
.region-page.sacheon .hero-overlay {
  background-color: #60734a;
}

.region-card.sacheon {
  background:
    linear-gradient(145deg, rgba(96, 115, 74, .92), rgba(37, 33, 29, .3)),
    url("https://busantodak2.pe.kr/legacy-assets/skinfit.pe.kr/assets/hero-wellness-960.webp") center / cover;
}

.region-card.jinju,
.region-page.jinju .hero-overlay {
  background-color: #6f4f66;
}

.region-card.jinju {
  background:
    linear-gradient(145deg, rgba(111, 79, 102, .92), rgba(37, 33, 29, .3)),
    url("https://busantodak2.pe.kr/legacy-assets/skinfit.pe.kr/assets/hero-wellness-960.webp") center / cover;
}

.region-card.tongyeong,
.region-page.tongyeong .hero-overlay {
  background-color: #35627a;
}

.region-card.tongyeong {
  background:
    linear-gradient(145deg, rgba(53, 98, 122, .92), rgba(37, 33, 29, .28)),
    url("https://busantodak2.pe.kr/legacy-assets/skinfit.pe.kr/assets/hero-wellness-960.webp") center / cover;
}

.region-card.gyeongju,
.region-page.gyeongju .hero-overlay {
  background-color: #79613c;
}

.region-card.gyeongju {
  background:
    linear-gradient(145deg, rgba(121, 97, 60, .92), rgba(37, 33, 29, .3)),
    url("https://busantodak2.pe.kr/legacy-assets/skinfit.pe.kr/assets/hero-wellness-960.webp") center / cover;
}

.region-page .hero {
  min-height: 78svh;
}

.region-page .hero-overlay {
  mix-blend-mode: multiply;
  opacity: .95;
}

.region-page .hero-content {
  max-width: 830px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.rich-copy {
  color: var(--muted);
  font-size: 18px;
}

.rich-copy p {
  margin: 0 0 18px;
}

.info-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal);
  background: #fff;
  font-weight: 800;
  font-size: 14px;
}

.steps-list {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  position: relative;
  padding: 18px 18px 18px 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-links a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  background: var(--white);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.recruit-btn {
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.notice-grid article {
  padding: 24px;
}

.notice-grid article:last-child {
  grid-column: 1 / -1;
}

.regional-safety .notice-grid article:last-child {
  grid-column: auto;
}

.subsection-heading {
  margin-top: 48px;
  font-size: 26px;
}

.notice-grid strong {
  display: block;
  margin-bottom: 8px;
}

.notice-grid p {
  margin: 0;
  color: var(--muted);
}

.cta {
  text-align: center;
}

.nap-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 18px;
}

.nap-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.nap-list dt {
  color: var(--teal);
  font-weight: 900;
}

.nap-list dd {
  margin: 0;
  color: var(--muted);
}

.cta .hero-actions {
  justify-content: center;
  margin: 28px auto 0;
}

.compact {
  max-width: 360px;
}

.search-main {
  min-height: 72svh;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin: 30px 0 48px;
}

.search-form label {
  grid-column: 1 / -1;
  font-weight: 900;
}

.search-form input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

footer {
  padding: 36px 20px 44px;
  color: rgba(255, 255, 255, .82);
  text-align: center;
  background: #25211d;
}

.visit-alert-setting {
  margin: 18px 0 0;
  color: var(--muted);
  font: inherit;
  line-height: 1.7;
  text-align: left;
}

.slack-alert-toggle {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  color: #d76616;
  background: transparent;
  font: inherit;
  font-weight: 700;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
}

.slack-alert-toggle.is-blocked {
  color: #18794e;
}

.slack-alert-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

footer p {
  margin: 6px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  max-width: 920px;
  margin: 0 auto 18px;
  font-size: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
}

.tracking-pixel {
  display: none;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding: 108px 20px 54px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(18, 14, 12, .86), rgba(18, 14, 12, .42));
  }

  .lead {
    margin-bottom: 26px;
    max-width: min(100%, 340px);
    font-size: 17px;
    word-break: normal;
    line-break: anywhere;
  }

  .hero-actions {
    width: min(100%, 340px);
    gap: 8px;
  }

  .btn {
    min-height: 46px;
    padding: 0 14px;
    font-size: 15px;
  }

  .btn-sms,
  .btn-kakao {
    flex: 1 1 calc(50% - 4px);
  }

  .section-inner {
    width: min(100% - 32px, 1120px);
    padding: 64px 0;
  }

  .two-col,
  .content-grid,
  .region-grid,
  .course-grid,
  .notice-grid {
    grid-template-columns: 1fr;
  }

  .nap-list div,
  .search-form {
    grid-template-columns: 1fr;
  }

  .notice-grid article:last-child {
    grid-column: auto;
  }
}
