/* ============================================================
   이경아 세무회계 — 프리미엄 랜딩페이지 CSS
   Color Palette:
     --plum:    #5B3E8C  (딥 퍼플 포인트)
     --lavender:#8B6FA5  (라벤더 미드)
     --soft-lav:#E8DFF2  (라벤더 라이트)
     --gold:    #C9A87C  (웜 골드)
     --gold-lt: #F0DFC0  (골드 라이트)
     --rose:    #D4817A  (더스티 로즈)
     --cream:   #FDFAF6  (크림 배경)
     --ink:     #1A1228  (딥 잉크)
     --gray:    #6B636E  (미드 그레이)
============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum:       #5B3E8C;
  --plum-dark:  #3D2860;
  --plum-light: #7A5BAE;
  --lavender:   #8B6FA5;
  --soft-lav:   #E8DFF2;
  --pale-lav:   #F3EEF9;
  --gold:       #C9A87C;
  --gold-dark:  #A88558;
  --gold-lt:    #F0DFC0;
  --rose:       #D4817A;
  --rose-lt:    #F5DDD9;
  --cream:      #FDFAF6;
  --white:      #FFFFFF;
  --ink:        #1A1228;
  --ink-soft:   #2E2040;
  --gray:       #6B636E;
  --gray-lt:    #AFA8B5;
  --gray-bg:    #F7F4FB;
  --border:     rgba(91,62,140,0.12);
  --shadow-sm:  0 2px 12px rgba(91,62,140,0.08);
  --shadow-md:  0 6px 32px rgba(91,62,140,0.14);
  --shadow-lg:  0 16px 64px rgba(91,62,140,0.18);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Noto Serif KR', 'Playfair Display', Georgia, serif;
  --font-sans:  'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 카카오 SVG 로고 정렬 ===== */
.kakao-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
  flex-shrink: 0;
  position: relative;
  top: -0.05em;
}
.kakao-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}
.kakao-logo.sz-sm { width: 1em;   height: 1em; }
.kakao-logo.sz-md { width: 1.2em; height: 1.2em; }
.kakao-logo.sz-lg { width: 1.4em; height: 1.4em; }
.kakao-logo.sz-xl { width: 1.8em; height: 1.8em; }

/* ===== PROGRESS BAR ===== */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--plum), var(--gold), var(--rose));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===== SCROLL ANIMATION ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"]  { transform: translateX(28px); }
[data-aos="fade-left"].aos-animate  { transform: translateX(0); }
[data-aos="zoom-in"]    { transform: scale(0.88); }
[data-aos="zoom-in"].aos-animate    { transform: scale(1); }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(253,250,246,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(91,62,140,0.10);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-serif);
}
.logo-kr {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--lavender);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--plum); }
.nav-links a:hover::after { width: 100%; }

#navbar.scrolled .nav-links a { color: var(--ink); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: #FEE500;
  color: #381e1f !important;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254,229,0,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-kakao {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 14px;
  background: #FEE500;
  color: #381e1f;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      #1A0A2E 0%,
      #2D1654 30%,
      #3D1F70 55%,
      #2A1545 75%,
      #0F0820 100%);
  z-index: 0;
}

/* 기하학 배경 패턴 */
.hero-geo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.geo-1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(201,168,124,0.18) 0%, transparent 70%);
}
.geo-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(139,111,165,0.22) 0%, transparent 70%);
}
.geo-3 {
  width: 300px; height: 300px;
  top: 40%; left: 60%;
  background: radial-gradient(circle, rgba(212,129,122,0.12) 0%, transparent 70%);
}

/* 파티클 */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.35; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* 시머 효과 */
.hero-shimmer {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0px,
    transparent 40px,
    rgba(201,168,124,0.025) 40px,
    rgba(201,168,124,0.025) 80px
  );
  z-index: 1;
  animation: shimmerMove 20s linear infinite;
}
@keyframes shimmerMove {
  0%   { background-position: 0 0; }
  100% { background-position: 200px 200px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  animation: heroEnter 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 뱃지 행 */
.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  animation: badgePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.badge-official {
  background: rgba(201,168,124,0.15);
  border: 1px solid rgba(201,168,124,0.5);
  color: var(--gold-lt);
  animation-delay: 0.2s;
}
.badge-local {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  animation-delay: 0.35s;
}
.badge-year {
  background: rgba(212,129,122,0.15);
  border: 1px solid rgba(212,129,122,0.4);
  color: #f5b8b3;
  animation-delay: 0.5s;
}
@keyframes badgePop {
  from { opacity: 0; transform: scale(0.7) translateY(-10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* 히어로 타이틀 */
.hero-title-wrap {
  margin-bottom: 36px;
}
.hero-eyebrow {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  animation: fadeSlideUp 0.8s 0.4s both;
}
.hero-title {
  font-family: var(--font-serif);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.ht-line1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: -0.02em;
  animation: fadeSlideUp 0.8s 0.55s both;
}
.ht-line2 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  animation: fadeSlideUp 0.8s 0.7s both;
}
.ht-line3 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: -0.02em;
  line-height: 1.25;
  animation: fadeSlideUp 0.8s 0.85s both;
}
.ht-line3 em {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
  text-shadow: 0 0 40px rgba(201,168,124,0.5);
}

.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  animation: fadeSlideUp 0.8s 1s both;
}
.hero-sub strong {
  color: var(--gold-lt);
  font-weight: 600;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* CTA 버튼 그룹 */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
  animation: fadeSlideUp 0.8s 1.15s both;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: #FEE500;
  color: #381e1f;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(254,229,0,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.01em;
}
.cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(254,229,0,0.5);
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.cta-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* 통계 스트립 */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 24px 32px;
  backdrop-filter: blur(12px);
  animation: fadeSlideUp 0.8s 1.3s both;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  flex: 1;
  min-width: 120px;
}
.stat-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  justify-content: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-unit {
  font-size: 1rem;
  color: var(--gold-lt);
  font-weight: 600;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-align: center;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* 스크롤 힌트 */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeSlideUp 1s 1.8s both;
}
.hero-scroll-hint span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(4px); }
}
.mobile-br { display: none; }

/* ===== SECTION COMMONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 5px 14px;
  border: 1px solid var(--gold-lt);
  border-radius: 50px;
  background: rgba(201,168,124,0.06);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 14px;
}
.section-title em {
  font-style: normal;
  color: var(--plum);
}
.section-desc {
  font-size: 1rem;
  color: var(--gray);
}

/* ===== HIGHLIGHT SECTION ===== */
.section-highlight {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-highlight::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,124,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.section-highlight::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,129,122,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hl-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: rgba(201,168,124,0.18);
  border: 1px solid rgba(201,168,124,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.hl-badge-text {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.hl-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hl-title span {
  color: var(--gold);
}
.hl-desc {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.9;
  margin-bottom: 28px;
}
.hl-desc strong { color: var(--gold-lt); font-weight: 600; }
.hl-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hl-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.85);
}
.hl-points li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

/* 경력 카드 */
.career-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.career-header {
  padding: 20px 28px;
  background: rgba(201,168,124,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold-lt);
}
.career-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.career-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(201,168,124,0.14);
  border: 1px solid rgba(201,168,124,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ci-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.ci-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.career-footer {
  padding: 18px 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.cf-item i { color: var(--gold); width: 16px; }
.cf-item a { color: rgba(255,255,255,0.85); }
.cf-item a:hover { color: var(--gold); }

/* ===== ABOUT SECTION ===== */
.section-about {
  padding: 100px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.about-message-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
}
.amc-deco {
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: linear-gradient(to bottom, var(--plum), var(--gold), var(--rose));
}
.amc-quote-icon {
  font-size: 2rem;
  color: var(--soft-lav);
  margin-bottom: 12px;
  line-height: 1;
}
.about-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
  border: none;
  padding: 0;
}
.about-text {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 32px;
}
.about-signature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.sig-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: 0.15em;
}
.sig-title {
  font-size: 0.85rem;
  color: var(--gray-lt);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.vc-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--soft-lav);
  display: flex; align-items: center; justify-content: center;
  color: var(--plum);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.value-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.section-services {
  padding: 100px 0;
  background: var(--pale-lav);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(91,62,140,0.2);
}
.sc-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--soft-lav);
  display: flex; align-items: center; justify-content: center;
  color: var(--plum);
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .sc-icon {
  background: var(--plum);
  color: #fff;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
}
.sc-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--soft-lav);
  color: var(--plum);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
}

/* ===== STRENGTH BANNER ===== */
.section-strength {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
}
.strength-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.strength-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 24px;
  gap: 10px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.strength-item:last-child { border-right: none; }
.strength-item i {
  font-size: 2rem;
  color: var(--gold);
}
.strength-item strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}
.strength-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ===== REVIEWS SECTION ===== */
.section-reviews {
  padding: 100px 0;
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.rc-stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.rc-text {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 20px;
}
.rc-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.rc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--soft-lav);
  color: var(--plum);
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rc-info {
  display: flex; flex-direction: column; gap: 2px;
}
.rc-info strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.rc-info span {
  font-size: 0.78rem;
  color: var(--gray-lt);
}

.reviews-cta {
  text-align: center;
}
.reviews-cta > p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 16px;
}
.reviews-cta-sub {
  margin-top: 14px !important;
  margin-bottom: 0 !important;
  font-size: 0.85rem !important;
  color: var(--gray-lt) !important;
}
.cta-kakao-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 44px;
  background: #FEE500;
  color: #381e1f;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(254,229,0,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cta-kakao-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(254,229,0,0.45);
}

/* ===== CONTACT / LOCATION SECTION ===== */
.section-contact {
  padding: 100px 0;
  background: var(--pale-lav);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

/* 연락처 카드들 */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.cc-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cc-phone .cc-icon { background: var(--soft-lav); color: var(--plum); }
.cc-mobile .cc-icon { background: rgba(212,129,122,0.12); color: var(--rose); }
.cc-kakao .cc-icon { background: rgba(254,229,0,0.2); color: #b8990a; }
.cc-email .cc-icon { background: rgba(201,168,124,0.12); color: var(--gold-dark); }

.cc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cc-body strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-lt);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cc-body a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  transition: color var(--transition);
}
.cc-body a:hover { color: var(--plum); }
.cc-body span {
  font-size: 0.8rem;
  color: var(--gray-lt);
}
.cc-kakao-name {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
}
.cc-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--soft-lav);
  color: var(--plum);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.cc-btn:hover { background: var(--plum); color: #fff; }
.cc-btn-kakao {
  background: #FEE500;
  color: #381e1f;
}
.cc-btn-kakao:hover { background: #e5cf00; color: #381e1f; }

/* 위치 패널 */
.location-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 지도 컨테이너 */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.map-header {
  padding: 14px 20px;
  background: var(--plum);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.map-iframe-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.map-iframe-wrap iframe {
  display: block;
  width: 100%;
  border: none;
}

/* 지도 폴백 (iframe 안 될 경우) */
.map-fallback {
  display: none; /* 기본 숨김, JS에서 보여줌 */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, var(--pale-lav), #fff);
  min-height: 240px;
  text-align: center;
}
.map-fallback.show { display: flex; }
.mf-pin-area {
  position: relative;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mf-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--plum);
  opacity: 0.2;
  animation: ringPulse 2s ease infinite;
}
.ring1 { width: 60px; height: 60px; animation-delay: 0s; }
.ring2 { width: 80px; height: 80px; animation-delay: 0.5s; }
@keyframes ringPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.2; }
  50%       { transform: scale(1.1); opacity: 0.08; }
}
.mf-pin {
  width: 40px; height: 40px;
  background: var(--plum);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(91,62,140,0.35);
  position: relative;
  z-index: 1;
}
.mf-pin i {
  color: #fff;
  font-size: 1rem;
  transform: rotate(45deg);
}
.mf-addr-main {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.mf-addr-sub {
  font-size: 0.88rem;
  color: var(--gray);
}

.map-footer {
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--border);
  background: #fafafa;
  flex-wrap: wrap;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--soft-lav);
  color: var(--plum);
  transition: background var(--transition);
  flex: 1;
  justify-content: center;
}
.map-link:hover { background: var(--plum); color: #fff; }

/* 위치 정보 카드 */
.location-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.lic-address {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.lic-address > i {
  color: var(--plum);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.lic-address > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.lic-address strong {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-lt);
}
.lic-address span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.lic-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.lic-transport {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.lt-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.lt-item > i {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--soft-lav);
  color: var(--plum);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.lt-item > div {
  display: flex; flex-direction: column; gap: 2px;
}
.lt-item strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.lt-item span {
  font-size: 0.82rem;
  color: var(--gray);
}
.lic-addr-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--plum);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.lic-addr-link:hover { color: var(--plum-dark); }

.lic-navi-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--plum);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  width: 100%;
}
.lic-navi-btn:hover {
  background: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,62,140,0.35);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(201,168,124,0.15);
  border: 1px solid rgba(201,168,124,0.3);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: 0.03em;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.footer-info i {
  color: var(--gold);
  width: 16px;
}
.footer-info a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.footer-info a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
}

/* ===== SECTION DESC 색상 조정 ===== */
.section-about .section-desc,
.section-services .section-desc {
  color: var(--lavender);
  font-size: 0.95rem;
}

/* ===== FLOATING KAKAO ===== */
.float-kakao {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
}
.float-kakao a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FEE500;
  color: #381e1f;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-kakao a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}
.float-kakao i { font-size: 1.1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .highlight-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-label { white-space: normal; font-size: 0.72rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { padding: 16px 12px; gap: 0; }
  .stat-item { padding: 10px 12px; min-width: 90px; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.68rem; white-space: normal; }
  .mobile-br { display: inline; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-cards { grid-template-columns: 1fr; }
  .about-message-card { padding: 36px 28px; }
  .amc-deco { width: 4px; }
  .strength-inner { flex-direction: column; }
  .strength-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px 16px; }
  .strength-item:last-child { border-bottom: none; }
  .float-kakao a span { display: none; }
  .float-kakao a { padding: 16px; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
  .float-kakao i { font-size: 1.4rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .cta-primary, .cta-secondary { width: 100%; max-width: 320px; justify-content: center; }
  .section-highlight { padding: 72px 0; }
  .section-about, .section-services, .section-reviews, .section-contact { padding: 72px 0; }
  .section-strength { padding: 48px 0; }
  .highlight-inner { gap: 28px; }
  .hl-title { font-size: 2rem; }
  .about-message-card { padding: 32px 24px; }
  .footer-badges { gap: 6px; }
  .map-iframe-wrap iframe { height: 220px; }
  .reviews-cta-sub { font-size: 0.78rem !important; }
}

@media (max-width: 480px) {
  .hero-badge-row { flex-direction: column; align-items: center; }
  .badge { font-size: 0.72rem; }
  .hero-stats { flex-wrap: wrap; }
  .stat-item { min-width: 50%; }
  .stat-divider { display: none; }
  .hl-title { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
}
