/* ==========================================================================
   Contact info (오시는 길) — 원본 css/04contact.css 이식, 변경 없음
   ========================================================================== */
.footer-contact-section{ border-top:none; }

@media (min-width: 901px){
  .footer-contact-info{
    opacity:0;
    transform:translateX(-40px);
    transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  }
  .map-wrap{
    opacity:0;
    transform:translateX(40px);
    transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  }
  .footer-contact-section.is-revealed .footer-contact-info,
  .footer-contact-section.is-revealed .map-wrap{ opacity:1; transform:translateX(0); }
}

.about-hero{ padding-bottom:clamp(12px, 2.5vh, 28px); }
.footer-contact-row{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:80px;
  align-items:stretch;
  padding-top:0;
  padding-bottom:clamp(80px, 12vh, 140px);
}
.footer-contact-info{ display:flex; flex-direction:column; justify-content:space-between; padding:40px 0; }
.footer-contact-info .eyebrow{ margin-bottom:14px; }
.footer-contact-info h2{
  font-family:'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size:32px;
  font-weight:700;
  letter-spacing:-0.01em;
  line-height:1.5;
  margin:0 0 24px;
}
.footer-contact-info h2 .en{ display:block; font-size:13.5px; font-weight:400; color:var(--mist); margin-top:6px; }
.map-links{ display:flex; gap:10px; margin-bottom:32px; }
.map-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:47px;
  gap:8px;
  font-size:15px;
  font-weight:700;
  color:var(--ink);
  border:1px solid var(--line);
  border-radius:999px;
  padding:12px 22px;
  transition:border-color .2s ease, color .2s ease;
}
.map-link:hover{ border-color:var(--blue-deep); color:var(--blue-deep); }
.map-link svg{ width:22px; height:22px; flex:none; }
.map-link--naver:hover{ background:#03a94d; border-color:#03a94d; color:#fff; }
.map-link--naver:hover svg path{ fill:#fff; }
.map-link--kakao:hover{ background:#fee500; border-color:#fee500; color:#391B1B; }
.map-link--kakao:hover svg path{ fill:#391B1B; }
.contact-card{ display:flex; flex-direction:column; gap:40px; }
.ct-phone{ display:flex; align-items:center; gap:10px; font-size:36px; font-weight:800; color:var(--ink); }
.ct-phone svg{ width:30px; height:30px; color:#000; flex:none; }
.ct-fax{ font-size:17px; color:#000; font-weight:500; }
.ct-fax-label{ display:inline-block; min-width:40px; margin-right:20px; }

.map-wrap{ position:relative; width:750px; height:429px; max-width:100%; margin-left:auto; border:1px solid var(--line); border-radius:16px; overflow:hidden; }
.map-wrap > *{ max-width:100%; }
.map-wrap .root_daum_roughmap{ width:100% !important; }
.map-wrap .root_daum_roughmap .wrap_map{ height:429px !important; }

@media (max-width: 1400px){
  .footer-contact-row{ grid-template-columns:minmax(360px, .85fr) minmax(0, 1.15fr); gap:50px; }
  .map-wrap{ min-width:0; }
}

@media (max-width: 900px){
  .footer-contact-row{ grid-template-columns:1fr; gap:24px; padding-bottom:44px; }
  .footer-contact-info{ padding:0; }
  .footer-contact-info h2{ font-size:22px; }
  .map-link{ padding:10px 15px; }
  .ct-phone{ font-size:22px; }
  .ct-phone svg{ width:20px; height:20px; }
  .ct-fax{ display:none; }
  .map-wrap{ width:100%; height:220px; }
  .map-wrap .root_daum_roughmap .wrap_map{ height:220px !important; }
}

/* ==========================================================================
   Directions (오시는 길 상세 — 지하철/자가용/버스/SRT/KTX)
   ========================================================================== */
.directions{ padding:clamp(60px, 10vh, 100px) 0; border-top:none; background:#F0F7FE; }
.directions .section-head{ margin:0 0 clamp(40px, 6vh, 64px); }
.directions-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:28px;
}
.direction-card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:28px 26px;
}
.direction-icon{
  display:block;
  height:30px;
  width:auto;
  max-width:40px;
  object-fit:contain;
  color:var(--blue);
  margin-bottom:14px;
}
.direction-card h3{
  font-size:20px;
  font-weight:800;
  color:var(--ink);
  margin:0 0 14px;
}
.direction-card > p{
  font-size:14.5px;
  line-height:1.7;
  color:var(--mist);
  margin:0 0 14px;
}
.direction-card ul{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}
.direction-card li{
  font-size:14px;
  line-height:1.6;
  color:var(--ink);
  padding-left:10px;
  position:relative;
}
.direction-card li::before{
  content:"·";
  position:absolute;
  left:0;
  color:var(--blue-deep);
  font-weight:700;
}
.route-list .route-label{
  display:block;
  min-width:70px;
  font-weight:700;
  color:var(--blue);
}
.direction-sub + .direction-sub{ margin-top:20px; padding-top:20px; border-top:1px solid var(--line); }
.direction-sub h4{
  font-size:15.5px;
  font-weight:700;
  color:var(--blue-deep);
  margin:0 0 10px;
}
@media (max-width: 900px){
  .directions{ padding:clamp(40px, 6vh, 60px) 0; }
  .directions .eyebrow{ font-size:11px; margin-bottom:10px; }
  .directions .section-head{ margin-bottom:32px; }
  .directions-grid{ grid-template-columns:1fr; gap:16px; }
  .direction-card{ padding:22px 20px; }
  .direction-icon{ position:absolute; top:22px; right:20px; margin-bottom:0; }
  .direction-card h3{ font-size:16px; min-height:26px; display:flex; align-items:center; }
  .direction-card > p,
  .direction-card li{ font-size:13.5px; }
}

@media (min-width: 901px){
  .directions .section-head,
  .directions-grid{
    opacity:0;
    transform:translateY(24px);
    transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  }
  .directions-grid{ transition-delay:.15s; }
  .directions.is-revealed .section-head,
  .directions.is-revealed .directions-grid{ opacity:1; transform:translateY(0); }
}
