/* ════════════════════════════════════════
   LOCATION & CTA / FOOTER / VIDEO MODAL
   ════════════════════════════════════════ */

/* ── LOCATION & CTA ── */
.location-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.location-map {
  position: relative;
  background: #D8CFC0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  overflow: hidden;
}

.location-map-pc {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.location-map-mobile {
  display: none;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-nav-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: #03c75a; /* 네이버 지도 그린 */
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  color: var(--white); /* 흰색 글자 */
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s;
  z-index: 10;
}
.map-nav-btn:hover {
  background: #02b350; /* 호버 시 약간 더 짙은 초록색 */
  color: var(--white);
}

@media (max-width: 1024px) {
  .location-map-pc {
    display: none;
  }
  .location-map-mobile {
    display: block;
  }
  .map-nav-btn {
    display: block;
  }
}

.map-visual {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.15) 0px, rgba(255,255,255,0.15) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.15) 0px, rgba(255,255,255,0.15) 1px, transparent 1px, transparent 40px),
    linear-gradient(135deg, #C8BBA8, #B8A890);
}
.map-pin {
  position: relative;
  z-index: 1;
  text-align: center;
}
.map-pin-dot {
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 8px;
  box-shadow: 0 0 0 4px rgba(139,111,71,0.25);
}
.map-pin-label {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  background: white;
  padding: 4px 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.location-info {
  background: var(--white);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info .section-title {
  font-size: 30px;
}
.location-actions {
  margin-top: 48px;
  display: flex;
  gap: 16px;
}
.location-actions .btn-reserve {
  padding: 13px 36px;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  margin-top: 40px;
}

.info-item .info-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.info-item .info-val {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--brown-mid);
  letter-spacing: 0.03em;
}

/* ── FOOTER ── */
footer {
  background: var(--brown-deep);
  padding: 52px;
  display: flex;
  flex-direction: column; /* 세로로 쌓기 */
  align-items: center; /* 가로 중앙 정렬 */
  justify-content: center; /* 세로 중앙 정렬 */
  gap: 24px; /* 요소 간 간격 */
  text-align: center; /* 텍스트 가운데 정렬 */
}

.footer-logo {
  flex-shrink: 0;
  margin-bottom: 8px;
}

.footer-logo .ko { font-family: 'Noto Serif KR', serif; font-size: 20px; font-weight: 600; color: rgba(255,255,255,0.7); }
.footer-logo .en { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold-light); margin-top: 4px; }

.footer-info {
  margin: 0; /* 중앙 정렬을 위해 margin-right: auto 제거 */
  color: rgba(255,255,255,0.5); 
  font-size: 16px; 
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: row; /* 가로 정렬로 변경 */
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

/* ── VIDEO OVERLAY POPUP ── */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.video-modal.active { display: flex; }
.video-modal-inner {
  position: relative;
  width: 80vw;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #111;
}
.video-modal-inner video,
.video-modal-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  letter-spacing: 0.1em;
  background: #1a1208;
}
.video-modal-placeholder .placeholder-inner {
  text-align: center;
}
.video-modal-placeholder .placeholder-icon {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.3;
}
.video-modal-placeholder .placeholder-text {
  font-size: 11px;
  letter-spacing: 0.3em;
  opacity: 0.3;
}
.video-close {
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.video-close:hover { opacity: 1; }
