/* BASIC css start */
/* ============================================================
   오시는 길 — 리뉴얼
============================================================ */
:root {
  --loc-dark:  #111827;
  --loc-navy:  #1e3a5f;
  --loc-blue:  #bc2929;
  --loc-light: #f4f6f9;
  --loc-white: #ffffff;
  --loc-text:  #374151;
  --loc-muted: #6b7280;
  --loc-max:   1280px;
  --loc-r:     12px;
}

.loc { overflow: hidden; font-family: 'Pretendard', -apple-system, sans-serif; }

.loc-inner {
  max-width: var(--loc-max);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.loc-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--loc-blue);
  margin-bottom: 10px;
}
.loc-eyebrow--light { color: rgba(255,255,255,0.6); }

.loc-sec-tit {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  color: var(--loc-dark);
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.loc-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.loc-hero__bg { position: absolute; inset: 0; }
.loc-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.loc-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,20,40,0.85) 0%,
    rgba(10,20,40,0.5) 60%,
    rgba(10,20,40,0.1) 100%
  );
}
.loc-hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--loc-max);
  margin: 0 auto;
  padding: 60px 40px 70px;
}
.loc-hero__tit {
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.0;
  margin: 12px 0 16px;
}
.loc-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}
.loc-hero__chips { display: flex; gap: 10px; flex-wrap: wrap; }
.loc-chip {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
}

/* ══════════════════════════════════
   MAP + INFO
══════════════════════════════════ */
.loc-map-section { padding: 72px 0; background: #fff; }
.loc-map-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.loc-map-col { display: flex; flex-direction: column; gap: 10px; }
.loc-map-box {
  width: 100%;
  height: 420px;
  border-radius: var(--loc-r);
  overflow: hidden;
  background: #dde5f0;
  border: 1px solid #e5eaf0;
}
.loc-map-link {
  display: block;
  text-align: right;
  font-size: 13px;
  color: var(--loc-blue);
  text-decoration: none;
}
.loc-map-link:hover { text-decoration: underline; }

/* 정보 컬럼 */
.loc-info-col { display: flex; flex-direction: column; gap: 0; }
.loc-info-tit {
  font-size: 22px;
  font-weight: 800;
  color: var(--loc-dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--loc-dark);
}
.loc-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.loc-info-ico {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}
.loc-info-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  /* margin-bottom: 5px; */
}
.loc-info-item p {
  font-size: 14px;
  color: var(--loc-text);
  line-height: 1.6;
  margin-bottom: 3px;
}
.loc-info-sub { font-size: 12px !important; color: #aaa !important; }
.loc-info-highlight { font-size: 12px !important; color: var(--loc-blue) !important; font-weight: 700; }
.loc-info-closed { font-size: 12px !important; color: #e03030 !important; font-weight: 600; }
.loc-tel {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--loc-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
  margin-top: 2px;
}
.loc-tel:hover { color: var(--loc-blue); }

.loc-quick-btns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
}
.loc-qbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 8px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s, transform 0.2s;
}
.loc-qbtn:hover { opacity: 0.85; transform: translateY(-1px); }
.loc-qbtn--kakao { background: #FEE500; color: #3C1E1E; }
.loc-qbtn--naver { background: #03C75A; color: #fff; }
.loc-qbtn--call { background: var(--loc-dark); color: #fff; }

/* ══════════════════════════════════
   TRANSIT
══════════════════════════════════ */
.loc-transit {
  background: var(--loc-light);
  padding: 72px 40px;
}
.loc-transit h2.loc-sec-tit { margin-bottom: 36px; }
.loc-transit-grid {
  max-width: var(--loc-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.loc-transit-card {
  background: #fff;
  border-radius: var(--loc-r);
  padding: 30px 24px;
  border: 1px solid #e8edf4;
  transition: transform 0.2s, box-shadow 0.2s;
}
.loc-transit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}
.loc-transit-card--accent {
  background: var(--loc-navy);
  border-color: var(--loc-navy);
  color: #fff;
}
.loc-transit-ico { font-size: 30px; margin-bottom: 14px; }
.loc-transit-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--loc-dark);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.loc-transit-card--accent h3 { color: #fff; border-color: rgba(255,255,255,0.15); }
.loc-transit-card p { font-size: 14px; color: var(--loc-text); line-height: 1.65; }
.loc-transit-card--accent p { color: rgba(255,255,255,0.75); }
.loc-line-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.loc-line-6 { background: #CD7C2F; }
.loc-line-0 { background: #4fc39e; }
.loc-line-g { background: #3cc344; }
.loc-line-b { background: #386de8; }
.loc-transit-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
}

/* ══════════════════════════════════
   시승 안내 — 다크
══════════════════════════════════ */
.loc-test {
  background: var(--loc-dark);
  padding: 80px 0 0;
  overflow: hidden;
}
.loc-test__inner {
  max-width: var(--loc-max);
  margin: 0 auto;
  padding: 0 40px;
}
.loc-test__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.loc-test__tit {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.8px;
  margin: 0;
}
.loc-test__badge {
  display: inline-block;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}
.loc-test__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.loc-test__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--loc-r);
  padding: 28px 22px;
  transition: background 0.2s, border-color 0.2s;
}
.loc-test__card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
}
.loc-test__num {
  display: block;
  font-size: 52px;
  font-weight: 900;
  color: rgba(255,255,255,17%);
  line-height: 1;
  margin-bottom: 12px;
}
.loc-test__card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.loc-test__card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.loc-test__tel {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fa6060;
  text-decoration: none;
}
.loc-test__warn {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #69d5ab;
  background: rgb(68 237 239 / 15%);
  border: 1px solid rgb(68 239 147 / 30%);
  padding: 4px 10px;
  border-radius: 4px;
}
/* 시승 배너 */
.loc-test__banner {
  position: relative;
  border-radius: var(--loc-r) var(--loc-r) 0 0;
  overflow: hidden;
  margin-top: 0;
}
.loc-test__banner img { width: 100%; display: block; object-fit: cover; max-height: 220px; }
.loc-test__banner-txt {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 36px;
  background: linear-gradient(90deg, rgba(10,20,40,0.85) 0%, rgba(10,20,40,0.3) 100%);
}
.loc-test__banner-txt strong { display: block; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.loc-test__banner-txt p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ══════════════════════════════════
   영업시간
══════════════════════════════════ */
.loc-hours { background: var(--loc-light); padding: 80px 0 100px; }
.loc-hours__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}
.loc-hours__left p {
  font-size: 14px;
  color: var(--loc-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}
.loc-hours__tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--loc-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}
.loc-hours__tel:hover { background: var(--loc-navy); }
.loc-hours__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--loc-r);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.loc-hours__table tr { border-bottom: 1px solid #f5f5f5; }
.loc-hours__table tr:last-child { border-bottom: none; }
.loc-hours__table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--loc-text);
}
.loc-hours__table td:first-child { font-weight: 600; color: var(--loc-dark); width: 140px; }
.loc-hours__table tbody tr:hover td { background: #f8faff; }
.loc-closed td { color: #e03030 !important; background: #fff8f8 !important; font-weight: 600; }
.loc-today td { background: #eff6ff !important; color: var(--loc-blue) !important; font-weight: 700; }
.loc-today td:first-child::after {
  content: ' 오늘';
  font-size: 10px;
  background: var(--loc-blue);
  color: #fff;
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
  font-weight: 600;
}

/* ══════════════════════════════════
   페이드업
══════════════════════════════════ */
.loc-fade { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
.loc-fade.is-on { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   태블릿
══════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1024px) {
  .loc-inner { padding: 0 24px; }
  .loc-hero__inner { padding: 50px 24px 60px; }
  .loc-map-section { padding: 52px 0; }
  .loc-map-grid { grid-template-columns: 1fr; gap: 28px; padding: 0 24px; }
  .loc-map-box { height: 340px; }
  .loc-transit { padding: 52px 24px; }
  .loc-transit-grid { grid-template-columns: 1fr; gap: 10px; }
  .loc-test__inner { padding: 0 24px; }
  .loc-test__grid { grid-template-columns: 1fr; gap: 10px; }
  .loc-hours__grid { grid-template-columns: 1fr; gap: 32px; }
  .loc-hours { padding: 60px 0 70px; }
}

/* ══════════════════════════════════
   모바일
══════════════════════════════════ */
@media (max-width: 767px) {
  .loc-inner { padding: 0 16px; }
  .loc-hero { min-height: 380px; }
  .loc-hero__inner { padding: 44px 16px 52px; }
  .loc-hero__tit { font-size: 46px; letter-spacing: -1.5px; }
  .loc-map-section { padding: 44px 0; }
  .loc-map-grid { grid-template-columns: 1fr; gap: 22px; padding: 0 16px; }
  .loc-map-box { height: 260px; }
  .loc-transit { padding: 44px 16px; }
  .loc-transit-grid { grid-template-columns: 1fr; gap: 10px; }
  .loc-test { padding: 60px 0 0; }
  .loc-test__inner { padding: 0 16px; }
  .loc-test__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .loc-test__grid { grid-template-columns: 1fr; gap: 10px; }
  .loc-test__banner-txt { padding: 18px 20px; }
  .loc-test__banner-txt strong { font-size: 14px; }
  .loc-hours { padding: 52px 0 64px; }
  .loc-hours__grid { grid-template-columns: 1fr; gap: 24px; padding: 0 16px; }
  .loc-quick-btns { grid-template-columns: 1fr; }
  .loc-hours__table td { padding: 12px 14px; }
}

/* ── Font Awesome 아이콘 보정 ── */
.loc-hero__chips .loc-chip i { font-size: 12px; margin-right: 4px; }
.loc-info-ico {
  width: 36px; height: 36px;
  background: #f0f4ff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.loc-info-ico i {
  font-size: 15px;
  color: var(--loc-blue);
}
.loc-info-closed i { font-size: 11px; margin-right: 3px; }
.loc-info-highlight i { font-size: 11px; margin-right: 3px; }
.loc-map-link i { font-size: 11px; margin-right: 4px; }
.loc-qbtn i { font-size: 12px; margin-right: 4px; }
.loc-transit-ico {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: #f0f4ff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.loc-transit-ico i { font-size: 22px; color: var(--loc-blue); }
.loc-transit-card--accent .loc-transit-ico { background: rgba(255,255,255,0.12); }
.loc-transit-card--accent .loc-transit-ico i { color: rgba(255,255,255,0.9); }
.loc-transit-tag i { font-size: 11px; margin-right: 3px; }
.loc-test__badge i { font-size: 11px; margin-right: 3px; }
.loc-test__card-ico {
  font-size: 13px;
  color: #fa6060;
  margin-right: 6px;
}
.loc-test__tel i { font-size: 12px; margin-right: 4px; }
.loc-test__warn i { font-size: 11px; margin-right: 3px; }
.loc-test__banner-txt strong i { font-size: 15px; margin-right: 6px; }
.loc-hours__tel i { font-size: 13px; margin-right: 4px; }
.loc-day-ico {
  font-size: 11px;
  color: #aaa;
  margin-right: 8px;
  width: 14px;
}
.loc-closed .loc-day-ico { color: #e03030; }
.loc-today .loc-day-ico { color: var(--loc-blue); }
/* BASIC css end */

