/* =====================================================
   세무회계 나눔 허진성 세무사 – 메인 스타일시트 v2
   ===================================================== */

/* ---- 0. DESIGN TOKENS ---- */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #9E7A2E;
  --navy:        #0D1B2E;
  --navy-mid:    #152543;
  --navy-light:  #1D3461;
  --white:       #FFFFFF;
  --off-white:   #F8F6F0;
  --gray-100:    #F4F4F4;
  --gray-200:    #E8E8E8;
  --gray-400:    #AAAAAA;
  --gray-600:    #777777;
  --gray-800:    #333333;
  --text:        #1A1A2E;
  --text-light:  #555566;

  --font-serif:  'Noto Serif KR', Georgia, serif;
  --font-sans:   'Noto Sans KR', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:   0 16px 60px rgba(0,0,0,.18);

  --transition:  .3s ease;
  --transition-slow: .6s ease;

  --max-w:       1160px;
  --header-h:    72px;
}

/* ---- 1. RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
body.loading { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
strong { font-weight: 700; }

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

/* ---- 2. LOADING SCREEN ---- */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; }

.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loading-logo {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: rgba(201,168,76,.15);
  stroke-width: 4;
}
.ring-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 276.46;
  stroke-dashoffset: 276.46;
  animation: ring-draw 2s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes ring-draw {
  to { stroke-dashoffset: 0; }
}

.loading-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fade-in .8s .4s ease both;
}
.emblem-ko {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .1em;
  line-height: 1;
}
.emblem-en {
  font-size: .62rem;
  letter-spacing: .35em;
  color: var(--gold-light);
  opacity: .7;
  margin-top: 4px;
}

.loading-subtitle {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  animation: fade-in .8s .8s ease both;
}

.loading-bar-wrap {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
  animation: fade-in .4s .6s ease both;
}
.loading-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  animation: bar-fill 2.2s ease forwards;
}
@keyframes bar-fill { to { width: 100%; } }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---- 3. HEADER ---- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  background: rgba(13,27,46,.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}
.logo-ko {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .05em;
}
.logo-sub {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .08em;
}

#main-nav { margin-left: auto; }
#main-nav ul {
  display: flex;
  gap: 8px;
}
#main-nav a {
  display: block;
  padding: 6px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
#main-nav a:hover,
#main-nav a.active {
  color: var(--gold-light);
  background: rgba(201,168,76,.12);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg  { padding: 15px 30px; font-size: 1rem; }
.btn-sm  { padding: 9px 20px; font-size: .825rem; }

.btn-kakao {
  background: #FEE500;
  color: #1A1A1A;
}
.btn-kakao:hover { background: #f5dc00; box-shadow: 0 6px 20px rgba(254,229,0,.4); }

.btn-outline {
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--off-white); box-shadow: var(--shadow-md); }

.btn-outline-dark {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  font-size: .825rem;
  padding: 10px 20px;
  border-radius: 50px;
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.header-cta { flex-shrink: 0; }

/* hamburger */
#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
#menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
#menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-toggle.open span:nth-child(2) { opacity: 0; }
#menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
#mobile-drawer {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--navy-mid);
  padding: 20px 28px 28px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .35s ease, opacity .35s ease, visibility .35s ease;
  z-index: 850;
  border-top: 1px solid rgba(255,255,255,.08);
}
#mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
#mobile-drawer nav ul { display: flex; flex-direction: column; gap: 4px; }
.drawer-link {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.drawer-link:last-child { border-bottom: none; }
.drawer-kakao { width: 100%; justify-content: center; margin-top: 20px; font-size: .95rem; }

/* ---- 4. HERO ---- */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, #0A1628 100%);
  z-index: 0;
}
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,168,76,.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-desc {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.85;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.hero-tags span {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .03em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: 50px;
  animation: scroll-dot 2s ease infinite;
}
@keyframes scroll-dot {
  0%, 100% { top: 5px; opacity: 1; }
  80% { top: 18px; opacity: 0; }
}

/* ---- 5. SECTION COMMONS ---- */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--gold);
}
.section-label.centered {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 20px;
  flex-direction: row-reverse;
}
.section-label.centered::before { left: auto; right: 0; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 40px;
  letter-spacing: -.02em;
}
.section-title.centered { text-align: center; }

/* ---- 6. BUSAN SECTION ---- */
.section-busan {
  background: var(--navy);
  padding: 100px 0;
  overflow: hidden;
}
.section-busan .section-label { color: var(--gold); }
.section-busan .section-label::before { background: var(--gold); }
.section-busan .section-title { color: var(--white); }

.busan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.busan-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.busan-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.4);
  transform: translateY(-4px);
}
.busan-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--navy);
}
.busan-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.busan-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
}

.busan-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
  margin: 0 20px;
}

/* ---- 7. ABOUT ---- */
.section-about {
  padding: 100px 0;
  background: var(--off-white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  line-height: 1.6;
}
.about-body p {
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.85;
  font-size: .95rem;
}
.about-contact-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .825rem;
  color: var(--navy-light);
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.contact-chip:hover { border-color: var(--gold); color: var(--gold-dark); box-shadow: var(--shadow-sm); }
.contact-chip i { color: var(--gold); }

.about-card {
  position: relative;
}
.about-card-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  border: 3px solid rgba(201,168,76,.2);
}
.about-name-ko {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .12em;
  line-height: 1;
}
.about-name-en {
  display: block;
  font-size: .78rem;
  letter-spacing: .2em;
  color: var(--gray-400);
  margin: 6px 0 8px;
}
.about-name-wrap { margin-bottom: 8px; }
.about-title {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 3px 12px;
  border-radius: 50px;
}
.about-office {
  margin: 14px 0 20px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy-light);
  letter-spacing: .04em;
}
.about-info-list {
  width: 100%;
  text-align: left;
}
.about-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .82rem;
  color: var(--text-light);
}
.about-info-list li:last-child { border-bottom: none; }
.about-info-list i {
  color: var(--gold);
  width: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- 8. EXPERTISE ---- */
.section-expertise {
  padding: 100px 0;
  background: var(--white);
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.expertise-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  animation-delay: var(--delay, 0s);
}
.expertise-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,.12);
  transform: translateY(-4px);
}
.expertise-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--off-white), var(--gray-100));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-dark);
  margin-bottom: 20px;
  transition: background var(--transition);
}
.expertise-card:hover .expertise-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
}
.expertise-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.expertise-card p {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ---- 9. PROFILE / TIMELINE ---- */
.section-profile {
  padding: 100px 0;
  background: var(--off-white);
}
.timeline {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.1));
  border-radius: 2px;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }

.tl-dot {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--gold);
  margin-left: -35px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.tl-body {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
}
.tl-body h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.tl-body p { font-size: .825rem; color: var(--text-light); }

/* ---- 10. REVIEWS ---- */
.section-reviews {
  padding: 100px 0;
  background: var(--navy);
}
.section-reviews .section-label { color: var(--gold); }
.section-reviews .section-label::before { background: var(--gold); }
.section-reviews .section-title { color: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  animation-delay: var(--delay, 0s);
}
.review-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-4px);
}
.review-stars { color: var(--gold); font-size: .9rem; letter-spacing: 3px; }
.review-text {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.85;
  flex: 1;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.review-name {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.review-tag {
  font-size: .72rem;
  background: rgba(201,168,76,.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,.25);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ---- 11. CTA BANNER ---- */
.section-cta {
  background: linear-gradient(120deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.cta-text p { font-size: .9rem; color: rgba(13,27,46,.65); line-height: 1.75; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- 12. CONTACT ---- */
.section-contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list i {
  width: 18px;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-list strong { display: block; font-size: .78rem; color: var(--gray-600); margin-bottom: 2px; }
.contact-list span { font-size: .9rem; color: var(--navy); line-height: 1.5; }
.contact-list a { color: var(--navy-light); }
.contact-list a:hover { color: var(--gold-dark); }

.contact-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}
.contact-hours i { color: var(--gold); }

.map-placeholder {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,.1) 0%, transparent 70%);
}
.map-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px;
}
.map-pin-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 8px;
  animation: pin-bounce 2s ease infinite;
}
@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.map-address { font-size: .875rem; color: rgba(255,255,255,.6); }
.map-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--white); }

/* ---- 13. FOOTER ---- */
#site-footer {
  background: var(--navy);
  padding: 48px 0;
}
.footer-inner { text-align: center; }
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-brand strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
}
.footer-brand span {
  font-size: .8rem;
  color: var(--gold);
  border-left: 1px solid rgba(255,255,255,.2);
  padding-left: 12px;
}
.footer-addr { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 8px; line-height: 1.7; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); }

/* ---- 14. FLOATING BUTTONS ---- */
.float-buttons {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}
.float-kakao { background: #FEE500; color: #1A1A1A; text-decoration: none; }
.float-call { background: var(--navy); color: var(--gold); text-decoration: none; }
.float-top { background: var(--white); color: var(--navy); opacity: 0; pointer-events: none; transition: opacity var(--transition), transform var(--transition); }
.float-top.visible { opacity: 1; pointer-events: auto; }

.float-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--navy);
  color: var(--white);
  font-size: .72rem;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 50px;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  font-family: var(--font-sans);
}
.float-btn:hover .float-tooltip { opacity: 1; transform: translateX(0); }

/* ---- 15. SCROLL ANIMATIONS ---- */
.fade-up, .fade-left, .fade-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up    { transform: translateY(40px); }
.fade-left  { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: none;
}

/* ---- 16. RESPONSIVE ---- */
@media (max-width: 960px) {
  .busan-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .busan-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; margin: 0; }
  .about-inner { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }
  #main-nav, .header-cta { display: none; }
  #menu-toggle { display: flex; }
  .logo { margin-right: auto; }

  .expertise-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .timeline { max-width: 100%; }

  .busan-stats { padding: 24px; }
  .stat-num { font-size: 2rem; }

  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.6rem; }

  .float-buttons { right: 16px; bottom: 20px; }
  .float-btn { width: 46px; height: 46px; font-size: 1.05rem; }

  .br-mo { display: inline; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}
