:root {
  --bg-dark: #0a0a09;
  --bg-dark-2: #16140f;
  --accent: #c9a463;
  --accent-2: #e8cf9a;
  --crimson: #b8543f;
  --text-light: #f3efe6;
  --text-muted: #a39b8a;
  --text-dark: #16140f;
  --kakao: #fee500;
  --kakao-text: #191600;
  --radius: 14px;
  --max-width: 1120px;
  --ease: cubic-bezier(.16,.8,.24,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 84px; }

body {
  margin: 0;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #100e0a; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), #8a6f3a);
  border-radius: 999px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-2); }
html { scrollbar-color: var(--accent) var(--bg-dark); scrollbar-width: thin; }

img { max-width: 100%; display: block; }

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

/* 버튼 */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 15px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease, background .35s ease;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg);
  transition: left .65s var(--ease);
  pointer-events: none;
}
.btn:hover::before { left: 130%; }
.btn:hover { transform: translateY(-3px); }
.btn--large { padding: 18px 32px; font-size: 17px; }
.btn--small { padding: 10px 18px; font-size: 14px; }
.btn--kakao {
  background: var(--kakao);
  color: var(--kakao-text);
  box-shadow: 0 6px 20px rgba(254,229,0,.25);
}
.btn--kakao:hover { box-shadow: 0 16px 36px -8px rgba(254,229,0,.5); }
.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(245,245,245,.35);
}
.btn--outline:hover {
  border-color: rgba(201,164,99,.65);
  background: rgba(201,164,99,.08);
  box-shadow: 0 16px 36px -14px rgba(0,0,0,.6);
}
@media (prefers-reduced-motion: reduce) {
  .btn, .btn::before { transition: none; }
}
.icon-kakao { width: 20px; height: 20px; flex-shrink: 0; }

/* 헤더 */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,12,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.header.is-scrolled {
  background: rgba(8,8,7,.92);
  border-bottom-color: rgba(201,164,99,.18);
  box-shadow: 0 10px 34px -18px rgba(0,0,0,.75);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span { color: var(--accent); font-weight: 600; }
.nav {
  display: flex;
  gap: 22px;
  flex: 1;
  justify-content: center;
}
.nav a {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  padding-bottom: 4px;
  transition: color .25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--text-light); }
.nav a:hover::after { transform: scaleX(1); }
.header__cta { display: flex; gap: 10px; flex-shrink: 0; }

/* 히어로 */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: url("../images/facilities/hero-bg.jpg") center 30% / cover no-repeat;
  animation: heroZoom 26s var(--ease) infinite alternate;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(201,164,99,.20), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(232,207,154,.12), transparent 40%),
    linear-gradient(180deg, rgba(10,10,9,.55) 0%, rgba(10,10,9,.6) 45%, rgba(10,10,9,.88) 100%);
  z-index: 1;
}
.hero__inner { position: relative; z-index: 2; }
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}
.hero__title, .hero__desc { text-shadow: 0 2px 16px rgba(0,0,0,.55); }
.eyebrow {
  display: inline-block;
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
  margin: 0 0 18px;
  padding: 6px 16px;
  border: 1px solid rgba(255,210,63,.35);
  border-radius: 999px;
  animation: eyebrowGlow 3.6s ease-in-out infinite;
}
@keyframes eyebrowGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(232,207,154,0); }
  50% { box-shadow: 0 0 16px rgba(232,207,154,.4); }
}
@media (prefers-reduced-motion: reduce) {
  .eyebrow { animation: none; }
}
.hero__title {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 24px;
  letter-spacing: -1px;
}
.hero__title .highlight { color: var(--accent); }
.hero__desc {
  color: var(--text-muted);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 640px;
  margin: 0 auto 28px;
}
.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-muted);
}
.hero__rating .stars { color: var(--accent-2); letter-spacing: 1px; }
.hero__rating strong { color: var(--text-light); font-size: 17px; }
.hero__rating-divider { opacity: .5; }
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__tags {
  list-style: none;
  display: flex;
  gap: 8px 14px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.hero__tags li {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
  opacity: .85;
}

/* 섹션 공통 */
.section { padding: 96px 0; background: var(--bg-dark); }
.section--dark { background: var(--bg-dark-2); }
.kicker {
  text-align: center;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 13px;
  margin: 0 0 10px;
}
.section__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.section__sub {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 56px;
  font-size: 16px;
}

/* fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* 그리드 */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* WHY BOMP FITNESS 카드 */
#pain { position: relative; overflow: hidden; }
#pain::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(201,164,99,.14), transparent 70%);
  pointer-events: none;
}
#pain .grid { counter-reset: painCard; position: relative; z-index: 1; }
.card {
  counter-increment: painCard;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 34px 26px 30px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s ease, box-shadow .4s ease, background .4s ease;
}
.card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform .5s ease;
}
.card::before {
  content: "0" counter(painCard);
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(201,164,99,.32);
}
.card:hover {
  transform: translateY(-7px);
  border-color: rgba(201,164,99,.4);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 24px 48px -24px rgba(0,0,0,.65), 0 0 0 1px rgba(201,164,99,.08);
}
.card:hover::after { transform: scaleX(1); }
.card__icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 22px;
  background: radial-gradient(circle at 32% 28%, rgba(201,164,99,.2), rgba(201,164,99,.04));
  border: 1px solid rgba(201,164,99,.35);
}
.card__icon svg { width: 25px; height: 25px; color: var(--accent-2); }
.card__icon-ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: cardPulse 3.6s ease-out infinite;
}
.card:nth-child(1) .card__icon-ring { animation-delay: 0s; }
.card:nth-child(2) .card__icon-ring { animation-delay: .5s; }
.card:nth-child(3) .card__icon-ring { animation-delay: 1s; }
.card:nth-child(4) .card__icon-ring { animation-delay: 1.5s; }
.card:nth-child(5) .card__icon-ring { animation-delay: 2s; }
.card:nth-child(6) .card__icon-ring { animation-delay: 2.5s; }
.card:nth-child(7) .card__icon-ring { animation-delay: 3s; }
.card h3 { font-size: 18px; font-weight: 800; letter-spacing: -.2px; margin: 0 0 10px; line-height: 1.4; }
.card p { font-size: 14px; line-height: 1.7; color: var(--text-muted); margin: 0; padding-right: 6px; }
@keyframes cardPulse {
  0% { transform: scale(.82); opacity: .5; }
  75%, 100% { transform: scale(1.55); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .card__icon-ring { animation: none; }
  .card { transition: none; }
}

/* 서비스 카드 */
.service-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 0 0 28px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -22px rgba(0,0,0,.55);
  border-color: rgba(201,164,99,.3);
}
.service-card__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 20px;
}
.service-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card__photo img { transform: scale(1.08); }
.service-card h3, .service-card p { padding-left: 26px; padding-right: 26px; }
.service-card__icon { font-size: 30px; margin-bottom: 16px; padding-left: 26px; }
.service-card h3 { font-size: 19px; margin: 0 0 12px; line-height: 1.4; }
.service-card p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* 트레이닝 원칙 (사진 없이 모션그래픽) */
.principle-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
}
.principle-card__num {
  position: relative;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,164,99,.1);
  border: 1px solid rgba(201,164,99,.35);
}
.principle-card__num span {
  position: relative;
  z-index: 2;
  font-size: 21px;
  font-weight: 800;
  color: var(--accent-2);
  letter-spacing: 1px;
}
.principle-card__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: principlePulse 3.2s ease-out infinite;
}
.principle-card:nth-child(2) .principle-card__pulse { animation-delay: .8s; }
.principle-card:nth-child(3) .principle-card__pulse { animation-delay: 1.6s; }
.principle-card:nth-child(4) .principle-card__pulse { animation-delay: 2.4s; }
.principle-card h3 { font-size: 19px; margin: 0 0 12px; line-height: 1.4; }
.principle-card p { color: var(--text-muted); font-size: 14px; margin: 0; }
@keyframes principlePulse {
  0% { transform: scale(.85); opacity: .55; }
  75%, 100% { transform: scale(1.65); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .principle-card__pulse { animation: none; }
}

/* 필라테스 시간표 */
.schedule {
  margin-top: 48px;
  text-align: center;
}
.schedule__label {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 13px;
  margin: 0 0 10px;
}
.schedule h3 { margin: 0 0 8px; font-size: 20px; }
.schedule > p:not(.schedule__label):not(.portfolio__note) { color: var(--text-muted); font-size: 14px; margin: 0 0 24px; }
.schedule__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 8px;
}
.schedule__images a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.schedule__images img { width: 100%; height: auto; }


/* 트레이너 카드 */
.trainer-card {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 0 0 24px;
  text-align: center;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
}
.trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px -22px rgba(0,0,0,.6);
  border-color: rgba(201,164,99,.32);
}
.trainer-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin: 0;
  background: linear-gradient(135deg, var(--accent), #8a6f3a);
  overflow: hidden;
}
.trainer-card__photo::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 58%;
  background: linear-gradient(to top, rgba(9,8,7,.94) 0%, rgba(9,8,7,.6) 42%, transparent 100%);
  pointer-events: none;
}
.trainer-card__photo--light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,8,7,.35) 0%, rgba(9,8,7,.05) 30%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.trainer-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .6s var(--ease); }
.trainer-card:hover .trainer-card__photo img { transform: scale(1.06); }
.trainer-card__photo span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: 800;
  color: #100e0a;
}
.trainer-card h3 {
  position: relative;
  z-index: 2;
  margin: -62px 0 20px;
  padding: 0 18px;
  text-align: left;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.trainer-card__role {
  display: block;
  color: var(--accent-2);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.trainer-card__spec { font-size: 13px; color: var(--text-muted); margin: 0 0 10px; padding: 0 20px; }
.trainer-card__badge {
  font-size: 12px;
  color: var(--accent-2);
  margin: 0 0 16px;
  min-height: 32px;
  padding: 0 20px;
}
.trainer-card__call {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 8px 18px;
  text-decoration: none;
}
.trainer-card__more {
  text-align: left;
  margin: 0 0 16px;
  padding: 0 20px;
  font-size: 12px;
}
.trainer-card__more summary {
  position: relative;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  list-style: none;
  color: var(--accent-2);
  font-weight: 700;
  margin: 0 auto 10px;
  padding: 9px 20px;
  border: 1px solid rgba(201,164,99,.4);
  border-radius: 999px;
  background: rgba(201,164,99,.06);
  transition: background .3s ease, border-color .3s ease, transform .25s var(--ease);
}
.trainer-card__more summary:hover {
  background: rgba(201,164,99,.14);
  border-color: rgba(201,164,99,.7);
  transform: translateY(-1px);
}
.trainer-card__more summary::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: moreBtnPulse 3s ease-out infinite;
  pointer-events: none;
}
.trainer-card__more[open] summary::before { animation: none; opacity: 0; }
.trainer-card__more summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.trainer-card__more[open] summary::after { transform: rotate(-135deg); }
@keyframes moreBtnPulse {
  0% { transform: scale(1); opacity: .55; }
  75%, 100% { transform: scale(1.12); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .trainer-card__more summary::before { animation: none; }
}
.trainer-card__more summary::-webkit-details-marker { display: none; }
.trainer-card__more ul {
  margin: 0 0 10px;
  padding: 12px 14px;
  list-style: none;
  background: rgba(255,255,255,.03);
  border-radius: 10px;
}
.trainer-card__more li {
  color: var(--text-muted);
  padding: 4px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  line-height: 1.5;
}
.trainer-card__more li:first-child { border-top: none; }
.trainer-card__more-label {
  margin: 14px 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--text-light);
  text-align: left;
}
.trainer-card__more-label:first-of-type { margin-top: 0; }

/* 트레이너 전체보기 토글 (모바일·태블릿) */
.trainers-toggle {
  display: none;
  margin: 28px auto 0;
  cursor: pointer;
  background: rgba(255,255,255,.05);
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
}

/* 시설 존 카드 */
.zone-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
}
.zone-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -22px rgba(0,0,0,.55);
  border-color: rgba(201,164,99,.3);
}
.zone-card__photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(201,164,99,.25), rgba(232,207,154,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
}
.zone-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.zone-card:hover .zone-card__photo img { transform: scale(1.08); }
.zone-card h3 { font-size: 16px; margin: 18px 20px 6px; }
.zone-card p { color: var(--text-muted); font-size: 13px; margin: 0 20px 20px; }

/* 시설 영상 투어 */
.video-tour {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 32px;
}
.video-tour__label {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 13px;
  margin: 0 0 10px;
}
.video-tour h3 { margin: 0 0 10px; font-size: 20px; }
.video-tour p { color: var(--text-muted); font-size: 14px; margin: 0; }
.video-tour__frame {
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
}
.video-tour__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 후기 */
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--text-muted);
}
.review-summary .stars { color: var(--accent-2); }
.review-summary strong { color: var(--text-light); font-size: 18px; }
.review-timeline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 40px;
}
.review-timeline span {
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 6px 14px;
}
.review-timeline span.is-current {
  color: var(--accent-2);
  border-color: rgba(255,210,63,.4);
  font-weight: 700;
}
.review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px -20px rgba(0,0,0,.5);
  border-color: rgba(201,164,99,.25);
}
.review-card__stars { color: var(--accent-2); font-size: 15px; margin-bottom: 12px; }
.review-card p { font-size: 15px; margin: 0 0 16px; }
.review-card__type { color: var(--text-muted); font-size: 13px; }
.portfolio__note {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 32px;
}

/* 인스타그램 */
.instagram-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.instagram-section__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.instagram-section__icon svg { width: 30px; height: 30px; }

/* 이벤트 */
.event-card {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(184,84,63,.35);
  border-radius: var(--radius);
  padding: 32px;
  flex-wrap: wrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px -18px rgba(184,84,63,.35);
}
.event-card__badge {
  flex-shrink: 0;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--accent-2));
  color: #100e0a;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: eventBadgePulse 2.6s ease-in-out infinite;
}
@keyframes eventBadgePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(184,84,63,.45); }
  50% { box-shadow: 0 0 22px rgba(184,84,63,.55); }
}
@media (prefers-reduced-motion: reduce) {
  .event-card__badge { animation: none; }
}
.event-card__body h3 { margin: 0 0 8px; font-size: 19px; }
.event-card__body p { color: var(--text-muted); font-size: 14px; margin: 0 0 12px; }
.event-card__price { display: block; font-size: 24px; color: var(--accent-2); margin-bottom: 16px; }

/* 오시는 길 */
.location-box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.location-box__map {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  min-height: 280px;
  overflow: hidden;
}
.location-box__map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }
.location-box__map img { width: 100%; height: auto; display: block; }
.location-box__info {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px;
}
.location-box__info p { font-size: 14px; margin: 0 0 18px; color: var(--text-muted); }
.location-box__info p strong { display: block; color: var(--text-light); margin-bottom: 4px; font-size: 13px; }
.location-box__info a { color: var(--text-light); }
.location-box__links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }

/* 문의 폼 */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form__row { display: flex; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text-light);
  font-size: 15px;
  font-family: inherit;
}
.contact-form textarea { resize: vertical; }
.contact-form option { color: var(--text-dark); background: #fff; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form button { margin-top: 4px; }
.contact-form__note { color: var(--text-muted); font-size: 12px; text-align: center; margin: 0; }
.contact-form__hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form__success {
  display: none;
  text-align: center;
  color: var(--accent-2);
  background: rgba(201,164,99,.1);
  border: 1px solid rgba(201,164,99,.35);
  border-radius: var(--radius);
  padding: 20px;
  font-weight: 700;
}
.contact-form__success.is-visible { display: block; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--accent-2);
  margin-left: 12px;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--text-muted); font-size: 14px; margin: 14px 0 0; }

/* 최종 CTA */
.cta-final {
  position: relative;
  background: var(--bg-dark-2);
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(201,164,99,.15);
  border-bottom: 1px solid rgba(201,164,99,.15);
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(201,164,99,.28), transparent 55%),
    radial-gradient(circle at 82% 85%, rgba(232,207,154,.16), transparent 50%);
  animation: ctaGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ctaGlow {
  from { opacity: .7; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-final::before { animation: none; }
}
.cta-final__inner { position: relative; z-index: 1; }
.cta-final__kicker {
  display: inline-block;
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 13px;
  margin: 0 0 16px;
}
.cta-final__inner h2 {
  color: var(--text-light);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin: 0 0 16px;
}
.cta-final__inner h2 .highlight { color: var(--accent); }
.cta-final__inner p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0 0 36px;
}
.cta-final__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* 푸터 */
.footer {
  background: #050506;
  padding: 48px 0 120px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
.footer__logo-img { height: 22px; width: auto; margin: 0 auto 12px; display: block; }
.footer__logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 16px;
}
.footer__logo span { color: var(--accent); font-weight: 600; }
.footer p { margin: 6px 0; }
.footer__copy { margin-top: 16px; opacity: .6; }

/* 플로팅 CTA */
.floating-cta-group {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.floating-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.floating-cta--kakao {
  background: var(--kakao);
  color: var(--kakao-text);
  animation: float-pulse 2.4s ease-in-out infinite;
}
.floating-cta--call {
  background: var(--text-light);
  color: var(--text-dark);
}
@keyframes float-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* 모바일 하단 고정 바 */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-cta-bar__btn {
  flex: 1;
  text-align: center;
  padding: 16px 0;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
}
.mobile-cta-bar__btn--call { color: var(--text-light); }
.mobile-cta-bar__btn--kakao { background: var(--kakao); color: var(--kakao-text); }

/* 반응형 */
@media (max-width: 960px) {
  .nav { display: none; }
  .location-box { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .video-tour { grid-template-columns: 1fr; }
  .schedule__images { grid-template-columns: 1fr; }

  #trainers-grid.is-collapsed .trainer-card:nth-child(n+7) { display: none; }
  .trainers-toggle { display: block; }
}
@media (max-width: 560px) {
  .hero { padding: 130px 0 60px; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .logo { font-size: 15px; }
  .header__inner { gap: 8px; }
  .header__cta a.btn--outline { display: none; }
  .header__cta .btn--kakao { padding: 10px 14px; font-size: 13px; }
  .event-card { flex-direction: column; text-align: center; }
  .contact-form__row { flex-direction: column; }

  /* 모바일에서는 원형 플로팅 버튼 대신 하단 고정 바로 전환 */
  .floating-cta-group { display: none; }
  .mobile-cta-bar { display: flex; }
}
