/* =============================================================
   AESTHETIC STUDIO TEMPLATE (template-03) - 감성형 에스테틱
   색상/폰트는 :root에서 수정하면 전체 톤이 바뀝니다
   ============================================================= */

:root {
  --primary:      #2a1f1a;   /* 따뜻한 다크 브라운 */
  --accent:       #b07a6a;   /* 테라코타 로즈 */
  --accent-light: #c99585;
  --accent-dark:  #8a5c50;
  --accent-glow:  rgba(176, 122, 106, 0.25);
  --bg-page:      #faf9f7;   /* 따뜻한 오프화이트 */
  --bg-cream:     #f0ebe5;   /* 크림 베이지 */
  --bg-hero:      #1e1410;   /* 히어로 전용 다크 */
  --bg-process:   #2a1f1a;   /* 프로세스 다크 */
  --bg-card:      #ffffff;
  --text-dark:    #2a1f1a;
  --text-muted:   #8a7470;
  --text-light:   #ffffff;
  --border:       rgba(176, 122, 106, 0.15);
  --nav-height:   80px;
  --max-width:    1200px;
  --radius:       14px;
  --radius-sm:    8px;
  --shadow:       0 2px 12px rgba(42, 31, 26, 0.06);
  --shadow-lg:    0 16px 48px rgba(42, 31, 26, 0.10);
  --shadow-warm:  0 8px 32px rgba(176, 122, 106, 0.18);
  --transition:   all 0.3s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--bg-page);
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ===== Loading ===== */
.loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-hero);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s;
}
.loading-screen.hidden { opacity: 0; pointer-events: none; }
.loading-spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(255,255,255,0.12);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================================
   HEADER
   ============================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
}
.header.scrolled {
  background: rgba(250, 249, 247, 0.97);
  box-shadow: 0 2px 20px rgba(42, 31, 26, 0.07);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.logo {
  font-size: 1.4rem; font-weight: 800; color: var(--text-light);
  letter-spacing: 0.5px; transition: color 0.3s;
}
.logo img { height: 36px; }
.header.scrolled .logo { color: var(--text-dark); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s; position: relative;
}
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--accent-light); transition: width 0.3s;
}
.nav a:hover { color: var(--text-light); }
.nav a:hover::after { width: 100%; }
.header.scrolled .nav a { color: var(--text-muted); }
.header.scrolled .nav a:hover { color: var(--text-dark); }
.header.scrolled .nav a::after { background: var(--accent); }

.btn-header {
  padding: 9px 24px;
  background: var(--accent);
  border-radius: 50px;
  font-size: 0.86rem; font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
}
.btn-header:hover {
  background: var(--accent-dark);
  box-shadow: var(--shadow-warm);
}
.btn-header::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text-light);
  transition: var(--transition); display: block;
}
.header.scrolled .hamburger span { background: var(--text-dark); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 40px 80px;
  background: var(--bg-hero);
}

/* Warm gradient blobs (히어로 배경 이미지 없을 때만 보임) */
.hero-blobs { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
  animation: blobFloat 14s ease-in-out infinite;
}
.blob-1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -8%; right: -4%; animation-delay: 0s;
}
.blob-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #8a5c50 0%, transparent 70%);
  bottom: -8%; left: -4%; animation-delay: -5s;
}
.blob-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, #c99585 0%, transparent 70%);
  top: 45%; left: 48%; transform: translateX(-50%); animation-delay: -9s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(25px, -35px) scale(1.04); }
  66%       { transform: translate(-18px, 18px) scale(0.97); }
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 24px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 800; color: var(--text-light);
  line-height: 1.25; margin-bottom: 22px; letter-spacing: -1px;
}
.hero-subtitle {
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  color: rgba(255,255,255,0.52);
  max-width: 500px; margin: 0 auto 40px; line-height: 1.85;
}

.btn-hero {
  display: inline-block; padding: 15px 44px;
  background: var(--accent); color: var(--text-light);
  font-size: 0.96rem; font-weight: 700; border-radius: 50px;
  transition: var(--transition);
}
.btn-hero:hover {
  background: var(--accent-dark);
  box-shadow: 0 10px 36px rgba(176, 122, 106, 0.42);
  transform: translateY(-2px);
}

.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 48px; margin-top: 72px;
  padding: 32px 56px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.hero-stat-item { text-align: center; }
.hero-stat-number {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--accent-light);
  line-height: 1; margin-bottom: 6px;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.42); font-weight: 500; }

/* =============================================================
   SECTION COMMON
   ============================================================= */
.section-about    { padding: 120px 0; background: var(--bg-page); }
.section-services { padding: 120px 0; background: var(--bg-cream); }
.section-process  { padding: 120px 0; background: var(--bg-process); position: relative; overflow: hidden; }
.section-portfolio{ padding: 120px 0; background: var(--bg-page); }
.section-location { padding: 100px 0; background: var(--bg-cream); }
.section-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 60%, #c99585 100%);
  position: relative; overflow: hidden;
}
.section-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 12px auto 0; }

.section-label {
  display: inline-block;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-process .section-label { color: var(--accent-light); }

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.35;
  letter-spacing: -0.5px; margin-bottom: 14px;
  color: var(--text-dark);
}
.section-process .section-title { color: var(--text-light); }
.section-cta .section-title     { color: var(--text-light); }

.section-desc {
  font-size: 1rem; color: var(--text-muted);
  max-width: 540px; line-height: 1.8;
}
.section-cta .section-desc { color: rgba(255,255,255,0.72); margin: 0 auto 36px; }

/* =============================================================
   ABOUT (브랜드 스토리)
   ============================================================= */
.about-layout { display: flex; align-items: center; gap: 80px; }
.about-text  { flex: 1; min-width: 280px; }
.about-visual{ flex: 0 0 300px; display: flex; justify-content: center; }

.about-points { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-points li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.94rem; color: var(--text-dark);
}
.point-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--accent); color: #fff;
  border-radius: 50%; font-size: 0.68rem; font-weight: 700; flex-shrink: 0;
}

.about-card-stack { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 280px; }
.about-card {
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.about-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-warm);
  transform: translateY(-3px);
}
.about-card-icon { font-size: 1.8rem; margin-bottom: 8px; }
.about-card-label { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }

/* =============================================================
   SERVICES (케어 메뉴)
   ============================================================= */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  padding: 44px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-warm);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(176, 122, 106, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 1.4rem;
}
.service-img {
  width: 100%; height: 160px; border-radius: var(--radius-sm);
  margin-bottom: 24px; background-size: cover; background-position: center;
  background-color: var(--bg-cream);
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.service-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* =============================================================
   PROCESS (케어 플로우) — 다크 섹션
   ============================================================= */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.process-step {
  padding: 40px 28px; text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  position: relative; transition: var(--transition);
}
.process-step:hover {
  border-color: var(--accent);
  background: rgba(176, 122, 106, 0.08);
  transform: translateY(-4px);
}
.process-number {
  font-size: 2.6rem; font-weight: 900;
  color: var(--accent); opacity: 0.35;
  line-height: 1; margin-bottom: 18px;
  transition: opacity 0.3s;
}
.process-step:hover .process-number { opacity: 1; }
.process-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-light); margin-bottom: 12px; }
.process-step p  { font-size: 0.87rem; color: rgba(255,255,255,0.48); line-height: 1.7; }
.process-connector { display: none; }

/* =============================================================
   PORTFOLIO (공간 갤러리)
   ============================================================= */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.portfolio-card { border-radius: var(--radius); overflow: hidden; }
.portfolio-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.portfolio-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-image img { transform: scale(1.07); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,31,26,0.82) 0%, rgba(42,31,26,0.1) 50%, transparent 100%);
  display: flex; align-items: flex-end; padding: 24px;
  transition: background 0.3s;
}
.portfolio-card:hover .portfolio-overlay {
  background: linear-gradient(to top, rgba(176, 122, 106, 0.7) 0%, rgba(176, 122, 106, 0.15) 50%, transparent 100%);
}
.portfolio-overlay span { font-size: 0.92rem; font-weight: 600; color: #fff; }

/* =============================================================
   LOCATION (오시는 길 — template-01 기준)
   ============================================================= */
.location-header { margin-bottom: 48px; }
.location-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.location-map {
  height: 340px; background: var(--bg-card); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
}
.map-placeholder {
  height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.96rem; text-align: center;
  flex-direction: column; gap: 12px; padding: 24px;
}
.map-placeholder p { font-weight: 500; color: var(--text-dark); }
.map-btn-group {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 12px;
}
.btn-map {
  display: inline-block; padding: 10px 22px;
  background: var(--primary); color: var(--text-light);
  border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 600; transition: var(--transition);
  white-space: nowrap;
}
.btn-map:hover { background: var(--accent); box-shadow: var(--shadow-warm); }

.location-info { padding-top: 4px; }
.location-address {
  margin-bottom: 28px; color: var(--text-muted); line-height: 1.9;
  font-size: 0.95rem; font-weight: 500;
}
.location-hours h4 {
  font-size: 0.84rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 14px; letter-spacing: 0.04em; text-transform: uppercase;
}
.hours-list { list-style: none; margin: 0 0 16px; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid rgba(176, 122, 106, 0.12);
  font-size: 0.9rem;
}
.hours-list li.closed { color: var(--text-muted); }
.hours-day  { font-weight: 500; color: var(--text-dark); }
.hours-time { color: var(--text-muted); }
.location-note { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; margin-top: 4px; }

/* =============================================================
   CTA
   ============================================================= */
.cta-center { text-align: center; position: relative; z-index: 1; }
.cta-buttons {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px;
}
.btn-cta {
  display: inline-block; padding: 15px 48px;
  background: #fff; color: var(--accent-dark);
  font-size: 0.96rem; font-weight: 700; border-radius: 50px;
  transition: var(--transition);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,0,0,0.18); }
.btn-cta-outline {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: #fff !important;
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--bg-process);
  color: rgba(255,255,255,0.35);
  padding: 64px 0 36px;
  font-size: 0.84rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: flex; justify-content: space-between; gap: 48px; margin-bottom: 40px;
}
.footer-brand { flex: 1; }
.footer-logo  { font-size: 1.35rem; font-weight: 800; color: var(--text-light); margin-bottom: 8px; }
.footer-slogan{ color: rgba(255,255,255,0.38); margin-bottom: 18px; font-size: 0.87rem; }
.footer-sns a { margin-right: 12px; font-size: 1.1rem; transition: color 0.3s; }
.footer-sns a:hover { color: var(--accent-light); }

.footer-cols { display: flex; gap: 48px; flex: 2; }
.footer-col h4 {
  color: var(--text-light); font-size: 0.83rem; font-weight: 600; margin-bottom: 14px;
}
.footer-col p, .footer-col a {
  display: block; line-height: 2; color: rgba(255,255,255,0.35); transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
}
.footer-bottom a { margin-left: 18px; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--accent-light); }
.footer-copyright {
  text-align: center; margin-top: 14px; font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
}
.footer-demo-notice {
  text-align: center; font-size: 11px;
  color: rgba(255,255,255,0.42);
  margin-top: 8px; padding: 0 16px; line-height: 1.6;
}

/* =============================================================
   TOP BUTTON
   ============================================================= */
.btn-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--text-light);
  border: none; font-size: 1.1rem; cursor: pointer;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  box-shadow: 0 4px 16px rgba(176, 122, 106, 0.3);
}
.btn-top.visible { opacity: 1; transform: translateY(0); }
.btn-top:hover { background: var(--accent-dark); }

/* =============================================================
   SCROLL REVEAL
   ============================================================= */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .about-layout     { flex-direction: column; gap: 48px; }
  .about-visual     { flex: none; }
  .about-card-stack { flex-direction: row; max-width: 100%; }
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-steps    { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero-stats       { gap: 32px; padding: 28px 36px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-about, .section-services, .section-portfolio,
  .section-process, .section-location { padding: 80px 0; }
  .section-cta { padding: 80px 0; }

  .nav {
    display: none; flex-direction: column;
    position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
    background: rgba(250, 249, 247, 0.98);
    padding: 36px 24px; gap: 20px; z-index: 999;
  }
  .nav.open { display: flex; }
  .nav.open a { color: var(--text-dark); font-size: 1.1rem; }
  .nav.open a::after { display: none; }
  .nav.open .btn-header { text-align: center; background: var(--accent); color: #fff; }
  .hamburger { display: flex; }

  .hero { padding: 120px 20px 64px; min-height: auto; }
  .hero-content h1 { font-size: 1.9rem; }
  .hero-subtitle   { font-size: 0.88rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; padding: 20px 24px; justify-content: center; }
  .hero-stat-item { min-width: 100px; }
  .hero-stat-number { font-size: 1.4rem; }
  .blob { animation: none; }
  .blob-1 { width: 200px; height: 200px; }
  .blob-2 { width: 160px; height: 160px; }
  .blob-3 { width: 120px; height: 120px; }

  .services-grid  { grid-template-columns: 1fr; }
  .service-card   { padding: 32px 24px; }
  .process-steps  { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .about-card-stack { flex-direction: column; }

  .location-body  { grid-template-columns: 1fr; gap: 32px; }
  .location-map   { height: 240px; }
  .map-btn-group  { flex-direction: column; }
  .btn-map        { width: 100%; text-align: center; }

  .footer-top   { flex-direction: column; gap: 32px; }
  .footer-cols  { flex-direction: column; gap: 24px; }
  .footer-bottom{ flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom span { font-size: 0.72rem; line-height: 1.7; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-cta     { width: 100%; max-width: 280px; text-align: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.5rem; }
  .hero-content h1 { font-size: 1.7rem; }
  .hero-stats { flex-direction: column; align-items: center; }
  .about-card-stack { max-width: 100%; }
}

@media (max-width: 360px) {
  .hero-content h1 { font-size: 1.4rem; }
  .section-title { font-size: 1.3rem; }
}

/* =============================================================
   CUSTOM CURSOR (desktop / pointer:fine only)
   ============================================================= */
@media (pointer: fine) {
  body,
  body a,
  body button,
  body [role="button"] { cursor: none !important; }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}

/* 작은 점 — 커서 정확 위치 */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.3s;
  will-change: left, top;
}

/* 링 — 살짝 따라오는 원 */
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  background: transparent;
  opacity: 0;
  transition: width 0.25s ease, height 0.25s ease,
              border-color 0.25s, opacity 0.3s;
  will-change: left, top;
}

/* 초기화 후 보이기 */
.cursor-dot.active  { opacity: 1; }
.cursor-ring.active { opacity: 0.55; }

/* 링크·버튼 위에서 확대 */
.cursor-dot.hover  { width: 12px; height: 12px; background: var(--accent-light); }
.cursor-ring.hover { width: 52px; height: 52px; opacity: 0.28; border-color: var(--accent-light); }

/* 클릭 순간 수축 */
.cursor-dot.clicking  { width: 6px; height: 6px; }
.cursor-ring.clicking { width: 28px; height: 28px; opacity: 0.7; }
