/* =====================================================
   YOU LASH — Brand Stylesheet
   v1.0.3
   ===================================================== */

/* Google Fonts */
/* Google Fonts: wp_head로 이동 (functions.php ylc_google_fonts) */

/* ─── Design Tokens ─── */
:root {
  --cream-bg:    #FBF6E3;
  --cream-mid:   #ECE3C8;
  --cream-dark:  #D9CEAF;
  --charcoal:    #2A2620;
  --charcoal-60: #4A3F34;
  --gold:        #BFA063;
  --gold-dark:   #94733A;
  --white:       #FFFDF8;

  --f-serif-en: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-serif-kr: 'Nanum Myeongjo', 'Georgia', serif;
  --f-sans:     'Noto Sans KR', sans-serif;

  --nav-h:  56px;
  --max-w:  1100px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.ylh-body {
  font-family: var(--f-sans);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--cream-bg);
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
address { font-style: normal; }

/* ─── Admin bar 보정 ─── */
.admin-bar .ylh-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .ylh-nav { top: 46px; } }

/* ─── NAV ─── */
.ylh-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--cream-bg);
  border-bottom: 1px solid var(--cream-dark);
  z-index: 900;
}
.ylh-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.ylh-nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-right: auto;
}
.ylh-logo-en {
  font-family: var(--f-serif-en);
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--charcoal);
}
.ylh-logo-kr {
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--charcoal-60);
}
.ylh-nav__links { display: flex; gap: 28px; }
.ylh-nav__links a {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--charcoal-60);
  transition: color .2s;
}
.ylh-nav__links a:hover { color: var(--charcoal); }
.ylh-nav__mobile-link,
.ylh-nav__blog-mobile {
  display: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--charcoal-60);
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s;
}
.ylh-nav__mobile-link:hover,
.ylh-nav__blog-mobile:hover { color: var(--charcoal); }

/* ─── Buttons ─── */
.ylh-btn {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity .2s, background .2s, color .2s;
  white-space: nowrap;
}
.ylh-btn--nav {
  background: var(--charcoal);
  color: var(--cream-bg);
  padding: 8px 18px;
  font-size: 12px;
}
.ylh-btn--nav:hover { opacity: .78; }
.ylh-btn--hero {
  background: var(--gold);
  color: var(--charcoal);
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 28px;
}
.ylh-btn--hero:hover { background: var(--gold-dark); color: var(--white); }
.ylh-btn--card {
  background: transparent;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: 9px 22px;
  margin-top: 14px;
}
.ylh-btn--card:hover { background: var(--gold); color: var(--charcoal); }
.ylh-btn--primary { background: var(--charcoal); color: var(--cream-bg); padding: 13px 28px; }
.ylh-btn--primary:hover { opacity: .82; }
.ylh-btn--secondary { background: var(--gold); color: var(--charcoal); padding: 13px 28px; }
.ylh-btn--secondary:hover { background: var(--gold-dark); color: var(--white); }
.ylh-btn--outline { border: 1px solid var(--charcoal-60); color: var(--charcoal-60); padding: 12px 24px; }
.ylh-btn--outline:hover { border-color: var(--charcoal); color: var(--charcoal); }

/* ─── Section common ─── */
.ylh-section-header { text-align: center; margin-bottom: 44px; }
.ylh-section-en {
  font-family: var(--f-serif-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 8px;
}
.ylh-section-title {
  font-family: var(--f-serif-kr);
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
}
.ylh-section-sub { margin-top: 10px; font-size: 13px; color: var(--charcoal-60); }

/* ─── HERO ─── */
.ylh-hero {
  position: relative;
  --ylh-hero-parallax-y: 0px;
  height: 100vh;
  height: 100svh;
  min-height: 520px;
  max-height: 880px;
  margin-top: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ylh-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  overflow: hidden;
}
.ylh-hero__bg::before {
  content: "";
  position: absolute;
  inset: -24px;
  background: url('/wp-content/uploads/youlash/1-1.webp') center center / cover no-repeat;
  filter: blur(18px);
  transform: translate3d(0, calc(var(--ylh-hero-parallax-y) * .35), 0) scale(1.2);
  opacity: .7;
  will-change: transform;
}
.ylh-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ylh-hero__video {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 29%;
  transform: translate3d(0, var(--ylh-hero-parallax-y), 0) scale(1.16);
  will-change: transform;
}
.ylh-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,24,12,.42) 0%, rgba(30,24,12,.65) 100%);
}
.ylh-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--cream-bg);
  padding: 0 24px;
  max-width: 640px;
}
.ylh-hero__en {
  font-family: var(--f-serif-en);
  font-style: italic;
  font-size: clamp(16px, 3vw, 24px);
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 14px;
}
.ylh-hero__title {
  font-family: var(--f-serif-kr);
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--white);
}
.ylh-hero__tagline {
  font-size: clamp(14px, 2.2vw, 18px);
  letter-spacing: 0.14em;
  color: var(--cream-mid);
  margin-top: 18px;
}

/* ─── STRENGTHS ─── */
.ylh-strengths { background: var(--charcoal); padding: 40px 20px; }
.ylh-strengths__list {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.ylh-strengths__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
  padding: 12px 16px;
  color: var(--cream-mid);
  border-right: 1px solid rgba(255,255,255,.1);
}
.ylh-strengths__list li:last-child { border-right: none; }
.ylh-strengths__icon { color: var(--gold); font-size: 18px; line-height: 1; }
.ylh-strengths__list strong {
  font-family: var(--f-serif-kr);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.ylh-strengths__list span:last-child { font-size: 13px; }

/* ─── INTRO (AEO H2 답변 캡슐) ─── */
.ylh-intro {
  padding: clamp(48px, 7vw, 80px) 20px;
  background: var(--cream-bg);
  text-align: center;
}
.ylh-intro__inner {
  max-width: 700px;
  margin: 0 auto;
}
.ylh-intro__title {
  font-family: var(--f-serif-kr);
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 20px;
}
.ylh-intro__text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--charcoal-60);
}

/* ─── SERVICES ─── */
.ylh-services { padding: clamp(56px, 8vw, 96px) 20px; background: var(--white); }
.ylh-services__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.ylh-services__more {
  margin-top: 30px;
  text-align: center;
}
.ylh-service-card { background: var(--cream-bg); border: 1px solid var(--cream-dark); overflow: hidden; }
.ylh-service-card__img { aspect-ratio: 4/3; overflow: hidden; }
.ylh-service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ylh-service-card:hover .ylh-service-card__img img { transform: scale(1.04); }
.ylh-service-card__body { padding: 22px 24px 24px; }
.ylh-service-card h3 {
  font-family: var(--f-serif-kr);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.ylh-service-card p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--charcoal-60);
  margin-bottom: 14px;
}
.ylh-service-card__menu {
  border-top: 1px solid var(--cream-dark);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ylh-service-card__menu li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--charcoal-60);
}
.ylh-service-card__menu li span:last-child { color: var(--gold-dark); font-weight: 500; }

/* ─── GALLERY ─── */
.ylh-gallery { padding: clamp(64px, 8vw, 104px) 20px; background: var(--cream-bg); }
.ylh-gallery__grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.ylh-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(197, 162, 92, .22);
  border-radius: 8px;
  padding: 0;
  cursor: zoom-in;
  color: var(--charcoal);
  box-shadow: 0 16px 42px rgba(35, 30, 25, .08);
}
.ylh-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}
.ylh-gallery__item:hover img {
  transform: scale(1.035);
  filter: saturate(.96);
}
.ylh-gallery__caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 9px 12px;
  background: rgba(250, 244, 229, .92);
  color: var(--charcoal);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  word-break: keep-all;
  border: 1px solid rgba(197, 162, 92, .28);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.ylh-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(22, 19, 16, .88);
}
.ylh-gallery-lightbox[aria-hidden="false"] { display: flex; }
.ylh-lightbox-open { overflow: hidden; }
.ylh-gallery-lightbox__figure {
  width: min(92vw, 760px);
  max-height: 92vh;
  margin: 0;
  text-align: center;
}
.ylh-gallery-lightbox__figure img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}
.ylh-gallery-lightbox__figure figcaption {
  margin-top: 12px;
  color: var(--cream-bg);
  font-size: 15px;
  letter-spacing: .03em;
}
.ylh-gallery-lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(22,19,16,.45);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

/* ─── ACCESS ─── */
.ylh-access { padding: clamp(56px, 8vw, 96px) 20px; background: var(--white); }
.ylh-access__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ylh-access__map-frame {
  display: block;
  width: 100%;
  height: 320px;
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
}
.ylh-access__map-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
  padding: 11px 16px;
  background: var(--cream-mid);
  border: 1px solid var(--cream-dark);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--charcoal);
  transition: background .2s, color .2s;
  text-decoration: none;
}
.ylh-access__map-nav:hover { background: var(--cream-dark); color: var(--charcoal); }
.ylh-nap { display: flex; flex-direction: column; gap: 16px; }
.ylh-nap__row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  font-size: 14px;
  line-height: 1.65;
}
.ylh-nap__row dt { font-weight: 500; color: var(--charcoal); font-size: 13px; padding-top: 2px; }
.ylh-nap__row dd { color: var(--charcoal-60); }
.ylh-nap__row em { font-style: normal; color: var(--gold-dark); font-size: 13px; }
.ylh-nap__row a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.ylh-access__actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }

/* ─── FOOTER ─── */
.ylh-footer { background: var(--charcoal); color: var(--cream-mid); padding: 52px 20px 0; }
.ylh-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ylh-footer__en {
  font-family: var(--f-serif-en);
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.ylh-footer__kr { font-size: 11px; color: var(--cream-mid); margin-top: 5px; }
.ylh-footer__info address,
.ylh-footer__info p { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.55); }
.ylh-footer__info a { color: rgba(255,255,255,.7); text-decoration: underline; text-underline-offset: 2px; }
.ylh-footer__social { display: flex; gap: 16px; align-items: center; }
.ylh-footer__social a { color: rgba(255,255,255,.45); transition: color .2s; }
.ylh-footer__social a:hover { color: var(--gold); }
.ylh-footer__copy {
  max-width: var(--max-w); margin: 0 auto;
  padding: 16px 0;
  font-size: 11.5px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .ylh-nav__links { display: none; }
  .ylh-nav__mobile-link,
  .ylh-nav__blog-mobile { display: inline-block; }
  .ylh-hero__video {
    object-fit: contain;
    object-position: center center;
    transform: translate3d(0, var(--ylh-hero-parallax-y), 0) scale(1.08);
  }

  .ylh-strengths__list { grid-template-columns: 1fr; gap: 0; }
  .ylh-strengths__list li { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .ylh-strengths__list li:last-child { border-bottom: none; }

  .ylh-access__inner { grid-template-columns: 1fr; gap: 32px; }
  .ylh-access__map-frame { height: 260px; }

  .ylh-footer__inner { grid-template-columns: 1fr; gap: 20px; }

  .ylh-gallery { padding-left: 18px; padding-right: 18px; }
  .ylh-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .ylh-gallery__caption {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 8px 9px;
    font-size: 11.5px;
  }
}

@media (max-width: 480px) {
  .ylh-gallery__grid { gap: 12px; }
  .ylh-btn--hero { padding: 12px 28px; }
  .ylh-access__actions { flex-direction: column; }
  .ylh-access__actions .ylh-btn { text-align: center; }
}

/* ─── HERO entity capsule ─── */
.ylh-hero__entity {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Section answer capsule (AEO) ─── */
.ylh-section-capsule {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--charcoal-60);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Service card answer capsule ─── */
.ylh-capsule {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--charcoal-60);
  margin-bottom: 14px;
}

/* ─── Pricing table ─── */
.ylh-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 6px;
}
.ylh-price-table thead tr {
  background: var(--cream-mid);
}
.ylh-price-table th {
  padding: 7px 10px;
  text-align: left;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream-dark);
}
.ylh-price-table td {
  padding: 7px 10px;
  color: var(--charcoal-60);
  border-bottom: 1px solid var(--cream-dark);
}
.ylh-price-table td:last-child {
  color: var(--gold-dark);
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}
.ylh-price-table tbody tr:last-child td { border-bottom: none; }

/* ─── FAQ section ─── */
.ylh-faq { padding: clamp(56px, 8vw, 96px) 20px; background: var(--cream-bg); }
.ylh-faq__list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ylh-faq__item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
}
.ylh-faq__item + .ylh-faq__item { border-top: none; }
.ylh-faq__q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-family: var(--f-serif-kr);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  gap: 12px;
  line-height: 1.5;
}
.ylh-faq__q::-webkit-details-marker { display: none; }
.ylh-faq__q::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--f-serif-en);
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  transition: transform .2s;
}
.ylh-faq__item[open] > .ylh-faq__q::after { transform: rotate(45deg); }
.ylh-faq__a {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--charcoal-60);
}
.ylh-faq__cta {
  text-align: center;
  margin-top: 36px;
}

/* ─── CTA 배너 ─── */
.ylh-cta-banner {
  background: var(--charcoal);
  padding: clamp(48px, 7vw, 72px) 20px;
  text-align: center;
}
.ylh-cta-banner__inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.ylh-cta-banner__text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--cream-bg);
}

/* ─── NAP table ─── */
.ylh-nap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.65;
}
.ylh-nap-table th {
  width: 72px;
  padding: 10px 12px 10px 0;
  font-weight: 500;
  color: var(--charcoal);
  vertical-align: top;
  white-space: nowrap;
}
.ylh-nap-table td {
  padding: 10px 0;
  color: var(--charcoal-60);
  border-bottom: 1px solid var(--cream-dark);
}
.ylh-nap-table th,
.ylh-nap-table td { border-bottom: 1px solid var(--cream-dark); }
.ylh-nap-table tbody tr:last-child th,
.ylh-nap-table tbody tr:last-child td { border-bottom: none; }
.ylh-nap-table td a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.ylh-location-note { font-style: normal; color: var(--gold-dark); font-size: 13px; }

/* ═══════════════════════════════════════════════
   BLOG — 목록 + 카드 + 카테고리 탭 + 단일 글
   ═══════════════════════════════════════════════ */

/* ─── Breadcrumb ─── */
.ylh-breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto 22px;
  font-size: 12px;
  color: var(--charcoal-60);
}
.ylh-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.ylh-breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.ylh-breadcrumb li + li::before {
  content: '/';
  color: var(--gold);
}
.ylh-breadcrumb a {
  color: var(--charcoal-60);
  text-decoration: none;
}
.ylh-breadcrumb a:hover { color: var(--gold-dark); }
.ylh-breadcrumb [aria-current="page"] { color: var(--charcoal); }

/* ─── Page / Procedure detail ─── */
.ylh-page { background: var(--white); }
.ylh-page__header {
  padding: clamp(42px, 7vw, 78px) 20px clamp(26px, 4vw, 44px);
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
}
.ylh-page__title {
  font-family: var(--f-serif-kr);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
  margin: 0;
}
.ylh-page__lead {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--charcoal-60);
}
.ylh-page__content {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) 20px clamp(60px, 8vw, 100px);
}
.ylh-procedure-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin-bottom: clamp(42px, 7vw, 76px);
}
.ylh-procedure-hero__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.ylh-procedure-hero__media img,
.ylh-procedure-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--cream-mid);
}
.ylh-procedure-hero__media img { aspect-ratio: 3 / 4; }
.ylh-procedure-hero__text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--charcoal-60);
}
.ylh-procedure-hero__text strong { color: var(--charcoal); }
.ylh-procedure-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
}
.ylh-procedure-meta div {
  background: var(--cream-bg);
  padding: 16px;
}
.ylh-procedure-meta dt {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ylh-procedure-meta dd {
  margin: 0;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.55;
}
.ylh-procedure-section {
  margin-top: clamp(38px, 6vw, 70px);
}
.ylh-procedure-section h2 {
  font-family: var(--f-serif-kr);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.35;
  margin: 0 0 16px;
  color: var(--charcoal);
}
.ylh-procedure-section p,
.ylh-procedure-section li {
  font-size: 15px;
  line-height: 1.9;
  color: var(--charcoal-60);
}
.ylh-procedure-section ul {
  padding-left: 1.2em;
  margin: 14px 0 0;
}
.ylh-procedure-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.ylh-procedure-gallery img { aspect-ratio: 3 / 4; }
.ylh-procedure-faq {
  border-top: 1px solid var(--cream-dark);
  margin-top: 22px;
}
.ylh-procedure-faq details {
  border-bottom: 1px solid var(--cream-dark);
  padding: 14px 0;
}
.ylh-procedure-faq summary {
  cursor: pointer;
  font-family: var(--f-serif-kr);
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.55;
}
.ylh-procedure-cta {
  margin-top: clamp(42px, 7vw, 78px);
  padding: clamp(30px, 5vw, 46px);
  background: var(--charcoal);
  color: var(--cream-bg);
  text-align: center;
}
.ylh-procedure-cta p {
  margin: 0 0 20px;
  color: var(--cream-bg);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .ylh-breadcrumb ol { justify-content: flex-start; }
  .ylh-procedure-hero { grid-template-columns: 1fr; }
  .ylh-procedure-meta { grid-template-columns: 1fr; }
  .ylh-procedure-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ─── Blog Hero ─── */
.ylh-blog-hero {
  background: var(--white);
  padding: clamp(40px, 6vw, 72px) 20px clamp(28px, 4vw, 48px);
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
}
.ylh-blog-hero__title {
  font-family: var(--f-serif-kr);
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 400;
  color: var(--charcoal);
  margin-top: 8px;
  line-height: 1.25;
}
.ylh-blog-hero__sub {
  margin-top: 12px;
  font-size: 14px;
  color: var(--charcoal-60);
}
.ylh-blog-hero__back {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── Category Tabs ─── */
.ylh-cat-tabs {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0 20px;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.ylh-cat-tabs__list {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ylh-cat-tabs__list::-webkit-scrollbar { display: none; }
.ylh-cat-tab {
  display: block;
  padding: 14px 18px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--charcoal-60);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.ylh-cat-tab:hover { color: var(--charcoal); }
.ylh-cat-tab--active {
  color: var(--charcoal);
  font-weight: 500;
  border-bottom-color: var(--gold);
}

/* ─── Blog Wrap & CSS Masonry Grid ─── */
.ylh-blog-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) 20px;
}
.ylh-blog-grid {
  /* CSS columns = 핀터레스트식 메이슨리 (JS 불필요) */
  column-width: 280px;
  column-count: 3;
  column-gap: 20px;
}

/* ─── Blog Card ─── */
.ylh-blog-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: block;
  margin-bottom: 20px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  transition: box-shadow .25s;
}
.ylh-blog-card:hover { box-shadow: 0 4px 20px rgba(42,38,32,.1); }
.ylh-blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.ylh-blog-card__img img {
  width: 100%;
  height: auto;         /* 대표이미지 원래 비율 그대로 */
  max-height: 540px;    /* 극단적 세로 비율 방지 */
  object-fit: cover;    /* max-height 초과 시만 크롭 */
  display: block;
  transition: transform .45s ease;
}
.ylh-blog-card:hover .ylh-blog-card__img img { transform: scale(1.04); }
.ylh-blog-card__body {
  padding: 16px 18px 20px;
}
.ylh-blog-card__cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ylh-blog-card__title {
  font-family: var(--f-serif-kr);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.ylh-blog-card__date {
  font-size: 12px;
  color: var(--charcoal-60);
  letter-spacing: 0.03em;
}

/* ─── Pagination ─── */
.ylh-pagination { margin-top: 40px; text-align: center; }
.ylh-pagination .page-numbers {
  display: inline-flex;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.ylh-pagination .page-numbers li a,
.ylh-pagination .page-numbers li span {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--charcoal-60);
  border: 1px solid var(--cream-dark);
  transition: background .2s, color .2s;
}
.ylh-pagination .page-numbers li a:hover { background: var(--cream-mid); color: var(--charcoal); }
.ylh-pagination .page-numbers li .current {
  background: var(--charcoal);
  color: var(--cream-bg);
  border-color: var(--charcoal);
}

/* ─── Empty state ─── */
.ylh-blog-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--charcoal-60);
  font-size: 15px;
  line-height: 1.75;
}
.ylh-blog-empty .ylh-btn { margin-top: 24px; }

/* ─── Single Post ─── */
.ylh-single {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 20px;
}
.ylh-single__header { margin-bottom: 28px; }
.ylh-single__meta-top { margin-bottom: 12px; }
.ylh-single__title {
  font-family: var(--f-serif-kr);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.ylh-single__meta { font-size: 13px; color: var(--charcoal-60); }
.ylh-single__thumb {
  margin-bottom: 32px;
}
.ylh-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.ylh-single__content {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--charcoal);
}
.ylh-single__content h2 {
  font-family: var(--f-serif-kr);
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--charcoal);
}
.ylh-single__content h3 {
  font-family: var(--f-serif-kr);
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--charcoal);
}
.ylh-single__content p { margin-bottom: 20px; }
.ylh-single__content ul,
.ylh-single__content ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
  list-style: revert;
}
.ylh-single__content img { max-width: 100%; height: auto; }
.ylh-single__tags {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ylh-single__tag {
  font-size: 12px;
  padding: 4px 12px;
  background: var(--cream-mid);
  color: var(--charcoal-60);
  border-radius: 20px;
}
.ylh-single__nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 24px;
  border-top: 1px solid var(--cream-dark);
}
.ylh-single__nav-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px 0;
}
.ylh-single__nav-prev,
.ylh-single__nav-next {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: var(--cream-bg);
  border: 1px solid var(--cream-dark);
  transition: background .2s;
}
.ylh-single__nav-prev:hover,
.ylh-single__nav-next:hover { background: var(--cream-mid); }
.ylh-single__nav-next { text-align: right; }
.ylh-single__nav-label { font-size: 11px; color: var(--gold-dark); letter-spacing: 0.05em; }
.ylh-single__nav-title { font-size: 14px; color: var(--charcoal); line-height: 1.45; }
.ylh-single__back-wrap {
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

/* ─── Blog Responsive ─── */
@media (max-width: 640px) {
  .ylh-blog-grid {
    column-count: 2;
    column-width: 160px;
    column-gap: 12px;
  }
  .ylh-blog-card { margin-bottom: 12px; }
  .ylh-blog-card__body { padding: 12px 14px 14px; }
  .ylh-blog-card__title { font-size: 14px; }
}
@media (max-width: 380px) {
  .ylh-blog-grid {
    column-count: 1;
    column-width: auto;
  }
}
@media (max-width: 480px) {
  .ylh-single__nav-inner { grid-template-columns: 1fr; }
  .ylh-single__nav-next { text-align: left; }
}


/* ─── Hub: Service Procedures ─── */
.ylh-procedures-hub {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* 그룹 섹션 */
.ylh-svc-group {
  margin-top: 56px;
}
.ylh-svc-group:first-child {
  margin-top: 24px;
}
.ylh-svc-group__hd {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}
.ylh-svc-group__num {
  font-family: var(--f-serif-en);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 38px;
}
.ylh-svc-group__num--plus {
  font-size: 30px;
}
.ylh-svc-group__hd-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ylh-svc-group__title {
  font-family: var(--f-serif-kr);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}
.ylh-svc-group__en {
  font-family: var(--f-serif-en);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold-dark);
}
.ylh-svc-group__hr {
  border: none;
  border-top: 2px solid var(--charcoal);
  margin: 0 0 14px;
}
.ylh-svc-group--opt .ylh-svc-group__hr {
  border-top-color: var(--cream-dark);
}
.ylh-svc-group__desc {
  font-size: 13.5px;
  color: var(--charcoal-60);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 680px;
}

/* 카드 그리드 — 3열, 높이 통일 */
.ylh-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ylh-svc-grid--single {
  grid-template-columns: repeat(3, 1fr);
}
.ylh-svc-grid--opt {
  grid-template-columns: repeat(2, 1fr);
}

/* 카드 */
.ylh-svc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.ylh-svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(42,38,32,.10);
}
.ylh-svc-card--opt {
  border-color: var(--cream-dark);
}
.ylh-svc-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* 카드 이미지 */
.ylh-svc-card__img-wrap {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--cream-mid);
  flex-shrink: 0;
}
.ylh-svc-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .3s ease;
}
.ylh-svc-card:hover .ylh-svc-card__img-wrap img {
  transform: scale(1.04);
}
.ylh-svc-card__img-wrap--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-mid) 0%, var(--cream-dark) 100%);
}
.ylh-svc-card__ph-text {
  font-family: var(--f-serif-en);
  font-size: 22px;
  letter-spacing: 8px;
  color: var(--gold);
  opacity: .6;
}

/* 카드 본문 */
.ylh-svc-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px;
}
.ylh-svc-card__name {
  font-family: var(--f-serif-kr);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 6px;
}
.ylh-svc-card__desc {
  font-size: 12.5px;
  color: var(--charcoal-60);
  line-height: 1.6;
  flex: 1;
  margin: 0 0 12px;
}

/* 카드 메타 — 한 줄, 라벨+값 나란히, space-between */
.ylh-svc-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--cream-dark);
  padding-top: 10px;
  margin: 0;
}
.ylh-svc-card__meta > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.ylh-svc-card__meta dt {
  font-size: 10px;
  letter-spacing: .03em;
  color: var(--gold-dark);
  white-space: nowrap;
}
.ylh-svc-card__meta dt::after {
  content: ':';
}
.ylh-svc-card__meta dd {
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0;
  white-space: nowrap;
}

/* 전체보기 details/summary */
.ylh-svc-more {
  margin-top: 14px;
}
.ylh-svc-more__summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-serif-en);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold-dark);
  cursor: pointer;
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  width: 100%;
}
.ylh-svc-more__summary::-webkit-details-marker { display: none; }
.ylh-svc-more__badge {
  background: var(--cream-mid);
  color: var(--charcoal-60);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  font-family: var(--f-sans);
}
.ylh-svc-more__arrow::before {
  content: '▾';
  font-size: 12px;
  display: inline-block;
  transition: transform .2s;
  margin-left: auto;
}
details[open] .ylh-svc-more__arrow::before {
  transform: rotate(180deg);
}

/* 전체보기 리스트 */
.ylh-svc-list {
  margin: 0;
  padding: 4px 0 0;
}
.ylh-svc-list li {
  border-bottom: 1px solid var(--cream-dark);
}
.ylh-svc-list li a {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 6px;
  font-size: 13px;
  color: var(--charcoal);
  text-decoration: none;
  transition: background .15s;
}
.ylh-svc-list li a:hover {
  background: var(--cream-bg);
}
.ylh-svc-list__name {
  font-weight: 500;
  white-space: nowrap;
}
.ylh-svc-list__desc {
  color: var(--charcoal-60);
  font-size: 12px;
}
.ylh-svc-list__price {
  font-size: 12px;
  color: var(--gold-dark);
  white-space: nowrap;
}

/* 추가 옵션 섹션 */
.ylh-svc-addons {
  margin-top: 48px;
  padding: 24px 0 0;
  border-top: 1px dashed var(--cream-dark);
}
.ylh-svc-addons__title {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold-dark);
  font-family: var(--f-serif-en);
  margin-bottom: 14px;
}
.ylh-svc-addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ylh-svc-addon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--cream-bg);
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .15s;
}
.ylh-svc-addon-item:hover {
  box-shadow: 0 4px 14px rgba(42,38,32,.08);
}
.ylh-svc-addon-item__name {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--charcoal);
}
.ylh-svc-addon-item__price {
  font-size: 12px;
  color: var(--gold-dark);
  margin-top: 2px;
}

/* CTA 블록 */
.ylh-svc-cta {
  margin-top: 60px;
  padding: 40px 28px;
  background: var(--charcoal);
  border-radius: 3px;
  text-align: center;
  color: var(--cream-bg);
}
.ylh-svc-cta__q {
  font-family: var(--f-serif-kr);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ylh-svc-cta__sub {
  font-size: 13px;
  color: var(--cream-dark);
  margin-bottom: 22px;
  line-height: 1.6;
}
.ylh-svc-cta .ylh-btn {
  margin: 0 6px 12px;
}
.ylh-svc-cta .ylh-btn--primary {
  background: var(--gold);
  color: var(--charcoal);
  display: inline-block;
}
.ylh-svc-cta .ylh-btn--primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  opacity: 1;
}
.ylh-svc-cta .ylh-btn--outline {
  border-color: var(--cream-dark);
  color: var(--cream-bg);
}
.ylh-svc-cta .ylh-btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.ylh-svc-cta__addr {
  font-size: 11.5px;
  color: var(--cream-dark);
  margin-bottom: 14px;
}
.ylh-svc-cta__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--cream-dark);
}
.ylh-svc-cta__links a {
  color: var(--gold);
}
.ylh-svc-cta__links a:hover {
  text-decoration: underline;
}

/* 상세 페이지 CTA 버튼 override (charcoal 배경 위에서) */
.ylh-procedure-cta .ylh-btn {
  margin: 0 6px 12px;
  display: inline-block;
}
.ylh-procedure-cta .ylh-btn--primary {
  background: var(--gold);
  color: var(--charcoal);
}
.ylh-procedure-cta .ylh-btn--primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  opacity: 1;
}
.ylh-procedure-cta .ylh-btn--outline {
  border-color: var(--cream-dark);
  color: var(--cream-bg);
}
.ylh-procedure-cta .ylh-btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── Hub Responsive ─── */
@media (max-width: 768px) {
  .ylh-svc-grid,
  .ylh-svc-grid--single {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .ylh-svc-grid--opt,
  .ylh-svc-addons-grid {
    grid-template-columns: 1fr;
  }
  .ylh-svc-group__title { font-size: 19px; }
  .ylh-svc-group__num   { font-size: 28px; }
  .ylh-svc-list li a    { grid-template-columns: 100px 1fr auto; }
}
@media (max-width: 480px) {
  .ylh-procedures-hub { padding: 0 14px 48px; }
  .ylh-svc-grid,
  .ylh-svc-grid--single,
  .ylh-svc-grid--opt    { grid-template-columns: 1fr; gap: 12px; }
  .ylh-svc-group__hd    { gap: 12px; }
  .ylh-svc-list li a    { grid-template-columns: 1fr; gap: 4px; }
  .ylh-svc-list__price  { justify-self: start; }
  .ylh-svc-cta          { padding: 28px 18px; }
  .ylh-svc-cta__q       { font-size: 17px; }
  .ylh-svc-addons-grid  { grid-template-columns: 1fr; }
}

/* ─── Gallery Tab ─── */
.ylh-gallery__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 28px;
  flex-wrap: wrap;
}
.ylh-gallery__tab {
  appearance: none;
  background: none;
  border: 1px solid var(--cream-dark);
  border-radius: 999px;
  padding: 7px 20px;
  font-family: var(--f-serif-en);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--charcoal-60);
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
}
.ylh-gallery__tab.is-active,
.ylh-gallery__tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}
.ylh-gallery__item.is-hidden { display: none !important; }
.ylh-gallery__more {
  text-align: center;
  margin-top: 32px;
}
.ylh-gallery__more-link {
  display: inline-block;
  font-family: var(--f-serif-en);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .18s;
}
.ylh-gallery__more-link:hover { color: var(--charcoal); }
@media (max-width: 640px) {
  .ylh-gallery__tab { padding: 6px 14px; font-size: 11px; }
  .ylh-gallery__tabs { gap: 6px; }
}

/* ─── Procedure Detail: 추천 체크리스트 ─── */
.ylh-procedure-check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--cream-dark);
}
.ylh-procedure-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal-60);
}
.ylh-procedure-check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ─── Procedure Detail: 디자인 포인트 번호카드 ─── */
.ylh-procedure-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 0;
}
.ylh-procedure-point-card {
  border: 1px solid var(--cream-dark);
  background: var(--white);
  padding: 24px 20px;
  border-radius: 2px;
}
.ylh-procedure-point-card__num {
  display: block;
  font-family: var(--f-serif-en);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1;
}
.ylh-procedure-point-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--charcoal-60);
}

/* ─── Procedure Gallery: 2열 (결과 사진) ─── */
.ylh-procedure-gallery--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ─── FAQ details 스타일 보강 ─── */
.ylh-procedure-faq details summary::marker,
.ylh-procedure-faq details summary::-webkit-details-marker { display: none; }
.ylh-procedure-faq details summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.ylh-procedure-faq details summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .2s;
}
.ylh-procedure-faq details[open] summary::after { content: '−'; }
.ylh-procedure-faq details p {
  margin: 10px 0 4px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--charcoal-60);
}

@media (max-width: 768px) {
  .ylh-procedure-points { grid-template-columns: 1fr; gap: 12px; }
}

/* ─── wpautop br safety-net ─── */
/* wpautop이 <img> 사이 줄바꿈을 <br>로 변환할 경우 grid를 깨지 않도록 */
.ylh-procedure-gallery br,
.ylh-procedure-hero__media br { display: none; }

/* ─── 갤러리 이미지 카드형 보정 (최대 높이 제한) ─── */
.ylh-procedure-gallery img {
  aspect-ratio: 3 / 4;
  max-height: 480px;
  width: 100%;
  object-fit: cover;
}

/* ─── Area landing (지역 랜딩) ─── */
.ylh-area-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0 0;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
}
.ylh-area-routes > div {
  background: var(--cream-bg);
  padding: 18px;
}
.ylh-area-routes dt {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ylh-area-routes dd {
  margin: 0;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.6;
}
.ylh-area-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.ylh-area-links li { margin: 0; }
.ylh-area-links a {
  display: block;
  height: 100%;
  padding: 16px 18px;
  background: var(--cream-bg);
  border: 1px solid var(--cream-dark);
  color: var(--charcoal);
  text-decoration: none;
  font-family: var(--f-serif-kr);
  font-weight: 700;
  transition: background .2s, border-color .2s;
}
.ylh-area-links a:hover {
  background: var(--cream-mid);
  border-color: var(--gold-dark);
}
.ylh-area-links small {
  display: block;
  margin-top: 5px;
  font-weight: 400;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--charcoal-60);
}
.ylh-area-routes br,
.ylh-area-links br,
.ylh-area-services br { display: none; }

/* 지역 페이지 이미지 (hero + middle) */
.ylh-area-hero,
.ylh-area-photo { margin: 0; }
.ylh-area-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: var(--cream-mid);
}
.ylh-area-photo { margin-top: clamp(24px, 4vw, 40px); }
.ylh-area-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  background: var(--cream-mid);
}
.ylh-area-photo figcaption {
  font-size: 12px;
  color: var(--charcoal-60);
  text-align: center;
  margin-top: 8px;
}

/* 시술안내 카드(버튼형) */
.ylh-area-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.ylh-area-service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 22px 20px;
  background: var(--cream-bg);
  border: 1px solid var(--cream-dark);
  color: var(--charcoal);
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}
.ylh-area-service-card:hover {
  background: var(--white);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}
.ylh-area-service-card__icon { color: var(--gold-dark); line-height: 0; }
.ylh-area-service-card__icon svg { width: 30px; height: 30px; display: block; }
.ylh-area-service-card__t {
  font-family: var(--f-serif-kr);
  font-weight: 700;
  font-size: 16px;
}
.ylh-area-service-card__d {
  font-size: 13px;
  line-height: 1.55;
  color: var(--charcoal-60);
}
.ylh-area-service-card__go {
  margin-top: auto;
  padding-top: 6px;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* 동선 카드 아이콘 */
.ylh-area-routes dt { display: flex; align-items: center; gap: 6px; }
.ylh-area-routes dt svg { width: 15px; height: 15px; flex: none; }
.ylh-access__areas {
  max-width: var(--max-w);
  margin: clamp(40px, 5vw, 60px) auto 0;
}
.ylh-access__areas-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-serif-kr);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 18px;
  text-align: center;
}
.ylh-access__areas-title svg { width: 20px; height: 20px; color: var(--gold-dark); flex: none; }
.ylh-area-links--row { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 0; }
@media (max-width: 768px) {
  .ylh-area-links--row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* 푸터 보조 링크 (지역 안내 등) */
.ylh-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}
.ylh-footer__links a {
  color: var(--cream-mid);
  text-decoration: none;
  font-size: 13px;
  opacity: .85;
  transition: opacity .2s;
}
.ylh-footer__links a:hover { opacity: 1; }

@media (max-width: 768px) {
  .ylh-area-routes { grid-template-columns: 1fr; }
  .ylh-area-services { grid-template-columns: 1fr; }
  .ylh-area-hero img { aspect-ratio: 4 / 3; }
}

/* ═══════════ 플로팅 바 (빠른 실행) ═══════════ */
.ylh-fab {
  position: fixed;
  z-index: 9990;
  display: flex;
}
.ylh-fab__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: var(--gold-dark);
  color: #fff;
  flex: none;
  -webkit-tap-highlight-color: transparent;
}
.ylh-fab__plus { width: 24px; height: 24px; transition: transform .3s ease; }
.ylh-fab[data-state="expanded"] .ylh-fab__plus { transform: rotate(45deg); }
.ylh-fab__actions {
  display: flex;
  visibility: hidden;
}
.ylh-fab[data-state="expanded"] .ylh-fab__actions { visibility: visible; }
.ylh-fab__btn {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--f-serif-kr);
  font-weight: 700;
  font-size: 14px;
  background: var(--cream-bg);
  color: var(--charcoal);
  border: 1px solid var(--cream-dark);
}
.ylh-fab__btn svg { width: 20px; height: 20px; flex: none; color: var(--gold-dark); }
.ylh-fab__btn--book { background: var(--gold-dark); color: #fff; border-color: var(--gold-dark); }
.ylh-fab__btn--book svg { color: #fff; }

/* PC: 좌측 세로 중앙, 핸들 펼침/접힘 */
@media (min-width: 769px) {
  .ylh-fab {
    left: 0; top: 50%; transform: translateY(-50%);
    flex-direction: row; align-items: center;
  }
  .ylh-fab__toggle {
    width: 34px; height: 92px;
    border-radius: 0 12px 12px 0;
    box-shadow: 2px 3px 14px rgba(42,38,32,.18);
  }
  .ylh-fab__actions {
    flex-direction: column; gap: 8px;
    max-width: 0; opacity: 0; margin-left: 0; overflow: hidden;
    transition: max-width .35s ease, opacity .25s ease, margin-left .35s ease, visibility .35s;
  }
  .ylh-fab[data-state="expanded"] .ylh-fab__actions {
    max-width: 230px; opacity: 1; margin-left: 10px;
  }
  .ylh-fab__btn {
    padding: 12px 20px; border-radius: 0 30px 30px 0;
    min-width: 152px; box-shadow: 2px 2px 12px rgba(42,38,32,.12);
  }
}

/* 모바일: 우하단 + 버튼, 터치 펼침 */
@media (max-width: 768px) {
  .ylh-fab {
    right: 16px; bottom: 16px; left: auto; top: auto; transform: none;
    flex-direction: column-reverse; align-items: flex-end; gap: 12px;
  }
  .ylh-fab__toggle {
    width: 56px; height: 56px; border-radius: 50%;
    box-shadow: 0 4px 16px rgba(42,38,32,.28);
  }
  .ylh-fab__actions {
    flex-direction: column; gap: 10px; align-items: flex-end;
    opacity: 0; transform: translateY(12px) scale(.96); transform-origin: bottom right;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .ylh-fab[data-state="expanded"] .ylh-fab__actions { opacity: 1; transform: none; }
  .ylh-fab__btn {
    padding: 12px 20px; border-radius: 30px; min-height: 44px;
    box-shadow: 0 3px 14px rgba(42,38,32,.2);
  }
}