/* Footer contact/social block - unified all pages */
.site-footer-contact{
  position:relative;
  margin-top:72px;
  padding:42px clamp(22px,5vw,72px) 34px;
  border-top:1px solid rgba(255,211,106,.18);
  background:
    radial-gradient(circle at 12% 0%, rgba(255,211,106,.10), transparent 34%),
    linear-gradient(180deg, rgba(18,18,20,.96), rgba(5,5,7,.98));
  color:#f8f4ea;
}
.site-footer-contact:before{
  content:"";
  position:absolute;
  left:0;right:0;top:0;height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,211,106,.55), transparent);
}
.footer-contact-inner{
  max-width:1760px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.25fr .9fr;
  gap:34px;
  align-items:start;
}
.footer-brand-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}
.footer-logo-img{
  width:48px;height:48px;
  border-radius:14px;
  object-fit:cover;
  box-shadow:0 10px 32px rgba(0,0,0,.42),0 0 0 1px rgba(255,211,106,.22);
}
.site-footer-title{
  display:block;
  font-size:26px;
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.04em;
}
.site-footer-subtitle{
  display:block;
  margin-top:4px;
  color:#d8caa7;
  font-size:14px;
  font-weight:700;
}
.footer-desc{
  max-width:780px;
  margin:0 0 18px;
  color:rgba(248,244,234,.82);
  font-size:16px;
  line-height:1.75;
  word-break:keep-all;
}
.footer-owner-line{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  color:#bfb8a8;
  font-size:14px;
}
.footer-owner-line b{color:#ffd36a;font-weight:900;}
.footer-contact-panel{
  border:1px solid rgba(255,211,106,.18);
  background:rgba(255,255,255,.035);
  border-radius:24px;
  padding:22px;
  box-shadow:0 18px 60px rgba(0,0,0,.28);
}
.footer-panel-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.footer-panel-title strong{
  font-size:18px;
  font-weight:900;
  letter-spacing:-.02em;
}
.footer-panel-title span{
  color:#ffd36a;
  font-size:12px;
  font-weight:900;
  border:1px solid rgba(255,211,106,.32);
  border-radius:999px;
  padding:6px 10px;
  background:rgba(255,211,106,.08);
}
.footer-social-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.footer-social-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 14px;
  border-radius:15px;
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:15px;
  letter-spacing:-.02em;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.07);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.footer-social-btn:hover{
  transform:translateY(-2px);
  border-color:rgba(255,211,106,.55);
  background:rgba(255,211,106,.12);
}
.footer-social-btn.telegram{background:linear-gradient(135deg,#229ed9,#1677b7);}
.footer-social-btn.email{background:linear-gradient(135deg,#ffd36a,#c99422);color:#141414;}
.footer-social-btn.x{background:linear-gradient(135deg,#1b1b1f,#050506);}
.footer-social-btn.kakao{background:linear-gradient(135deg,#fee500,#f5c400);color:#171100;}
.footer-social-btn.partner{background:rgba(255,211,106,.10);color:#ffd36a;}
.footer-social-btn.map{background:rgba(255,255,255,.06);color:#eee;}
.footer-fineprint{
  margin:16px 0 0;
  color:rgba(248,244,234,.56);
  font-size:12.5px;
  line-height:1.65;
}
@media(max-width:820px){
  .site-footer-contact{margin-top:46px;padding:32px 18px 26px;}
  .footer-contact-inner{grid-template-columns:1fr;gap:22px;}
  .footer-brand-row{align-items:flex-start;}
  .footer-logo-img{width:42px;height:42px;border-radius:12px;}
  .site-footer-title{font-size:22px;}
  .footer-desc{font-size:14px;line-height:1.65;}
  .footer-contact-panel{padding:16px;border-radius:20px;}
  .footer-social-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;}
  .footer-social-btn{min-height:42px;font-size:13.5px;border-radius:13px;padding:0 10px;}
}
@media(max-width:380px){
  .footer-social-grid{grid-template-columns:1fr;}
}
