/* ============================================================
   썸라운드 — 랜딩페이지 스타일
   톤: Soft Pink / White / Warm Beige
   ============================================================ */

:root {
  --pink-50:   #fdf2f8;
  --pink-100:  #fce7f3;
  --pink-200:  #fbcfe8;
  --pink-300:  #f9a8d4;
  --pink-400:  #f472b6;
  --pink-500:  #ec4899;
  --pink-600:  #db2777;
  --pink-700:  #be185d;
  --violet-50:  #f5f3ff;
  --violet-100: #ede9fe;
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --beige-50:  #fffaf5;
  --beige-100: #fef3e9;
  --ink:       #1a1a2e;
  --ink-2:     #3f3a4d;
  --ink-3:     #6b7280;
  --muted:     #8b8094;
  --muted-2:   #9ca3af;
  --border:    #f3e8ee;
  --border-soft:#faf0f5;
  --card:      #ffffff;
  --shadow-sm: 0 2px 8px rgba(236,72,153,0.06);
  --shadow:    0 8px 28px rgba(236,72,153,0.10);
  --shadow-lg: 0 20px 50px rgba(236,72,153,0.18);
  --radius:    18px;
  --radius-lg: 24px;
  --maxw:      1180px;
  --font-sans:   'Pretendard','Apple SD Gothic Neo','Malgun Gothic',sans-serif;
  --font-script: 'Nanum Pen Script','Pretendard',cursive;
  --font-serif:  'Playfair Display','Pretendard',serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: #fffafc;
  color: #4b4b4b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.15px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border: 1px solid transparent; border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600; letter-spacing: 0.2px;
  cursor: pointer; transition: transform .15s, box-shadow .2s, background .15s, color .15s;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff;
  box-shadow: 0 8px 20px rgba(236,72,153,0.30);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(236,72,153,0.36); }
.btn--ghost {
  background: rgba(255,255,255,0.85);
  color: var(--pink-700);
  border-color: rgba(236,72,153,0.30);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: #fff; }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 14px 26px; font-size: 14.5px; }
.btn--xl { padding: 18px 36px; font-size: 16px; }

/* ===== Section Heads ===== */
.sec-head { text-align: center; margin-bottom: 38px; }
.sec-eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 24px; font-weight: 400; letter-spacing: 2px;
  color: var(--pink-500); margin-bottom: 6px; text-transform: uppercase;
}
.sec-eyebrow::before, .sec-eyebrow::after {
  content: ""; display: inline-block; width: 22px; height: 1px;
  background: var(--pink-300); vertical-align: middle; margin: 0 12px;
}
.sec-title {
  font-size: 30px; font-weight: 800; color: var(--ink); letter-spacing: -1px;
  margin-bottom: 12px;
}
.sec-sub { font-size: 14.5px; color: var(--ink-3); line-height: 1.7; font-weight: 400; }

/* ============================================================
   HEADER
   ============================================================ */
.hd {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(236,72,153,0.10);
}
.hd__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.hd__logo {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  color: var(--ink);
}
.hd__logo-mark {
  width: 38px; height: 38px; flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(236,72,153,0.18));
  transition: transform .25s ease;
}
.hd__logo:hover .hd__logo-mark { transform: rotate(-12deg) scale(1.05); }
.hd__logo-petal circle { fill: #fbcfe8; }
.hd__logo-petal circle:nth-child(odd) { fill: #f9a8d4; }
.hd__logo-text { display: flex; flex-direction: column; line-height: 1; }
.hd__logo-text strong {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 700; color: var(--pink-500);
  letter-spacing: 0.2px; font-style: italic;
}
.hd__logo-text em {
  font-size: 10.5px; font-weight: 500; color: var(--ink-3);
  font-style: normal; margin-top: 4px; letter-spacing: 4px; padding-left: 4px;
}
.hd__nav { flex: 1; display: flex; justify-content: center; gap: 26px; }
.hd__nav a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  padding: 6px 0; transition: color .15s; position: relative; letter-spacing: -0.1px;
}
.hd__nav a:hover { color: var(--pink-600); }
.hd__cta { display: flex; align-items: center; gap: 10px; }
.hd__ig {
  height: 38px; border-radius: 999px;
  background: #fff; color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 16px;
  font-size: 13.5px; font-weight: 700; text-decoration: none; white-space: nowrap;
  border: 1px solid var(--border);
  transition: all .15s;
}
.hd__ig-label { line-height: 1; }
.hd__ig:hover { color: var(--pink-600); border-color: var(--pink-300); }
.hd__burger { display: none; flex-direction: column; gap: 4px; background: none; border: 0; padding: 8px; }
.hd__burger span { display: block; width: 22px; height: 2px; background: var(--ink-2); border-radius: 2px; }
.hd__mnav { display: none; flex-direction: column; padding: 0 24px 16px; border-top: 1px solid var(--border); background: #fff; }
.hd__mnav a { padding: 14px 0; font-size: 14px; font-weight: 600; color: var(--ink-2); border-bottom: 1px solid var(--border-soft); }
.hd__mnav.open { display: flex; }
@media (max-width: 980px) {
  .hd__nav { display: none; }
  .hd__burger { display: flex; }
}
@media (max-width: 560px) {
  .hd__logo-text em { display: none; }
  .hd__cta .btn { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 560px; height: 580px;
  display: flex; align-items: center;
  padding: 0;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  filter: saturate(1.02) brightness(1.02);
}
.hero__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20,10,25,0.55) 0%, rgba(20,10,25,0.32) 32%, rgba(20,10,25,0.10) 55%, rgba(20,10,25,0) 75%),
    linear-gradient(180deg, rgba(20,10,25,0.18) 0%, rgba(20,10,25,0) 35%, rgba(255,245,250,0.35) 100%);
}
.hero__petals { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__petals span {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--pink-200));
  filter: blur(0.3px); opacity: 0.7;
  animation: petal-float 12s ease-in-out infinite;
}
.hero__petals span:nth-child(1) { left: 6%;  top: 12%; animation-delay: 0s; }
.hero__petals span:nth-child(2) { left: 18%; top: 70%; animation-delay: -3s; width: 9px; height: 9px; }
.hero__petals span:nth-child(3) { left: 88%; top: 18%; animation-delay: -6s; width: 11px; height: 11px; }
.hero__petals span:nth-child(4) { left: 76%; top: 78%; animation-delay: -2s; width: 7px; height: 7px; }
.hero__petals span:nth-child(5) { left: 50%; top: 8%;  animation-delay: -8s; width: 10px; height: 10px; }
@keyframes petal-float {
  0%,100% { transform: translate(0,0) rotate(0); }
  50%     { transform: translate(8px,16px) rotate(20deg); }
}

.hero__inner {
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  padding: 0 24px;
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center;
}
.hero__left { padding-left: 16px; }
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 28px; font-weight: 400; letter-spacing: 1px;
  color: #ffe1ee; margin-bottom: 14px;
  padding: 0; background: transparent; border: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero__title {
  font-size: 54px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.2;
  color: #fff; margin-bottom: 22px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero__title-accent {
  background: linear-gradient(135deg, #ffb5d2, #ff7eb1);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 2px 10px rgba(255,126,177,0.35));
}
.hero__sub {
  font-size: 16px; color: rgba(255,255,255,0.94); line-height: 1.8; font-weight: 400;
  margin-bottom: 30px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__cta .btn--ghost {
  background: #fff; color: var(--pink-600);
  border-color: rgba(255,255,255,0.85);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.hero__cta .btn--ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.18); }

.hero__right { display: flex; justify-content: flex-end; align-items: center; padding-right: 8px; }
.stat-circle {
  width: 230px; height: 230px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(236,72,153,0.22);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18), 0 0 0 8px rgba(255,255,255,0.18);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 6px; padding: 20px;
  position: relative;
}
.stat-circle::before {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(252,231,243,0.6), rgba(255,255,255,0));
  z-index: -1;
}
.stat-circle__mark { font-size: 18px; color: var(--pink-500); }
.stat-circle__label { font-size: 12.5px; color: var(--ink-3); font-weight: 600; }
.stat-circle__big {
  font-family: var(--font-serif);
  font-size: 40px; font-weight: 700; color: var(--pink-600); letter-spacing: -0.8px;
  display: flex; align-items: baseline; gap: 4px;
}
.stat-circle__big em { font-style: normal; }
.stat-circle__big span { font-size: 16px; color: var(--ink-2); font-weight: 700; }
.stat-circle__big small { font-size: 16px; color: var(--pink-500); }
.stat-circle__small { font-size: 12.5px; color: var(--ink-2); font-weight: 600; }
.stat-circle__small strong { color: var(--pink-600); font-weight: 800; }

@media (max-width: 900px) {
  .hero { min-height: 0; height: auto; padding: 56px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 26px; }
  .hero__left { padding-left: 0; text-align: left; }
  .hero__title { font-size: 38px; }
  .hero__right { display: none; }
}
@media (max-width: 480px) {
  .hero { padding: 44px 0 52px; }
  .hero__title { font-size: 30px; }
  .hero__sub { font-size: 14.5px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 80px 0 70px; background: #fffafc; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.svc-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  border: 1px solid var(--border-soft);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card__media {
  height: 220px;
  background-color: var(--pink-50);
  background-image:
    linear-gradient(135deg, rgba(252,231,243,0.55) 0%, rgba(251,207,232,0.30) 55%, rgba(255,255,255,0.45) 100%),
    url("/rotation.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  position: relative;
}
.svc-card__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 70% at 10% 100%, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(80% 60% at 90% 0%, rgba(252,231,243,0.45) 0%, rgba(252,231,243,0) 65%);
}
.svc-card__media--violet {
  background-color: var(--violet-50);
  background-image:
    linear-gradient(135deg, rgba(237,233,254,0.55) 0%, rgba(196,181,253,0.30) 55%, rgba(255,255,255,0.45) 100%),
    url("/private.png");
}
.svc-card__media--violet::after {
  background:
    radial-gradient(120% 70% at 10% 100%, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 60%),
    radial-gradient(80% 60% at 90% 0%, rgba(237,233,254,0.55) 0%, rgba(237,233,254,0) 65%);
}
.svc-card__body { padding: 30px 32px 32px; }
.svc-card__title {
  font-size: 22px; font-weight: 800; color: var(--pink-600);
  margin-bottom: 8px; letter-spacing: -0.5px;
}
.svc-card--violet .svc-card__title { color: var(--violet-600); }
.svc-card__lead {
  font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 16px;
}
.svc-card__desc {
  font-size: 13.5px; color: #4b4b4b; line-height: 1.78; font-weight: 400;
  margin-bottom: 22px;
}
.svc-card__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 999px;
  background: var(--pink-500); color: #fff;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 6px 16px rgba(236,72,153,0.26);
  transition: transform .15s, box-shadow .2s;
  margin-bottom: 22px;
}
.svc-card__btn span { display: inline-block; transition: transform .15s; }
.svc-card__btn:hover span { transform: translateX(4px); }
.svc-card__btn--violet {
  background: var(--violet-500);
  box-shadow: 0 6px 16px rgba(139,92,246,0.26);
}
.svc-features {
  display: flex;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.svc-feature {
  flex: 1;
  text-align: center;
  padding: 4px 10px;
  position: relative;
  transition: transform .25s ease;
}
.svc-feature + .svc-feature::before {
  content: "";
  position: absolute;
  left: 0; top: 16%;
  height: 68%;
  width: 1px;
  background: rgba(0,0,0,0.06);
}
.svc-feature__icon {
  width: 22px; height: 22px;
  margin: 0 auto 10px;
  display: block;
  color: var(--pink-500);
  transition: color .2s ease, transform .25s ease;
  stroke-width: 1.8;
}
.svc-card--violet .svc-feature__icon { color: var(--violet-500); }
.svc-feature:hover { transform: translateY(-4px); }
.svc-feature:hover .svc-feature__icon { color: var(--pink-600); transform: scale(1.08); }
.svc-card--violet .svc-feature:hover .svc-feature__icon { color: var(--violet-600); }
.svc-feature__title {
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 600;
  color: var(--pink-600);
  margin: 0 0 6px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}
.svc-card--violet .svc-feature__title { color: var(--violet-600); }
.svc-feature__desc {
  font-size: 12.5px; font-weight: 400;
  color: #888;
  line-height: 1.65;
  word-break: keep-all;
}
@media (max-width: 420px) {
  .svc-features { flex-direction: column; gap: 18px; }
  .svc-feature + .svc-feature::before { display: none; }
  .svc-feature { padding: 0; }
}

@media (max-width: 820px) {
  .svc-grid { grid-template-columns: 1fr; }
  .services { padding: 70px 0; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: 60px 0 80px; }
.stats-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  border: 1px solid var(--border-soft);
}
.stat-item { text-align: center; padding: 6px 0; position: relative; }
.stat-item:not(:last-child)::after {
  content: ""; position: absolute; top: 14%; right: 0; width: 1px; height: 72%;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}
.stat-item__icon { font-size: 22px; color: var(--pink-500); margin-bottom: 8px; }
.stat-item__label { font-size: 13px; color: var(--ink-3); font-weight: 600; margin-bottom: 10px; }
.stat-item__value {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 700; color: var(--ink); letter-spacing: -0.5px;
}
.stat-item__value em { font-style: normal; }
.stat-item__value span { font-size: 13.5px; color: var(--ink-3); font-weight: 700; margin-left: 4px; }
@media (max-width: 700px) {
  .stats-card { grid-template-columns: 1fr 1fr; gap: 14px; padding: 26px 18px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item__value { font-size: 22px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: 90px 0 100px; background: linear-gradient(180deg, #fff 0%, #fff5fa 100%); }
.rv-wrap { position: relative; }
.rv-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--pink-200) transparent;
  padding: 8px 4px 18px;
}
.rv-grid::-webkit-scrollbar { height: 8px; }
.rv-grid::-webkit-scrollbar-thumb { background: var(--pink-200); border-radius: 4px; }
.rv-card {
  background: #fff; border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .25s;
  min-width: 0;
}
.rv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.rv-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.rv-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.rv-tag {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--pink-50); color: var(--pink-600);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1px;
}
.rv-chat {
  display: flex; flex-direction: column; gap: 5px;
  background: #fafbfc; border-radius: 12px;
  padding: 12px 12px 14px;
  margin-bottom: 12px;
  min-height: 150px;
}
.rv-msg {
  max-width: 88%; padding: 8px 12px; border-radius: 12px;
  font-size: 12.5px; line-height: 1.5; word-break: keep-all;
}
.rv-msg--in {
  align-self: flex-start; background: #fff;
  border: 1px solid var(--border-soft); color: var(--ink-2);
  border-top-left-radius: 4px;
}
.rv-msg--out {
  align-self: flex-end;
  background: #fef3c7; color: #78350f;
  border-top-right-radius: 4px;
}
.rv-text {
  font-size: 12.5px; color: var(--ink-2); line-height: 1.65;
  word-break: keep-all; flex: 1;
}
.rv-foot {
  display: flex; align-items: center; gap: 8px;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-size: 11.5px; color: var(--ink-3); font-weight: 600;
}
.rv-foot__avatar { font-size: 16px; }
.rv-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: var(--pink-500);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 20px; font-weight: 900;
  display: none; align-items: center; justify-content: center;
  z-index: 4; transition: all .15s;
}
.rv-arrow:hover { background: var(--pink-50); color: var(--pink-600); }
.rv-arrow--prev { left: -20px; }
.rv-arrow--next { right: -20px; }
@media (max-width: 1180px) {
  .rv-grid { grid-template-columns: repeat(4, minmax(260px, 1fr)); padding-left: 4px; padding-right: 4px; }
  .rv-arrow { display: inline-flex; }
}
@media (max-width: 700px) {
  .rv-grid { grid-template-columns: repeat(4, minmax(240px, 80%)); gap: 12px; }
  .reviews { padding: 70px 0 80px; }
  .rv-arrow { display: none; }
}

/* ============================================================
   SESSIONS
   ============================================================ */
.sessions { padding: 90px 0 100px; }
.ss-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.ss-card {
  background: #fff; border-radius: var(--radius);
  padding: 18px 18px 14px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .25s;
  position: relative;
}
.ss-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ss-card__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px; gap: 6px;
}
.ss-date { font-size: 12px; color: var(--pink-600); font-weight: 700; }
.ss-loc {
  font-size: 11px; color: var(--ink-3); font-weight: 700;
  padding: 3px 9px; background: var(--pink-50); border-radius: 999px;
}
.ss-card__title { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.3px; }
.ss-card__sub { font-size: 11.5px; color: var(--muted); margin-bottom: 12px; }
.ss-card__nums { display: flex; gap: 8px; margin-bottom: 14px; }
.ss-num {
  flex: 1; text-align: center; padding: 8px 4px; border-radius: 8px;
  font-size: 12px; color: var(--ink-2); font-weight: 600;
}
.ss-num strong { font-size: 14px; color: var(--ink); margin: 0 2px; }
.ss-num--m { background: #eff6ff; color: #1d4ed8; }
.ss-num--m strong { color: #1e40af; }
.ss-num--f { background: var(--pink-50); color: var(--pink-600); }
.ss-num--f strong { color: var(--pink-700); }
.ss-badge {
  text-align: center; padding: 7px 0; border-radius: 8px;
  font-size: 12px; font-weight: 700;
}
.ss-badge--soon { background: #fee2e2; color: #b91c1c; }
.ss-badge--open { background: #d1fae5; color: #047857; }

@media (max-width: 980px) {
  .ss-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .ss-grid { grid-template-columns: 1fr; }
  .sessions { padding: 70px 0 80px; }
}

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.bottom-cta {
  padding: 50px 0;
  background:
    radial-gradient(80% 100% at 0% 50%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(80% 100% at 100% 50%, rgba(255,255,255,0.4), transparent 60%),
    linear-gradient(135deg, var(--pink-100) 0%, var(--pink-200) 50%, var(--pink-100) 100%);
}
.bottom-cta__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.bottom-cta h2 {
  font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.8px;
  margin-bottom: 6px;
}
.bottom-cta p { font-size: 13.5px; color: var(--ink-2); }
.bottom-cta .btn { flex-shrink: 0; }
@media (max-width: 700px) {
  .bottom-cta { padding: 40px 0; text-align: center; }
  .bottom-cta__inner { flex-direction: column; gap: 18px; }
  .bottom-cta h2 { font-size: 19px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.ft {
  background: #1a1a2e; color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.ft__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px;
  margin-bottom: 36px;
}
.ft__brand { color: rgba(255,255,255,0.85); }
.ft__logo { display: inline-block; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.ft__logo strong { font-family: var(--font-serif); font-style: italic; font-weight: 700; color: var(--pink-300); }
.ft__brand p { font-size: 12.5px; line-height: 1.75; max-width: 420px; }
.ft__col h4 { font-size: 13px; color: #fff; margin-bottom: 14px; font-weight: 700; }
.ft__col a {
  display: block; font-size: 12.5px; color: rgba(255,255,255,0.62);
  padding: 5px 0; transition: color .15s;
}
.ft__col a:hover { color: var(--pink-300); }
.ft__bot {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 22px; text-align: center;
  font-size: 11.5px; color: rgba(255,255,255,0.40);
}
@media (max-width: 820px) {
  .ft__inner { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 480px) {
  .ft__inner { grid-template-columns: 1fr; gap: 22px; text-align: left; }
}

/* ============================================================
   ROTATION SECTION
   ============================================================ */
.rot-sec {
  padding: 90px 0 70px;
  background: linear-gradient(180deg, #fff 0%, #fff8fa 100%);
}
.rot-sec__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.rot-sec__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 800; letter-spacing: 3px;
  color: var(--pink-500);
  background: var(--pink-50);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.rot-sec__title {
  font-size: 44px; font-weight: 800; color: var(--pink-500);
  letter-spacing: -1.6px; margin-bottom: 26px;
}
.rot-sec__lead {
  font-size: 28px; font-weight: 700; color: var(--ink);
  line-height: 1.45; letter-spacing: -0.8px; margin-bottom: 22px;
}
.rot-sec__heart { color: var(--pink-500); }
.rot-sec__desc {
  font-size: 14.5px; color: #555; line-height: 1.9;
  margin-bottom: 36px; word-break: keep-all;
}
.rot-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 560px; }
.prv-actions { margin-top: 30px; }
.rot-action {
  background: #fff; border-radius: 20px; padding: 22px 22px 20px;
  box-shadow: 0 8px 26px rgba(236,72,153,0.08);
  border: 1px solid var(--border-soft);
  display: block; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.rot-action:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(236,72,153,0.16); }
.rot-action__head { display: flex; align-items: center; gap: 14px; }
.rot-action__icon {
  width: 50px; height: 50px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rot-action__icon svg { width: 26px; height: 26px; }
.rot-action__label { flex: 1; font-size: 16px; font-weight: 800; color: var(--ink); line-height: 1.32; letter-spacing: -0.3px; }
.rot-action__arrow { font-size: 18px; font-weight: 700; transition: transform .2s; flex-shrink: 0; }
.rot-action:hover .rot-action__arrow { transform: translateX(4px); }
.rot-action__desc { margin: 14px 0 0; font-size: 12.5px; color: var(--ink-3); font-weight: 500; line-height: 1.4; }

/* 참가신청 카드 — 핑크 라운드스퀘어 아이콘 + 핑크 화살표 */
.rot-action--apply .rot-action__icon { background: linear-gradient(135deg, #ec4899, #f43f5e); color: #fff; }
.rot-action--apply .rot-action__arrow { color: var(--pink-500); }

/* 오픈카톡 카드 — 카카오 옐로 원형 아이콘 + 진한 화살표 */
.rot-action__icon--kakao { background: #FEE500; color: #181600; border-radius: 50%; }
.rot-action--kakao .rot-action__arrow { color: var(--ink); }

.rot-sec__col--media {
  position: relative; min-height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.rot-media-stack { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.rot-review-link {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--pink-600);
  font-size: 15px; font-weight: 700; letter-spacing: -0.3px;
  padding: 14px 26px; border-radius: 999px; text-decoration: none;
  border: 1px solid var(--pink-100);
  box-shadow: 0 10px 24px rgba(236,72,153,0.16);
  transition: transform .2s, box-shadow .2s;
}
.rot-review-link:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(236,72,153,0.24); }
.rot-review-link__ic { color: var(--pink-500); font-size: 16px; }
.rot-review-link__arrow { font-weight: 700; transition: transform .2s; }
.rot-review-link:hover .rot-review-link__arrow { transform: translateX(4px); }
.rot-sec__script {
  position: absolute; top: 30px; right: 40px;
  font-family: var(--font-script);
  font-size: 28px; color: var(--pink-600);
  text-align: center; line-height: 1.25;
  transform: rotate(6deg);
  z-index: 3;
}
.rot-sec__script span { color: var(--pink-500); }
.rot-polaroid {
  position: relative;
  width: 340px; max-width: 80%;
  background: #fff;
  padding: 14px 14px 26px;
  border-radius: 4px;
  box-shadow: 0 22px 50px rgba(236,72,153,0.18), 0 0 0 1px rgba(0,0,0,0.04);
  transform: rotate(3deg);
}
.rot-polaroid__photo {
  width: 100%; aspect-ratio: 4 / 5;
  border-radius: 2px;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(252,231,243,0.12)),
    url("/couple.png");
  background-size: cover;
  background-position: center center;
}
.rot-sec__rose {
  position: absolute; bottom: -10px; right: -10px;
  font-size: 80px;
  filter: drop-shadow(0 6px 12px rgba(236,72,153,0.25));
  z-index: 2;
  transform: rotate(-8deg);
}
.rot-sec__petal {
  position: absolute; width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--pink-200));
  opacity: 0.85; z-index: 1;
}
.rot-sec__petal--1 { top: 80px; left: 10%; width: 14px; height: 14px; animation: petal-float 11s ease-in-out infinite; }
.rot-sec__petal--2 { top: 20px; right: 18%; width: 10px; height: 10px; animation: petal-float 13s ease-in-out -3s infinite; }
.rot-sec__petal--3 { bottom: 60px; left: 8%; width: 16px; height: 16px; animation: petal-float 10s ease-in-out -6s infinite; }

@media (max-width: 900px) {
  .rot-sec { padding: 70px 0 60px; }
  .rot-sec__inner { grid-template-columns: 1fr; gap: 50px; }
  .rot-sec__col--media { min-height: auto; padding-top: 30px; }
  .rot-polaroid { width: 280px; transform: rotate(2deg); }
  .rot-sec__title { font-size: 34px; }
  .rot-sec__lead { font-size: 22px; }
}
@media (max-width: 480px) {
  .rot-actions { grid-template-columns: 1fr; }
}

/* ============================================================
   ROTATION REVIEWS
   ============================================================ */
.rot-reviews {
  padding: 30px 0 90px;
  background: linear-gradient(180deg, #fff8fa 0%, #fff 100%);
}
.rot-reviews__head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.rot-reviews__icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--pink-50); color: var(--pink-500);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rot-reviews__icon svg { width: 22px; height: 22px; }
.rot-reviews__head h3 {
  font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.6px;
  margin-bottom: 4px;
}
.rot-reviews__head p { font-size: 13.5px; color: var(--ink-3); }
.rot-reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.rt-card {
  background: #fff; border-radius: 18px;
  padding: 28px 26px 22px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 6px 22px rgba(236,72,153,0.06);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.rt-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(236,72,153,0.12); }
.rt-card__tag {
  font-size: 12px; color: var(--pink-500); font-weight: 600;
  text-align: center; margin-bottom: 16px; letter-spacing: 0.2px;
}
.rt-card__quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 48px; color: var(--pink-300); font-weight: 700;
  line-height: 0.6;
  display: block; margin-bottom: 8px;
}
.rt-card__text {
  font-size: 14px; color: #4b4b4b; line-height: 1.85;
  font-weight: 400; word-break: keep-all;
  margin-bottom: 22px;
}
.rt-card__foot {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px dashed var(--border);
}
.rt-card__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.rt-card__author { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.rt-card__meta { font-size: 12px; color: var(--ink-3); }

@media (max-width: 900px) {
  .rot-reviews__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRIVATE SECTION (PINK BG)
   ============================================================ */
.prv-sec {
  padding: 90px 0 60px;
  background: linear-gradient(180deg, #fff5f7 0%, #fff1f4 100%);
}
.prv-sec__head {
  text-align: left;
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 0 4px;
}
.prv-sec__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 800; letter-spacing: 3px;
  color: var(--pink-500);
  background: #fff;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(236,72,153,0.08);
}
.prv-sec__title {
  font-size: 40px; font-weight: 800; color: var(--pink-500);
  letter-spacing: -1.4px; margin-bottom: 24px;
}
.prv-sec__title span { color: var(--ink); }
.prv-sec__lead {
  font-size: 24px; font-weight: 700; color: var(--ink);
  line-height: 1.5; letter-spacing: -0.6px; margin-bottom: 20px;
}
.prv-sec__heart { color: var(--pink-500); }
.prv-sec__desc { font-size: 14.5px; color: #555; line-height: 1.9; word-break: keep-all; }

/* ── 1:1 프라이빗 히어로 (좌 텍스트 + 우 프로필 카드) ── */
.prv-hero {
  display: grid; grid-template-columns: 1fr auto;
  gap: 8px; align-items: center;
  max-width: 1080px; margin: 0 auto 64px; padding: 0 4px;
}
.prv-hero__left { text-align: left; }
.prv-hero__right { position: relative; display: flex; justify-content: center; }

.prv-feats { margin-top: 34px; display: flex; flex-direction: column; gap: 22px; }
.prv-feat { display: flex; gap: 14px; align-items: flex-start; }
.prv-feat__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pink-50); color: var(--pink-500);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.prv-feat__icon svg { width: 21px; height: 21px; }
.prv-feat__title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 3px; letter-spacing: -0.3px; }
.prv-feat__desc { font-size: 13px; color: var(--ink-3); line-height: 1.5; word-break: keep-all; }

/* 프로필 시안 이미지 (그대로 노출) */
.prv-profile { position: relative; display: inline-block; }
.prv-profile__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff; font-size: 12px; font-weight: 700; white-space: nowrap;
  padding: 7px 16px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 8px 18px rgba(236,72,153,0.32);
}
.prv-profile-img {
  width: 100%; max-width: 380px; height: auto; display: block;
  border-radius: 24px;
}

/* 프로필 카드 */
.prv-card {
  position: relative; width: 100%; max-width: 470px;
  background: #fff; border-radius: 24px; padding: 22px;
  box-shadow: 0 20px 54px rgba(236,72,153,0.13);
  border: 1px solid var(--border-soft);
}
.prv-card__badge {
  position: absolute; top: -14px; right: 22px; z-index: 2;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff; font-size: 12.5px; font-weight: 700;
  padding: 8px 15px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 8px 18px rgba(236,72,153,0.32);
}
.prv-card__photo { position: relative; border-radius: 18px; overflow: visible; }
.prv-card__photo img {
  width: 100%; aspect-ratio: 16 / 11; object-fit: cover;
  border-radius: 18px; display: block;
}
.prv-card__like {
  position: absolute; right: 14px; bottom: -20px;
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: none; cursor: pointer; color: var(--pink-500);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(236,72,153,0.24);
  transition: transform .2s;
}
.prv-card__like:hover { transform: scale(1.08); }
.prv-card__like svg { width: 23px; height: 23px; }
.prv-card__name {
  display: flex; align-items: center; gap: 7px;
  font-size: 19px; font-weight: 800; color: var(--ink);
  margin: 32px 4px 20px;
}
.prv-card__name span { color: var(--ink-3); font-weight: 600; font-size: 16px; }
.prv-card__verified { width: 18px; height: 18px; color: #3b9cff; flex-shrink: 0; }
.prv-card__info {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 15px 22px; padding: 0 4px;
}
.prv-info { display: flex; align-items: center; gap: 9px; }
.prv-info__ic { color: var(--pink-500); display: inline-flex; flex-shrink: 0; }
.prv-info__ic svg { width: 17px; height: 17px; }
.prv-info__label { font-size: 13px; color: var(--ink-3); font-weight: 600; flex-shrink: 0; }
.prv-info__value { font-size: 13.5px; color: var(--ink); font-weight: 700; margin-left: auto; text-align: right; }
.prv-card__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 24px; padding: 15px; border-radius: 14px;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: #fff; font-size: 15px; font-weight: 700; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.prv-card__btn svg { width: 17px; height: 17px; }
.prv-card__btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(236,72,153,0.32); }

/* 떠다니는 하트 데코 */
.prv-hero__heart { position: absolute; color: #f9a8d4; pointer-events: none; opacity: .85; }
.prv-hero__heart--1 { top: 6%; right: -6px; font-size: 26px; }
.prv-hero__heart--2 { top: 38%; right: -22px; font-size: 18px; opacity: .6; }
.prv-hero__heart--3 { bottom: 8%; right: 4px; font-size: 20px; opacity: .5; }

@media (max-width: 920px) {
  .prv-hero { grid-template-columns: 1fr; gap: 40px; }
  .prv-hero__heart { display: none; }
}

.prv-process {
  background: #fff;
  border-radius: 24px;
  padding: 56px 40px 60px;
  box-shadow: 0 14px 36px rgba(236,72,153,0.08);
  border: 1px solid rgba(255,255,255,0.8);
}
.prv-process__head {
  text-align: center;
  margin-bottom: 50px;
}
.prv-process__title {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 24px; font-weight: 800; color: var(--pink-500);
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}
.prv-process__deco {
  display: inline-block;
  font-size: 20px; color: var(--pink-400);
  line-height: 1;
  transform: translateY(-1px);
}
.prv-process__subtitle {
  font-size: 14px; color: #888; font-weight: 400; letter-spacing: -0.1px;
}
.prv-process__steps {
  display: flex; align-items: flex-start;
  justify-content: center;
  gap: 8px;
  max-width: 1080px; margin: 0 auto;
}
.pr-step {
  flex: 1 1 0; text-align: center; min-width: 0;
  padding: 0 8px;
  transition: transform .25s;
}
.pr-step:hover { transform: translateY(-4px); }
.pr-step__num {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px;
  background: transparent;
  color: var(--pink-400);
  padding: 3px 12px;
  border: 1.5px solid var(--pink-200);
  border-radius: 999px;
  margin: 0 0 14px;
}
.pr-step__icon {
  width: 84px; height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--pink-50); color: var(--pink-500);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, transform .2s;
}
.pr-step__icon svg { width: 36px; height: 36px; stroke-width: 1.6; }
.pr-step:hover .pr-step__icon { background: var(--pink-100); color: var(--pink-600); }
.pr-step__title {
  font-size: 14.5px; font-weight: 700; color: var(--pink-500);
  line-height: 1.45; margin-bottom: 12px;
  word-break: keep-all;
  min-height: 42px;
}
.pr-step__desc {
  font-size: 12.5px; color: #888; line-height: 1.7;
  word-break: keep-all; font-weight: 400;
}
.pr-arrow {
  flex: 0 1 90px;
  align-self: flex-start;
  margin-top: 130px;
  height: 0;
  border-top: 1.5px dashed var(--pink-300);
  position: relative;
  min-width: 36px;
  max-width: 110px;
}
.pr-arrow::after {
  content: ""; position: absolute;
  right: -2px; top: -5px;
  width: 0; height: 0;
  border-left: 8px solid var(--pink-400);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

@media (max-width: 980px) {
  .prv-sec__title { font-size: 32px; }
  .prv-sec__lead { font-size: 21px; }
  .prv-process__steps { flex-wrap: wrap; gap: 36px 16px; }
  .pr-arrow { display: none; }
  .pr-step { flex: 1 1 calc(50% - 16px); min-width: 0; }
  .pr-step__title { min-height: 0; }
}
@media (max-width: 980px) {
  .prv-process { padding: 44px 28px 48px; }
}
@media (max-width: 480px) {
  .pr-step { flex: 1 1 100%; padding: 0; }
  .prv-process { padding: 36px 20px 40px; border-radius: 18px; }
  .prv-process__title { font-size: 20px; }
  .prv-process__head { margin-bottom: 36px; }
}

/* ============================================================
   KAKAOTALK SECTION
   ============================================================ */
.kk-sec {
  padding: 40px 0 80px;
  background: #fff1f4;
}
.kk-sec__head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.kk-sec__icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--pink-50); color: var(--pink-500);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kk-sec__icon svg { width: 22px; height: 22px; }
.kk-sec__head h3 {
  font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.6px;
  margin-bottom: 4px;
}
.kk-sec__head p { font-size: 13.5px; color: var(--ink-3); }
.kk-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
/* 카톡 캡처 캐러셀 (기본 3개 노출 + 좌우 화살표) */
.kk-carousel { position: relative; }
.kk-viewport {
  display: flex; gap: 22px;
  overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
  padding: 4px 0;
}
.kk-viewport::-webkit-scrollbar { display: none; }
.kk-viewport > .kk-card {
  flex: 0 0 calc((100% - 44px) / 3);   /* 한 줄에 3개 (gap 22px ×2) */
  scroll-snap-align: start;
}
.kk-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--pink-500);
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 22px rgba(236,72,153,0.18);
  font-size: 26px; font-weight: 700; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .15s, box-shadow .15s, color .15s;
}
.kk-nav:hover { color: var(--pink-600); box-shadow: 0 12px 28px rgba(236,72,153,0.28); }
.kk-nav:active { transform: translateY(-50%) scale(0.94); }
.kk-nav--prev { left: -18px; }
.kk-nav--next { right: -18px; }
.kk-card {
  background: #abc1d1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #f3dbe6;
  display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.kk-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(236,72,153,0.18); }
.kk-card__head {
  background: #fff;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; color: var(--ink);
  border-bottom: 1px solid #e5e7eb;
}
.kk-card__back { color: var(--ink-2); font-size: 18px; font-weight: 700; }
.kk-card__name { flex: 1; }
.kk-card__icons { display: inline-flex; gap: 8px; color: var(--ink-3); font-style: normal; }
.kk-card__icons i { font-size: 14px; font-style: normal; }
.kk-card__body {
  flex: 1; padding: 14px 12px 18px;
  display: flex; flex-direction: column; gap: 10px;
  background: #abc1d1;
  min-height: 580px;
}
.kk-card__body--img {
  position: relative;            /* 확대 아이콘/오버레이 기준 */
  padding: 0; gap: 0; display: block;
  height: 580px;                 /* 옆 카드와 동일 높이 고정 */
  background: #bacee0;           /* 캡처 실제 카톡 배경색과 동일하게 맞춤 */
  overflow: hidden;
  cursor: pointer;
}
.kk-card__body--img img { width: 100%; height: auto; display: block; } /* 상단 정렬 */

/* 우측 상단 확대 아이콘 (항상 표시) */
.kk-zoom {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--pink-500);
  border: 1px solid var(--pink-100); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform .15s, background .15s;
}
.kk-zoom:hover { transform: scale(1.08); background: #fff; }
.kk-zoom svg { width: 17px; height: 17px; }

/* hover 시 하단 은은한 그라데이션 + pill 버튼 */
.kk-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 40px 0 18px;
  display: flex; justify-content: center;
  background: linear-gradient(to top, rgba(60,30,45,0.42), rgba(60,30,45,0.12) 55%, rgba(60,30,45,0));
  opacity: 0; transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}
.kk-card:hover .kk-overlay { opacity: 1; transform: translateY(0); }
.kk-detail-btn {
  background: #fff; color: var(--pink-600);
  border: 1.5px solid var(--pink-300, #f9a8d4);
  border-radius: 999px; padding: 9px 18px;
  font-size: 13.5px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(236,72,153,0.22);
}

/* ── 카톡 원본 후기 모달 ── */
.kk-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.45); padding: 28px;
}
.kk-modal.is-open { display: flex; }
.kk-modal__box {
  position: relative;
  width: 100%; max-width: 680px;
  background: #fff; border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.28);
  display: flex; flex-direction: column;
  max-height: 92vh; overflow: hidden;
}
.kk-modal__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px 10px;
}
.kk-modal__title { font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: -0.3px; }
.kk-modal__close {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--pink-50); color: var(--pink-500); border: none;
  font-size: 22px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.kk-modal__close:hover { background: var(--pink-100); }
.kk-modal__sub { padding: 0 18px 12px; font-size: 12px; color: var(--ink-3); }
.kk-modal__imgwrap {
  background: #bacee0; overflow-y: auto; max-height: 80vh;
  -webkit-overflow-scrolling: touch;
}
.kk-modal__img { width: 100%; height: auto; display: block; }
.kk-modal__nav {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 12px; border-top: 1px solid var(--border-soft);
}
.kk-modal__arrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; color: var(--pink-500); border: 1px solid var(--pink-100);
  font-size: 22px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .15s, color .15s;
}
.kk-modal__arrow:hover { color: var(--pink-600); transform: scale(1.06); }
.kk-modal__count { font-size: 13px; font-weight: 700; color: var(--ink-2); min-width: 46px; text-align: center; }
.kk-msg { display: flex; gap: 6px; align-items: flex-end; max-width: 90%; }
.kk-msg--in { align-self: flex-start; }
.kk-msg--out { align-self: flex-end; flex-direction: row-reverse; }
.kk-avatar {
  width: 32px; height: 32px; border-radius: 12px;
  background: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23abc1d1'><circle cx='12' cy='9' r='3.6'/><path d='M5 21c1-4 4-6 7-6s6 2 7 6z'/></svg>");
  background-size: 72% 72%;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.kk-bubble {
  background: #fff; border-radius: 10px;
  padding: 7px 11px;
  font-size: 12.5px; line-height: 1.5; color: #1a1a1a;
  word-break: keep-all;
  max-width: 100%;
  box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}
.kk-bubble--y { background: #fef176; }
.kk-bubble--photo {
  padding: 5px;
  display: flex; gap: 4px;
}
.kk-photo {
  width: 64px; height: 80px; border-radius: 8px;
  background: linear-gradient(160deg, #4fa8e0 0%, #84d3ff 35%, #f6c886 70%, #e88a5a 100%);
  display: inline-flex; align-items: flex-end; justify-content: center;
  font-size: 22px; padding-bottom: 6px;
  flex-shrink: 0;
}
.kk-time {
  font-size: 10px; color: rgba(0,0,0,0.42); white-space: nowrap;
  flex-shrink: 0;
}
.kk-card__foot {
  background: #fff;
  padding: 12px 16px;
  font-size: 16px; color: var(--ink-3);
  border-top: 1px solid #e5e7eb;
}
.kk-card__foot span { letter-spacing: 10px; }

@media (max-width: 1100px) {
  .kk-grid { grid-template-columns: repeat(2, 1fr); }
  .kk-viewport > .kk-card { flex: 0 0 calc((100% - 22px) / 2); }  /* 2개 노출 */
}
@media (max-width: 760px) {
  .kk-grid { grid-template-columns: 1fr; }
  .kk-card__body { min-height: 500px; }
  .kk-viewport > .kk-card { flex: 0 0 100%; }                     /* 1개 노출 */
  .kk-nav--prev { left: 4px; }
  .kk-nav--next { right: 4px; }
  /* 모바일은 hover가 없으므로 자세히 보기 버튼 항상 노출 */
  .kk-overlay { opacity: 1; transform: none; }
  .kk-modal { padding: 14px; }
  .kk-modal__box { max-width: 100%; }
}
/* 터치 기기(hover 불가)에서도 항상 노출 */
@media (hover: none) {
  .kk-overlay { opacity: 1; transform: none; }
}

/* ============================================================
   PRIVATE STATS (BOTTOM 4-STAT CARD)
   ============================================================ */
.prv-stats {
  padding: 20px 0 90px;
  background: linear-gradient(180deg, #fff1f4 0%, #fff 100%);
}
.prv-stats__card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 30px;
  box-shadow: 0 10px 30px rgba(236,72,153,0.08);
  border: 1px solid var(--border-soft);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.ps-item { text-align: center; position: relative; }
.ps-item:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 14%; height: 72%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}
.ps-item__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pink-50); color: var(--pink-500);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.ps-item__icon svg { width: 22px; height: 22px; }
.ps-item__label { font-size: 13px; color: var(--ink-3); font-weight: 600; margin-bottom: 8px; }
.ps-item__value {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.5px;
}
.ps-item__value small {
  font-family: var(--font-sans);
  font-size: 12.5px; color: var(--ink-3); font-weight: 600;
  margin-left: 4px;
}
.ps-item__value--text {
  font-family: var(--font-sans); font-size: 16px; font-weight: 700;
  color: var(--ink);
}

@media (max-width: 780px) {
  .prv-stats__card { grid-template-columns: 1fr 1fr; gap: 26px 16px; }
  .ps-item:nth-child(2)::after { display: none; }
}
@media (max-width: 480px) {
  .prv-stats__card { grid-template-columns: 1fr; }
  .ps-item::after { display: none; }
}

/* ============================================================
   FADE-UP ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0s);
}
.fade-up.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}
