:root {
  --bg: #fff9f6;
  --paper: #ffffff;
  --ink: #2a2423;
  --muted: #746763;
  --line: #f0ded6;
  --rose: #d9796d;
  --rose-dark: #a84d45;
  --sage: #5f8675;
  --mist: #fff0ea;
  --cream: #f5fbf4;
  --apricot: #f8c7a5;
  --shadow: 0 18px 44px rgba(110, 70, 54, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(234, 223, 228, 0.78);
  background: rgba(255, 249, 246, 0.93);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  color: #fff;
  font-size: 15px;
}

.site-nav {
  display: none;
  position: absolute;
  top: 64px;
  right: 14px;
  left: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  padding: 12px;
  color: var(--muted);
  font-weight: 700;
}

.menu-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #fff3ec;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 249, 246, 0.97) 0%, rgba(255, 249, 246, 0.84) 42%, rgba(255, 240, 232, 0.38) 100%),
    url("./assets/hero-care.jpg") center/cover;
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 46px solid rgba(95, 134, 117, 0.13);
  border-radius: 50%;
  content: "";
}

.section-inner {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero-inner {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: center;
  padding: 82px 0 126px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.28;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 26px;
  color: #4e4650;
  font-size: 18px;
  font-weight: 600;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-points span {
  padding: 9px 12px;
  border: 1px solid rgba(168, 77, 69, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 900;
}

.hero-actions,
.contact-actions {
  display: grid;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
}

.button.primary {
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  color: #fff;
  box-shadow: 0 14px 30px rgba(168, 77, 69, 0.24);
}

.button.secondary {
  border-color: var(--rose);
  background: rgba(255, 255, 255, 0.88);
  color: var(--rose-dark);
}

.section {
  padding: 70px 0;
}

.soft-band {
  background:
    linear-gradient(180deg, rgba(255, 240, 234, 0.78), rgba(245, 251, 244, 0.58));
}

.two-column {
  display: grid;
  gap: 22px;
}

.intro-copy p,
.section-heading p,
.muted {
  color: var(--muted);
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.care-photo {
  margin: 22px 0 0;
}

.care-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fffaf7);
  box-shadow: 0 12px 30px rgba(83, 54, 63, 0.07);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(248, 199, 165, 0.28);
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 900;
}

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

.course {
  background: #fffaf7;
}

.course-grid {
  display: grid;
  gap: 12px;
}

.course-card {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(83, 54, 63, 0.07);
}

.course-card.featured {
  border-color: rgba(168, 77, 69, 0.34);
  background: linear-gradient(180deg, #ffffff, #fff1eb);
}

.course-name {
  color: var(--rose-dark);
  font-size: 15px;
  font-weight: 900;
}

.course-card strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.2;
}

.course-card p {
  margin: 0;
  color: var(--sage);
  font-size: 20px;
  font-weight: 900;
}

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

.check-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(83, 54, 63, 0.06);
  font-weight: 700;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.process-list span {
  grid-row: 1 / 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--rose));
  color: #fff;
  font-weight: 900;
}

.process-list strong {
  font-size: 17px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.pill-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pill-list li {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: #3f6e5d;
  font-weight: 800;
  text-align: center;
}

.area {
  background: var(--cream);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(111, 141, 130, 0.32);
  border-radius: 999px;
  background: #fff;
  color: #45665a;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
}

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

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

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

.recruit {
  background: #fffaf7;
}

.recruit-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.recruit-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fff4ef);
  box-shadow: var(--shadow);
}

.recruit-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.recruit-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

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

.recruit-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  background:
    linear-gradient(135deg, rgba(42, 36, 35, 0.92), rgba(168, 77, 69, 0.92)),
    url("https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=1400&q=80") center/cover;
  color: #fff;
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-inner {
  text-align: center;
}

.contact-actions {
  margin: 24px 0 18px;
}

.contact .button.primary {
  background: #fff;
  color: var(--rose-dark);
  box-shadow: none;
}

.contact .button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.contact-note {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 18px 92px;
  background: #211f22;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(234, 223, 228, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.sticky-cta a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  color: #fff;
  font-weight: 900;
}

.sticky-cta a:last-child {
  background: #eef8f2;
  color: #45665a;
}

@media (min-width: 680px) {
  .hero-actions,
  .contact-actions {
    display: flex;
    justify-content: flex-start;
  }

  .contact-actions {
    justify-content: center;
  }

  .recruit-actions {
    display: flex;
  }

  .button {
    min-width: 170px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .site-header {
    padding: 14px 36px;
  }

  .menu-button {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 8px 12px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .section {
    padding: 96px 0;
  }

  .two-column {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .process-list span {
    grid-row: auto;
  }

  .pill-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sticky-cta {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: 300px;
  }
}

@media (max-width: 380px) {
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 25px;
  }

  .pill-list {
    grid-template-columns: 1fr;
  }
}
