/*
Theme Name: Lamichou Clinic
Description: 라미슈클리닉
Template: hello-elementor
Version: 7.0.0
*/

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&family=Aboreto&display=swap');

:root {
  /* === LAMICHOU CI v1.0 — Brand Tokens === */
  --brand-primary:    #682A93;   /* 메인 퍼플 */
  --brand-primary-2:  #502670;   /* hover */
  --brand-primary-3:  #3D1859;   /* 강조/푸터 */
  --brand-soft:       #F8F4EE;   /* 배경/태그 */
  --brand-soft-2:     #E8D6F5;
  --brand-on:         #FFFFFF;

  --pastel-lavender:  #D4B8E8;
  --pastel-lilac:     #E6D0F0;
  --pastel-rose:      #F2D4E0;
  --pastel-cream:     #FAF5F0;

  --accent-gold:       #C9A96E;   /* CTA */
  --accent-gold-light: #E8D5B0;
  --accent-gold-dark:  #A1854E;

  --ink-900: #1A1A1A;
  --ink-800: #2D2D2D;
  --ink-700: #3D3347;
  --ink-500: #6B7280;
  --ink-400: #8C8294;
  --ink-300: #B8AFBF;
  --ink-200: #D6CFDC;
  --ink-100: #EDEAF0;

  --status-success: #4CAF8B;
  --status-warning: #C9A96E;
  --status-danger:  #D4546A;
  --status-info:    #9B6BBF;

  /* Radius (CI 시그니처 — 버튼은 sharp 2px) */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-1: 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-2: 0 4px 16px rgba(0, 0, 0, 0.07);
  --shadow-3: 0 12px 32px rgba(0, 0, 0, 0.10);

  --ease: cubic-bezier(.2,.7,.2,1);

  /* === Legacy alias — 기존 블랙·크림·골드 톤 (episode.clinic 풍) === */
  --lc-bg:          #FFFFFF;           /* 페이지 배경 */
  --lc-bg-cream:    #F8F4EE;           /* 크림 배경 */
  --lc-bg-alt:      #FAFAFA;
  --lc-ink:         #1A1A1A;
  --lc-ink-soft:    #2D2D2D;
  --lc-ink-mute:    #6B7280;
  --lc-ivory:       #FBF8F3;
  --lc-accent:      #C9A96E;           /* 골드 */
  --lc-purple:      var(--brand-primary);  /* CI 퍼플 — 필요시 액센트로 */
  --lc-border:      #E5E5E5;
  --lc-border-soft: #F0F0F0;

  --font-sans:    'Pretendard Variable', 'Pretendard', -apple-system, sans-serif;
  --font-display: 'Cormorant Garamond', 'Pretendard', serif;
  --font-en:      'Outfit', system-ui, sans-serif;

  --container-max: 1440px;
  --container-px: clamp(1rem, 4vw, 2.5rem);
  --section-py: clamp(4rem, 10vw, 8rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--lc-bg); color: var(--lc-ink); line-height: 1.6; margin: 0; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-sans); font-weight: 700; letter-spacing: -0.025em; line-height: 1.25; margin: 0; }

.container-clinic { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-px); }
.container-fluid { width: 100%; padding-inline: clamp(1rem, 3vw, 3rem); }

/* === Header === */
.lc-header { position: fixed; inset: 0 0 auto; z-index: 50; background: transparent; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s; }
.lc-header.scrolled { background: rgba(255,255,255,0.78); box-shadow: 0 1px 12px rgba(0,0,0,0.06); }
.lc-header__inner { height: 100px; display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
.lc-header__logo { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; gap: 6px; }
.lc-header__logo-name { font-family: var(--font-display); font-size: 32px; font-weight: 400; letter-spacing: 0.18em; color: var(--lc-ink); }
.lc-header__logo-sub { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.5em; color: var(--lc-accent); }
.lc-header__nav { display: flex; justify-content: center; align-items: center; gap: 36px; }
.lc-header__nav a, .lc-header__nav button { font-family: var(--font-sans); font-size: 16px; font-weight: 500; color: var(--lc-ink); padding: 8px 0; background: transparent; border: 0; cursor: pointer; transition: color 0.3s; }
.lc-header__nav a:hover { color: var(--lc-accent); }
.lc-nav-dropdown { position: relative; }
.lc-nav-submenu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); display: flex; flex-direction: column; min-width: 180px; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); border: 1px solid var(--lc-border-soft); padding: 10px 0; opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.25s; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.lc-nav-dropdown:hover .lc-nav-submenu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.lc-nav-submenu a { padding: 12px 24px; font-size: 14px; }
.lc-header__right { display: flex; align-items: center; gap: 12px; }
.lc-lang { background: transparent; border: 0; font-size: 14px; cursor: pointer; padding: 8px 12px; }
.lc-social-icon { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--lc-ink); color: var(--lc-ivory); transition: background 0.3s; }
.lc-social-icon:hover { background: var(--lc-accent); }
.lc-hamburger { display: none; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: transparent; border: 0; cursor: pointer; }
.lc-hamburger span { display: block; width: 22px; height: 1px; background: var(--lc-ink); transition: transform 0.3s, opacity 0.3s; }
.lc-header__cta { display: inline-flex; align-items: center; height: 36px; padding: 0 16px; background: var(--lc-ink); color: var(--lc-ivory); border-radius: 999px; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; transition: background 0.3s; }
.lc-header__cta:hover { background: var(--lc-accent); color: white; }

/* === Floating CTA === */
.lc-floating-cta { position: fixed; right: 24px; top: 50%; transform: translateY(-50%); z-index: 40; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.lc-fcta__event { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: #E94B4F; color: #FFF; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; box-shadow: 0 4px 12px rgba(233,75,79,0.4); transition: transform 0.3s; }
.lc-fcta__event:hover { transform: scale(1.05); }
.lc-fcta__panel { background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); padding: 16px 18px; border: 1px solid var(--lc-border-soft); box-shadow: 0 8px 24px rgba(0,0,0,0.08); display: flex; flex-direction: column; gap: 10px; min-width: 140px; border-radius: 16px; }
.lc-fcta__panel-title { font-size: 13px; font-weight: 600; text-align: center; margin: 0 0 6px; padding-bottom: 8px; border-bottom: 1px solid var(--lc-border-soft); }
.lc-fcta__btn { display: flex; align-items: center; gap: 10px; padding: 6px 8px; border-radius: 999px; font-size: 13px; font-weight: 500; transition: background 0.2s; }
.lc-fcta__btn:hover { background: var(--lc-bg-cream); }
.lc-fcta__icon { width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* === Hero Split === */
.lc-hero-split { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 100svh; margin-top: -96px; }
.lc-hero-panel { position: relative; display: block; overflow: hidden; background: var(--lc-ink); min-height: 100svh; }
.lc-hero-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transition: transform 0.7s, opacity 0.7s; }
.lc-hero-panel:hover img { opacity: 1; transform: scale(1.03); }
.lc-hero-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,0.85) 100%); pointer-events: none; }
.lc-hero-panel__content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; min-height: 100svh; padding: 60px 40px; color: var(--lc-ivory); }
.lc-hero-panel__label { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.25em; color: rgba(255,255,255,0.85); margin-bottom: 16px; text-transform: uppercase; }
.lc-hero-panel__title { font-size: 36px; font-weight: 600; line-height: 1.2; margin: 0 0 20px; color: #FFF; letter-spacing: -0.02em; }
.lc-hero-panel__desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.8); margin: 0; max-width: 280px; }

body.home .lc-header:not(.scrolled) { background: transparent; }
body.home .lc-header:not(.scrolled) .lc-header__logo-name, body.home .lc-header:not(.scrolled) .lc-header__nav a, body.home .lc-header:not(.scrolled) .lc-lang { color: #FFF; }
body.home .lc-header:not(.scrolled) .lc-header__logo-sub { color: var(--lc-accent); }
body.home .lc-header:not(.scrolled) .lc-social-icon { background: rgba(255,255,255,0.15); }

/* === Section common === */
.lc-section { padding: var(--section-py) 0; }
.lc-section--cream { background: var(--lc-bg-cream); }
.lc-section--ink { background: var(--lc-ink); color: var(--lc-ivory); }
.lc-section-title { display: flex; flex-direction: column; gap: 12px; }
.lc-section-title--center { align-items: center; text-align: center; }
.lc-section-title__eyebrow { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.3em; color: var(--lc-accent); text-transform: uppercase; }
.lc-section--ink .lc-section-title__eyebrow { color: rgba(245,239,230,0.7); }
.lc-section-title__h { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; margin: 0; font-weight: 700; color: var(--lc-ink); }
.lc-section--ink .lc-section-title__h { color: var(--lc-ivory); }
.lc-section-title__desc { max-width: 640px; font-size: 16px; line-height: 1.7; color: rgba(26,26,26,0.7); margin: 0; }
.lc-section--ink .lc-section-title__desc { color: rgba(245,239,230,0.8); }

/* === Skin Analysis === */
.lc-skin-analysis { display: grid; gap: 64px; align-items: center; }
@media (min-width: 1024px) { .lc-skin-analysis { grid-template-columns: 1fr 1fr; } }
.lc-skin-analysis__img { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--lc-bg-cream); }
.lc-skin-analysis__img img { width: 100%; height: 100%; object-fit: cover; }
.lc-skin-analysis__features { list-style: none; padding: 0; margin: 40px 0 0; display: grid; gap: 12px; }
@media (min-width: 640px) { .lc-skin-analysis__features { grid-template-columns: repeat(2, 1fr); } }
.lc-skin-analysis__feature { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: var(--lc-bg); font-size: 14px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.lc-skin-analysis__num { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; border-radius: 50%; background: var(--lc-accent); color: white; font-size: 11px; font-weight: 600; flex-shrink: 0; }

/* === Card Grid === */
.lc-card-grid { display: grid; gap: 32px; margin-top: 56px; }
@media (min-width: 640px) { .lc-card-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lc-card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.lc-card { display: block; cursor: pointer; text-decoration: none; color: inherit; }
.lc-card__img { position: relative; width: 100%; overflow: hidden; background: rgba(0,0,0,0.05); }
.lc-card__img--landscape { aspect-ratio: 4/3; }
.lc-card__img--portrait { aspect-ratio: 3/4; }
.lc-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.lc-card:hover .lc-card__img img { transform: scale(1.04); }
.lc-card__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-top: 16px; }
.lc-card__eyebrow { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.2em; color: rgba(26,26,26,0.6); text-transform: uppercase; margin: 0; }
.lc-section--ink .lc-card__eyebrow { color: rgba(245,239,230,0.6); }
.lc-card__title { margin-top: 4px; font-weight: 600; font-size: 16px; }
.lc-section--ink .lc-card__title { color: var(--lc-ivory); }
.lc-card__caption { font-size: 13px; color: rgba(26,26,26,0.5); }
.lc-section--ink .lc-card__caption { color: rgba(245,239,230,0.5); }

/* === B&A === */
.lc-ba-header { text-align: left; margin-bottom: 64px; }
.lc-ba-title { font-family: var(--font-display); font-size: clamp(48px, 7vw, 96px); font-weight: 400; letter-spacing: 0.05em; color: rgba(245,239,230,0.85); margin: 0 0 24px; line-height: 1; }
.lc-ba-subtitle { font-size: 16px; line-height: 1.7; color: rgba(245,239,230,0.85); margin: 0; }
.lc-ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.lc-ba-card { display: block; cursor: pointer; text-decoration: none; color: inherit; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 20px; }
.lc-ba-card__split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; aspect-ratio: 4/3; overflow: hidden; margin-bottom: 16px; background: #1A1A1A; }
.lc-ba-card__img-before, .lc-ba-card__img-after { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s; }
.lc-ba-card:hover .lc-ba-card__img-before, .lc-ba-card:hover .lc-ba-card__img-after { opacity: 0.85; }
.lc-ba-card__meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 0 4px; }
.lc-ba-card__eyebrow { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.2em; color: rgba(245,239,230,0.7); margin: 0 0 4px; text-transform: uppercase; }
.lc-ba-card__date { font-size: 12px; color: rgba(245,239,230,0.5); margin: 0; }
.lc-ba-card__procedure { font-size: 15px; color: var(--lc-ivory); margin: 0; font-weight: 500; }

/* === Blog Section === */
.lc-blog-section { display: grid; grid-template-columns: 1fr 1.2fr; min-height: 80vh; }
.lc-blog-section__left { position: relative; overflow: hidden; background: var(--lc-ink); }
.lc-blog-section__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.lc-blog-section__title-wrap { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; height: 100%; padding: 80px; color: #FFF; }
.lc-blog-section__title { font-family: var(--font-display); font-size: clamp(48px, 7vw, 96px); font-weight: 400; letter-spacing: 0.05em; line-height: 1; margin: 0 0 24px; color: #FFF; }
.lc-blog-section__subtitle { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.85); margin: 0; }
.lc-blog-section__right { background: var(--lc-bg-cream); display: flex; align-items: center; padding: 60px 0; }
.lc-blog-section__list-wrap { width: 100%; padding: 0 60px; }
.lc-blog-section__list-wrap .lc-blog-list { list-style: none; margin: 0; padding: 0; }
.lc-blog-section__list-wrap .lc-blog-list li { border-bottom: 1px solid rgba(26,26,26,0.1); }
.lc-blog-section__list-wrap .lc-blog-list li:first-child { border-top: 1px solid rgba(26,26,26,0.1); }
.lc-blog-row { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 24px 32px; align-items: center; transition: background 0.2s; }
.lc-blog-row:hover { background: rgba(255,255,255,0.5); }
.lc-blog-row__img { position: relative; width: 110px; height: 110px; overflow: hidden; flex-shrink: 0; background: rgba(0,0,0,0.05); }
.lc-blog-row__img img { width: 100%; height: 100%; object-fit: cover; }
.lc-blog-row__body { display: flex; flex-direction: column; gap: 8px; }
.lc-blog-row__tag { display: inline-flex; width: fit-content; padding: 4px 12px; background: rgba(26,26,26,0.6); color: #FFF; font-size: 11px; }
.lc-blog-row__title { font-size: 16px; font-weight: 600; color: var(--lc-ink); line-height: 1.4; margin: 0; }
.lc-blog-row__author { display: flex; align-items: center; gap: 12px; font-size: 12px; color: rgba(26,26,26,0.55); margin: 0; }
.lc-blog-row__line { display: inline-block; width: 24px; height: 1px; background: rgba(26,26,26,0.3); }

/* === Footer === */
.lc-footer { background: #1A1A1A; color: rgba(245,239,230,0.7); }
.lc-footer__top { display: grid; grid-template-columns: 1fr 1.2fr 1.4fr; gap: 64px; padding: 100px 32px 80px; }
.lc-footer__col p { margin: 4px 0; font-size: 13px; line-height: 1.7; }
.lc-footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.lc-footer__logo-name { font-family: var(--font-display); font-size: 36px; font-weight: 400; letter-spacing: 0.18em; color: #FFF; line-height: 1; margin: 0; }
.lc-footer__logo-sub { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.5em; color: rgba(245,239,230,0.7); line-height: 1; margin: 0; }
.lc-footer__heading { font-size: 14px; font-weight: 500; color: rgba(245,239,230,0.85); margin: 0 0 24px; }
.lc-footer__hours-block { margin-bottom: 24px; }
.lc-footer__hours-label { color: rgba(245,239,230,0.85); margin-bottom: 4px; font-weight: 500; }
.lc-footer__hours-closed { font-size: 12px; color: rgba(245,239,230,0.55); margin-top: 16px; }
.lc-footer__company { font-size: 14px; font-weight: 500; color: #FFF; margin: 0 0 16px; }
.lc-footer__copyright-text { margin-top: 24px; font-size: 12px; color: rgba(245,239,230,0.55); }
.lc-footer__bottom { border-top: 1px solid rgba(245,239,230,0.08); }
.lc-footer__copyright { height: 56px; display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: rgba(245,239,230,0.4); }
.lc-footer__bottom-links { display: flex; gap: 20px; }
.lc-footer__bottom-links a { color: rgba(245,239,230,0.5); transition: color 0.3s; }
.lc-footer__bottom-links a:hover { color: var(--lc-accent); }

/* === Buttons === */
.lc-btn { display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 20px; border-radius: 999px; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; transition: all 0.3s; border: 0; cursor: pointer; }
.lc-btn--dark { background: var(--lc-ink); color: var(--lc-ivory); }
.lc-btn--dark:hover { background: var(--lc-ink-soft); }
.lc-btn--outline { background: transparent; border: 1px solid rgba(26,26,26,0.3); color: var(--lc-ink); }
.lc-btn--outline:hover { background: var(--lc-ink); color: var(--lc-ivory); }
.lc-btn--ivory-outline { background: transparent; border: 1px solid rgba(245,239,230,0.4); color: var(--lc-ivory); }
.lc-btn--ivory-outline:hover { background: var(--lc-ivory); color: var(--lc-ink); }
.lc-btn--lg { height: 52px; padding: 0 28px; font-size: 14px; }

/* === Reveal === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* === Mobile Menu === */
/* ===== Mobile menu — right slide-in panel (episode.clinic style) ===== */
.lc-mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(0,0,0,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
body.lc-mobile-open .lc-mobile-menu { opacity: 1; pointer-events: auto; }
body.lc-mobile-open { overflow: hidden; }
body.lc-mobile-open .lc-hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.lc-mobile-open .lc-hamburger span:nth-child(2) { opacity: 0; }
body.lc-mobile-open .lc-hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.lc-mobile-menu__inner {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 78%; max-width: 380px;
  background: var(--lc-bg-cream);
  padding: 80px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.08);
}
body.lc-mobile-open .lc-mobile-menu__inner { transform: translateX(0); }

.lc-mobile-menu__close {
  position: absolute; top: 22px; right: 22px;
  width: 36px; height: 36px;
  background: transparent; border: 0; cursor: pointer; padding: 0;
}
.lc-mobile-menu__close::before,
.lc-mobile-menu__close::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 22px; height: 1.4px; background: #1A1A1A;
}
.lc-mobile-menu__close::before { transform: translate(-50%,-50%) rotate(45deg); }
.lc-mobile-menu__close::after  { transform: translate(-50%,-50%) rotate(-45deg); }

.lc-mobile-menu__nav { display: block; }
.lc-mobile-menu a, .lc-mobile-menu summary {
  font-size: 17px; font-weight: 500; color: #1A1A1A;
  padding: 22px 4px; display: block;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  cursor: pointer; list-style: none; text-decoration: none;
}
.lc-mobile-menu summary::-webkit-details-marker { display: none; }
.lc-mobile-menu summary { display: flex; justify-content: space-between; align-items: center; }
.lc-mobile-menu .lc-mm-arrow { font-size: 14px; color: #6B7280; transition: transform 0.25s; }
.lc-mobile-menu details[open] .lc-mm-arrow { transform: rotate(180deg); }
.lc-mobile-menu .lc-mm-sub { padding: 4px 0 8px; }

/* === PC nav chevron 정렬 === */
.lc-nav-chev {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  margin-top: -2px;
  opacity: 0.7;
}
.lc-nav-dropdown:hover .lc-nav-chev { transform: rotate(180deg); transition: transform 0.25s; }

/* === Footer inline icon + social === */
.lc-foot-ic {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 8px;
  opacity: 0.7;
}
.lc-footer__social {
  display: flex;
  gap: 10px;
  margin: 16px 0 12px;
}
.lc-footer__social a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(245,239,230,0.85);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.lc-footer__social a:hover {
  background: var(--lc-accent);
  color: #1A1A1A;
  transform: translateY(-2px);
}
.lc-mobile-menu .lc-mm-sub a {
  font-size: 15px; color: #6B7280; padding: 12px 4px 12px 16px;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}

/* === Concern === */
.lc-concern-section { background: var(--lc-bg-cream); padding: clamp(60px, 10vw, 120px) 0; min-height: 80vh; }
.lc-concern-header { margin-bottom: 48px; }
.lc-concern-title { font-size: 28px; font-weight: 700; margin: 0 0 12px; }
.lc-concern-subtitle { font-size: 14px; color: var(--lc-ink-mute); margin: 0; }
.lc-concern-layout { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }
.lc-concern-nav { background: rgba(255,255,255,0.6); padding: 24px 16px; border-radius: 32px; display: flex; flex-direction: column; gap: 16px; }
.lc-concern-tab { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px 12px; border: 0; background: transparent; cursor: pointer; border-radius: 16px; transition: all 0.3s; }
.lc-concern-tab:hover { background: rgba(255,255,255,0.5); }
.lc-concern-tab.active { background: #FFF; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.lc-concern-tab__icon { font-size: 28px; display: inline-flex; align-items: center; justify-content: center; color: var(--lc-ink-soft); transition: color 0.25s; }
.lc-concern-tab__icon svg { display: block; }
.lc-concern-tab.active .lc-concern-tab__icon { color: var(--lc-accent); }
.lc-concern-tab__label { font-size: 13px; font-weight: 500; }
.lc-concern-content { background: rgba(255,255,255,0.5); padding: 40px; border-radius: 32px; min-height: 500px; }
.lc-concern-panel { display: none; }
.lc-concern-panel.active { display: block; }
.lc-concern-panel__title { font-size: 24px; font-weight: 700; margin: 0 0 12px; }
.lc-concern-panel__desc { font-size: 14px; color: var(--lc-ink-soft); margin: 0 0 32px; }
.lc-concern-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.lc-concern-card { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; border-radius: 20px; cursor: pointer; background: #1A1A1A; }
.lc-concern-card__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.7s, opacity 0.4s; }
.lc-concern-card:hover .lc-concern-card__bg { transform: scale(1.04); opacity: 1; }
.lc-concern-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%); pointer-events: none; }
.lc-concern-card__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 1; color: #FFF; }
.lc-concern-card__title { font-size: 18px; font-weight: 600; margin: 0 0 6px; color: #FFF; }
.lc-concern-card__sub { font-size: 12px; color: rgba(255,255,255,0.85); margin: 0; line-height: 1.5; }
.lc-concern-card__arrow { position: absolute; top: 16px; right: 16px; z-index: 1; width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.2); color: #FFF; backdrop-filter: blur(8px); transition: all 0.3s; }
.lc-concern-card:hover .lc-concern-card__arrow { background: rgba(255,255,255,0.4); transform: rotate(45deg); }

/* === Responsive === */
@media (max-width: 1024px) {
  .lc-blog-section { grid-template-columns: 1fr; min-height: auto; }
  .lc-blog-section__left { min-height: 320px; }
  .lc-blog-section__title-wrap { padding: 48px 32px; }
  .lc-blog-section__list-wrap { padding: 0 32px; }
  .lc-blog-row { padding: 20px 16px; grid-template-columns: 90px 1fr; }
  .lc-blog-row__img { width: 90px; height: 90px; }
  .lc-ba-grid { grid-template-columns: 1fr; }
  .lc-footer__top { grid-template-columns: 1fr; gap: 48px; padding: 60px 32px 40px; }
  .lc-header__nav { display: none; }
  .lc-hamburger { display: flex; }
  /* 고민별찾기(/treatment/) 모바일 — 좌측 사이드 네비게이션 유지 (episode.clinic 스타일) */
  .lc-concern-section { padding: 32px 0 80px; }
  .lc-concern-header { padding: 0 16px; margin-bottom: 20px; }
  .lc-concern-title { font-size: 22px; margin-bottom: 8px; }
  .lc-concern-subtitle { font-size: 12px; }
  .lc-concern-layout {
    grid-template-columns: 84px 1fr;
    gap: 10px;
    padding: 0 12px;
  }
  .lc-concern-nav {
    padding: 10px 6px;
    gap: 4px;
    border-radius: 20px;
    position: sticky;
    top: 80px;
    align-self: start;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
  }
  .lc-concern-tab {
    padding: 14px 4px;
    border-radius: 14px;
    gap: 6px;
    word-break: keep-all;
  }
  .lc-concern-tab__icon { font-size: 22px; }
  .lc-concern-tab__label { font-size: 11px; line-height: 1.3; letter-spacing: -0.02em; }
  .lc-concern-content {
    padding: 20px 16px;
    border-radius: 20px;
    min-height: auto;
    background: rgba(255,255,255,0.65);
  }
  .lc-concern-panel__title { font-size: 19px; margin-bottom: 6px; }
  .lc-concern-panel__desc { font-size: 12px; line-height: 1.6; margin-bottom: 20px; }
  /* 카드를 episode 스타일 다크 톤으로 */
  .lc-concern-items {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .lc-concern-items .lc-concern-item {
    background: #2D2A26 !important;
    border: 0 !important;
    color: #FFFFFF !important;
    padding: 22px 22px 20px !important;
    border-radius: 16px !important;
    min-height: 96px;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
  }
  .lc-concern-items .lc-concern-item::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.14) 0%, transparent 55%);
    pointer-events: none;
  }
  .lc-concern-items .lc-concern-item:hover,
  .lc-concern-items .lc-concern-item:active {
    background: #1A1A1A !important;
    transform: none !important;
    border: 0 !important;
  }
  .lc-concern-items .lc-concern-item .lc-concern-item__name {
    color: #FFFFFF !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.4;
    word-break: keep-all;
  }
  .lc-concern-items .lc-concern-item .lc-concern-item__arrow {
    position: absolute;
    top: 14px; right: 14px;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16) !important;
    color: #FFFFFF !important;
    font-size: 14px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s;
  }
  .lc-concern-item:hover .lc-concern-item__arrow,
  .lc-concern-item:active .lc-concern-item__arrow {
    background: rgba(255,255,255,0.28);
    transform: rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .lc-header__inner { height: 64px; padding: 0 16px; grid-template-columns: auto 1fr auto; }
  .lc-header__nav, .lc-header__cta, .lc-header__right .lc-lang, .lc-header__right .lc-social-icon { display: none !important; }
  .lc-header__logo-name { font-size: 18px; }
  .lc-header__logo-sub { font-size: 8px; }
  /* 모바일 4-split — episode.clinic 스타일: 가로형 카드 + 좌측 텍스트 / 우측 이미지 */
  .lc-hero-split { grid-template-columns: 1fr; min-height: 0; }
  .lc-hero-panel {
    min-height: 0;
    aspect-ratio: 16 / 11;     /* 가로형 */
  }
  /* 이미지가 우측 + 얼굴 위쪽 잘 보이게 */
  .lc-hero-panel img {
    object-position: 68% 28%;
  }
  /* 좌측 텍스트 가독성 확보: 좌측 진하게 → 우측 투명 */
  .lc-hero-panel::after {
    background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 38%, rgba(0,0,0,0.10) 75%, rgba(0,0,0,0) 100%);
  }
  /* 텍스트를 좌측 상단~중앙 */
  .lc-hero-panel__content {
    min-height: 100%;
    padding: 28px 22px;
    justify-content: center;
    align-items: flex-start;
    max-width: 65%;            /* 우측 35%는 이미지 영역 */
  }
  .lc-hero-panel__label { font-size: 11px; letter-spacing: 0.25em; opacity: 0.9; }
  .lc-hero-panel__title { font-size: 24px; line-height: 1.25; margin: 8px 0 10px; }
  .lc-hero-panel__desc { font-size: 13px; line-height: 1.6; opacity: 0.85; }
  .lc-floating-cta { right: 12px; bottom: 12px; top: auto; transform: none; }
  .lc-fcta__event { width: 52px; height: 52px; font-size: 11px; }
  .lc-section { padding: 60px 0; }
  body.home .lc-header:not(.scrolled) .lc-header__logo-name { color: #FFF; }
}

@media (min-width: 1025px) {
  .lc-mobile-menu { display: none !important; }
}

/* === Logo PNG 이미지 (PC + 모바일) === */
.lc-header__logo-img {
  display: block;
  height: 76px;          /* 헤더 100px에 맞춤 (좌우 12px 여백) */
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.lc-header__logo-name,
.lc-header__logo-sub { display: none !important; }

@media (max-width: 768px) {
  .lc-header__logo-img { height: 40px; }
}

/* Hero 위에서 로고 흰색 반전 */
body.home .lc-header:not(.scrolled) .lc-header__logo-img {
  filter: brightness(0) invert(1);
}

/* === Hamburger 우상단 항상 표시 (PC + 모바일) === */
.lc-hamburger {
  display: flex !important;
  position: relative;
  z-index: 51;
}
.lc-hamburger span { background: var(--lc-ink); }
body.home .lc-header:not(.scrolled) .lc-hamburger span { background: #FFF; }

/* PC에서는 햄버거 + 메뉴 둘 다 보이도록 */
@media (min-width: 1024px) {
  .lc-header__nav { display: flex !important; }
  .lc-hamburger { display: flex !important; }
}

/* === 햄버거 좌상단 fixed === */
.lc-hamburger {
  position: fixed !important;
  top: 24px !important;
  left: 24px !important;
  z-index: 60 !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
body.home:not(.scrolled-active) .lc-hamburger {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
body.home:not(.scrolled-active) .lc-hamburger span {
  background: #FFF;
}

/* 헤더에서 햄버거 위치 제거 (좌상단 fixed로 분리) */
.lc-header__right .lc-hamburger { display: none !important; }

/* 로고는 헤더 좌측 그대로, 햄버거 들어갈 공간 확보 */
.lc-header__inner { padding-left: 80px; }

@media (max-width: 768px) {
  .lc-hamburger { top: 16px !important; left: 16px !important; width: 40px !important; height: 40px !important; }
  .lc-header__inner { padding-left: 64px !important; }
}

/* === 햄버거 우상단 진짜 fixed (강력 우선순위) === */
.lc-hamburger {
  position: fixed !important;
  top: 24px !important;
  left: auto !important;
  right: 24px !important;
  z-index: 100 !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 5px !important;
  background: rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(8px);
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border: 0 !important;
  cursor: pointer;
}
@media (max-width: 768px) {
  .lc-hamburger {
    top: 16px !important;
    right: 16px !important;
    left: auto !important;
    width: 40px !important;
    height: 40px !important;
  }
}
body.home .lc-hamburger {
  background: rgba(255,255,255,0.18) !important;
}
body.home .lc-hamburger span { background: #FFF !important; }
.lc-header.scrolled ~ * .lc-hamburger,
.lc-hamburger { background: rgba(255,255,255,0.9) !important; }

/* 헤더 padding 좌측 추가했던 거 제거 */
.lc-header__inner { padding-left: 0 !important; }

/* Mobile menu 열렸을 때 햄버거가 그 위에 보이게 */
body.lc-mobile-open .lc-hamburger { z-index: 100 !important; background: rgba(255,255,255,0.95) !important; }
body.lc-mobile-open .lc-hamburger span { background: var(--lc-ink) !important; }

/* === 햄버거 PC에서 완전 숨김 === */
@media (min-width: 1024px) {
  .lc-hamburger { display: none !important; }
}
@media (max-width: 1023px) {
  .lc-hamburger { display: flex !important; }
}

/* PC에서는 햄버거 숨김 */
@media (min-width: 1024px) {
  .lc-hamburger { display: none !important; }
}

/* === Concern 시술 항목 리스트 (카드 대신) === */
.lc-concern-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.lc-concern-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #FFF;
  border: 1px solid var(--lc-border-soft);
  border-radius: 12px;
  text-decoration: none;
  color: var(--lc-ink);
  transition: all 0.2s;
}
.lc-concern-item:hover {
  border-color: var(--lc-accent);
  background: var(--lc-bg-cream);
  transform: translateX(4px);
}
.lc-concern-item__name {
  font-size: 15px;
  font-weight: 500;
}
.lc-concern-item__arrow {
  color: var(--lc-accent);
  font-size: 18px;
  transition: transform 0.2s;
}
.lc-concern-item:hover .lc-concern-item__arrow { transform: translateX(4px); }

/* === PC 헤더 높이 100px === */
@media (min-width: 1024px) {
  .lc-header__inner { height: 100px !important; }
  .lc-hero-split { margin-top: -100px !important; }
  .lc-header__logo-img { height: 76px !important; }
  .lc-header__logo-name { font-size: 24px !important; }
  .lc-header__logo-sub { font-size: 9px !important; }
}

/* === 모바일 하단 sticky CTA === */
/* ===== Mobile sticky CTA — 5-tab bottom bar (episode.clinic style) ===== */
.lc-mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: #FFFFFF;
  border-top: 1px solid #EAEAEA;
  padding: 4px 0 env(safe-area-inset-bottom, 4px);
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.lc-msc-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 2px 8px;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  color: #1A1A1A;
  background: transparent;
  border-radius: 0;
  transition: background 0.15s;
  min-width: 0;        /* grid item이 SVG 때문에 부풀지 않게 */
  overflow: hidden;
}
.lc-msc-btn svg {
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0;
  display: block;
  color: #1A1A1A;       /* currentColor용 */
}
.lc-msc-btn:active { background: rgba(0,0,0,0.04); }

@media (max-width: 768px) {
  .lc-floating-cta { display: none !important; }
  .lc-mobile-sticky-cta { display: grid !important; }
  /* 본문 하단 여백 (CTA 바와 겹침 방지) */
  body { padding-bottom: 80px; }
  .lc-footer { padding-bottom: 80px; }
}

/* ============================================================
   HERO VIDEO — full-bleed top section (gsos.kr style)
============================================================ */
/* main wrapper가 hero 사이즈를 제한하지 못하게 강제 해제 */
html, body { margin: 0 !important; padding: 0 !important; }
body > main, main {
  display: block !important;
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
}

.lc-hero-video {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 100vw;
  margin: 0;
  padding: 0;
  height: calc(100vh + 100px);       /* fallback: viewport + PC 헤더 */
  height: calc(100lvh + 100px);      /* large viewport + 헤더 보정 */
  min-height: calc(100vh + 100px);
  overflow: hidden;
  background: #0A0A0A;
  isolation: isolate;
}
.lc-hero-video__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
  background: #0A0A0A;
}
.lc-hero-video__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.15) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.0) 35%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}
.lc-hero-video__inner {
  position: relative; z-index: 2;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 max(40px, 6vw);
  display: flex; flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
}
.lc-hero-video__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.92);
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.06);
}
.lc-hero-video__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: #FFFFFF;
}
.lc-hero-video__title em {
  font-style: italic;
  font-weight: 400;
  color: #E5C99A;       /* soft gold */
}
.lc-hero-video__desc {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.85;
  color: rgba(255,255,255,0.88);
  margin: 0 0 44px;
  max-width: 520px;
  font-weight: 400;
}
.lc-hero-video__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.lc-hero-video__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 34px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.lc-hero-video__btn--gold  { background: #C9A96E; color: #1A1A1A; }
.lc-hero-video__btn--gold:hover  { background: #D6B985; transform: translateY(-1px); }
.lc-hero-video__btn--ghost { background: transparent; color: #FFFFFF; border-color: rgba(255,255,255,0.55); }
.lc-hero-video__btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #FFFFFF; }

.lc-hero-video__scroll {
  position: absolute; bottom: 36px; right: 36px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 10px; letter-spacing: 0.4em;
}
.lc-hero-video__scroll-line {
  position: relative; width: 1px; height: 56px;
  background: rgba(255,255,255,0.3); overflow: hidden;
}
.lc-hero-video__scroll-line::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 50%;
  background: #FFFFFF;
  animation: lc-hero-scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes lc-hero-scroll-bounce {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(220%); }
}

/* hero-video 바로 뒤 hero-split의 negative margin 무효화 */
.lc-hero-video + .lc-hero-split { margin-top: 0; }

@media (max-width: 768px) {
  .lc-hero-video {
    margin-top: 0 !important;
    height: calc(100vh + 64px);
    height: calc(100lvh + 64px) !important;
    min-height: calc(520px + 64px) !important;
  }
  .lc-hero-video__inner { padding: 0 24px; }
  .lc-hero-video__eyebrow { font-size: 10px; letter-spacing: 0.25em; padding: 6px 14px; margin-bottom: 20px; }
  .lc-hero-video__title { font-size: clamp(40px, 11vw, 64px); margin-bottom: 20px; }
  .lc-hero-video__desc { font-size: 14px; line-height: 1.7; margin-bottom: 32px; }
  .lc-hero-video__btn { padding: 14px 24px; font-size: 13px; }
  .lc-hero-video__scroll { display: none; }
}

/* ============================================================
   PHASE B — Component System (CI v1.0 — sharp 2px, gold CTA)
   brand pack/components.html 표준에 맞춰 통일
============================================================ */

/* ── Buttons ──────────────────────────────────────────────── */
.btn,
.lc-btn-x {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  text-transform: none;
}
.btn:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }

.btn-lg { height: 56px; padding: 0 32px; border-radius: var(--r-xs); font-size: 15px; }
.btn-md { height: 44px; padding: 0 24px; border-radius: var(--r-xs); font-size: 13px; }
.btn-sm { height: 36px; padding: 0 18px; border-radius: var(--r-xs); font-size: 12px; }

.btn-gold        { background: var(--accent-gold); color: #FFFFFF; }
.btn-gold:hover  { background: var(--brand-primary); color: #FFFFFF; }
.btn-primary     { background: var(--brand-primary); color: var(--brand-on); }
.btn-primary:hover { background: var(--brand-primary-2); }
.btn-outline     { background: transparent; color: var(--brand-primary); border-color: #B89BD3; }
.btn-outline:hover { background: var(--brand-soft); }
.btn-dark        { background: var(--ink-900); color: #FFFFFF; }
.btn-dark:hover  { background: var(--brand-primary-3); }
.btn-ghost       { background: transparent; color: var(--brand-primary); }
.btn-ghost:hover { background: var(--brand-soft); }
.btn-kakao       { background: #FEE500; color: #181600; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }
.btn-kakao:hover { background: #F4DC00; }
.btn-disabled    { background: var(--ink-200); color: var(--ink-400); cursor: not-allowed; }
.btn-ko          { font-family: var(--font-sans); letter-spacing: 0; font-weight: 600; }

/* 기존 .lc-btn 호환 매핑 (전체 사이트 자동 통일) */
.lc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 44px; padding: 0 24px; border-radius: var(--r-xs); font-family: var(--font-en); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; transition: all 0.25s var(--ease); border: 1px solid transparent; cursor: pointer; }
.lc-btn--lg { height: 56px; padding: 0 32px; font-size: 15px; border-radius: var(--r-xs); }
.lc-btn--dark { background: var(--ink-900); color: #FFFFFF; }
.lc-btn--dark:hover { background: var(--brand-primary-3); }
.lc-btn--outline { background: transparent; border-color: #B89BD3; color: var(--brand-primary); }
.lc-btn--outline:hover { background: var(--brand-soft); }
.lc-btn--ivory-outline { background: transparent; border-color: rgba(245,239,230,0.4); color: #F5EFE6; }
.lc-btn--ivory-outline:hover { background: var(--brand-on); color: var(--brand-primary); border-color: var(--brand-on); }
.lc-btn--gold { background: var(--accent-gold); color: #FFFFFF; }
.lc-btn--gold:hover { background: var(--brand-primary); }

/* ── Badges ───────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: var(--r-xs); font-family: var(--font-en); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }
.badge-ko { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0; text-transform: none; font-weight: 600; }
.badge-new   { background: var(--brand-primary); color: #FFFFFF; }
.badge-gold  { background: var(--accent-gold); color: #FFFFFF; }
.badge-event { background: var(--brand-soft); color: var(--brand-primary-2); }
.badge-soft  { background: var(--brand-soft); color: var(--brand-primary-2); }
.badge-line  { background: transparent; color: var(--ink-700); border: 1px solid var(--ink-200); }
.badge-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── Form ─────────────────────────────────────────────────── */
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-700); }
.field .hint { font-size: 12px; color: var(--ink-500); font-weight: 400; }
.input, .select, .textarea {
  font: inherit;
  font-family: var(--font-sans);
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-xs);
  background: var(--brand-on);
  color: var(--ink-900);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-400); }
.textarea { resize: vertical; min-height: 100px; }
.check { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; color: var(--ink-700); }
.check input { width: 18px; height: 18px; accent-color: var(--brand-primary); }

/* ── Cards ────────────────────────────────────────────────── */
.card-elev {
  background: var(--brand-on);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-2);
  padding: 24px;
}
.treat-card {
  display: grid; gap: 14px;
  padding: 24px;
  background: var(--brand-on);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  transition: all 0.25s var(--ease);
  text-decoration: none;
  color: inherit;
}
.treat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--brand-soft-2);
}
.treat-card .ic {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-primary);
  display: grid; place-items: center;
}
.treat-card .ic svg, .treat-card .ic img { width: 24px; height: 24px; }
.treat-card h4 {
  margin: 0; font-size: 18px; font-weight: 700;
  color: var(--ink-900); letter-spacing: -0.01em;
}
.treat-card p {
  margin: 0; font-size: 13px;
  color: var(--ink-500); line-height: 1.65;
}

/* ── Doctor card ──────────────────────────────────────────── */
.doc {
  background: var(--brand-on);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--ink-100);
}
.doc .photo { aspect-ratio: 4/5; background: var(--brand-soft); object-fit: cover; width: 100%; }
.doc .info { padding: 20px 22px 24px; }
.doc .info .role { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.2em; color: var(--accent-gold-dark); font-weight: 500; text-transform: uppercase; }
.doc .info h4 { margin: 6px 0 4px; font-size: 20px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink-900); }
.doc .info p { margin: 0; font-size: 13px; color: var(--ink-500); line-height: 1.65; }

/* ── Review card ──────────────────────────────────────────── */
.review {
  background: var(--brand-on);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  padding: 24px;
}
.review .stars { color: var(--accent-gold); font-size: 14px; letter-spacing: 4px; margin-bottom: 10px; }
.review .quote { font-size: 15px; line-height: 1.75; color: var(--ink-700); margin: 0 0 14px; }
.review .quote::before {
  content: '“';
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 30px; line-height: 0;
  vertical-align: -8px; margin-right: 4px;
}
.review .who { display: flex; align-items: center; gap: 10px; }
.review .who .avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--brand-soft-2); }
.review .who .name { font-size: 13px; font-weight: 600; color: var(--ink-800); }
.review .who .tag { font-size: 12px; color: var(--ink-500); }

/* ── Price table ──────────────────────────────────────────── */
.price {
  background: var(--brand-on);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  overflow: hidden;
}
.price-head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--ink-100);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--brand-soft);
}
.price-head h4 { margin: 0; font-size: 17px; font-weight: 700; color: var(--brand-primary-3); letter-spacing: -0.01em; }
.price-body { padding: 8px 24px; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dashed var(--ink-100);
}
.price-row:last-child { border-bottom: 0; }
.price-row .name { font-size: 15px; color: var(--ink-800); font-weight: 500; }
.price-row .sub { font-size: 12px; color: var(--ink-500); margin-left: 8px; font-weight: 400; }
.price-row .amt { font-family: var(--font-en); font-size: 16px; font-weight: 600; color: var(--ink-900); font-variant-numeric: tabular-nums; }
.price-row .was { font-family: var(--font-en); font-size: 13px; color: var(--ink-400); text-decoration: line-through; margin-right: 10px; }
.price-foot { padding: 16px 24px; background: var(--brand-soft); font-size: 12px; color: var(--ink-500); }

/* ── Booking gradient card ───────────────────────────────── */
.booking {
  background: linear-gradient(135deg, var(--brand-primary-3) 0%, var(--brand-primary-2) 100%);
  color: #FFFFFF;
  border-radius: var(--r-md);
  padding: 36px;
  display: grid; gap: 18px;
}
.booking .eyebrow { font-family: var(--font-en); font-size: 12px; letter-spacing: 0.25em; font-weight: 500; color: var(--accent-gold-light); text-transform: uppercase; }
.booking h3 { margin: 0; font-size: 30px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }
.booking .meta { display: flex; flex-wrap: wrap; gap: 22px; font-size: 13px; color: rgba(255,255,255,0.78); }
.booking .meta span { display: inline-flex; gap: 6px; align-items: center; }
.booking .actions { display: flex; gap: 10px; margin-top: 12px; }
