/* =========================================================
   HOME CLASSIC MERGE V1

   공통 디자인: center-simple.css 유지
   이전 홈 디자인: #home-classic 내부에만 적용

   renewal.css / layout-fix.css는 별도 연결하지 않습니다.
   ========================================================= */

/* ---------- 홈 기본값 ---------- */

#home-classic {
  --hc-olive: #3f3f00;
  --hc-olive-dark: #303000;
  --hc-paper: #fbf9f3;
  --hc-sage: #e8eddf;
  --hc-text: #343730;
  --hc-muted: #64685d;
  --hc-line: #dce0d2;
  --hc-white: #ffffff;
  --hc-shadow: 0 16px 44px rgba(46, 52, 29, .07);

  color: var(--hc-text);
  background: var(--hc-white);
  font-family: var(--brand-font-ko);
  font-size: 16px;
  line-height: 1.85;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

#home-classic *,
#home-classic *::before,
#home-classic *::after {
  box-sizing: border-box;
}

#home-classic .container {
  width: min(1160px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

#home-classic .section {
  padding-top: 88px;
  padding-bottom: 88px;
}

#home-classic h1,
#home-classic h2,
#home-classic h3 {
  margin-top: 0;
  color: var(--hc-olive-dark);
  font-family: var(--brand-font-ko);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -.035em;
}

#home-classic h2 {
  margin-bottom: 24px;
  font-size: clamp(24px, 3vw, 34px);
}

#home-classic h3 {
  margin-bottom: 18px;
  font-size: 21px;
}

#home-classic .section-heading {
  margin-bottom: 38px;
  text-align: center;
}

#home-classic .section-heading h2 {
  margin-bottom: 12px;
  line-height: 1.4;
}

#home-classic .section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--hc-muted);
}

#home-classic .section-kicker {
  margin: 0 0 14px;
  color: #5c6745;
  font-family: var(--brand-font-ko);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .15em;
}

#home-classic .section-footnote {
  margin: 24px 0 0;
  color: var(--hc-muted);
  font-size: 13px;
  text-align: center;
}

#home-classic .actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

#home-classic .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-width: 0;
  max-width: 100%;
  min-height: 50px;
  padding: 12px 23px;

  border: 1px solid var(--hc-olive);
  border-radius: 10px;
  background: var(--hc-olive);
  color: var(--hc-white);

  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;

  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

#home-classic .button:hover {
  border-color: var(--hc-olive-dark);
  background: var(--hc-olive-dark);
  color: var(--hc-white);
}

#home-classic .button.outline {
  border-color: var(--hc-olive);
  background: transparent;
  color: var(--hc-olive);
}

#home-classic .button.outline:hover {
  background: #f7f7ef;
  color: var(--hc-olive);
}

#home-classic .button-arrow {
  font-size: 19px;
}

#home-classic .text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--hc-olive);
  font-weight: 700;
}

#home-classic a:focus-visible,
#home-classic summary:focus-visible {
  outline: 3px solid #846200;
  outline-offset: 4px;
}

/* ---------- 첫 화면 ---------- */

#home-classic .welcome {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse at 90% 8%,
      rgba(221, 231, 203, .65),
      transparent 48%
    ),
    var(--hc-paper);
}

#home-classic .welcome-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: 54px;
  padding-top: 66px;
  padding-bottom: 74px;
}

#home-classic .welcome-layout > * {
  min-width: 0;
}

#home-classic .welcome-label {
  display: inline-block;
  padding: 6px 13px;
  border: 1px solid #d5dcc7;
  border-radius: 999px;
  background: #f3f5eb;
  color: var(--hc-olive);
  font-size: 13px;
  line-height: 1.6;
}

#home-classic .welcome h1 {
  margin: 23px 0;
  font-size: clamp(34px, 4vw, 53px);
  line-height: 1.32;
  letter-spacing: -.055em;
}

#home-classic .welcome h1 span {
  color: #67764a;
}

#home-classic .welcome-description {
  max-width: 460px;
  margin: 0;
  color: var(--hc-muted);
  font-size: 17px;
  line-height: 1.9;
}

#home-classic .welcome-actions {
  margin-top: 30px;
}

#home-classic .welcome-note {
  margin: 19px 0 0;
  color: var(--hc-muted);
  font-size: 12px;
  line-height: 1.85;
}

/* 이미지와 설명 카드는 겹치지 않고 각각 높이를 차지합니다. */
#home-classic .welcome-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 500px;
  min-width: 0;
  margin: 0 auto;
}

#home-classic .welcome-photo-frame {
  overflow: hidden;
  width: 100%;
  border: 6px solid #ffffff;
  border-radius: 220px 220px 24px 24px;
  background: var(--hc-sage);
  box-shadow: 0 12px 32px rgba(46, 52, 29, .06);
}

#home-classic .welcome-photo {
  display: block;
  width: 100%;
  height: clamp(320px, 37vw, 470px);
  object-fit: cover;
  object-position: center;
}

#home-classic .welcome-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: clamp(320px, 37vw, 470px);
  padding: 48px 24px 36px;

  background:
    radial-gradient(circle at 70% 20%, #f9f5e5, transparent 55%),
    linear-gradient(150deg, #e1e9d2, #f2f0df);

  color: var(--hc-olive);
  text-align: center;
}

#home-classic .placeholder-brand {
  margin: 18px 0 0;
  font-family: var(--brand-font-en);
  font-size: 32px;
  line-height: 1.5;
}

#home-classic .welcome-placeholder > p:last-child {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.9;
}

#home-classic .olive-emblem {
  position: relative;
  flex: 0 0 140px;
  width: 115px;
  height: 140px;
}

#home-classic .olive-emblem::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 56px;
  width: 2px;
  height: 118px;
  background: #728456;
  transform: rotate(12deg);
}

#home-classic .olive-emblem span {
  position: absolute;
  width: 43px;
  height: 25px;
  border-radius: 4px 80% 4px 80%;
  background: #819768;
}

#home-classic .olive-emblem span:nth-child(1) {
  top: 14px;
  left: 59px;
  transform: rotate(-32deg);
}

#home-classic .olive-emblem span:nth-child(2) {
  top: 40px;
  left: 12px;
  transform: rotate(23deg);
}

#home-classic .olive-emblem span:nth-child(3) {
  top: 72px;
  left: 55px;
  transform: rotate(-32deg);
}

#home-classic .olive-emblem span:nth-child(4) {
  top: 98px;
  left: 7px;
  transform: rotate(23deg);
}

#home-classic .welcome-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid #e0e5d7;
  border-radius: 16px;
  background: var(--hc-white);
  box-shadow: 0 6px 18px rgba(46, 52, 29, .045);
}

#home-classic .welcome-caption > div {
  min-width: 0;
}

#home-classic .caption-mark {
  display: inline-flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--hc-sage);
  color: var(--hc-olive);
  font-size: 22px;
}

#home-classic .welcome-caption strong {
  display: block;
  color: var(--hc-olive-dark);
  font-size: 14px;
  line-height: 1.75;
}

#home-classic .welcome-caption p {
  margin: 5px 0 0;
  color: var(--hc-muted);
  font-size: 13px;
  line-height: 1.8;
}

/* ---------- 첫 화면 아래 안내 ---------- */

#home-classic .home-reassurance {
  border-top: 1px solid #e6e8db;
  border-bottom: 1px solid #e6e8db;
  background: var(--hc-white);
}

#home-classic .reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 25px;
  padding-bottom: 25px;
}

#home-classic .reassurance-grid > div {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}

#home-classic .reassurance-number {
  color: #69794c;
  font-size: 14px;
  font-weight: 700;
}

#home-classic .reassurance-grid p {
  margin: 0;
  color: var(--hc-muted);
  font-size: 13px;
  line-height: 1.85;
}

#home-classic .reassurance-grid strong {
  color: var(--hc-text);
  font-size: 14px;
}

/* ---------- 고민별 카드 ---------- */

#home-classic .concern-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

#home-classic .concern-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 27px 23px;
  border: 1px solid var(--hc-line);
  border-radius: 19px;
  background: #f7f8f2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

#home-classic .concern-card:nth-child(2) {
  background: #fbf5ee;
}

#home-classic .concern-card:nth-child(3) {
  background: #f1f5ed;
}

#home-classic .concern-card:nth-child(4) {
  background: #f6f3ee;
}

#home-classic .concern-category {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .85);
  color: #596346;
  font-size: 12px;
  font-weight: 700;
}

#home-classic .concern-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.55;
}

#home-classic .concern-card p {
  margin: 0 0 25px;
  color: var(--hc-muted);
  font-size: 14px;
  line-height: 1.85;
}

#home-classic .concern-link {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  color: var(--hc-olive);
  font-size: 13px;
  font-weight: 700;
}

/* ---------- 프로그램 ---------- */

#home-classic .home-programs {
  background: var(--hc-paper);
}

#home-classic .program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

#home-classic .program-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--hc-line);
  border-radius: 18px;
  background: var(--hc-white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

#home-classic .program-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

#home-classic .program-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 17px 17px 17px 4px;
  background: var(--hc-sage);
  color: var(--hc-olive);
  font-size: 13px;
  font-weight: 700;
}

#home-classic .program-index {
  color: #68745b;
  font-size: 13px;
}

#home-classic .program-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

#home-classic .program-card p {
  margin: 0 0 16px;
  color: var(--hc-muted);
  line-height: 1.9;
}

#home-classic .program-card a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--hc-olive);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

#home-classic .coaching-feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding: 32px;
  border: 1px solid #d0d9bf;
  border-radius: 18px;
  background: #e9eedf;
}

#home-classic .coaching-feature > div {
  min-width: 0;
}

#home-classic .feature-label {
  display: block;
  margin-bottom: 10px;
  color: #596644;
  font-size: 12px;
  font-weight: 700;
}

#home-classic .coaching-feature h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

#home-classic .coaching-feature p {
  max-width: 660px;
  margin: 0;
  color: var(--hc-muted);
  font-size: 15px;
}

#home-classic .coaching-feature .button {
  flex-shrink: 0;
}

/* ---------- 센터장 소개 ---------- */

#home-classic .director-feature {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 70px;
  max-width: 1040px;
  margin: 0 auto;
}

#home-classic .director-feature > * {
  min-width: 0;
}

#home-classic .director-feature-photo {
  margin: 0;
  padding: 25px 25px 16px;
  border: 1px solid var(--hc-line);
  border-radius: 150px 150px 20px 20px;
  background: var(--hc-paper);
}

#home-classic .director-feature-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 120px 120px 12px 12px;
}

#home-classic .director-feature-photo figcaption {
  margin-top: 15px;
  color: var(--hc-muted);
  font-size: 13px;
  text-align: center;
}

#home-classic .director-feature-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(27px, 3vw, 37px);
}

#home-classic .director-feature-copy > p:not(.section-kicker) {
  color: var(--hc-muted);
  font-size: 15px;
}

#home-classic .approach-list {
  display: grid;
  gap: 12px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

#home-classic .approach-list li {
  position: relative;
  padding-left: 23px;
  color: var(--hc-text);
  font-size: 14px;
}

#home-classic .approach-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8a9b6c;
}

#home-classic .director-feature--text-only {
  display: block;
  max-width: 850px;
  padding: 40px;
  border: 1px solid var(--hc-line);
  border-radius: 22px;
  background: var(--hc-paper);
}

/* ---------- 이용 과정 ---------- */

#home-classic .journey-section {
  background: #f3f6ee;
}

#home-classic .journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#home-classic .journey-grid li {
  min-width: 0;
  padding: 30px;
  border: 1px solid #dce3d0;
  border-radius: 18px;
  background: var(--hc-white);
}

#home-classic .journey-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #edf1e5;
  color: var(--hc-olive);
  font-size: 13px;
  font-weight: 700;
}

#home-classic .journey-grid h3 {
  margin-bottom: 12px;
}

#home-classic .journey-grid p {
  margin: 0;
  color: var(--hc-muted);
  font-size: 14px;
}

#home-classic .journey-bottom {
  margin-top: 26px;
  text-align: center;
}

#home-classic .journey-bottom p {
  margin-bottom: 0;
  color: var(--hc-muted);
  font-size: 13px;
}

/* ---------- FAQ ---------- */

#home-classic .faq-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 65px;
}

#home-classic .faq-intro > p:not(.section-kicker) {
  max-width: 300px;
  color: var(--hc-muted);
  font-size: 15px;
}

#home-classic .faq-list {
  min-width: 0;
  border-top: 1px solid var(--hc-line);
}

#home-classic .faq-item {
  border-bottom: 1px solid var(--hc-line);
}

#home-classic .faq-item summary {
  position: relative;
  padding: 23px 32px 23px 0;
  color: var(--hc-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}

#home-classic .faq-item summary::-webkit-details-marker {
  display: none;
}

#home-classic .faq-item summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 3px;
  color: var(--hc-olive);
  font-size: 22px;
  font-weight: 400;
}

#home-classic .faq-item[open] summary::after {
  content: "−";
}

#home-classic .faq-answer {
  padding: 0 22px 22px 0;
}

#home-classic .faq-answer p {
  margin: 0 0 12px;
  color: var(--hc-muted);
  font-size: 14px;
  line-height: 1.9;
}

#home-classic .faq-answer p:last-child {
  margin-bottom: 0;
}

#home-classic .faq-answer .text-link {
  font-size: 14px;
}

/* ---------- 소책자 ---------- */

#home-classic .home-guide-section {
  background: var(--hc-paper);
}

#home-classic .booklet-feature {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 65px;
}

#home-classic .booklet-feature > * {
  min-width: 0;
}

#home-classic .booklet-art {
  padding: 12px 25px;
  text-align: center;
}

#home-classic .booklet-cover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;

  width: min(260px, 100%);
  min-height: 345px;
  margin: 0 auto;
  padding: 35px 28px;

  border: 1px solid #c3ccb1;
  border-left: 11px solid #879969;
  border-radius: 3px 12px 12px 3px;

  background: linear-gradient(140deg, #f5f5e9, #dfe7cf);
  color: var(--hc-olive);
  text-align: left;

  box-shadow:
    8px 9px 0 #e7e4d8,
    18px 24px 35px rgba(49, 58, 30, .12);

  transform: rotate(-5deg);
}

#home-classic .booklet-cover-label {
  font-size: 11px;
  letter-spacing: .06em;
}

#home-classic .booklet-cover strong {
  font-size: 26px;
  line-height: 1.65;
  letter-spacing: -.05em;
}

#home-classic .booklet-cover-line {
  width: 46px;
  height: 2px;
  background: #819568;
}

#home-classic .booklet-cover > span:last-child {
  font-size: 12px;
}

#home-classic .booklet-art-note {
  margin: 32px 0 0;
  color: var(--hc-muted);
  font-size: 11px;
}

#home-classic .booklet-feature-copy > p:not(.section-kicker) {
  color: var(--hc-muted);
}

#home-classic .booklet-feature-copy .actions .text-link {
  margin-top: 0;
  font-size: 14px;
}

#home-classic .booklet-feature-copy .booklet-disclaimer {
  max-width: 500px;
  margin-top: 22px;
  font-size: 12px;
  line-height: 1.8;
}

/* ---------- 홈 하단 상담 배너 ---------- */

#home-classic .home-contact-band {
  padding: 52px 0;
  background: var(--hc-olive);
  color: var(--hc-white);
}

#home-classic .home-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

#home-classic .home-contact-inner > div {
  min-width: 0;
}

#home-classic .home-contact-band h2 {
  margin-bottom: 10px;
  color: var(--hc-white);
  font-size: 25px;
}

#home-classic .home-contact-band p {
  margin: 0;
  color: var(--hc-white);
}

#home-classic .home-contact-band .section-kicker {
  margin-bottom: 14px;
}

#home-classic .home-contact-band .home-contact-hours {
  margin-top: 14px;
  font-size: 13px;
}

#home-classic .home-contact-band .actions {
  flex-shrink: 0;
  margin-top: 0;
}

#home-classic .home-contact-band .button {
  border-color: var(--hc-white);
  background: var(--hc-white);
  color: var(--hc-olive);
}

#home-classic .home-contact-band .button.outline {
  border-color: var(--hc-white);
  background: transparent;
  color: var(--hc-white);
}

#home-classic .home-contact-band .button:hover {
  border-color: #f7f7ef;
  background: #f7f7ef;
  color: var(--hc-olive);
}

/* ---------- 마우스 효과 ---------- */

@media (hover: hover) and (pointer: fine) {
  #home-classic .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(46, 52, 29, .12);
  }

  #home-classic .concern-card:hover {
    transform: translateY(-5px);
    border-color: #b7c3a3;
    box-shadow: var(--hc-shadow);
  }

  #home-classic .program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hc-shadow);
  }
}

/* ---------- 태블릿 ---------- */

@media (max-width: 1000px) {
  #home-classic .welcome-layout {
    gap: 30px;
  }

  #home-classic .welcome h1 {
    font-size: 41px;
  }

  #home-classic .concern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #home-classic .director-feature,
  #home-classic .faq-section,
  #home-classic .booklet-feature {
    gap: 38px;
  }

  #home-classic .home-contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ---------- 작은 태블릿 ---------- */

@media (max-width: 800px) {
  #home-classic .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  #home-classic .welcome-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding-top: 42px;
    padding-bottom: 48px;
  }

  #home-classic .welcome-copy {
    max-width: 600px;
  }

  #home-classic .welcome h1 {
    font-size: clamp(35px, 6vw, 46px);
  }

  #home-classic .welcome-description {
    max-width: 560px;
  }

  #home-classic .welcome-visual {
    max-width: 480px;
    gap: 14px;
  }

  #home-classic .welcome-photo {
    height: 360px;
  }

  #home-classic .welcome-placeholder {
    min-height: 360px;
  }

  #home-classic .reassurance-grid {
    gap: 16px;
  }

  #home-classic .reassurance-grid > div {
    align-items: flex-start;
    gap: 9px;
  }

  #home-classic .reassurance-grid p,
  #home-classic .reassurance-grid strong {
    font-size: 12px;
  }

  #home-classic .coaching-feature {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  #home-classic .director-feature {
    grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
    gap: 28px;
  }

  #home-classic .director-feature--text-only {
    display: block;
  }

  #home-classic .journey-grid {
    gap: 15px;
  }

  #home-classic .journey-grid li {
    padding: 23px;
  }

  #home-classic .faq-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  #home-classic .faq-intro > p:not(.section-kicker) {
    max-width: none;
  }
}

/* ---------- 모바일 ---------- */

@media (max-width: 640px) {
  #home-classic .container {
    width: calc(100% - 36px);
  }

  #home-classic .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  #home-classic .section-heading {
    margin-bottom: 28px;
  }

  #home-classic .section-heading h2 {
    font-size: 26px;
  }

  #home-classic .section-heading > p:last-child {
    font-size: 14px;
  }

  #home-classic .section-kicker {
    font-size: 10px;
    letter-spacing: .1em;
  }

  #home-classic .welcome-layout {
    gap: 26px;
    padding-top: 33px;
    padding-bottom: 39px;
  }

  #home-classic .welcome h1 {
    margin-top: 19px;
    margin-bottom: 19px;
    font-size: clamp(30px, 8.4vw, 41px);
  }

  #home-classic .welcome-description {
    font-size: 15px;
  }

  #home-classic .welcome-label {
    padding: 5px 10px;
    font-size: 12px;
  }

  #home-classic .welcome-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 9px;
    margin-top: 23px;
  }

  #home-classic .welcome-actions .button {
    gap: 8px;
    padding: 12px 10px;
    font-size: 14px;
  }

  #home-classic .welcome-note {
    margin-top: 14px;
    font-size: 11px;
  }

  #home-classic .welcome-visual {
    max-width: 390px;
    gap: 12px;
  }

  #home-classic .welcome-photo-frame {
    border-width: 5px;
    border-radius: 170px 170px 20px 20px;
  }

  #home-classic .welcome-photo {
    height: 310px;
  }

  #home-classic .welcome-placeholder {
    min-height: 310px;
    padding: 34px 18px 28px;
  }

  #home-classic .placeholder-brand {
    margin-top: 10px;
    font-size: 27px;
  }

  #home-classic .welcome-placeholder > p:last-child {
    margin-top: 8px;
    font-size: 14px;
  }

  #home-classic .welcome-caption {
    gap: 11px;
    padding: 16px;
    border-radius: 14px;
  }

  #home-classic .caption-mark {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  #home-classic .welcome-caption strong {
    font-size: 13px;
  }

  #home-classic .welcome-caption p {
    font-size: 12px;
  }

  #home-classic .reassurance-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding-top: 21px;
    padding-bottom: 21px;
  }

  #home-classic .reassurance-grid > div {
    align-items: center;
    gap: 14px;
  }

  #home-classic .reassurance-grid p {
    font-size: 12px;
  }

  #home-classic .reassurance-grid strong {
    margin-right: 5px;
    font-size: 13px;
  }

  #home-classic .reassurance-grid br {
    display: none;
  }

  #home-classic .concern-grid {
    gap: 12px;
  }

  #home-classic .concern-card {
    padding: 20px 16px;
    border-radius: 15px;
  }

  #home-classic .concern-category {
    margin-bottom: 17px;
    padding: 4px 7px;
    font-size: 10px;
  }

  #home-classic .concern-card h3 {
    font-size: 17px;
    line-height: 1.6;
  }

  #home-classic .concern-card p {
    margin-bottom: 20px;
    font-size: 12px;
  }

  #home-classic .concern-link {
    font-size: 11px;
  }

  #home-classic .section-footnote {
    font-size: 11px;
  }

  #home-classic .program-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
  }

  #home-classic .program-card {
    padding: 25px;
    border-radius: 15px;
  }

  #home-classic .program-card h3 {
    font-size: 22px;
  }

  #home-classic .program-card p {
    font-size: 14px;
  }

  #home-classic .coaching-feature {
    margin-top: 17px;
    padding: 25px;
  }

  #home-classic .coaching-feature h3 {
    font-size: 22px;
  }

  #home-classic .coaching-feature p {
    font-size: 14px;
  }

  #home-classic .coaching-feature .button {
    width: 100%;
  }

  #home-classic .director-feature {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  #home-classic .director-feature-photo {
    width: min(280px, 100%);
    margin: 0 auto;
    padding: 19px 19px 14px;
  }

  #home-classic .director-feature-copy h2 {
    font-size: 28px;
  }

  #home-classic .director-feature-copy > p:not(.section-kicker) {
    font-size: 14px;
  }

  #home-classic .approach-list li {
    font-size: 13px;
  }

  #home-classic .director-feature--text-only {
    padding: 26px;
  }

  #home-classic .journey-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 13px;
  }

  #home-classic .journey-grid li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 15px;
    padding: 22px;
  }

  #home-classic .journey-number {
    grid-row: span 2;
    width: 36px;
    height: 36px;
    margin-bottom: 0;
  }

  #home-classic .journey-grid h3 {
    margin-top: 3px;
    margin-bottom: 8px;
    font-size: 18px;
  }

  #home-classic .journey-grid p {
    font-size: 13px;
  }

  #home-classic .journey-bottom p {
    font-size: 12px;
  }

  #home-classic .faq-section {
    gap: 25px;
  }

  #home-classic .faq-intro h2 {
    font-size: 27px;
  }

  #home-classic .faq-item summary {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
  }

  #home-classic .faq-item summary::after {
    top: 17px;
  }

  #home-classic .faq-answer p {
    font-size: 13px;
  }

  #home-classic .booklet-feature {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  #home-classic .booklet-art {
    padding-top: 10px;
  }

  #home-classic .booklet-cover {
    width: min(220px, 100%);
    min-height: 295px;
    padding: 29px 24px;
    gap: 24px;
  }

  #home-classic .booklet-cover strong {
    font-size: 22px;
  }

  #home-classic .booklet-feature-copy h2 {
    font-size: 27px;
  }

  #home-classic .booklet-feature-copy > p:not(.section-kicker) {
    font-size: 14px;
  }

  #home-classic .booklet-feature-copy .booklet-disclaimer {
    font-size: 11px;
  }

  #home-classic .home-contact-band {
    padding: 36px 0;
  }

  #home-classic .home-contact-inner {
    gap: 22px;
  }

  #home-classic .home-contact-band h2 {
    font-size: 23px;
  }

  #home-classic .home-contact-band p {
    font-size: 14px;
  }

  #home-classic .home-contact-band .home-contact-hours {
    font-size: 13px;
  }

  #home-classic .home-contact-band .actions {
    width: 100%;
  }

  #home-classic .home-contact-band .button {
    flex: 1 1 120px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 14px;
  }
}

/* ---------- 좁은 휴대폰 ---------- */

@media (max-width: 400px) {
  #home-classic .concern-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  #home-classic .concern-card {
    padding: 22px;
  }

  #home-classic .concern-card h3 {
    font-size: 19px;
  }

  #home-classic .concern-card p {
    font-size: 14px;
  }

  #home-classic .concern-link {
    font-size: 13px;
  }

  #home-classic .welcome-actions {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 360px) {
  #home-classic .welcome-photo {
    height: 290px;
  }

  #home-classic .welcome-placeholder {
    min-height: 290px;
    padding-right: 14px;
    padding-left: 14px;
  }

  #home-classic .welcome-caption {
    gap: 9px;
    padding: 14px 12px;
  }
}

/* ---------- 움직임 최소화 ---------- */

@media (prefers-reduced-motion: reduce) {
  #home-classic *,
  #home-classic *::before,
  #home-classic *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  #home-classic .button:hover,
  #home-classic .concern-card:hover,
  #home-classic .program-card:hover {
    transform: none;
  }
}
